From 6ef6740ebc01f97c4fdc7772ba1b6fe29789e07b Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 25 Jul 2016 11:49:25 -0500 Subject: [PATCH 01/16] Implement stochastic volume calculation on Fortran side --- docs/source/io_formats/index.rst | 1 + docs/source/io_formats/nuclear_data.rst | 2 +- docs/source/io_formats/volume.rst | 22 ++ docs/source/usersguide/input.rst | 29 ++ src/constants.F90 | 3 +- src/global.F90 | 3 + src/hdf5_interface.F90 | 76 +++++ src/input_xml.F90 | 10 + src/random_lcg.F90 | 1 - src/simulation.F90 | 4 + src/volume_calc.F90 | 389 ++++++++++++++++++++++++ src/volume_header.F90 | 42 +++ 12 files changed, 579 insertions(+), 3 deletions(-) create mode 100644 docs/source/io_formats/volume.rst create mode 100644 src/volume_calc.F90 create mode 100644 src/volume_header.F90 diff --git a/docs/source/io_formats/index.rst b/docs/source/io_formats/index.rst index acab7e8930..1da8872c66 100644 --- a/docs/source/io_formats/index.rst +++ b/docs/source/io_formats/index.rst @@ -30,3 +30,4 @@ Output Files particle_restart track voxel + volume diff --git a/docs/source/io_formats/nuclear_data.rst b/docs/source/io_formats/nuclear_data.rst index ba6a54eb1e..9d7ff0eb1e 100644 --- a/docs/source/io_formats/nuclear_data.rst +++ b/docs/source/io_formats/nuclear_data.rst @@ -1,4 +1,4 @@ -.. _usersguide_nuclear_data: +.. _io_nuclear_data: ======================== Nuclear Data File Format diff --git a/docs/source/io_formats/volume.rst b/docs/source/io_formats/volume.rst new file mode 100644 index 0000000000..10b7a3b732 --- /dev/null +++ b/docs/source/io_formats/volume.rst @@ -0,0 +1,22 @@ +.. _io_volume: + +================== +Volume File Format +================== + +**/** + +:Attributes: - **samples** (*int*) -- Number of samples + - **lower_left** (*double[3]*) -- Lower-left coordinates of + bounding box + - **upper_right** (*double[3]*) -- Upper-right coordinates of + bounding box + +**/cell_/** + +:Datasets: - **volume** (*double[2]*) -- Calculated volume and its uncertainty + in cubic centimeters + - **nuclides** (*char[][]*) -- Names of nuclides identified in the + cell + - **atoms** (*double[][2]*) -- Total number of atoms of each nuclide + and its uncertainty diff --git a/docs/source/usersguide/input.rst b/docs/source/usersguide/input.rst index e530097ded..530c45d2fe 100644 --- a/docs/source/usersguide/input.rst +++ b/docs/source/usersguide/input.rst @@ -836,6 +836,35 @@ displayed. This element takes the following attributes: *Default*: 5 +```` Element +------------------------- + +The ```` element indicates that a stochastic volume calculation +should be run at the beginning of the simulation. This element has the following +sub-elements/attributes: + + :cells: + The unique IDs of cells for which the volume should be estimated. + + *Default*: None + + :samples: + The number of samples used to estimate volumes. + + *Default*: None + + :lower_left: + The lower-left Cartesian coordinates of a bounding box that is used to + sample points within. + + *Default*: None + + :upper_right: + The upper-right Cartesian coordinates of a bounding box that is used to + sample points within. + + *Default*: None + -------------------------------------- Geometry Specification -- geometry.xml -------------------------------------- diff --git a/src/constants.F90 b/src/constants.F90 index a22c9ac050..076e1f0d0b 100644 --- a/src/constants.F90 +++ b/src/constants.F90 @@ -380,11 +380,12 @@ module constants ! ============================================================================ ! RANDOM NUMBER STREAM CONSTANTS - integer, parameter :: N_STREAMS = 4 + integer, parameter :: N_STREAMS = 5 integer, parameter :: STREAM_TRACKING = 1 integer, parameter :: STREAM_TALLIES = 2 integer, parameter :: STREAM_SOURCE = 3 integer, parameter :: STREAM_URR_PTABLE = 4 + integer, parameter :: STREAM_VOLUME = 5 ! ============================================================================ ! MISCELLANEOUS CONSTANTS diff --git a/src/global.F90 b/src/global.F90 index 1b1e5632a4..ba5947f0e7 100644 --- a/src/global.F90 +++ b/src/global.F90 @@ -17,6 +17,7 @@ module global use tally_header, only: TallyObject, TallyMap, TallyResult use trigger_header, only: KTrigger use timer_header, only: Timer + use volume_header, only: VolumeCalculation #ifdef MPIF08 use mpi_f08 @@ -35,6 +36,8 @@ module global type(Material), allocatable, target :: materials(:) type(ObjectPlot), allocatable, target :: plots(:) + type(VolumeCalculation), allocatable :: volume_calcs(:) + ! Size of main arrays integer :: n_cells ! # of cells integer :: n_universes ! # of universes diff --git a/src/hdf5_interface.F90 b/src/hdf5_interface.F90 index 5a1e2a2fff..6d1c87d7f5 100644 --- a/src/hdf5_interface.F90 +++ b/src/hdf5_interface.F90 @@ -75,8 +75,15 @@ module hdf5_interface module procedure read_attribute_string end interface read_attribute + interface write_attribute + module procedure write_attribute_double + module procedure write_attribute_double_1D + module procedure write_attribute_integer + end interface write_attribute + public :: write_dataset public :: read_dataset + public :: write_attribute public :: read_attribute public :: file_create public :: file_open @@ -2059,6 +2066,25 @@ contains call h5aclose_f(attr_id, hdf5_err) end subroutine read_attribute_double + subroutine write_attribute_double(obj_id, name, buffer) + integer(HID_T), intent(in) :: obj_id + character(*), intent(in) :: name + real(8), intent(in), target :: buffer + + integer :: hdf5_err + integer(HID_T) :: dspace_id + integer(HID_T) :: attr_id + type(C_PTR) :: f_ptr + + call h5screate_f(H5S_SCALAR_F, dspace_id, hdf5_err) + call h5acreate_f(obj_id, trim(name), H5T_NATIVE_DOUBLE, dspace_id, & + attr_id, hdf5_err) + f_ptr = c_loc(buffer) + call h5awrite_f(attr_id, H5T_NATIVE_DOUBLE, f_ptr, hdf5_err) + call h5aclose_f(attr_id, hdf5_err) + call h5sclose_f(dspace_id, hdf5_err) + end subroutine write_attribute_double + subroutine read_attribute_double_1D(buffer, obj_id, name) real(8), target, allocatable, intent(inout) :: buffer(:) integer(HID_T), intent(in) :: obj_id @@ -2097,6 +2123,37 @@ contains call h5aread_f(attr_id, H5T_NATIVE_DOUBLE, f_ptr, hdf5_err) end subroutine read_attribute_double_1D_explicit + subroutine write_attribute_double_1D(obj_id, name, buffer) + integer(HID_T), intent(in) :: obj_id + character(*), intent(in) :: name + real(8), target, intent(in) :: buffer(:) + + integer(HSIZE_T) :: dims(1) + + dims(:) = shape(buffer) + call write_attribute_double_1D_explicit(obj_id, dims, name, buffer) + end subroutine write_attribute_double_1D + + subroutine write_attribute_double_1D_explicit(obj_id, dims, name, buffer) + integer(HID_T), intent(in) :: obj_id + integer(HSIZE_T), intent(in) :: dims(1) + character(*), intent(in) :: name + real(8), target, intent(in) :: buffer(dims(1)) + + integer :: hdf5_err + integer(HID_T) :: dspace_id + integer(HID_T) :: attr_id + type(C_PTR) :: f_ptr + + call h5screate_simple_f(1, dims, dspace_id, hdf5_err) + call h5acreate_f(obj_id, trim(name), H5T_NATIVE_DOUBLE, dspace_id, & + attr_id, hdf5_err) + f_ptr = c_loc(buffer) + call h5awrite_f(attr_id, H5T_NATIVE_DOUBLE, f_ptr, hdf5_err) + call h5aclose_f(attr_id, hdf5_err) + call h5sclose_f(dspace_id, hdf5_err) + end subroutine write_attribute_double_1D_explicit + subroutine read_attribute_double_2D(buffer, obj_id, name) real(8), target, allocatable, intent(inout) :: buffer(:,:) integer(HID_T), intent(in) :: obj_id @@ -2150,6 +2207,25 @@ contains call h5aclose_f(attr_id, hdf5_err) end subroutine read_attribute_integer + subroutine write_attribute_integer(obj_id, name, buffer) + integer(HID_T), intent(in) :: obj_id + character(*), intent(in) :: name + integer, intent(in), target :: buffer + + integer :: hdf5_err + integer(HID_T) :: dspace_id + integer(HID_T) :: attr_id + type(C_PTR) :: f_ptr + + call h5screate_f(H5S_SCALAR_F, dspace_id, hdf5_err) + call h5acreate_f(obj_id, trim(name), H5T_NATIVE_INTEGER, dspace_id, & + attr_id, hdf5_err) + f_ptr = c_loc(buffer) + call h5awrite_f(attr_id, H5T_NATIVE_INTEGER, f_ptr, hdf5_err) + call h5aclose_f(attr_id, hdf5_err) + call h5sclose_f(dspace_id, hdf5_err) + end subroutine write_attribute_integer + subroutine read_attribute_integer_1D(buffer, obj_id, name) integer, target, allocatable, intent(inout) :: buffer(:) integer(HID_T), intent(in) :: obj_id diff --git a/src/input_xml.F90 b/src/input_xml.F90 index 3e5a687124..0c2eca33a5 100644 --- a/src/input_xml.F90 +++ b/src/input_xml.F90 @@ -87,8 +87,10 @@ contains type(Node), pointer :: node_scatterer => null() type(Node), pointer :: node_trigger => null() type(Node), pointer :: node_keff_trigger => null() + type(Node), pointer :: node_vol => null() type(NodeList), pointer :: node_scat_list => null() type(NodeList), pointer :: node_source_list => null() + type(NodeList), pointer :: node_vol_list => null() ! Check if settings.xml exists filename = trim(path_input) // "settings.xml" @@ -1119,6 +1121,14 @@ contains end select end if + call get_node_list(doc, "volume_calc", node_vol_list) + n = get_list_size(node_vol_list) + allocate(volume_calcs(n)) + do i = 1, n + call get_list_item(node_vol_list, i, node_vol) + call volume_calcs(i) % from_xml(node_vol) + end do + ! Close settings XML file call close_xmldoc(doc) diff --git a/src/random_lcg.F90 b/src/random_lcg.F90 index 08f1034ab7..287bbba6d9 100644 --- a/src/random_lcg.F90 +++ b/src/random_lcg.F90 @@ -29,7 +29,6 @@ module random_lcg public :: set_particle_seed public :: advance_prn_seed public :: prn_set_stream - public :: STREAM_TRACKING, STREAM_TALLIES contains diff --git a/src/simulation.F90 b/src/simulation.F90 index 3321dc70fa..f59ce371cc 100644 --- a/src/simulation.F90 +++ b/src/simulation.F90 @@ -24,6 +24,7 @@ module simulation reset_result use trigger, only: check_triggers use tracking, only: transport + use volume_calc, only: run_volume_calculations implicit none private @@ -42,6 +43,9 @@ contains type(Particle) :: p integer(8) :: i_work + ! Volume calculations + if (size(volume_calcs) > 0) call run_volume_calculations() + if (.not. restart_run) call initialize_source() ! Display header diff --git a/src/volume_calc.F90 b/src/volume_calc.F90 new file mode 100644 index 0000000000..cb36f0b7f3 --- /dev/null +++ b/src/volume_calc.F90 @@ -0,0 +1,389 @@ +module volume_calc + + use hdf5, only: HID_T +#ifdef _OPENMP + use omp_lib +#endif + + use constants + use geometry, only: find_cell + use global + use hdf5_interface, only: file_create, file_close, write_attribute, & + create_group, close_group, write_dataset + use output, only: write_message, header + use message_passing + use particle_header, only: Particle + use random_lcg, only: prn, prn_set_stream, set_particle_seed + use stl_vector, only: VectorInt, VectorReal + use timer_header, only: Timer + use volume_header + + implicit none + private + + public :: run_volume_calculations + +contains + +!=============================================================================== +! RUN_VOLUME_CALCULATIONS runs each of the stochastic volume calculations that +! the user has specified and writes results to HDF5 files +!=============================================================================== + + subroutine run_volume_calculations() + integer :: i, j + integer :: n + real(8), allocatable :: volume(:,:) ! volume mean/stdev in each cell + character(MAX_FILE_LEN) :: filename ! filename for HDF5 file + type(Timer) :: time_volume ! timer for volume calculation + type(VectorInt), allocatable :: nuclide_vec(:) ! indices in nuclides array + type(VectorReal), allocatable :: atoms_vec(:) ! total # of atoms of each nuclide + type(VectorReal), allocatable :: uncertainty_vec(:) ! uncertainty of total # of atoms + + if (master) then + call header("STOCHASTIC VOLUME CALCULATION", level=1) + call time_volume % start() + end if + + do i = 1, size(volume_calcs) + n = size(volume_calcs(i) % cell_id) + allocate(nuclide_vec(n)) + allocate(atoms_vec(n), uncertainty_vec(n)) + allocate(volume(2,n)) + + if (master) then + call write_message("Running volume calculation " // trim(to_str(i)) & + // "...") + end if + + call get_volume(volume_calcs(i), volume, nuclide_vec, atoms_vec, & + uncertainty_vec) + + if (master) then + ! Display cell volumes + do j = 1, size(volume_calcs(i) % cell_id) + call write_message(" Cell " // trim(to_str(volume_calcs(i) % & + cell_id(j))) // ": " // trim(to_str(volume(1,j))) // " +/- " // & + trim(to_str(volume(2,j))) // " cm^3") + end do + call write_message("") + + filename = trim(path_output) // 'volume_' // trim(to_str(i)) // '.h5' + call write_volume(volume_calcs(i), filename, volume, nuclide_vec, & + atoms_vec, uncertainty_vec) + end if + + deallocate(nuclide_vec, atoms_vec, uncertainty_vec, volume) + end do + + ! Show elapsed time + if (master) then + call time_volume % stop() + call write_message("Elapsed time: " // trim(to_str(time_volume % & + get_value())) // " s") + end if + end subroutine run_volume_calculations + +!=============================================================================== +! GET_VOLUME stochastically determines the volume of a set of cells along with +! the average number densities of nuclides within the cell +!=============================================================================== + + subroutine get_volume(this, volume, nuclide_vec, atoms_vec, uncertainty_vec) + type(VolumeCalculation), intent(in) :: this + real(8), intent(out) :: volume(:,:) ! volume mean/stdev in each cell + type(VectorInt), intent(out) :: nuclide_vec(:) ! indices in nuclides array + type(VectorReal), intent(out) :: atoms_vec(:) ! total # of atoms of each nuclide + type(VectorReal), intent(out) :: uncertainty_vec(:) ! uncertainty of total # of atoms + + ! Variables that are private to each thread + integer(8) :: i + integer :: j, k + integer :: i_cell ! index in cell_id array + integer :: i_material ! index in materials array + integer :: level ! local coordinate level + logical :: found_cell + type(VectorInt) :: indices(size(this % cell_id)) ! List of material indices + type(VectorInt) :: hits(size(this % cell_id)) ! Number of hits for each material + type(Particle) :: p + + ! Shared variables + integer :: i_start, i_end ! Starting/ending sample for each process + type(VectorInt) :: master_indices(size(this % cell_id)) + type(VectorInt) :: master_hits(size(this % cell_id)) + + ! Variables used outside of parallel region + integer :: i_nuclide ! index in nuclides array + integer :: total_hits ! total hits for a single cell (summed over materials) + integer :: min_samples ! minimum number of samples per process + integer :: remainder ! leftover samples from uneven divide +#ifdef MPI + integer :: m ! index over materials + integer :: n ! number of materials + integer, allocatable :: data(:) ! array used to send number of hits +#endif + real(8) :: f ! fraction of hits + real(8) :: var_f ! variance of fraction of hits + real(8) :: volume_sample ! total volume of sampled region + real(8) :: atoms(2, size(nuclides)) + + ! Divide work over MPI processes + min_samples = this % samples / n_procs + remainder = mod(this % samples, n_procs) + if (rank < remainder) then + i_start = (min_samples + 1)*rank + i_end = i_start + min_samples + else + i_start = (min_samples + 1)*remainder + (rank - remainder)*min_samples + i_end = i_start + min_samples - 1 + end if + + call p % initialize() + +!$omp parallel private(i, j, k, i_cell, i_material, level, found_cell) & +!$omp& firstprivate(p, indices, hits) + + call prn_set_stream(STREAM_VOLUME) + + ! ========================================================================== + ! SAMPLES LOCATIONS AND COUNT HITS + +!$omp do + SAMPLE_LOOP: do i = i_start, i_end + call set_particle_seed(i) + + p % n_coord = 1 + p % coord(1) % xyz(1) = this % lower_left(1) + prn()*(& + this % upper_right(1) - this % lower_left(1)) + p % coord(1) % xyz(2) = this % lower_left(2) + prn()*(& + this % upper_right(2) - this % lower_left(2)) + p % coord(1) % xyz(3) = this % lower_left(3) + prn()*(& + this % upper_right(3) - this % lower_left(3)) + p % coord(1) % uvw(:) = [HALF, HALF, HALF] + + ! If this location is not in the geometry at all, move on to the next + ! block + call find_cell(p, found_cell) + if (.not. found_cell) cycle + + ! Determine if point is within desired cell + LEVEL_LOOP: do level = 1, p % n_coord + CELL_CHECK_LOOP: do i_cell = 1, size(this % cell_id) + if (cells(p % coord(level) % cell) % id == this % cell_id(i_cell)) then + + ! Determine what material this is + i_material = p % material + + ! Check if we've already had a hit in this material and if so, + ! simply add one + do j = 1, indices(i_cell) % size() + if (indices(i_cell) % data(j) == i_material) then + hits(i_cell) % data(j) = hits(i_cell) % data(j) + 1 + cycle CELL_CHECK_LOOP + end if + end do + + ! If we make it here, that means we haven't yet had a hit in this + ! material. Add an entry to both the indices list and the hits list + call indices(i_cell) % push_back(i_material) + call hits(i_cell) % push_back(1) + end if + end do CELL_CHECK_LOOP + end do LEVEL_LOOP + end do SAMPLE_LOOP + !$omp end do + + ! ========================================================================== + ! REDUCE HITS ONTO MASTER THREAD + + ! At this point, each thread has its own pair of index/hits lists and we now + ! need to reduce them. OpenMP is not nearly smart enough to do this on its + ! own, so we have to manually reduce them. + +#ifdef _OPENMP +!$omp do ordered schedule(static) + THREAD_LOOP: do i = 1, omp_get_num_threads() +!$omp ordered + do i_cell = 1, size(this % cell_id) + INDEX_LOOP: do j = 1, indices(i_cell) % size() + ! Check if this material has been added to the master list and if so, + ! accumulate the number of hits + do k = 1, master_indices(i_cell) % size() + if (indices(i_cell) % data(j) == master_indices(i_cell) % data(k)) then + master_hits(i_cell) % data(k) = & + master_hits(i_cell) % data(k) + hits(i_cell) % data(j) + cycle INDEX_LOOP + end if + end do + + ! If we made it here, this means the material hasn't yet been added to + ! the master list, so add an entry to both the master indices and master + ! hits lists + call master_indices(i_cell) % push_back(indices(i_cell) % data(j)) + call master_hits(i_cell) % push_back(hits(i_cell) % data(j)) + end do INDEX_LOOP + end do +!$omp end ordered + end do THREAD_LOOP +!$omp end do +#else + master_indices = indices + master_hits = hits +#endif + + call prn_set_stream(STREAM_TRACKING) +!$omp end parallel + + ! ========================================================================== + ! REDUCE HITS ONTO MASTER PROCESS + + volume_sample = product(this % upper_right - this % lower_left) + + do i_cell = 1, size(this % cell_id) + atoms(:, :) = ZERO + total_hits = 0 + + if (master) then +#ifdef MPI + do j = 1, n_procs - 1 + call MPI_RECV(n, 1, MPI_INTEGER, j, 0, MPI_COMM_WORLD, & + MPI_STATUS_IGNORE, mpi_err) + + allocate(data(2*n)) + call MPI_RECV(data, 2*n, MPI_INTEGER, j, 1, MPI_COMM_WORLD, & + MPI_STATUS_IGNORE, mpi_err) + do k = 0, n - 1 + do m = 1, master_indices(i_cell) % size() + if (data(2*k + 1) == master_indices(i_cell) % data(m)) then + master_hits(i_cell) % data(m) = master_hits(i_cell) % data(m) + & + data(2*k + 2) + end if + end do + end do + deallocate(data) + end do +#endif + + do j = 1, master_indices(i_cell) % size() + total_hits = total_hits + master_hits(i_cell) % data(j) + f = real(master_hits(i_cell) % data(j), 8) / this % samples + var_f = f*(ONE - f) / this % samples + + i_material = master_indices(i_cell) % data(j) + if (i_material == MATERIAL_VOID) cycle + + associate (mat => materials(i_material)) + do k = 1, size(mat % nuclide) + ! Accumulate nuclide density + i_nuclide = mat % nuclide(k) + atoms(1, i_nuclide) = atoms(1, i_nuclide) + & + mat % atom_density(k) * f + atoms(2, i_nuclide) = atoms(2, i_nuclide) + & + mat % atom_density(k)**2 * var_f + end do + end associate + end do + + ! Determine volume + volume(1, i_cell) = real(total_hits, 8) / this % samples * volume_sample + volume(2, i_cell) = sqrt(volume(1, i_cell) * (volume_sample - & + volume(1, i_cell)) / this % samples) + + ! Determine total number of atoms. At this point, we have values in + ! atoms/b-cm. To get to atoms we multiple by 10^24 V. + do j = 1, size(atoms, 2) + atoms(1, j) = 1.0e24_8 * volume_sample * atoms(1, j) + atoms(2, j) = 1.0e24_8 * volume_sample * sqrt(atoms(2, j)) + end do + + ! Convert full arrays to vectors + do j = 1, size(nuclides) + if (atoms(1, j) > ZERO) then + call nuclide_vec(i_cell) % push_back(j) + call atoms_vec(i_cell) % push_back(atoms(1, j)) + call uncertainty_vec(i_cell) % push_back(atoms(2, j)) + end if + end do + + else +#ifdef MPI + n = master_indices(i_cell) % size() + allocate(data(2*n)) + do k = 0, n - 1 + data(2*k + 1) = master_indices(i_cell) % data(k + 1) + data(2*k + 2) = master_hits(i_cell) % data(k + 1) + end do + + call MPI_SEND(n, 1, MPI_INTEGER, 0, 0, MPI_COMM_WORLD, mpi_err) + call MPI_SEND(data, 2*n, MPI_INTEGER, 0, 1, MPI_COMM_WORLD, mpi_err) + deallocate(data) +#endif + end if + end do + + end subroutine get_volume + +!=============================================================================== +! WRITE_VOLUME writes the results of a single stochastic volume calculation to +! an HDF5 file +!=============================================================================== + + subroutine write_volume(this, filename, volume, nuclide_vec, atoms_vec, & + uncertainty_vec) + type(VolumeCalculation), intent(in) :: this + character(*), intent(in) :: filename ! filename for HDF5 file + real(8), intent(in) :: volume(:,:) ! volume mean/stdev in each cell + type(VectorInt), intent(in) :: nuclide_vec(:) ! indices in nuclides array + type(VectorReal), intent(in) :: atoms_vec(:) ! total # of atoms of each nuclide + type(VectorReal), intent(in) :: uncertainty_vec(:) ! uncertainty of total # of atoms + + integer :: i, j + integer :: n + integer(HID_T) :: file_id + integer(HID_T) :: group_id + real(8), allocatable :: atom_data(:,:) ! mean/stdev of total # of atoms for + ! each nuclide + character(MAX_WORD_LEN), allocatable :: nucnames(:) ! names of nuclides + + ! Create HDF5 file + file_id = file_create(filename) + + ! Write basic metadata + call write_attribute(file_id, "samples", this % samples) + call write_attribute(file_id, "lower_left", this % lower_left) + call write_attribute(file_id, "upper_right", this % upper_right) + + do i = 1, size(this % cell_id) + group_id = create_group(file_id, "cell_" // trim(to_str(& + this % cell_id(i)))) + + ! Write volume for cell + call write_dataset(group_id, "volume", volume(:, i)) + + ! Create array of nuclide names from the vector + n = nuclide_vec(i) % size() + if (n > 0) then + allocate(nucnames(n)) + do j = 1, n + nucnames(j) = nuclides(nuclide_vec(i) % data(j)) % name + end do + + ! Create array of total # of atoms with uncertainty for each nuclide + allocate(atom_data(2, n)) + atom_data(1, :) = atoms_vec(i) % data(1:n) + atom_data(2, :) = uncertainty_vec(i) % data(1:n) + + ! Write results + call write_dataset(group_id, "nuclides", nucnames) + call write_dataset(group_id, "atoms", atom_data) + + deallocate(nucnames) + deallocate(atom_data) + end if + + call close_group(group_id) + end do + call file_close(file_id) + end subroutine write_volume + +end module volume_calc diff --git a/src/volume_header.F90 b/src/volume_header.F90 new file mode 100644 index 0000000000..3a34f1231a --- /dev/null +++ b/src/volume_header.F90 @@ -0,0 +1,42 @@ +module volume_header + + use error, only: fatal_error + use xml_interface + + implicit none + + type VolumeCalculation + integer, allocatable :: cell_id(:) + real(8) :: lower_left(3) + real(8) :: upper_right(3) + integer :: samples + contains + procedure :: from_xml => volume_from_xml + end type VolumeCalculation + +contains + + subroutine volume_from_xml(this, node_vol) + class(VolumeCalculation), intent(out) :: this + type(Node), pointer :: node_vol + + integer :: num_cells + + ! Read cell IDs + if (check_for_node(node_vol, "cells")) then + num_cells = get_arraysize_integer(node_vol, "cells") + else + call fatal_error("Must specify at least one cell for a volume calculation") + end if + allocate(this % cell_id(num_cells)) + call get_node_array(node_vol, "cells", this % cell_id) + + ! Read lower-left and upper-right bounding coordinates + call get_node_array(node_vol, "lower_left", this % lower_left) + call get_node_array(node_vol, "upper_right", this % upper_right) + + ! Read number of samples + call get_node_value(node_vol, "samples", this % samples) + end subroutine volume_from_xml + +end module volume_header From cac6ac6f665a3c3d2d72bb1bd87c813064a6b87a Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 28 Jul 2016 12:35:15 -0500 Subject: [PATCH 02/16] Add VolumeCalculation object. Update settings.xml RELAX NG schema --- openmc/__init__.py | 5 +- openmc/settings.py | 204 +++++++++++++++++++++------------------ openmc/volume.py | 204 +++++++++++++++++++++++++++++++++++++++ src/relaxng/settings.rnc | 11 +++ src/relaxng/settings.rng | 62 ++++++++++++ 5 files changed, 392 insertions(+), 94 deletions(-) create mode 100644 openmc/volume.py diff --git a/openmc/__init__.py b/openmc/__init__.py index 557e13039f..026ccce114 100644 --- a/openmc/__init__.py +++ b/openmc/__init__.py @@ -6,6 +6,9 @@ from openmc.nuclide import * from openmc.macroscopic import * from openmc.material import * from openmc.plots import * +from openmc.region import * +from openmc.volume import * +from openmc.source import * from openmc.settings import * from openmc.surface import * from openmc.universe import * @@ -18,8 +21,6 @@ from openmc.cmfd import * from openmc.executor import * from openmc.statepoint import * from openmc.summary import * -from openmc.region import * -from openmc.source import * from openmc.particle_restart import * try: diff --git a/openmc/settings.py b/openmc/settings.py index b9a93bd114..918f97c7da 100644 --- a/openmc/settings.py +++ b/openmc/settings.py @@ -1,4 +1,4 @@ -from collections import Iterable +from collections import Iterable, MutableSequence from numbers import Real, Integral import warnings from xml.etree import ElementTree as ET @@ -7,10 +7,8 @@ import sys import numpy as np from openmc.clean_xml import clean_xml_indentation -from openmc.checkvalue import (check_type, check_length, check_value, - check_greater_than, check_less_than) -from openmc import Nuclide -from openmc.source import Source +import openmc.checkvalue as cv +from openmc import Nuclide, VolumeCalculation, Source if sys.version_info[0] >= 3: basestring = str @@ -137,6 +135,8 @@ class Settings(object): resonance cross sections. resonance_scattering : ResonanceScattering or iterable of ResonanceScattering The elastic scattering model to use for resonant isotopes + volume_calculations : VolumeCalculation or iterable of VolumeCalculation + Stochastic volume calculation specifications """ @@ -220,6 +220,8 @@ class Settings(object): self._multipole_active = None self._resonance_scattering = None + self._volume_calculations = cv.CheckedList(VolumeCalculation, + 'volume calculations') @property def run_mode(self): @@ -421,6 +423,10 @@ class Settings(object): def resonance_scattering(self): return self._resonance_scattering + @property + def volume_calculations(self): + return self._volume_calculations + @run_mode.setter def run_mode(self, run_mode): if run_mode not in ['eigenvalue', 'fixed source']: @@ -431,26 +437,26 @@ class Settings(object): @batches.setter def batches(self, batches): - check_type('batches', batches, Integral) - check_greater_than('batches', batches, 0) + cv.check_type('batches', batches, Integral) + cv.check_greater_than('batches', batches, 0) self._batches = batches @generations_per_batch.setter def generations_per_batch(self, generations_per_batch): - check_type('generations per patch', generations_per_batch, Integral) - check_greater_than('generations per batch', generations_per_batch, 0) + cv.check_type('generations per patch', generations_per_batch, Integral) + cv.check_greater_than('generations per batch', generations_per_batch, 0) self._generations_per_batch = generations_per_batch @inactive.setter def inactive(self, inactive): - check_type('inactive batches', inactive, Integral) - check_greater_than('inactive batches', inactive, 0, True) + cv.check_type('inactive batches', inactive, Integral) + cv.check_greater_than('inactive batches', inactive, 0, True) self._inactive = inactive @particles.setter def particles(self, particles): - check_type('particles', particles, Integral) - check_greater_than('particles', particles, 0) + cv.check_type('particles', particles, Integral) + cv.check_greater_than('particles', particles, 0) self._particles = particles @keff_trigger.setter @@ -484,14 +490,14 @@ class Settings(object): @energy_mode.setter def energy_mode(self, energy_mode): - check_value('energy mode', energy_mode, + cv.check_value('energy mode', energy_mode, ['continuous-energy', 'multi-group']) self._energy_mode = energy_mode @max_order.setter def max_order(self, max_order): - check_type('maximum scattering order', max_order, Integral) - check_greater_than('maximum scattering order', max_order, 0, True) + cv.check_type('maximum scattering order', max_order, Integral) + cv.check_greater_than('maximum scattering order', max_order, 0, True) self._max_order = max_order @source.setter @@ -499,7 +505,7 @@ class Settings(object): if isinstance(source, Source): self._source = [source,] else: - check_type('source distribution', source, Iterable, Source) + cv.check_type('source distribution', source, Iterable, Source) self._source = source @output.setter @@ -525,197 +531,197 @@ class Settings(object): @output_path.setter def output_path(self, output_path): - check_type('output path', output_path, basestring) + cv.check_type('output path', output_path, basestring) self._output_path = output_path @verbosity.setter def verbosity(self, verbosity): - check_type('verbosity', verbosity, Integral) - check_greater_than('verbosity', verbosity, 1, True) - check_less_than('verbosity', verbosity, 10, True) + cv.check_type('verbosity', verbosity, Integral) + cv.check_greater_than('verbosity', verbosity, 1, True) + cv.check_less_than('verbosity', verbosity, 10, True) self._verbosity = verbosity @statepoint_batches.setter def statepoint_batches(self, batches): - check_type('statepoint batches', batches, Iterable, Integral) + cv.check_type('statepoint batches', batches, Iterable, Integral) for batch in batches: - check_greater_than('statepoint batch', batch, 0) + cv.check_greater_than('statepoint batch', batch, 0) self._statepoint_batches = batches @statepoint_interval.setter def statepoint_interval(self, interval): - check_type('statepoint interval', interval, Integral) + cv.check_type('statepoint interval', interval, Integral) self._statepoint_interval = interval @sourcepoint_batches.setter def sourcepoint_batches(self, batches): - check_type('sourcepoint batches', batches, Iterable, Integral) + cv.check_type('sourcepoint batches', batches, Iterable, Integral) for batch in batches: - check_greater_than('sourcepoint batch', batch, 0) + cv.check_greater_than('sourcepoint batch', batch, 0) self._sourcepoint_batches = batches @sourcepoint_interval.setter def sourcepoint_interval(self, interval): - check_type('sourcepoint interval', interval, Integral) + cv.check_type('sourcepoint interval', interval, Integral) self._sourcepoint_interval = interval @sourcepoint_separate.setter def sourcepoint_separate(self, source_separate): - check_type('sourcepoint separate', source_separate, bool) + cv.check_type('sourcepoint separate', source_separate, bool) self._sourcepoint_separate = source_separate @sourcepoint_write.setter def sourcepoint_write(self, source_write): - check_type('sourcepoint write', source_write, bool) + cv.check_type('sourcepoint write', source_write, bool) self._sourcepoint_write = source_write @sourcepoint_overwrite.setter def sourcepoint_overwrite(self, source_overwrite): - check_type('sourcepoint overwrite', source_overwrite, bool) + cv.check_type('sourcepoint overwrite', source_overwrite, bool) self._sourcepoint_overwrite = source_overwrite @confidence_intervals.setter def confidence_intervals(self, confidence_intervals): - check_type('confidence interval', confidence_intervals, bool) + cv.check_type('confidence interval', confidence_intervals, bool) self._confidence_intervals = confidence_intervals @cross_sections.setter def cross_sections(self, cross_sections): - check_type('cross sections', cross_sections, basestring) + cv.check_type('cross sections', cross_sections, basestring) self._cross_sections = cross_sections @multipole_library.setter def multipole_library(self, multipole_library): - check_type('cross sections', multipole_library, basestring) + cv.check_type('cross sections', multipole_library, basestring) self._multipole_library = multipole_library @energy_grid.setter def energy_grid(self, energy_grid): - check_value('energy grid', energy_grid, + cv.check_value('energy grid', energy_grid, ['nuclide', 'logarithm', 'material-union']) self._energy_grid = energy_grid @ptables.setter def ptables(self, ptables): - check_type('probability tables', ptables, bool) + cv.check_type('probability tables', ptables, bool) self._ptables = ptables @run_cmfd.setter def run_cmfd(self, run_cmfd): - check_type('run_cmfd', run_cmfd, bool) + cv.check_type('run_cmfd', run_cmfd, bool) self._run_cmfd = run_cmfd @seed.setter def seed(self, seed): - check_type('random number generator seed', seed, Integral) - check_greater_than('random number generator seed', seed, 0) + cv.check_type('random number generator seed', seed, Integral) + cv.check_greater_than('random number generator seed', seed, 0) self._seed = seed @survival_biasing.setter def survival_biasing(self, survival_biasing): - check_type('survival biasing', survival_biasing, bool) + cv.check_type('survival biasing', survival_biasing, bool) self._survival_biasing = survival_biasing @weight.setter def weight(self, weight): - check_type('weight cutoff', weight, Real) - check_greater_than('weight cutoff', weight, 0.0) + cv.check_type('weight cutoff', weight, Real) + cv.check_greater_than('weight cutoff', weight, 0.0) self._weight = weight @weight_avg.setter def weight_avg(self, weight_avg): - check_type('average survival weight', weight_avg, Real) - check_greater_than('average survival weight', weight_avg, 0.0) + cv.check_type('average survival weight', weight_avg, Real) + cv.check_greater_than('average survival weight', weight_avg, 0.0) self._weight_avg = weight_avg @entropy_dimension.setter def entropy_dimension(self, dimension): - check_type('entropy mesh dimension', dimension, Iterable, Integral) - check_length('entropy mesh dimension', dimension, 3) + cv.check_type('entropy mesh dimension', dimension, Iterable, Integral) + cv.check_length('entropy mesh dimension', dimension, 3) self._entropy_dimension = dimension @entropy_lower_left.setter def entropy_lower_left(self, lower_left): - check_type('entropy mesh lower left corner', lower_left, + cv.check_type('entropy mesh lower left corner', lower_left, Iterable, Real) - check_length('entropy mesh lower left corner', lower_left, 3) + cv.check_length('entropy mesh lower left corner', lower_left, 3) self._entropy_lower_left = lower_left @entropy_upper_right.setter def entropy_upper_right(self, upper_right): - check_type('entropy mesh upper right corner', upper_right, + cv.check_type('entropy mesh upper right corner', upper_right, Iterable, Real) - check_length('entropy mesh upper right corner', upper_right, 3) + cv.check_length('entropy mesh upper right corner', upper_right, 3) self._entropy_upper_right = upper_right @trigger_active.setter def trigger_active(self, trigger_active): - check_type('trigger active', trigger_active, bool) + cv.check_type('trigger active', trigger_active, bool) self._trigger_active = trigger_active @trigger_max_batches.setter def trigger_max_batches(self, trigger_max_batches): - check_type('trigger maximum batches', trigger_max_batches, Integral) - check_greater_than('trigger maximum batches', trigger_max_batches, 0) + cv.check_type('trigger maximum batches', trigger_max_batches, Integral) + cv.check_greater_than('trigger maximum batches', trigger_max_batches, 0) self._trigger_max_batches = trigger_max_batches @trigger_batch_interval.setter def trigger_batch_interval(self, trigger_batch_interval): - check_type('trigger batch interval', trigger_batch_interval, Integral) - check_greater_than('trigger batch interval', trigger_batch_interval, 0) + cv.check_type('trigger batch interval', trigger_batch_interval, Integral) + cv.check_greater_than('trigger batch interval', trigger_batch_interval, 0) self._trigger_batch_interval = trigger_batch_interval @no_reduce.setter def no_reduce(self, no_reduce): - check_type('no reduction option', no_reduce, bool) + cv.check_type('no reduction option', no_reduce, bool) self._no_reduce = no_reduce @threads.setter def threads(self, threads): - check_type('number of threads', threads, Integral) - check_greater_than('number of threads', threads, 0) + cv.check_type('number of threads', threads, Integral) + cv.check_greater_than('number of threads', threads, 0) self._threads = threads @trace.setter def trace(self, trace): - check_type('trace', trace, Iterable, Integral) - check_length('trace', trace, 3) - check_greater_than('trace batch', trace[0], 0) - check_greater_than('trace generation', trace[1], 0) - check_greater_than('trace particle', trace[2], 0) + cv.check_type('trace', trace, Iterable, Integral) + cv.check_length('trace', trace, 3) + cv.check_greater_than('trace batch', trace[0], 0) + cv.check_greater_than('trace generation', trace[1], 0) + cv.check_greater_than('trace particle', trace[2], 0) self._trace = trace @track.setter def track(self, track): - check_type('track', track, Iterable, Integral) + cv.check_type('track', track, Iterable, Integral) if len(track) % 3 != 0: msg = 'Unable to set the track to "{0}" since its length is ' \ 'not a multiple of 3'.format(track) raise ValueError(msg) for t in zip(track[::3], track[1::3], track[2::3]): - check_greater_than('track batch', t[0], 0) - check_greater_than('track generation', t[0], 0) - check_greater_than('track particle', t[0], 0) + cv.check_greater_than('track batch', t[0], 0) + cv.check_greater_than('track generation', t[0], 0) + cv.check_greater_than('track particle', t[0], 0) self._track = track @ufs_dimension.setter def ufs_dimension(self, dimension): - check_type('UFS mesh dimension', dimension, Iterable, Integral) - check_length('UFS mesh dimension', dimension, 3) + cv.check_type('UFS mesh dimension', dimension, Iterable, Integral) + cv.check_length('UFS mesh dimension', dimension, 3) for dim in dimension: - check_greater_than('UFS mesh dimension', dim, 1, True) + cv.check_greater_than('UFS mesh dimension', dim, 1, True) self._ufs_dimension = dimension @ufs_lower_left.setter def ufs_lower_left(self, lower_left): - check_type('UFS mesh lower left corner', lower_left, Iterable, Real) - check_length('UFS mesh lower left corner', lower_left, 3) + cv.check_type('UFS mesh lower left corner', lower_left, Iterable, Real) + cv.check_length('UFS mesh lower left corner', lower_left, 3) self._ufs_lower_left = lower_left @ufs_upper_right.setter def ufs_upper_right(self, upper_right): - check_type('UFS mesh upper right corner', upper_right, Iterable, Real) - check_length('UFS mesh upper right corner', upper_right, 3) + cv.check_type('UFS mesh upper right corner', upper_right, Iterable, Real) + cv.check_length('UFS mesh upper right corner', upper_right, 3) self._ufs_upper_right = upper_right @dd_mesh_dimension.setter @@ -724,8 +730,8 @@ class Settings(object): warnings.warn('This feature is not yet implemented in a release ' 'version of openmc') - check_type('DD mesh dimension', dimension, Iterable, Integral) - check_length('DD mesh dimension', dimension, 3) + cv.check_type('DD mesh dimension', dimension, Iterable, Integral) + cv.check_length('DD mesh dimension', dimension, 3) self._dd_mesh_dimension = dimension @@ -735,8 +741,8 @@ class Settings(object): warnings.warn('This feature is not yet implemented in a release ' 'version of openmc') - check_type('DD mesh lower left corner', lower_left, Iterable, Real) - check_length('DD mesh lower left corner', lower_left, 3) + cv.check_type('DD mesh lower left corner', lower_left, Iterable, Real) + cv.check_length('DD mesh lower left corner', lower_left, 3) self._dd_mesh_lower_left = lower_left @@ -746,8 +752,8 @@ class Settings(object): warnings.warn('This feature is not yet implemented in a release ' 'version of openmc') - check_type('DD mesh upper right corner', upper_right, Iterable, Real) - check_length('DD mesh upper right corner', upper_right, 3) + cv.check_type('DD mesh upper right corner', upper_right, Iterable, Real) + cv.check_length('DD mesh upper right corner', upper_right, 3) self._dd_mesh_upper_right = upper_right @@ -757,7 +763,7 @@ class Settings(object): warnings.warn('This feature is not yet implemented in a release ' 'version of openmc') - check_type('DD nodemap', nodemap, Iterable) + cv.check_type('DD nodemap', nodemap, Iterable) nodemap = np.array(nodemap).flatten() @@ -782,7 +788,7 @@ class Settings(object): warnings.warn('This feature is not yet implemented in a release ' 'version of openmc') - check_type('DD allow leakage', allow, bool) + cv.check_type('DD allow leakage', allow, bool) self._dd_allow_leakage = allow @@ -793,25 +799,34 @@ class Settings(object): warnings.warn('This feature is not yet implemented in a release ' 'version of openmc') - check_type('DD count interactions', interactions, bool) + cv.check_type('DD count interactions', interactions, bool) self._dd_count_interactions = interactions @use_windowed_multipole.setter def use_windowed_multipole(self, active): - check_type('use_windowed_multipole', active, bool) + cv.check_type('use_windowed_multipole', active, bool) self._multipole_active = active @resonance_scattering.setter def resonance_scattering(self, res): if isinstance(res, Iterable): - check_type('resonance_scattering', res, Iterable, + cv.check_type('resonance_scattering', res, Iterable, ResonanceScattering) self._resonance_scattering = res else: - check_type('resonance_scattering', res, ResonanceScattering) + cv.check_type('resonance_scattering', res, ResonanceScattering) self._resonance_scattering = [res] + @volume_calculations.setter + def volume_calculations(self, vol_calcs): + name = 'stochastic volume calculations' + if not isinstance(vol_calcs, MutableSequence): + vol_calcs = [vol_calcs] + cv.check_type(name, vol_calcs, MutableSequence) + self._volume_calculations = cv.CheckedList(VolumeCalculation, + name, vol_calcs) + def _create_run_mode_subelement(self): if self.run_mode == 'eigenvalue': @@ -873,6 +888,10 @@ class Settings(object): for source in self.source: self._settings_file.append(source.to_xml()) + def _create_volume_calcs_subelement(self): + for calc in self.volume_calculations: + self._settings_file.append(calc.to_xml()) + def _create_output_subelement(self): if self._output is not None: element = ET.SubElement(self._settings_file, "output") @@ -1154,6 +1173,7 @@ class Settings(object): self._create_dd_subelement() self._create_use_multipole_subelement() self._create_resonance_scattering_element() + self._create_volume_calcs_subelement() # Clean the indentation in the file to be user-readable clean_xml_indentation(self._settings_file) @@ -1216,29 +1236,29 @@ class ResonanceScattering(object): @nuclide.setter def nuclide(self, nuc): - check_type('nuclide', nuc, Nuclide) + cv.check_type('nuclide', nuc, Nuclide) self._nuclide = nuc @nuclide_0K.setter def nuclide_0K(self, nuc): - check_type('nuclide_0K', nuc, Nuclide) + cv.check_type('nuclide_0K', nuc, Nuclide) self._nuclide_0K = nuc @method.setter def method(self, m): - check_value('method', m, ('ARES', 'CXS', 'DBRC', 'WCM')) + cv.check_value('method', m, ('ARES', 'CXS', 'DBRC', 'WCM')) self._method = m @E_min.setter def E_min(self, E): - check_type('E_min', E, Real) - check_greater_than('E_min', E, 0, True) + cv.check_type('E_min', E, Real) + cv.check_greater_than('E_min', E, 0, True) self._E_min = E @E_max.setter def E_max(self, E): - check_type('E_max', E, Real) - check_greater_than('E_max', E, 0, True) + cv.check_type('E_max', E, Real) + cv.check_greater_than('E_max', E, 0, True) self._E_max = E def create_xml_subelement(self, xml_element): diff --git a/openmc/volume.py b/openmc/volume.py new file mode 100644 index 0000000000..511af62ed3 --- /dev/null +++ b/openmc/volume.py @@ -0,0 +1,204 @@ +from collections import Iterable, Mapping +from numbers import Real, Integral +from xml.etree import ElementTree as ET + +import numpy as np +import pandas as pd + +from openmc import Cell, Union +import openmc.checkvalue as cv + + +class VolumeCalculation(object): + """Stochastic volume calculation specifications and results. + + Parameters + ---------- + cells : Iterable of Cell + Cells to find volumes of + samples : int + Number of samples used to generate volume estimates + lower_left : Iterable of float + Lower-left coordinates of bounding box used to sample points. If this + argument is not supplied, an attempt is made to automatically determine + a bounding box. + upper_right : Iterable of float + Upper-right coordinates of bounding box used to sample points. If this + argument is not supplied, an attempt is made to automatically determine + a bounding box. + + Attributes + ---------- + cell_ids : Iterable of int + IDs of cells to find volumes of + samples : int + Number of samples used to generate volume estimates + lower_left : Iterable of float + Lower-left coordinates of bounding box used to sample points + upper_right : Iterable of float + Upper-right coordinates of bounding box used to sample points + results : dict + Dictionary whose keys are unique IDs of cells and values are + dictionaries with calculated volumes and total number of atoms for each + nuclide present in the cell. + volumes : dict + Dictionary whose keys are unique IDs of cells and values are the + estimated volumes + atoms_dataframe : pandas.DataFrame + DataFrame showing the estimated number of atoms for each nuclide present + in each cell specified. + + """ + def __init__(self, cells, samples, lower_left=None, + upper_right=None): + self._results = None + + cv.check_type('cells', cells, Iterable, Cell) + self.cell_ids = [c.id for c in cells] + self.samples = samples + + if lower_left is not None: + self.lower_left = lower_left + if upper_right is None: + raise ValueError('Both lower-left and upper-right coordinates ' + 'should be specified') + self.upper_right = upper_right + else: + ll, ur = Union(*[c.region for c in cells]).bounding_box + if np.any(np.isinf(ll)) or np.any(np.isinf(ur)): + raise ValueError('Could not automatically determine bounding box ' + 'for stochastic volume calculation.') + else: + self.lower_left = ll + self.upper_right = ur + + @property + def cell_ids(self): + return self._cell_ids + + @property + def samples(self): + return self._samples + + @property + def lower_left(self): + return self._lower_left + + @property + def upper_right(self): + return self._upper_right + + @property + def results(self): + return self._results + + @property + def volumes(self): + return {uid: results['volume'] for uid, results in self.results.items()} + + @property + def atoms_dataframe(self): + items = [] + columns = ['Cell', 'Nuclide', 'Atoms', 'Uncertainty'] + for cell_id, results in self.results.items(): + for name, atoms in results['atoms']: + items.append((cell_id, name, atoms[0], atoms[1])) + + return pd.DataFrame.from_records(items, columns=columns) + + @cell_ids.setter + def cell_ids(self, cell_ids): + cv.check_type('cell IDs', cell_ids, Iterable, Real) + self._cell_ids = cell_ids + + @samples.setter + def samples(self, samples): + cv.check_type('number of samples', samples, Integral) + cv.check_greater_than('number of samples', samples, 0) + self._samples = samples + + @lower_left.setter + def lower_left(self, lower_left): + name = 'lower-left bounding box coordinates', + cv.check_type(name, lower_left, Iterable, Real) + cv.check_length(name, lower_left, 3) + self._lower_left = lower_left + + @upper_right.setter + def upper_right(self, upper_right): + name = 'upper-right bounding box coordinates' + cv.check_type(name, upper_right, Iterable, Real) + cv.check_length(name, upper_right, 3) + self._upper_right = upper_right + + @results.setter + def results(self, results): + cv.check_type('results', results, Mapping) + self._results = results + + @classmethod + def from_hdf5(cls, filename): + """Load stochastic volume calculation results from HDF5 file. + + Parameters + ---------- + filename : str + Path to volume.h5 file + + Returns + ------- + openmc.VolumeCalculation + Results of the stochastic volume calculation + + """ + import h5py + + with h5py.File(filename, 'r') as f: + samples = f.attrs['samples'] + lower_left = f.attrs['lower_left'] + upper_right = f.attrs['upper_right'] + + results = {} + cell_ids = [] + for obj_name in f: + if obj_name.startswith('cell_'): + cell_id = int(obj_name[5:]) + cell_ids.append(cell_id) + group = f[obj_name] + volume = tuple(group['volume'].value) + nucnames = group['nuclides'].value + atoms = group['atoms'].value + + atom_list = [] + for name_i, atoms_i in zip(nucnames, atoms): + atom_list.append((name_i.decode(), tuple(atoms_i))) + results[cell_id] = {'volume': volume, 'atoms': atom_list} + + # Instantiate some throw-away cells that are used by the constructor to + # assign IDs + cells = [Cell(uid) for uid in cell_ids] + + # Instantiate the class and assign results + vol = cls(cells, samples, lower_left, upper_right) + vol.results = results + return vol + + def to_xml(self): + """Return XML representation of the volume calculation + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing volume calculation data + + """ + element = ET.Element("volume_calc") + cell_elem = ET.SubElement(element, "cells") + cell_elem.text = ' '.join(str(uid) for uid in self.cell_ids) + samples_elem = ET.SubElement(element, "samples") + samples_elem.text = str(self.samples) + ll_elem = ET.SubElement(element, "lower_left") + ll_elem.text = ' '.join(str(x) for x in self.lower_left) + ur_elem = ET.SubElement(element, "upper_right") + ur_elem.text = ' '.join(str(x) for x in self.upper_right) + return element diff --git a/src/relaxng/settings.rnc b/src/relaxng/settings.rnc index 46950c63fb..78a32171b9 100644 --- a/src/relaxng/settings.rnc +++ b/src/relaxng/settings.rnc @@ -142,6 +142,17 @@ element settings { element verbosity { xsd:positiveInteger }? & + element volume_calc { + (element cells { list { xsd:positiveInteger+ } } | + attribute cells { list { xsd:positiveInteger+ } }) & + (element samples { xsd:positiveInteger } | + attribute samples { xsd:positiveInteger }) & + (element lower_left { list { xsd:double+ } } | + attribute lower_left { list { xsd:double+ } }) & + (element upper_right { list { xsd:double+ } } | + attribute upper_right { list { xsd:double+ } }) + }+ & + element uniform_fs{ (element dimension { list { xsd:positiveInteger+ } } | attribute dimension { list { xsd:positiveInteger+ } }) & diff --git a/src/relaxng/settings.rng b/src/relaxng/settings.rng index 0b50f79699..64fe42239d 100644 --- a/src/relaxng/settings.rng +++ b/src/relaxng/settings.rng @@ -625,6 +625,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 66d772da7997008832711db8ecfe8b58989a8ea2 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 28 Jul 2016 13:52:42 -0500 Subject: [PATCH 03/16] Refactor settings to use more CheckedLists. Rename all to_xml methods to_xml_element --- openmc/settings.py | 79 +++++++++++++++++------------------ openmc/source.py | 8 ++-- openmc/stats/multivariate.py | 74 ++++++++++++++++++++++++++------ openmc/stats/univariate.py | 81 ++++++++++++++++++++++++++++++++---- openmc/volume.py | 2 +- 5 files changed, 177 insertions(+), 67 deletions(-) diff --git a/openmc/settings.py b/openmc/settings.py index 918f97c7da..eb56381b07 100644 --- a/openmc/settings.py +++ b/openmc/settings.py @@ -155,7 +155,7 @@ class Settings(object): self._max_order = None # Source subelement - self._source = None + self._source = cv.CheckedList(Source, 'source distributions') self._confidence_intervals = None self._cross_sections = None @@ -216,12 +216,12 @@ class Settings(object): self._settings_file = ET.Element("settings") self._run_mode_subelement = None - self._source_element = None self._multipole_active = None - self._resonance_scattering = None - self._volume_calculations = cv.CheckedList(VolumeCalculation, - 'volume calculations') + self._resonance_scattering = cv.CheckedList( + ResonanceScattering, 'resonance scattering models') + self._volume_calculations = cv.CheckedList( + VolumeCalculation, 'volume calculations') @property def run_mode(self): @@ -502,11 +502,9 @@ class Settings(object): @source.setter def source(self, source): - if isinstance(source, Source): - self._source = [source,] - else: - cv.check_type('source distribution', source, Iterable, Source) - self._source = source + if not isinstance(source, MutableSequence): + source = [source] + self._source = cv.CheckedList(Source, 'source distributions', source) @output.setter def output(self, output): @@ -810,22 +808,17 @@ class Settings(object): @resonance_scattering.setter def resonance_scattering(self, res): - if isinstance(res, Iterable): - cv.check_type('resonance_scattering', res, Iterable, - ResonanceScattering) - self._resonance_scattering = res - else: - cv.check_type('resonance_scattering', res, ResonanceScattering) - self._resonance_scattering = [res] + if not isinstance(res, MutableSequence): + res = [res] + self._resonance_scattering = cv.CheckedList( + ResonanceScattering, 'resonance scattering models', res) @volume_calculations.setter def volume_calculations(self, vol_calcs): - name = 'stochastic volume calculations' if not isinstance(vol_calcs, MutableSequence): vol_calcs = [vol_calcs] - cv.check_type(name, vol_calcs, MutableSequence) - self._volume_calculations = cv.CheckedList(VolumeCalculation, - name, vol_calcs) + self._volume_calculations = cv.CheckedList( + VolumeCalculation, 'stochastic volume calculations', vol_calcs) def _create_run_mode_subelement(self): @@ -884,13 +877,12 @@ class Settings(object): element.text = str(self._max_order) def _create_source_subelement(self): - if self.source is not None: - for source in self.source: - self._settings_file.append(source.to_xml()) + for source in self.source: + self._settings_file.append(source.to_xml_element()) def _create_volume_calcs_subelement(self): for calc in self.volume_calculations: - self._settings_file.append(calc.to_xml()) + self._settings_file.append(calc.to_xml_element()) def _create_output_subelement(self): if self._output is not None: @@ -1121,18 +1113,15 @@ class Settings(object): "use_windowed_multipole") element.text = str(self._multipole_active) - def _create_resonance_scattering_element(self): - if self.resonance_scattering is None: - return - - element = ET.SubElement(self._settings_file, "resonance_scattering") - - for r in self.resonance_scattering: - if r.nuclide.name != r.nuclide_0K.name: - raise ValueError("The nuclide and nuclide_0K attributes of " - "a ResonantScattering object must have " - "identical names.") - r.create_xml_subelement(element) + def _create_resonance_scattering_subelement(self): + if len(self.resonance_scattering) > 0: + elem = ET.SubElement(self._settings_file, 'resonance_scattering') + for r in self.resonance_scattering: + if r.nuclide.name != r.nuclide_0K.name: + raise ValueError("The nuclide and nuclide_0K attributes of " + "a ResonantScattering object must have " + "identical names.") + elem.append(r.to_xml_element()) def export_to_xml(self): """Create a settings.xml file that can be used for a simulation. @@ -1144,7 +1133,6 @@ class Settings(object): self._source_subelement = None self._trigger_subelement = None self._run_mode_subelement = None - self._source_element = None self._create_run_mode_subelement() self._create_source_subelement() @@ -1172,7 +1160,7 @@ class Settings(object): self._create_ufs_subelement() self._create_dd_subelement() self._create_use_multipole_subelement() - self._create_resonance_scattering_element() + self._create_resonance_scattering_subelement() self._create_volume_calcs_subelement() # Clean the indentation in the file to be user-readable @@ -1261,8 +1249,16 @@ class ResonanceScattering(object): cv.check_greater_than('E_max', E, 0, True) self._E_max = E - def create_xml_subelement(self, xml_element): - scatterer = ET.SubElement(xml_element, "scatterer") + def to_xml_element(self): + """Return XML representation of the resonance scattering model + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing resonance scattering model + + """ + scatterer = ET.Element("scatterer") subelement = ET.SubElement(scatterer, 'nuclide') subelement.text = self.nuclide.name if self.method is not None: @@ -1278,3 +1274,4 @@ class ResonanceScattering(object): if self.E_max is not None: subelement = ET.SubElement(scatterer, 'E_max') subelement.text = str(self.E_max) + return scatterer diff --git a/openmc/source.py b/openmc/source.py index 7e8a68accf..ee32cd0f4b 100644 --- a/openmc/source.py +++ b/openmc/source.py @@ -103,7 +103,7 @@ class Source(object): cv.check_greater_than('source strength', strength, 0.0, True) self._strength = strength - def to_xml(self): + def to_xml_element(self): """Return XML representation of the source Returns @@ -117,9 +117,9 @@ class Source(object): if self.file is not None: element.set("file", self.file) if self.space is not None: - element.append(self.space.to_xml()) + element.append(self.space.to_xml_element()) if self.angle is not None: - element.append(self.angle.to_xml()) + element.append(self.angle.to_xml_element()) if self.energy is not None: - element.append(self.energy.to_xml('energy')) + element.append(self.energy.to_xml_element('energy')) return element diff --git a/openmc/stats/multivariate.py b/openmc/stats/multivariate.py index e4eadd7aa4..e49a94ee19 100644 --- a/openmc/stats/multivariate.py +++ b/openmc/stats/multivariate.py @@ -50,7 +50,7 @@ class UnitSphere(object): self._reference_uvw = uvw/np.linalg.norm(uvw) @abstractmethod - def to_xml(self): + def to_xml_element(self): return '' @@ -109,13 +109,21 @@ class PolarAzimuthal(UnitSphere): cv.check_type('azimuthal angle', phi, Univariate) self._phi = phi - def to_xml(self): + def to_xml_element(self): + """Return XML representation of the angular distribution + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing angular distribution data + + """ element = ET.Element('angle') element.set("type", "mu-phi") if self.reference_uvw is not None: element.set("reference_uvw", ' '.join(map(str, self.reference_uvw))) - element.append(self.mu.to_xml('mu')) - element.append(self.phi.to_xml('phi')) + element.append(self.mu.to_xml_element('mu')) + element.append(self.phi.to_xml_element('phi')) return element @@ -127,7 +135,15 @@ class Isotropic(UnitSphere): def __init__(self): super(Isotropic, self).__init__() - def to_xml(self): + def to_xml_element(self): + """Return XML representation of the isotropic distribution + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing isotropic distribution data + + """ element = ET.Element('angle') element.set("type", "isotropic") return element @@ -152,7 +168,15 @@ class Monodirectional(UnitSphere): def __init__(self, reference_uvw=[1., 0., 0.]): super(Monodirectional, self).__init__(reference_uvw) - def to_xml(self): + def to_xml_element(self): + """Return XML representation of the monodirectional distribution + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing monodirectional distribution data + + """ element = ET.Element('angle') element.set("type", "monodirectional") if self.reference_uvw is not None: @@ -174,7 +198,7 @@ class Spatial(object): pass @abstractmethod - def to_xml(self): + def to_xml_element(self): return '' @@ -238,12 +262,20 @@ class CartesianIndependent(Spatial): cv.check_type('z coordinate', z, Univariate) self._z = z - def to_xml(self): + def to_xml_element(self): + """Return XML representation of the spatial distribution + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing spatial distribution data + + """ element = ET.Element('space') element.set('type', 'cartesian') - element.append(self.x.to_xml('x')) - element.append(self.y.to_xml('y')) - element.append(self.z.to_xml('z')) + element.append(self.x.to_xml_element('x')) + element.append(self.y.to_xml_element('y')) + element.append(self.z.to_xml_element('z')) return element @@ -308,7 +340,15 @@ class Box(Spatial): cv.check_type('only fissionable', only_fissionable, bool) self._only_fissionable = only_fissionable - def to_xml(self): + def to_xml_element(self): + """Return XML representation of the box distribution + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing box distribution data + + """ element = ET.Element('space') if self.only_fissionable: element.set("type", "fission") @@ -352,7 +392,15 @@ class Point(Spatial): cv.check_length('coordinate', xyz, 3) self._xyz = xyz - def to_xml(self): + def to_xml_element(self): + """Return XML representation of the point distribution + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing point distribution location + + """ element = ET.Element('space') element.set("type", "point") params = ET.SubElement(element, "parameters") diff --git a/openmc/stats/univariate.py b/openmc/stats/univariate.py index 24ab98895d..3fdd5e4a29 100644 --- a/openmc/stats/univariate.py +++ b/openmc/stats/univariate.py @@ -29,7 +29,7 @@ class Univariate(object): pass @abstractmethod - def to_xml(self, element_name): + def to_xml_element(self, element_name): return '' @abstractmethod @@ -92,7 +92,20 @@ class Discrete(Univariate): cv.check_greater_than('discrete probability', pk, 0.0, True) self._p = p - def to_xml(self, element_name): + def to_xml_element(self, element_name): + """Return XML representation of the discrete distribution + + Parameters + ---------- + element_name : str + XML element name + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing discrete distribution data + + """ element = ET.Element(element_name) element.set("type", "discrete") @@ -153,7 +166,20 @@ class Uniform(Univariate): t.c = [0., 1.] return t - def to_xml(self, element_name): + def to_xml_element(self, element_name): + """Return XML representation of the uniform distribution + + Parameters + ---------- + element_name : str + XML element name + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing uniform distribution data + + """ element = ET.Element(element_name) element.set("type", "uniform") element.set("parameters", '{} {}'.format(self.a, self.b)) @@ -196,7 +222,20 @@ class Maxwell(Univariate): cv.check_greater_than('Maxwell temperature', theta, 0.0) self._theta = theta - def to_xml(self, element_name): + def to_xml_element(self, element_name): + """Return XML representation of the Maxwellian distribution + + Parameters + ---------- + element_name : str + XML element name + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing Maxwellian distribution data + + """ element = ET.Element(element_name) element.set("type", "maxwell") element.set("parameters", str(self.theta)) @@ -254,7 +293,20 @@ class Watt(Univariate): cv.check_greater_than('Watt b', b, 0.0) self._b = b - def to_xml(self, element_name): + def to_xml_element(self, element_name): + """Return XML representation of the Watt distribution + + Parameters + ---------- + element_name : str + XML element name + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing Watt distribution data + + """ element = ET.Element(element_name) element.set("type", "watt") element.set("parameters", '{} {}'.format(self.a, self.b)) @@ -333,7 +385,20 @@ class Tabular(Univariate): cv.check_value('interpolation', interpolation, _INTERPOLATION_SCHEMES) self._interpolation = interpolation - def to_xml(self, element_name): + def to_xml_element(self, element_name): + """Return XML representation of the tabular distribution + + Parameters + ---------- + element_name : str + XML element name + + Returns + ------- + element : xml.etree.ElementTree.Element + XML element containing tabular distribution data + + """ element = ET.Element(element_name) element.set("type", "tabular") element.set("interpolation", self.interpolation) @@ -386,7 +451,7 @@ class Legendre(Univariate): self._legendre_polynomial = np.polynomial.legendre.Legendre( coefficients) - def to_xml(self, element_name): + def to_xml_element(self, element_name): raise NotImplementedError @@ -440,5 +505,5 @@ class Mixture(Univariate): Iterable, Univariate) self._distribution = distribution - def to_xml(self, element_name): + def to_xml_element(self, element_name): raise NotImplementedError diff --git a/openmc/volume.py b/openmc/volume.py index 511af62ed3..167971bdbd 100644 --- a/openmc/volume.py +++ b/openmc/volume.py @@ -183,7 +183,7 @@ class VolumeCalculation(object): vol.results = results return vol - def to_xml(self): + def to_xml_element(self): """Return XML representation of the volume calculation Returns From 08c9036bb69c781694f65ca6957f83cfe7387d20 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 1 Aug 2016 07:02:16 -0500 Subject: [PATCH 04/16] Ability to link volume calculation results in order to compute microscopic cross sections from mgxs --- openmc/cell.py | 60 +++++++++++++++++++++++++++++++++++++++--- openmc/geometry.py | 31 +++++++++------------- openmc/lattice.py | 17 ++++++------ openmc/material.py | 24 ++++++++++++++++- openmc/mgxs/library.py | 2 +- openmc/mgxs/mgxs.py | 41 +++++++++++++---------------- openmc/statepoint.py | 25 ++++++++++++++++-- openmc/summary.py | 11 ++++++++ openmc/universe.py | 31 ++++++++++++++++------ 9 files changed, 178 insertions(+), 64 deletions(-) diff --git a/openmc/cell.py b/openmc/cell.py index 9055f10e59..23246a0f68 100644 --- a/openmc/cell.py +++ b/openmc/cell.py @@ -85,6 +85,10 @@ class Cell(object): Array of offsets used for distributed cell searches distribcell_index : int Index of this cell in distribcell arrays + volume_information : dict + Estimate of the volume and total number of atoms of each nuclide from a + stochastic volume calculation. This information is set with the + :meth:`Cell.add_volume_information` method. """ @@ -100,6 +104,7 @@ class Cell(object): self._translation = None self._offsets = None self._distribcell_index = None + self._volume_information = None def __contains__(self, point): if self.region is None: @@ -212,6 +217,10 @@ class Cell(object): def distribcell_index(self): return self._distribcell_index + @property + def volume_information(self): + return self._volume_information + @id.setter def id(self, cell_id): if cell_id is None: @@ -351,6 +360,22 @@ class Cell(object): else: self.region = Intersection(self.region, region) + def add_volume_information(self, volume_calc): + """Add volume information to a cell. + + Parameters + ---------- + volume_calc : openmc.VolumeCalculation + Results from a stochastic volume calculation + + """ + for cell_id in volume_calc.results: + if cell_id == self.id: + self._volume_information = volume_calc.results[cell_id] + break + else: + raise ValueError('No volume information found for this cell.') + def get_cell_instance(self, path, distribcell_index): # If the Cell is filled by a Material @@ -368,8 +393,19 @@ class Cell(object): return offset - def get_all_nuclides(self): - """Return all nuclides contained in the cell + def get_nuclides(self): + """Returns all nuclides in the cell + + Returns + ------- + nuclides : list + List of nuclide names + + """ + return self.fill.get_nuclides() if self.fill_type != 'void' else [] + + def get_nuclide_densities(self): + """Return all nuclides contained in the cell and their densities Returns ------- @@ -381,8 +417,24 @@ class Cell(object): nuclides = OrderedDict() - if self.fill_type != 'void': - nuclides.update(self.fill.get_all_nuclides()) + if self.fill_type == 'material': + nuclides.update(self.fill.get_nuclide_densities()) + elif self.fill_type == 'void': + pass + else: + if self.volume_information is not None: + volume = self.volume_information['volume'][0] + for full_name, atoms in self.volume_information['atoms']: + name, xs = full_name.split('.') + nuclide = openmc.Nuclide(name, xs) + density = 1.0e-24 * atoms[0]/volume # density in atoms/b-cm + nuclides[name] = (nuclide, density) + else: + raise RuntimeError( + 'Volume information is needed to calculate microscopic cross ' + 'sections for cell {}. This can be done by running a ' + 'stochastic volume calculation via the ' + 'openmc.VolumeCalculation object'.format(self.id)) return nuclides diff --git a/openmc/geometry.py b/openmc/geometry.py index 14fd48fb1e..8314a9049c 100644 --- a/openmc/geometry.py +++ b/openmc/geometry.py @@ -50,6 +50,19 @@ class Geometry(object): self._root_universe = root_universe + def add_volume_information(self, volume_calc): + """Add volume information to from a stochastic volume calculation. + + Parameters + ---------- + volume_calc : openmc.VolumeCalculation + Results from a stochastic volume calculation + + """ + for cell in self.get_all_cells(): + if cell.id in volume_calc.results: + cell.add_volume_information(volume_calc) + def export_to_xml(self): """Create a geometry.xml file that can be used for a simulation. @@ -166,24 +179,6 @@ class Geometry(object): universes.sort(key=lambda x: x.id) return universes - def get_all_nuclides(self): - """Return all nuclides assigned to a material in the geometry - - Returns - ------- - list of openmc.Nuclide - Nuclides in the geometry - - """ - - nuclides = OrderedDict() - materials = self.get_all_materials() - - for material in materials: - nuclides.update(material.get_all_nuclides()) - - return nuclides - def get_all_materials(self): """Return all materials assigned to a cell diff --git a/openmc/lattice.py b/openmc/lattice.py index 81144e4d81..b26aab4c67 100644 --- a/openmc/lattice.py +++ b/openmc/lattice.py @@ -144,25 +144,26 @@ class Lattice(object): return univs - def get_all_nuclides(self): - """Return all nuclides contained in the lattice + def get_nuclides(self): + """Returns all nuclides in the lattice Returns ------- - nuclides : collections.OrderedDict - Dictionary whose keys are nuclide names and values are 2-tuples of - (nuclide, density) + nuclides : list + List of nuclide names """ - nuclides = OrderedDict() + nuclides = [] # Get all unique Universes contained in each of the lattice cells unique_universes = self.get_unique_universes() # Append all Universes containing each cell to the dictionary - for universe_id, universe in unique_universes.items(): - nuclides.update(universe.get_all_nuclides()) + for universe in unique_universes.values(): + for nuclide in universe.get_nuclides(): + if nuclide not in nuclides: + nuclides.append(nuclide) return nuclides diff --git a/openmc/material.py b/openmc/material.py index d7ffd04e94..5603d9d25c 100644 --- a/openmc/material.py +++ b/openmc/material.py @@ -492,9 +492,31 @@ class Material(object): for element, percent, percent_type in self._elements: element.scattering = 'iso-in-lab' - def get_all_nuclides(self): + def get_nuclides(self): """Returns all nuclides in the material + Returns + ------- + nuclides : list + List of nuclide names + + """ + + nuclides = [] + + for nuclide, density, density_type in self._nuclides: + nuclides.append(nuclide.name) + + for element, density, density_type in self._elements: + # Expand natural element into isotopes + for isotope, abundance in element.expand(): + nuclides.append(isotope.name) + + return nuclides + + def get_nuclide_densities(self): + """Returns all nuclides in the material and their densities + Returns ------- nuclides : dict diff --git a/openmc/mgxs/library.py b/openmc/mgxs/library.py index 84571ce236..ee11d0ef64 100644 --- a/openmc/mgxs/library.py +++ b/openmc/mgxs/library.py @@ -1008,7 +1008,7 @@ class Library(object): # Create the xsdata object and add it to the mgxs_file for i, domain in enumerate(self.domains): if self.by_nuclide: - nuclides = list(domain.get_all_nuclides().keys()) + nuclides = domain.get_nuclides() else: nuclides = ['total'] for nuclide in nuclides: diff --git a/openmc/mgxs/mgxs.py b/openmc/mgxs/mgxs.py index e1c2e62217..7aa12d0418 100644 --- a/openmc/mgxs/mgxs.py +++ b/openmc/mgxs/mgxs.py @@ -288,9 +288,7 @@ class MGXS(object): # If this is a by-nuclide cross-section, add nuclides to Tally if self.by_nuclide and score != 'flux': - all_nuclides = self.get_all_nuclides() - for nuclide in all_nuclides: - self._tallies[key].nuclides.append(nuclide) + self._tallies[key].nuclides += self.get_nuclides() else: self._tallies[key].nuclides.append('total') @@ -329,14 +327,14 @@ class MGXS(object): @property def num_nuclides(self): if self.by_nuclide: - return len(self.get_all_nuclides()) + return len(self.get_nuclides()) else: return 1 @property def nuclides(self): if self.by_nuclide: - return self.get_all_nuclides() + return self.get_nuclides() else: return 'sum' @@ -503,7 +501,7 @@ class MGXS(object): mgxs.name = name return mgxs - def get_all_nuclides(self): + def get_nuclides(self): """Get all nuclides in the cross section's spatial domain. Returns @@ -528,8 +526,7 @@ class MGXS(object): # Otherwise, return all nuclides in the spatial domain else: - nuclides = self.domain.get_all_nuclides() - return list(nuclides.keys()) + return self.domain.get_nuclides() def get_nuclide_density(self, nuclide): """Get the atomic number density in units of atoms/b-cm for a nuclide @@ -556,7 +553,7 @@ class MGXS(object): cv.check_type('nuclide', nuclide, basestring) # Get list of all nuclides in the spatial domain - nuclides = self.domain.get_all_nuclides() + nuclides = self.domain.get_nuclide_densities() if nuclide not in nuclides: msg = 'Unable to get density for nuclide "{0}" which is not in ' \ @@ -597,14 +594,14 @@ class MGXS(object): # Sum the atomic number densities for all nuclides if nuclides == 'sum': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() densities = np.zeros(1, dtype=np.float) for nuclide in nuclides: densities[0] += self.get_nuclide_density(nuclide) # Tabulate the atomic number densities for all nuclides elif nuclides == 'all': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() densities = np.zeros(self.num_nuclides, dtype=np.float) for i, nuclide in enumerate(nuclides): densities[i] += self.get_nuclide_density(nuclide) @@ -635,7 +632,7 @@ class MGXS(object): # If computing xs for each nuclide, replace CrossNuclides with originals if self.by_nuclide: self.xs_tally._nuclides = [] - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() for nuclide in nuclides: self.xs_tally.nuclides.append(openmc.Nuclide(nuclide)) @@ -796,7 +793,7 @@ class MGXS(object): # Construct a collection of the nuclides to retrieve from the xs tally if self.by_nuclide: if nuclides == 'all' or nuclides == 'sum' or nuclides == ['sum']: - query_nuclides = self.get_all_nuclides() + query_nuclides = self.get_nuclides() else: query_nuclides = nuclides else: @@ -1164,7 +1161,7 @@ class MGXS(object): # Construct a collection of the nuclides to report if self.by_nuclide: if nuclides == 'all': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() elif nuclides == 'sum': nuclides = ['sum'] else: @@ -1302,7 +1299,7 @@ class MGXS(object): # Construct a collection of the nuclides to report if self.by_nuclide: if nuclides == 'all': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() densities = np.zeros(len(nuclides), dtype=np.float) elif nuclides == 'sum': nuclides = ['sum'] @@ -1484,7 +1481,7 @@ class MGXS(object): if self.by_nuclide and nuclides == 'sum': # Use tally summation to sum across all nuclides - query_nuclides = self.get_all_nuclides() + query_nuclides = self.get_nuclides() xs_tally = self.xs_tally.summation(nuclides=query_nuclides) df = xs_tally.get_pandas_dataframe( distribcell_paths=distribcell_paths) @@ -1790,7 +1787,7 @@ class MatrixMGXS(MGXS): # Construct a collection of the nuclides to retrieve from the xs tally if self.by_nuclide: if nuclides == 'all' or nuclides == 'sum' or nuclides == ['sum']: - query_nuclides = self.get_all_nuclides() + query_nuclides = self.get_nuclides() else: query_nuclides = nuclides else: @@ -1937,7 +1934,7 @@ class MatrixMGXS(MGXS): # Construct a collection of the nuclides to report if self.by_nuclide: if nuclides == 'all': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() if nuclides == 'sum': nuclides = ['sum'] else: @@ -3622,7 +3619,7 @@ class ScatterMatrixXS(MatrixMGXS): # Construct a collection of the nuclides to retrieve from the xs tally if self.by_nuclide: if nuclides == 'all' or nuclides == 'sum' or nuclides == ['sum']: - query_nuclides = self.get_all_nuclides() + query_nuclides = self.get_nuclides() else: query_nuclides = nuclides else: @@ -3789,7 +3786,7 @@ class ScatterMatrixXS(MatrixMGXS): # Construct a collection of the nuclides to report if self.by_nuclide: if nuclides == 'all': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() if nuclides == 'sum': nuclides = ['sum'] else: @@ -4595,7 +4592,7 @@ class Chi(MGXS): nu_fission_out = self.tallies['nu-fission-out'] # Sum out all nuclides - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() nu_fission_in = nu_fission_in.summation(nuclides=nuclides) nu_fission_out = nu_fission_out.summation(nuclides=nuclides) @@ -4615,7 +4612,7 @@ class Chi(MGXS): # Get chi for all nuclides in the domain elif nuclides == 'all': - nuclides = self.get_all_nuclides() + nuclides = self.get_nuclides() xs = self.xs_tally.get_values(filters=filters, filter_bins=filter_bins, nuclides=nuclides, value=value) diff --git a/openmc/statepoint.py b/openmc/statepoint.py index 6337746650..58a79fa219 100644 --- a/openmc/statepoint.py +++ b/openmc/statepoint.py @@ -2,6 +2,7 @@ import sys import re import os import warnings +import glob import numpy as np @@ -22,8 +23,9 @@ class StatePoint(object): filename : str Path to file to load autolink : bool, optional - Whether to automatically link in metadata from a summary.h5 - file. Defaults to True. + Whether to automatically link in metadata from a summary.h5 file and + stochastic volume calculation results from volume_*.h5 files. Defaults + to True. Attributes ---------- @@ -143,6 +145,12 @@ class StatePoint(object): su = openmc.Summary(path_summary) self.link_with_summary(su) + path_volume = os.path.join(os.path.dirname(filename), 'volume_*.h5') + for path_i in glob.glob(path_volume): + if re.search(r'volume_\d+\.h5', path_i): + vol = openmc.VolumeCalculation.from_hdf5(path_i) + self.add_volume_information(vol) + def close(self): self._f.close() @@ -501,6 +509,19 @@ class StatePoint(object): for tally_id in self.tallies: self.tallies[tally_id].sparse = self.sparse + def add_volume_information(self, volume_calc): + """Add volume information to the geometry within the file + + Parameters + ---------- + volume_calc : openmc.VolumeCalculation + Results from a stochastic volume calculation + + """ + if self.summary is not None: + self.summary.add_volume_information(volume_calc) + + def get_tally(self, scores=[], filters=[], nuclides=[], name=None, id=None, estimator=None, exact_filters=False, exact_nuclides=False, exact_scores=False): diff --git a/openmc/summary.py b/openmc/summary.py index 8c626940e5..6fbace72ea 100644 --- a/openmc/summary.py +++ b/openmc/summary.py @@ -594,6 +594,17 @@ class Summary(object): # Add Tally to the global dictionary of all Tallies self.tallies[tally_id] = tally + def add_volume_information(self, volume_calc): + """Add volume information to the geometry within the summary file + + Parameters + ---------- + volume_calc : openmc.VolumeCalculation + Results from a stochastic volume calculation + + """ + self.openmc_geometry.add_volume_information(volume_calc) + def get_material_by_id(self, material_id): """Return a Material object given the material id diff --git a/openmc/universe.py b/openmc/universe.py index c8e7fcab1e..f2b8641699 100644 --- a/openmc/universe.py +++ b/openmc/universe.py @@ -349,7 +349,27 @@ class Universe(object): # Return the offset computed at all nested Universe levels return offset - def get_all_nuclides(self): + def get_nuclides(self): + """Returns all nuclides in the universe + + Returns + ------- + nuclides : list + List of nuclide names + + """ + + nuclides = [] + + # Append all Nuclides in each Cell in the Universe to the dictionary + for cell in self.cells.values(): + for nuclide in cell.get_nuclides(): + if nuclide not in nuclides: + nuclides.append(nuclide) + + return nuclides + + def get_nuclide_densities(self): """Return all nuclides contained in the universe Returns @@ -360,13 +380,8 @@ class Universe(object): """ - nuclides = OrderedDict() - - # Append all Nuclides in each Cell in the Universe to the dictionary - for cell in self._cells.values(): - nuclides.update(cell.get_all_nuclides()) - - return nuclides + raise NotImplementedError('Determining average nuclide densities over ' + 'an entire universe not yet supported.') def get_all_cells(self): """Return all cells that are contained within the universe From aaefad9e2ea99c8edec4874741c37c128fa9e0e9 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 1 Aug 2016 10:25:08 -0500 Subject: [PATCH 05/16] Add volume calculation test --- tests/test_volume_calc/inputs_true.dat | 1 + tests/test_volume_calc/results_true.dat | 13 ++++ tests/test_volume_calc/test_volume_calc.py | 82 ++++++++++++++++++++++ tests/testing_harness.py | 1 + 4 files changed, 97 insertions(+) create mode 100644 tests/test_volume_calc/inputs_true.dat create mode 100644 tests/test_volume_calc/results_true.dat create mode 100644 tests/test_volume_calc/test_volume_calc.py diff --git a/tests/test_volume_calc/inputs_true.dat b/tests/test_volume_calc/inputs_true.dat new file mode 100644 index 0000000000..2a3f25e6d0 --- /dev/null +++ b/tests/test_volume_calc/inputs_true.dat @@ -0,0 +1 @@ +b2de6ac20ca2ca38b00d61adae707d05519f6130eea25ab050220bac005cb6d23fa5812bf876307e92e90a8806f0b371500c5611ab23f80b7c073f118eb31649 \ No newline at end of file diff --git a/tests/test_volume_calc/results_true.dat b/tests/test_volume_calc/results_true.dat new file mode 100644 index 0000000000..e7a39a9312 --- /dev/null +++ b/tests/test_volume_calc/results_true.dat @@ -0,0 +1,13 @@ +k-combined: 4.165451e-02 3.582531e-04 +Cell 1: 31.4693 +/- 0.0721 cm^3 +Cell 2: 2.0933 +/- 0.0310 cm^3 +Cell 3: 2.0486 +/- 0.0307 cm^3 + Cell Nuclide Atoms Uncertainty +0 1 U235.71c 3.481769e+23 7.979991e+20 +1 1 Mo99.71c 3.481769e+22 7.979991e+19 +2 2 H1.71c 1.399770e+23 2.072914e+21 +3 2 O16.71c 6.998852e+22 1.036457e+21 +4 2 B10.71c 6.998852e+18 1.036457e+17 +5 3 H1.71c 1.369920e+23 2.051689e+21 +6 3 O16.71c 6.849599e+22 1.025844e+21 +7 3 B10.71c 6.849599e+18 1.025844e+17 diff --git a/tests/test_volume_calc/test_volume_calc.py b/tests/test_volume_calc/test_volume_calc.py new file mode 100644 index 0000000000..a6d779a25a --- /dev/null +++ b/tests/test_volume_calc/test_volume_calc.py @@ -0,0 +1,82 @@ +#!/usr/bin/env python + +import os +import sys +sys.path.insert(0, os.pardir) +from testing_harness import PyAPITestHarness +import openmc + + +class VolumeTest(PyAPITestHarness): + def _build_inputs(self): + # Define materials + water = openmc.Material(1) + water.add_nuclide('H1', 2.0) + water.add_nuclide('O16', 1.0) + water.add_nuclide('B10', 0.0001) + water.add_s_alpha_beta('c_H_in_H2O', '71t') + water.set_density('g/cc', 1.0) + + fuel = openmc.Material(2) + fuel.add_nuclide('U235', 1.0) + fuel.add_nuclide('Mo99', 0.1) + fuel.set_density('g/cc', 4.5) + + materials = openmc.Materials((water, fuel)) + materials.default_xs = '71c' + materials.export_to_xml() + + cyl = openmc.ZCylinder(1, R=1.0, boundary_type='vacuum') + top_sphere = openmc.Sphere(2, z0=5., R=1., boundary_type='vacuum') + top_plane = openmc.ZPlane(3, z0=5.) + bottom_sphere = openmc.Sphere(4, z0=-5., R=1., boundary_type='vacuum') + bottom_plane = openmc.ZPlane(5, z0=-5.) + + # Define geometry + inside_cyl = openmc.Cell(1, fill=fuel, region=-cyl & -top_plane & +bottom_plane) + top_hemisphere = openmc.Cell(2, fill=water, region=-top_sphere & +top_plane) + bottom_hemisphere = openmc.Cell(3, fill=water, region=-bottom_sphere & -top_plane) + root = openmc.Universe(0, cells=(inside_cyl, top_hemisphere, bottom_hemisphere)) + + geometry = openmc.Geometry() + geometry.root_universe = root + geometry.export_to_xml() + + # Set up stochastic volume calculation + vol_calc = openmc.VolumeCalculation( + [inside_cyl, top_hemisphere, bottom_hemisphere], + 100000) + + # Define settings + settings = openmc.Settings() + settings.particles = 1000 + settings.batches = 4 + settings.inactive = 0 + settings.source = openmc.Source(space=openmc.stats.Box( + [-1., -1., -5.], [1., 1., 5.])) + settings.volume_calculations = vol_calc + settings.export_to_xml() + + def _get_results(self): + # Read the statepoint file. + statepoint = os.path.join(os.getcwd(), self._sp_name) + sp = openmc.StatePoint(statepoint) + + # Write out k-combined. + outstr = 'k-combined: {:12.6e} {:12.6e}\n'.format(*sp.k_combined) + + # Read volume calculation results + vol = openmc.VolumeCalculation.from_hdf5( + os.path.join(os.getcwd(), 'volume_1.h5')) + + # Write cell volumes and total # of atoms for each nuclide + for cell_id, results in sorted(vol.results.items()): + outstr += 'Cell {0}: {1[0]:.4f} +/- {1[1]:.4f} cm^3\n'.format( + cell_id, results['volume']) + outstr += str(vol.atoms_dataframe) + '\n' + + return outstr + +if __name__ == '__main__': + harness = VolumeTest('statepoint.4.h5') + harness.main() diff --git a/tests/testing_harness.py b/tests/testing_harness.py index d360184045..19a7ffb06c 100644 --- a/tests/testing_harness.py +++ b/tests/testing_harness.py @@ -137,6 +137,7 @@ class TestHarness(object): output.append(os.path.join(os.getcwd(), 'tallies.out')) output.append(os.path.join(os.getcwd(), 'results_test.dat')) output.append(os.path.join(os.getcwd(), 'summary.h5')) + output += glob.glob(os.path.join(os.getcwd(), 'volume_*.h5')) for f in output: if os.path.exists(f): os.remove(f) From 413a58a363ee8fbedeffa652f068f647f0fcb0dc Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 1 Aug 2016 11:15:48 -0500 Subject: [PATCH 06/16] Change a few mentions of ACE format cross sections and update manpage --- man/man1/openmc.1 | 16 +++++++++++++--- readme.rst | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/man/man1/openmc.1 b/man/man1/openmc.1 index e69360a7c1..7f18ab28a2 100644 --- a/man/man1/openmc.1 +++ b/man/man1/openmc.1 @@ -3,7 +3,7 @@ openmc \- Executes the OpenMC Monte Carlo code .SH DESCRIPTION This command is used to execute the OpenMC Monte Carlo code. It is assumed that -a set of XML input files has already been created and that ACE format cross +a set of XML input files has already been created and that HDF5 format cross sections are available. .SH SYNOPSIS \fBopenmc\fR [\fIoptions\fR] [\fIpath\fR] @@ -40,11 +40,21 @@ The behavior of .B openmc is affected by the following environment variables. .TP -.B CROSS_SECTIONS +.B OPENMC_CROSS_SECTIONS Indicates the default path to the cross_sections.xml summary file that is used -to locate ACE format cross section libraries if the user has not specified the +to locate HDF5 format cross section libraries if the user has not specified the tag in .I settings.xml\fP. +.TP +.B OPENMC_MG_CROSS_SECTIONS +Indicates the default path to the mgxs.xml file that contains multi-group cross +section libraries if the user has not specified the tag in +.I settings.xml\fP. +.TP +.B OPENMC_MULTIPOLE_LIBRARY +Indicates the default path to a directory containing windowed multipole data if +the user has not specified the tag in +.I settings.xml\fP. .SH LICENSE Copyright \(co 2011-2016 Massachusetts Institute of Technology. .PP diff --git a/readme.rst b/readme.rst index 03964d9436..90484ad494 100644 --- a/readme.rst +++ b/readme.rst @@ -7,7 +7,7 @@ OpenMC Monte Carlo Particle Transport Code The OpenMC project aims to provide a fully-featured Monte Carlo particle transport code based on modern methods. It is a constructive solid geometry, -continuous-energy transport code that uses ACE format cross sections. The +continuous-energy transport code that uses HDF5 format cross sections. The project started under the Computational Reactor Physics Group at MIT. Complete documentation on the usage of OpenMC is hosted on Read the Docs at From af27542af509b250e2872d48bf2708d7210ecfd5 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 1 Aug 2016 21:48:02 -0500 Subject: [PATCH 07/16] Fix a few docstrings --- openmc/cell.py | 2 +- openmc/geometry.py | 2 +- openmc/lattice.py | 2 +- openmc/material.py | 2 +- openmc/universe.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/openmc/cell.py b/openmc/cell.py index 23246a0f68..c4a0952e91 100644 --- a/openmc/cell.py +++ b/openmc/cell.py @@ -398,7 +398,7 @@ class Cell(object): Returns ------- - nuclides : list + nuclides : list of str List of nuclide names """ diff --git a/openmc/geometry.py b/openmc/geometry.py index 8314a9049c..c827f4b2a7 100644 --- a/openmc/geometry.py +++ b/openmc/geometry.py @@ -51,7 +51,7 @@ class Geometry(object): self._root_universe = root_universe def add_volume_information(self, volume_calc): - """Add volume information to from a stochastic volume calculation. + """Add volume information from a stochastic volume calculation. Parameters ---------- diff --git a/openmc/lattice.py b/openmc/lattice.py index b26aab4c67..c6a5af4109 100644 --- a/openmc/lattice.py +++ b/openmc/lattice.py @@ -149,7 +149,7 @@ class Lattice(object): Returns ------- - nuclides : list + nuclides : list of str List of nuclide names """ diff --git a/openmc/material.py b/openmc/material.py index 5603d9d25c..aeebf385c6 100644 --- a/openmc/material.py +++ b/openmc/material.py @@ -497,7 +497,7 @@ class Material(object): Returns ------- - nuclides : list + nuclides : list of str List of nuclide names """ diff --git a/openmc/universe.py b/openmc/universe.py index f2b8641699..c8fb89a384 100644 --- a/openmc/universe.py +++ b/openmc/universe.py @@ -354,7 +354,7 @@ class Universe(object): Returns ------- - nuclides : list + nuclides : list of str List of nuclide names """ From 99adb712aba31bac85245940f09019470427a113 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 1 Aug 2016 21:51:31 -0500 Subject: [PATCH 08/16] gfortran 4.6 doesn't like firstprivate objects with allocatable components --- src/stl_vector.F90 | 15 +++++++++++++++ src/volume_calc.F90 | 12 ++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/src/stl_vector.F90 b/src/stl_vector.F90 index c7f2246ff8..06f487dc1e 100644 --- a/src/stl_vector.F90 +++ b/src/stl_vector.F90 @@ -114,6 +114,11 @@ contains ! Since integer is trivially destructible, we only need to set size to zero ! and can leave capacity as is this%size_ = 0 + if (allocated(this % data)) then + this%capacity_ = size(this % data) + else + this%capacity_ = 0 + end if end subroutine clear_int subroutine initialize_fill_int(this, n, val) @@ -249,6 +254,11 @@ contains ! Since real is trivially destructible, we only need to set size to zero and ! can leave capacity as is this%size_ = 0 + if (allocated(this % data)) then + this%capacity_ = size(this % data) + else + this%capacity_ = 0 + end if end subroutine clear_real subroutine initialize_fill_real(this, n, val) @@ -384,6 +394,11 @@ contains ! Since char is trivially destructible, we only need to set size to zero and ! can leave capacity as is this%size_ = 0 + if (allocated(this % data)) then + this%capacity_ = size(this % data) + else + this%capacity_ = 0 + end if end subroutine clear_char subroutine initialize_fill_char(this, n, val) diff --git a/src/volume_calc.F90 b/src/volume_calc.F90 index cb36f0b7f3..eac96f9ba7 100644 --- a/src/volume_calc.F90 +++ b/src/volume_calc.F90 @@ -140,8 +140,16 @@ contains call p % initialize() -!$omp parallel private(i, j, k, i_cell, i_material, level, found_cell) & -!$omp& firstprivate(p, indices, hits) +!$omp parallel private(i, j, k, i_cell, i_material, level, found_cell, & +!$omp& indices, hits) firstprivate(p) + + ! Reset vectors -- this is really to get around a gfortran 4.6 bug. Ideally, + ! indices and hits would just be firstprivate but 4.6 complains because they + ! have allocatable components... + do i_cell = 1, size(this % cell_id) + call indices(i_cell) % clear() + call hits(i_cell) % clear() + end do call prn_set_stream(STREAM_VOLUME) From a15e493dabba3f6777f3a1e11b91574d3f87b03a Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 4 Aug 2016 21:59:43 -0500 Subject: [PATCH 09/16] A few fixes to ensure smooth MCNP6 ACE library conversion --- openmc/data/thermal.py | 12 ++++++------ scripts/openmc-ace-to-hdf5 | 17 ++++++++++++----- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/openmc/data/thermal.py b/openmc/data/thermal.py index 158ce39853..6e3f6d452a 100644 --- a/openmc/data/thermal.py +++ b/openmc/data/thermal.py @@ -16,7 +16,7 @@ from openmc.stats import Discrete, Tabular _THERMAL_NAMES = {'al': 'c_Al27', 'al27': 'c_Al27', 'be': 'c_Be', - 'bebeo': 'c_Be_in_BeO', 'be-o': 'c_Be_in_BeO', + 'bebeo': 'c_Be_in_BeO', 'be-o': 'c_Be_in_BeO', 'be/o': 'c_Be_in_BeO', 'benz': 'c_Benzine', 'cah': 'c_Ca_in_CaH2', 'dd2o': 'c_D_in_D2O', 'hwtr': 'c_D_in_D2O', @@ -25,18 +25,18 @@ _THERMAL_NAMES = {'al': 'c_Al27', 'al27': 'c_Al27', 'hca': 'c_H_in_CaH2', 'hch2': 'c_H_in_CH2', 'poly': 'c_H_in_CH2', 'hh2o': 'c_H_in_H2O', 'lwtr': 'c_H_in_H2O', - 'hzrh': 'c_H_in_ZrH', 'h-zr': 'c_H_in_ZrH', + 'hzrh': 'c_H_in_ZrH', 'h-zr': 'c_H_in_ZrH', 'h/zr': 'c_H_in_ZrH', 'lch4': 'c_liquid_CH4', 'lmeth': 'c_liquid_CH4', 'mg': 'c_Mg24', - 'obeo': 'c_O_in_BeO', 'o-be': 'c_O_in_BeO', + 'obeo': 'c_O_in_BeO', 'o-be': 'c_O_in_BeO', 'o/be': 'c_O_in_BeO', 'orthod': 'c_ortho_D', 'dortho': 'c_ortho_D', 'orthoh': 'c_ortho_H', 'hortho': 'c_ortho_H', - 'ouo2': 'c_O_in_UO2', 'o2-u': 'c_O_in_UO2', + 'ouo2': 'c_O_in_UO2', 'o2-u': 'c_O_in_UO2', 'o2/u': 'c_O_in_UO2', 'parad': 'c_para_D', 'dpara': 'c_para_D', 'parah': 'c_para_H', 'hpara': 'c_para_H', 'sch4': 'c_solid_CH4', 'smeth': 'c_solid_CH4', - 'uuo2': 'c_U_in_UO2', 'u-o2': 'c_U_in_UO2', - 'zrzrh': 'c_Zr_in_ZrH', 'zr-h': 'c_Zr_in_ZrH'} + 'uuo2': 'c_U_in_UO2', 'u-o2': 'c_U_in_UO2', 'u/o2': 'c_U_in_UO2', + 'zrzrh': 'c_Zr_in_ZrH', 'zr-h': 'c_Zr_in_ZrH', 'zr/h': 'c_Zr_in_ZrH'} class CoherentElastic(object): diff --git a/scripts/openmc-ace-to-hdf5 b/scripts/openmc-ace-to-hdf5 index 743cf4a509..21a2718a59 100755 --- a/scripts/openmc-ace-to-hdf5 +++ b/scripts/openmc-ace-to-hdf5 @@ -75,8 +75,15 @@ elif args.xsdir is not None: else: raise IOError("Could not find 'directory' section in MCNP xsdir file") + # Handle continuation lines indicated by '+' at end of line + lines = lines[index + 1:] + continue_lines = [i for i, line in enumerate(lines) + if line.strip().endswith('+')] + for i in reversed(continue_lines): + lines[i] += lines[i].strip()[:-1] + lines.pop(i + 1) + # Create list of ACE libraries - for line in lines[index + 1:]: + for line in lines: words = line.split() if len(words) < 3: continue @@ -111,12 +118,12 @@ for filename in ace_libraries: # Continuous-energy neutron data neutron = openmc.data.IncidentNeutron.from_ace( table, args.metastable) - print(neutron.name) + print('Converting {} (ACE) to {} (HDF5)'.format(table.name, neutron.name)) # Determine filename outfile = os.path.join(args.destination, neutron.name.replace('.', '_') + '.h5') - neutron.export_to_hdf5(outfile) + neutron.export_to_hdf5(outfile, 'w') # Register with library library.register_file(outfile) @@ -124,12 +131,12 @@ for filename in ace_libraries: elif table.name.endswith('t'): # Thermal scattering data thermal = openmc.data.ThermalScattering.from_ace(table) - print(thermal.name) + print('Converting {} (ACE) to {} (HDF5)'.format(table.name, thermal.name)) # Determine filename outfile = os.path.join(args.destination, thermal.name.replace('.', '_') + '.h5') - thermal.export_to_hdf5(outfile) + thermal.export_to_hdf5(outfile, 'w') # Register with library library.register_file(outfile, 'thermal') From 6bb147fe8fd5db4a844cb8d080518a0f9c9fea82 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Fri, 5 Aug 2016 11:25:55 -0500 Subject: [PATCH 10/16] Add openmc.data.atomic_mass function, finally --- docs/source/pythonapi/index.rst | 10 + openmc/data/data.py | 41 +- openmc/data/mass.mas12 | 3392 +++++++++++++++++++++++++++++++ setup.py | 8 +- 4 files changed, 3449 insertions(+), 2 deletions(-) create mode 100644 openmc/data/mass.mas12 diff --git a/docs/source/pythonapi/index.rst b/docs/source/pythonapi/index.rst index df50eee0ba..f6a7ae939c 100644 --- a/docs/source/pythonapi/index.rst +++ b/docs/source/pythonapi/index.rst @@ -324,6 +324,16 @@ Functions :mod:`openmc.data` -- Nuclear Data Interface -------------------------------------------- +Physical Data +------------- + +.. autosummary:: + :toctree: generated + :nosignatures: + :template: myfunction.rst + + openmc.data.atomic_mass + Core Classes ------------ diff --git a/openmc/data/data.py b/openmc/data/data.py index 0365b37944..da1406a9cf 100644 --- a/openmc/data/data.py +++ b/openmc/data/data.py @@ -1,3 +1,7 @@ +import itertools +import os + + # Isotopic abundances from M. Berglund and M. E. Wieser, "Isotopic compositions # of the elements 2009 (IUPAC Technical Report)", Pure. Appl. Chem. 83 (2), # pp. 397--410 (2011). @@ -119,9 +123,12 @@ ATOMIC_SYMBOL = {1: 'H', 2: 'He', 3: 'Li', 4: 'Be', 5: 'B', 6: 'C', 7: 'N', 98: 'Cf', 99: 'Es', 100: 'Fm', 101: 'Md', 102: 'No', 103: 'Lr', 104: 'Rf', 105: 'Db', 106: 'Sg', 107: 'Bh', 108: 'Hs', 109: 'Mt', 110: 'Ds', 111: 'Rg', 112: 'Cn', - 114: 'Fl', 116: 'Lv'} + 113: 'Nh', 114: 'Fl', 115: 'Mc', 116: 'Lv', 117: 'Ts', + 118: 'Og'} ATOMIC_NUMBER = {value: key for key, value in ATOMIC_SYMBOL.items()} +_ATOMIC_MASS = {} + REACTION_NAME = {1: '(n,total)', 2: '(n,elastic)', 4: '(n,level)', 5: '(n,misc)', 11: '(n,2nd)', 16: '(n,2n)', 17: '(n,3n)', 18: '(n,fission)', 19: '(n,f)', 20: '(n,nf)', 21: '(n,2nf)', @@ -175,3 +182,35 @@ SUM_RULES = {1: [2, 3], 105: list(range(700, 750)), 106: list(range(750, 800)), 107: list(range(800, 850))} + + +def atomic_mass(isotope): + """Return atomic mass of isotope in atomic mass units. + + Atomic mass data comes from the Atomic Mass Evaluation 2012, published in + Chinese Physics C 36 (2012), 1287--1602. + + Parameters + ---------- + isotope : str + Name of isotope, e.g. 'Pu239' + + Returns + ------- + float or None + Atomic mass of isotope in atomic mass units. If the isotope listed does + not have a known atomic mass, None is returned. + + """ + if not _ATOMIC_MASS: + # Load data from AME2012 file + mass_file = os.path.join(os.path.dirname(__file__), 'mass.mas12') + with open(mass_file, 'r') as ame: + # Read lines in file starting at line 40 + for line in itertools.islice(ame, 40, None): + name = '{}{}'.format(line[20:22].strip(), int(line[16:19])) + mass = float(line[96:99]) + 1e-6*float( + line[100:106] + '.' + line[107:112]) + _ATOMIC_MASS[name.lower()] = mass + + return _ATOMIC_MASS.get(isotope.lower()) diff --git a/openmc/data/mass.mas12 b/openmc/data/mass.mas12 new file mode 100644 index 0000000000..04029367d0 --- /dev/null +++ b/openmc/data/mass.mas12 @@ -0,0 +1,3392 @@ +1 a0znogdq A T O M I C M A S S A D J U S T M E N T +0 DATE 16 Nov 2012 TIME 17:44 +0 ********************* A= 0 TO 295 + * file : mass.mas12 * + ********************* + + This is one file out of a series of 3 files published in: + "The Ame2012 atomic mass evaluation (I)" by G.Audi, M.Wang, A.H.Wapstra, F.G.Kondev, M.MacCormick, X.Xu, and B.~Pfeiffer + Chinese Physics C36 p. 1287-1602, December 2012. + "The Ame2012 atomic mass evaluation (II)" by M.Wang, G.Audi, A.H.Wapstra, F.G.Kondev, M.MacCormick, X.Xu, and B.~Pfeiffer + Chinese Physics C36 p. 1603-2014, December 2012. + for files : mass.mas12 : atomic masses + rct1.mas12 : react and sep energies, part 1 + rct2.mas12 : react and sep energies, part 2 + + All files are 3353 lines long with 124 character per line. + Headers are 39 lines long. + + Values in all files are unrounded values + + col 1 : Fortran character control: 1 = page feed 0 = line feed + format : a1,i3,i5,i5,i5,1x,a3,a4,1x,f13.5,f11.5,f11.3,f9.3,1x,a2,f11.3,f9.3,1x,i3,1x,f12.5,f11.5 + cc NZ N Z A el o mass unc binding unc B beta unc atomic_mass unc + Warnings : this format is identical to the one used in Ame2003 + in particular "Mass Excess" and "Atomic Mass" values are given now, when necessary, + with 5 digits after decimal point. + + decimal point is replaced by # for (non-experimental) estimated values. + * in place of value : not calculable + +....+....1....+....2....+....3....+....4....+....5....+....6....+....7....+....8....+....9....+...10....+...11....+...12.... + + + + MASS LIST + for analysis + +1N-Z N Z A EL O MASS EXCESS BINDING ENERGY/A BETA-DECAY ENERGY ATOMIC MASS V/S + (keV) (keV) (keV) (micro-u) +0 1 1 0 1 n 8071.31714 0.00046 0.0 0.0 B- 782.347 0.000 1 008664.91585 0.00049 + -1 0 1 1 H 7288.97059 0.00009 0.0 0.0 B- * 1 007825.03223 0.00009 +0 0 1 1 2 H 13135.72174 0.00011 1112.283 0.000 B- * 2 014101.77812 0.00012 +0 1 2 1 3 H 14949.80611 0.00221 2827.266 0.001 B- 18.591 0.001 3 016049.27791 0.00237 + -1 1 2 3 He 14931.21551 0.00233 2572.681 0.001 B- -13736# 2000# 3 016029.32008 0.00250 + -3 0 3 3 Li -pp 28667# 2000# -2267# 667# B- * 3 030775# 2147# +0 2 3 1 4 H -n 24621.123 100.000 1720.450 25.000 B- 22196.208 100.000 4 026431.864 107.354 + 0 2 2 4 He 2424.91561 0.00006 7073.915 0.000 B- -22898.270 212.132 4 002603.25413 0.00006 + -2 1 3 4 Li -p 25323.186 212.132 1153.761 53.033 B- * 4 027185.559 227.733 +0 3 4 1 5 H -nn 32892.440 89.443 1336.360 17.889 B- 21661.208 91.652 5 035311.489 96.020 + 1 3 2 5 He -n 11231.233 20.000 5512.132 4.000 B- -447.653 53.852 5 012057.224 21.470 + -1 2 3 5 Li -p 11678.886 50.000 5266.132 10.000 B- -25460# 2003# 5 012537.800 53.677 + -3 1 4 5 Be x 37139# 2003# 18# 401# B- * 5 039870# 2150# +0 4 5 1 6 H -3n 41875.717 254.127 961.640 42.354 B- 24283.622 254.127 6 044955.433 272.816 + 2 4 2 6 He 17592.095 0.053 4878.519 0.009 B- 3505.216 0.053 6 018885.891 0.057 + 0 3 3 6 Li 14086.87893 0.00144 5332.331 0.000 B- -4288.155 5.448 6 015122.88742 0.00155 + -2 2 4 6 Be - 18375.034 5.448 4487.247 0.908 B- -28945# 2003# 6 019726.411 5.848 + -4 1 5 6 B x 47320# 2003# -467# 334# B- * 6 050800# 2150# +0 5 6 1 7 H -nn 49135# 1004# 940# 143# B- 23062# 1004# 7 052749# 1078# + 3 5 2 7 He -n 26073.126 7.559 4123.057 1.080 B- 11166.021 7.559 7 027990.654 8.115 + 1 4 3 7 Li 14907.10520 0.00423 5606.439 0.001 B- -861.893 0.071 7 016003.43659 0.00454 + -1 3 4 7 Be 15768.999 0.071 5371.548 0.010 B- -11907.551 25.150 7 016928.717 0.076 + -3 2 5 7 B p4n 27676.550 25.150 3558.705 3.593 B- * 7 029712.000 27.000 +0 4 6 2 8 He 31609.681 0.089 3924.520 0.011 B- 10663.878 0.100 8 033934.390 0.095 + 2 5 3 8 Li 20945.804 0.047 5159.712 0.006 B- 16004.133 0.059 8 022486.246 0.050 + 0 4 4 8 Be -a 4941.671 0.035 7062.435 0.004 B- -17979.906 1.001 8 005305.102 0.037 + -2 3 5 8 B 22921.577 1.000 4717.153 0.125 B- -12142.691 18.270 8 024607.326 1.073 + -4 2 6 8 C 35064.269 18.243 3101.524 2.280 B- * 8 037643.042 19.584 +0 5 7 2 9 He 40935.896 46.816 3349.029 5.202 B- 15980.994 46.817 9 043946.494 50.259 + 3 6 3 9 Li -3n 24954.902 0.186 5037.768 0.021 B- 13606.450 0.201 9 026790.191 0.200 + 1 5 4 9 Be 11348.453 0.077 6462.668 0.009 B- -1068.035 0.899 9 012183.065 0.082 + -1 4 5 9 B - 12416.488 0.903 6257.070 0.100 B- -16494.482 2.319 9 013329.649 0.969 + -3 3 6 9 C -pp 28910.970 2.137 4337.423 0.237 B- * 9 031037.204 2.293 +0 6 8 2 10 He -nn 49172.316 100.000 2997.616 10.000 B- 16119.692 100.806 10 052788.655 107.354 + 4 7 3 10 Li -n 33052.624 12.721 4531.351 1.272 B- 20445.136 12.722 10 035483.453 13.656 + 2 6 4 10 Be 12607.488 0.081 6497.630 0.008 B- 556.797 0.392 10 013534.695 0.086 + 0 5 5 10 B 12050.690 0.384 6475.075 0.038 B- -3648.064 0.069 10 012936.949 0.412 + -2 4 6 10 C 15698.755 0.390 6032.034 0.039 B- -23101.353 400.000 10 016853.307 0.418 + -4 3 7 10 N -- 38800.107 400.000 3643.664 40.000 B- * 10 041653.630 429.417 +0 5 8 3 11 Li x 40728.254 0.615 4155.381 0.056 B- 20551.087 0.659 11 043723.581 0.660 + 3 7 4 11 Be 20177.167 0.238 5952.540 0.022 B- 11509.284 0.479 11 021661.081 0.255 + 1 6 5 11 B 8667.883 0.416 6927.716 0.038 B- -1982.412 0.854 11 009305.355 0.446 + -1 5 6 11 C 10650.295 0.950 6676.374 0.086 B- -13653.347 46.162 11 011433.563 1.019 + -3 4 7 11 N -p 24303.642 46.155 5364.038 4.196 B- * 11 026091.034 49.549 +0 6 9 3 12 Li -n 48919.571 15.013 3799.100 1.251 B- 23841.813 15.133 12 052517.322 16.116 + 4 8 4 12 Be 25077.759 1.909 5720.722 0.159 B- 11708.343 2.322 12 026922.082 2.048 + 2 7 5 12 B 13369.416 1.322 6631.221 0.110 B- 13369.416 1.322 12 014352.658 1.419 + 0 6 6 12 C 0.0 0.0 7680.144 0.000 B- -17338.072 1.000 12 000000.0 0.0 + -2 5 7 12 N 17338.072 1.000 6170.109 0.083 B- -14576.623 24.024 12 018613.187 1.073 + -4 4 8 12 O -pp 31914.696 24.003 4890.195 2.000 B- * 12 034261.836 25.768 +0 7 10 3 13 Li -nn 58340.888 350.001 3403.015 26.923 B- 24681.813 350.149 13 062631.523 375.741 + 5 9 4 13 Be -n 33659.076 10.180 5241.435 0.783 B- 17096.957 10.238 13 036134.506 10.929 + 3 8 5 13 B -nn 16562.119 1.083 6496.406 0.083 B- 13437.110 1.083 13 017780.166 1.162 + 1 7 6 13 C 3125.00875 0.00021 7469.849 0.000 B- -2220.472 0.270 13 003354.83507 0.00023 + -1 6 7 13 N 5345.481 0.270 7238.863 0.021 B- -17769.959 9.530 13 005738.609 0.289 + -3 5 8 13 O +3n 23115.439 9.526 5811.762 0.733 B- * 13 024815.446 10.226 +0 6 10 4 14 Be x 39954.498 132.245 4993.897 9.446 B- 16290.813 133.936 14 042892.920 141.970 + 4 9 5 14 B 23663.685 21.213 6101.644 1.515 B- 20643.792 21.213 14 025404.012 22.773 + 2 8 6 14 C 3019.89278 0.00376 7520.319 0.000 B- 156.476 0.004 14 003241.98843 0.00403 + 0 7 7 14 N 2863.41669 0.00019 7475.614 0.000 B- -5144.040 0.110 14 003074.00443 0.00020 + -2 6 8 14 O 8007.457 0.110 7052.301 0.008 B- -23956.953 41.119 14 008596.359 0.117 + -4 5 9 14 F -p 31964.410 41.119 5285.208 2.937 B- * 14 034315.207 44.142 +0 7 11 4 15 Be -n2p 49760# 401# 4545# 27# B- 20802# 401# 15 053420# 430# + 5 10 5 15 B 28957.988 21.043 5880.002 1.403 B- 19084.844 21.059 15 031087.680 22.590 + 3 9 6 15 C -n 9873.144 0.800 7100.169 0.053 B- 9771.705 0.800 15 010599.256 0.858 + 1 8 7 15 N 101.43866 0.00060 7699.460 0.000 B- -2754.166 0.491 15 000108.89888 0.00064 + -1 7 8 15 O 2855.605 0.491 7463.692 0.033 B- -13951.205 62.398 15 003065.618 0.526 + -3 6 9 15 F 16806.810 62.396 6481.455 4.160 B- * 15 018042.853 66.985 +0 8 12 4 16 Be -nn 57447.132 165.797 4285.285 10.362 B- 20334.862 167.609 16 061672.036 177.990 + 6 11 5 16 B 37112.271 24.577 5507.317 1.536 B- 23418.142 24.836 16 039841.663 26.384 + 4 10 6 16 C -nn 13694.128 3.578 6922.054 0.224 B- 8010.221 4.254 16 014701.252 3.840 + 2 9 7 16 N -n 5683.907 2.301 7373.796 0.144 B- 10420.908 2.301 16 006101.925 2.470 + 0 8 8 16 O -4737.00137 0.00016 7976.206 0.000 B- -15417.256 8.321 15 994914.61957 0.00017 + -2 7 9 16 F - 10680.254 8.321 6963.731 0.520 B- -13305.900 22.106 16 011465.725 8.932 + -4 6 10 16 Ne -- 23986.154 20.480 6083.216 1.280 B- * 16 025750.197 21.986 +0 7 12 5 17 B x 43770.816 170.873 5266.461 10.051 B- 22740.038 171.753 17 046989.906 183.440 + 5 11 6 17 C 2p-n 21030.778 17.365 6558.090 1.021 B- 13160.703 22.946 17 022577.470 18.641 + 3 10 7 17 N +p 7870.075 15.000 7286.229 0.882 B- 8678.839 15.000 17 008448.873 16.103 + 1 9 8 17 O -808.76361 0.00064 7750.728 0.000 B- -2760.465 0.248 16 999131.75650 0.00069 + -1 8 9 17 F 1951.701 0.248 7542.328 0.015 B- -14548.749 0.432 17 002095.237 0.266 + -3 7 10 17 Ne x 16500.451 0.354 6640.499 0.021 B- * 17 017713.963 0.380 +0 8 13 5 18 B -n 51847.133 170.947 4973.602 9.497 B- 26929.008 173.559 18 055660.189 183.518 + 6 12 6 18 C ++ 24918.124 30.000 6426.195 1.667 B- 11804.956 35.282 18 026750.708 32.206 + 4 11 7 18 N + 13113.168 18.570 7038.562 1.032 B- 13895.984 18.570 18 014077.565 19.935 + 2 10 8 18 O -782.81558 0.00071 7767.097 0.000 B- -1655.929 0.463 17 999159.61286 0.00076 + 0 9 9 18 F 873.113 0.463 7631.638 0.026 B- -4444.510 0.589 18 000937.325 0.497 + -2 8 10 18 Ne 5317.623 0.364 7341.257 0.020 B- -19719.308 112.477 18 005708.703 0.390 + -4 7 11 18 Na -p 25036.931 112.476 6202.276 6.249 B- * 18 026878.252 120.748 +0 9 14 5 19 B x 58777# 401# 4772# 21# B- 26365# 412# 19 063100# 430# + 7 13 6 19 C -n 32412.612 98.389 6118.333 5.178 B- 16557.091 99.748 19 034796.372 105.625 + 5 12 7 19 N p-2n 15855.521 16.404 6948.583 0.863 B- 12522.664 16.614 19 017021.603 17.610 + 3 11 8 19 O -n 3332.858 2.637 7566.494 0.139 B- 4820.302 2.637 19 003577.970 2.830 + 1 10 9 19 F -1487.44434 0.00086 7779.018 0.000 B- -3239.498 0.160 18 998403.16273 0.00092 + -1 9 10 19 Ne +3n 1752.054 0.160 7567.342 0.008 B- -11177.337 10.536 19 001880.907 0.171 + -3 8 11 19 Na 12929.391 10.535 6937.885 0.554 B- -18899.001 51.099 19 013880.272 11.309 + -5 7 12 19 Mg -pp 31828.392 50.001 5902.025 2.632 B- * 19 034169.186 53.678 +0 10 15 5 20 B x 67133# 699# 4519# 35# B- 29575# 738# 20 072070# 750# + 8 14 6 20 C x 37557.610 239.161 5958.733 11.958 B- 15792.500 245.536 20 040319.754 256.749 + 6 13 7 20 N x 21765.110 55.590 6709.240 2.779 B- 17968.942 55.597 20 023365.807 59.678 + 4 12 8 20 O -nn 3796.168 0.885 7568.570 0.044 B- 3813.632 0.885 20 004075.354 0.950 + 2 11 9 20 F -n -17.463 0.030 7720.134 0.002 B- 7024.467 0.030 19 999981.252 0.031 + 0 10 10 20 Ne -7041.93055 0.00157 8032.240 0.000 B- -13892.535 1.114 19 992440.17617 0.00168 + -2 9 11 20 Na 6850.604 1.114 7298.496 0.056 B- -10708.063 27.023 20 007354.426 1.195 + -4 8 12 20 Mg 4n 17558.667 27.000 6723.976 1.350 B- * 20 018850.004 28.985 +0 11 16 5 21 B x 75721# 904# 4279# 43# B- 30078# 988# 21 081290# 970# + 9 15 6 21 C x 45643# 401# 5674# 19# B- 20392# 412# 21 049000# 430# + 7 14 7 21 N x 25251.164 95.045 6608.099 4.526 B- 17189.257 95.800 21 027108.240 102.035 + 5 13 8 21 O -3n 8061.907 12.000 7389.380 0.571 B- 8109.516 12.134 21 008654.813 12.882 + 3 12 9 21 F -nn -47.609 1.800 7738.293 0.086 B- 5684.167 1.800 20 999948.889 1.932 + 1 11 10 21 Ne -n -5731.776 0.038 7971.713 0.002 B- -3547.138 0.279 20 993846.685 0.041 + -1 10 11 21 Na -2184.637 0.276 7765.547 0.013 B- -13098.152 16.417 20 997654.695 0.296 + -3 9 12 21 Mg +3n 10913.515 16.415 7104.571 0.782 B- -16077# 401# 21 011716.140 17.621 + -5 8 13 21 Al x 26990# 401# 6302# 19# B- * 21 028975# 430# +0 10 16 6 22 C -nn 53590.244 246.572 5422.030 11.208 B- 21551.569 312.640 22 057531.496 264.706 + 8 15 7 22 N x 32038.675 192.213 6366.085 8.737 B- 22755.353 200.464 22 034394.934 206.349 + 6 14 8 22 O -4n 9283.322 56.921 7364.858 2.587 B- 6489.946 58.256 22 009966.057 61.107 + 4 13 9 22 F + 2793.377 12.399 7624.295 0.564 B- 10818.091 12.399 22 002998.813 13.310 + 2 12 10 22 Ne -8024.714 0.018 8080.465 0.001 B- -2843.196 0.171 21 991385.114 0.018 + 0 11 11 22 Na -5181.518 0.171 7915.667 0.008 B- -4781.580 0.321 21 994437.411 0.183 + -2 10 12 22 Mg -399.939 0.313 7662.762 0.014 B- -18601# 401# 21 999570.648 0.335 + -4 9 13 22 Al x 18201# 401# 6782# 18# B- -15137# 643# 22 019540# 430# + -6 8 14 22 Si x 33338# 503# 6058# 23# B- * 22 035790# 540# +0 11 17 6 23 C x 64171# 997# 5077# 43# B- 25849# 1040# 23 068890# 1070# + 9 16 7 23 N x 38322# 298# 6167# 13# B- 23701# 311# 23 041140# 320# + 7 15 8 23 O x 14620.657 90.010 7163.516 3.913 B- 11307.616 102.951 23 015695.922 96.629 + 5 14 9 23 F 3313.042 49.970 7621.136 2.173 B- 8467.086 49.970 23 003556.696 53.644 + 3 13 10 23 Ne -n -5154.044 0.104 7955.255 0.005 B- 4375.808 0.104 22 994466.905 0.112 + 1 12 11 23 Na -9529.85249 0.00181 8111.493 0.000 B- -4056.588 0.687 22 989769.28196 0.00194 + -1 11 12 23 Mg -5473.264 0.687 7901.104 0.030 B- -12221.335 0.769 22 994124.208 0.737 + -3 10 13 23 Al -- 6748.070 0.345 7335.727 0.015 B- -16949# 503# 23 007244.351 0.370 + -5 9 14 23 Si x 23697# 503# 6565# 22# B- * 23 025440# 540# +0 10 17 7 24 N x 46938# 401# 5887# 17# B- 28438# 415# 24 050390# 430# + 8 16 8 24 O x 18500.402 109.916 7039.685 4.580 B- 10940.876 131.553 24 019861.000 118.000 + 6 15 9 24 F x 7559.527 72.282 7462.957 3.012 B- 13511.167 72.284 24 008115.485 77.598 + 4 14 10 24 Ne -nn -5951.641 0.513 7993.324 0.021 B- 2466.317 0.514 23 993610.650 0.550 + 2 13 11 24 Na -n -8417.958 0.036 8063.490 0.002 B- 5515.611 0.039 23 990962.950 0.038 + 0 12 12 24 Mg -13933.569 0.013 8260.709 0.001 B- -13885.955 1.104 23 985041.697 0.014 + -2 11 13 24 Al -47.614 1.104 7649.530 0.046 B- -10791.968 19.503 23 999948.883 1.185 + -4 10 14 24 Si -- 10744.353 19.472 7167.267 0.811 B- -22575# 503# 24 011534.538 20.904 + -6 9 15 24 P x 33320# 503# 6194# 21# B- * 24 035770# 540# +0 11 18 7 25 N x 55983# 503# 5613# 20# B- 28635# 515# 25 060100# 540# + 9 17 8 25 O -n 27347.719 110.935 6727.057 4.437 B- 15984.210 134.174 25 029358.986 119.093 + 7 16 9 25 F x 11363.509 75.472 7335.132 3.019 B- 13423.315 87.727 25 012199.229 81.022 + 5 15 10 25 Ne 2p-n -2059.806 44.721 7840.771 1.789 B- 7298.011 44.737 24 997788.707 48.010 + 3 14 11 25 Na -nn -9357.817 1.200 8101.397 0.048 B- 3834.954 1.201 24 989953.969 1.288 + 1 13 12 25 Mg -13192.771 0.047 8223.502 0.002 B- -4276.606 0.475 24 985836.976 0.050 + -1 12 13 25 Al -8916.165 0.473 8021.144 0.019 B- -12743.496 10.011 24 990428.102 0.508 + -3 11 14 25 Si +3n 3827.331 10.000 7480.110 0.400 B- -15911# 401# 25 004108.808 10.735 + -5 10 15 25 P x 19738# 401# 6812# 16# B- * 25 021190# 430# +0 10 18 8 26 O -nn 34733.037 155.504 6494.709 5.981 B- 16067.976 173.649 26 037287.450 166.940 + 8 17 9 26 F x 18665.061 77.280 7082.618 2.972 B- 18185.615 79.391 26 020037.768 82.963 + 6 16 10 26 Ne x 479.445 18.186 7751.974 0.699 B- 7340.225 18.520 26 000514.705 19.523 + 4 15 11 26 Na x -6860.780 3.502 8004.201 0.135 B- 9353.766 3.502 25 992634.649 3.759 + 2 14 12 26 Mg -16214.546 0.030 8333.870 0.001 B- -4004.433 0.061 25 982592.968 0.031 + 0 13 13 26 Al -12210.112 0.064 8149.764 0.002 B- -5069.136 0.085 25 986891.904 0.069 + -2 12 14 26 Si - -7140.977 0.107 7924.707 0.004 B- -18114# 196# 25 992333.845 0.114 + -4 11 15 26 P x 10973# 196# 7198# 8# B- -16106# 627# 26 011780# 210# + -6 10 16 26 S x 27079# 596# 6548# 23# B- * 26 029070# 640# +0 11 19 8 27 O x 44451# 503# 6193# 19# B- 19821# 538# 27 047720# 540# + 9 18 9 27 F x 24629.633 190.025 6898.326 7.038 B- 17593.809 200.901 27 026441.000 204.000 + 7 17 10 27 Ne x 7035.824 65.205 7520.973 2.415 B- 12553.499 65.312 27 007553.268 70.000 + 5 16 11 27 Na ++ -5517.676 3.727 7956.942 0.138 B- 9068.939 3.728 26 994076.531 4.001 + 3 15 12 27 Mg -n -14586.614 0.050 8263.853 0.002 B- 2610.133 0.114 26 984340.624 0.053 + 1 14 13 27 Al -17196.747 0.104 8331.548 0.004 B- -4812.359 0.096 26 981538.531 0.111 + -1 13 14 27 Si - -12384.389 0.142 8124.337 0.005 B- -11661.928 26.341 26 986704.811 0.152 + -3 12 15 27 P p4n -722.461 26.340 7663.438 0.976 B- -17750# 400# 26 999224.406 28.277 + -5 11 16 27 S - 17028# 401# 6977# 15# B- * 27 018280# 430# +0 12 20 8 28 O x 52080# 699# 5988# 25# B- 19159# 726# 28 055910# 750# + 10 19 9 28 F -n 32920.950 196.493 6644.100 7.018 B- 21629.381 218.613 28 035342.095 210.943 + 8 18 10 28 Ne x 11291.569 95.825 7388.637 3.422 B- 12279.884 96.371 28 012121.998 102.872 + 6 17 11 28 Na x -988.315 10.246 7799.264 0.366 B- 14030.415 10.440 27 998939.000 11.000 + 4 16 12 28 Mg + -15018.730 2.004 8272.409 0.072 B- 1831.800 2.000 27 983876.728 2.150 + 2 15 13 28 Al -n -16850.530 0.121 8309.889 0.004 B- 4642.264 0.121 27 981910.210 0.129 + 0 14 14 28 Si -21492.79459 0.00041 8447.744 0.000 B- -14345.055 1.152 27 976926.53465 0.00044 + -2 13 15 28 P -7147.740 1.152 7907.479 0.041 B- -11220.945 160.004 27 992326.585 1.236 + -4 12 16 28 S -- 4073.205 160.000 7478.790 5.714 B- -23443# 617# 28 004372.766 171.767 + -6 11 17 28 Cl x 27516# 596# 6614# 21# B- * 28 029540# 640# +0 11 20 9 29 F x 39626# 503# 6462# 17# B- 21226# 513# 29 042540# 540# + 9 19 10 29 Ne x 18399.801 99.670 7167.067 3.437 B- 15719.825 99.943 29 019753.000 107.000 + 7 18 11 29 Na 2679.976 7.383 7682.152 0.255 B- 13282.806 13.582 29 002877.073 7.926 + 5 17 12 29 Mg x -10602.829 11.400 8113.202 0.393 B- 7601.833 11.438 28 988617.393 12.238 + 3 16 13 29 Al x -18204.662 0.931 8348.357 0.032 B- 3690.417 0.931 28 980456.490 1.000 + 1 15 14 29 Si -21895.07867 0.00049 8448.635 0.000 B- -4942.628 0.563 28 976494.66490 0.00052 + -1 14 15 29 P -16952.451 0.563 8251.222 0.019 B- -13796.043 50.003 28 981800.794 0.604 + -3 13 16 29 S +3n -3156.408 50.000 7748.519 1.724 B- -16924# 404# 28 996611.456 53.677 + -5 12 17 29 Cl x 13767# 401# 7138# 14# B- * 29 014780# 430# +0 12 21 9 30 F x 48112# 596# 6233# 20# B- 25072# 659# 30 051650# 640# + 10 20 10 30 Ne x 23039.573 280.380 7042.549 9.346 B- 14564.903 280.420 30 024734.000 301.000 + 8 19 11 30 Na 8474.670 4.727 7501.968 0.158 B- 17358.397 5.850 30 009097.932 5.074 + 6 18 12 30 Mg x -8883.727 3.447 8054.503 0.115 B- 6988.725 14.462 29 990462.926 3.700 + 4 17 13 30 Al + -15872.452 14.045 8261.382 0.468 B- 8560.508 14.045 29 982960.220 15.077 + 2 16 14 30 Si -n -24432.961 0.022 8520.654 0.001 B- -4232.352 0.313 29 973770.136 0.023 + 0 15 15 30 P -p -20200.608 0.312 8353.497 0.010 B- -6141.601 0.196 29 978313.753 0.335 + -2 14 16 30 S - -14059.007 0.369 8122.699 0.012 B- -18502# 196# 29 984907.033 0.395 + -4 13 17 30 Cl x 4443# 196# 7480# 7# B- -17046# 540# 30 004770# 210# + -6 12 18 30 Ar x 21490# 503# 6886# 17# B- * 30 023070# 540# +0 13 22 9 31 F -nn 55618# 525# 6050# 17# B- 24798# 1703# 31 059709# 563# + 11 21 10 31 Ne x 30820.342 1619.868 6824.743 52.254 B- 18559.407 1620.035 31 033087.000 1739.000 + 9 20 11 31 Na x 12260.935 23.287 7398.196 0.751 B- 15383.272 23.489 31 013162.656 25.000 + 7 19 12 31 Mg x -3122.337 3.074 7869.194 0.099 B- 11832.639 20.574 30 996648.032 3.300 + 5 18 13 31 Al p-2n -14954.976 20.343 8225.655 0.656 B- 7994.060 20.343 30 983945.171 21.839 + 3 17 14 31 Si -n -22949.036 0.043 8458.291 0.001 B- 1491.505 0.043 30 975363.194 0.046 + 1 16 15 31 P -24440.54111 0.00065 8481.167 0.000 B- -5398.016 0.229 30 973761.99842 0.00070 + -1 15 16 31 S -19042.525 0.229 8281.800 0.007 B- -11976.401 50.001 30 979557.007 0.246 + -3 14 17 31 Cl p4n -7066.124 50.000 7870.228 1.613 B- -18360# 200# 30 992414.203 53.677 + -5 13 18 31 Ar - 11294# 206# 7253# 7# B- * 31 012124# 221# +0 12 22 10 32 Ne x 36999# 503# 6671# 16# B- 18189# 517# 32 039720# 540# + 10 21 11 32 Na x 18809.658 120.163 7214.584 3.755 B- 19638.465 120.204 32 020193.000 129.000 + 8 20 12 32 Mg x -828.807 3.167 7803.837 0.099 B- 10269.721 12.517 31 999110.239 3.400 + 6 19 13 32 Al x -11098.528 12.109 8100.318 0.378 B- 12979.158 12.113 31 988085.239 13.000 + 4 18 14 32 Si x -24077.686 0.298 8481.468 0.009 B- 227.188 0.301 31 974151.539 0.320 + 2 17 15 32 P -n -24304.874 0.040 8464.120 0.001 B- 1710.660 0.040 31 973907.643 0.042 + 0 16 16 32 S -26015.53353 0.00132 8493.129 0.000 B- -12680.859 0.562 31 972071.17441 0.00141 + -2 15 17 32 Cl -13334.674 0.562 8072.404 0.018 B- -11134.323 1.857 31 985684.637 0.603 + -4 14 18 32 Ar x -2200.351 1.770 7700.008 0.055 B- -23299# 503# 31 997637.826 1.900 + -6 13 19 32 K x 21098# 503# 6947# 16# B- * 32 022650# 540# +0 13 23 10 33 Ne x 45997# 596# 6440# 18# B- 22030# 843# 33 049380# 640# + 11 22 11 33 Na x 23967# 596# 7084# 18# B- 19005# 596# 33 025730# 640# + 9 21 12 33 Mg x 4962.204 2.888 7636.458 0.088 B- 13430.437 75.602 33 005327.145 3.100 + 7 20 13 33 Al x -8468.233 75.547 8019.733 2.289 B- 12046.093 75.550 32 990908.977 81.103 + 5 19 14 33 Si x -20514.326 0.699 8361.059 0.021 B- 5823.021 1.295 32 977976.964 0.750 + 3 18 15 33 P + -26337.346 1.090 8513.806 0.033 B- 248.508 1.090 32 971725.694 1.170 + 1 17 16 33 S -26585.85432 0.00135 8497.630 0.000 B- -5582.517 0.391 32 971458.90982 0.00145 + -1 16 17 33 Cl -21003.337 0.391 8304.755 0.012 B- -11619.044 0.560 32 977451.989 0.419 + -3 15 18 33 Ar x -9384.293 0.401 7928.955 0.012 B- -16426# 196# 32 989925.546 0.430 + -5 14 19 33 K x 7042# 196# 7407# 6# B- * 33 007560# 210# +0 14 24 10 34 Ne -nn 52842# 513# 6287# 15# B- 21553# 718# 34 056728# 551# + 12 23 11 34 Na x 31289# 503# 6898# 15# B- 22966# 504# 34 033590# 540# + 10 22 12 34 Mg x 8323.347 28.876 7550.390 0.849 B- 11392.249 74.764 34 008935.481 31.000 + 8 21 13 34 Al x -3068.901 68.963 7862.446 2.028 B- 16887.828 70.393 33 996705.398 74.034 + 6 20 14 34 Si +pp -19956.729 14.118 8336.137 0.415 B- 4591.970 14.141 33 978575.569 15.155 + 4 19 15 34 P x -24548.698 0.810 8448.185 0.024 B- 5382.994 0.812 33 973645.886 0.870 + 2 18 16 34 S -29931.693 0.045 8583.498 0.001 B- -5491.605 0.038 33 967867.004 0.047 + 0 17 17 34 Cl -24440.087 0.049 8398.970 0.001 B- -6061.795 0.063 33 973762.485 0.052 + -2 16 18 34 Ar -18378.293 0.078 8197.672 0.002 B- -17158# 298# 33 980270.090 0.083 + -4 15 19 34 K x -1220# 298# 7670# 9# B- -15072# 422# 33 998690# 320# + -6 14 20 34 Ca x 13851# 298# 7204# 9# B- * 34 014870# 320# +0 13 24 11 35 Na -n 37840# 586# 6744# 17# B- 22200# 613# 35 040623# 629# + 11 23 12 35 Mg x 15639.784 179.778 7356.233 5.137 B- 15859.617 192.875 35 016790.000 193.000 + 9 22 13 35 Al x -219.833 69.862 7787.012 1.996 B- 14140.566 79.725 34 999764.000 75.000 + 7 21 14 35 Si 2p-n -14360.399 38.412 8168.676 1.097 B- 10497.392 38.456 34 984583.476 41.236 + 5 20 15 35 P +p -24857.791 1.866 8446.248 0.053 B- 3988.426 1.867 34 973314.062 2.003 + 3 19 16 35 S -28846.217 0.040 8537.851 0.001 B- 167.323 0.026 34 969032.310 0.043 + 1 18 17 35 Cl -29013.540 0.035 8520.279 0.001 B- -5966.130 0.746 34 968852.682 0.037 + -1 17 18 35 Ar - -23047.410 0.746 8327.465 0.021 B- -11874.519 0.905 34 975257.586 0.801 + -3 16 19 35 K 4n -11172.891 0.512 7965.840 0.015 B- -15961# 196# 34 988005.407 0.550 + -5 15 20 35 Ca x 4788# 196# 7487# 6# B- * 35 005140# 210# +0 14 25 11 36 Na -n 45912# 594# 6557# 17# B- 25531# 752# 36 049288# 638# + 12 24 12 36 Mg x 20380.157 460.158 7244.419 12.782 B- 14429.774 470.829 36 021879.000 494.000 + 10 23 13 36 Al x 5950.384 99.670 7623.515 2.769 B- 18343.707 122.559 36 006388.000 107.000 + 8 22 14 36 Si x -12393.323 71.320 8111.330 1.981 B- 7857.705 72.516 35 986695.219 76.565 + 6 21 15 36 P + -20251.028 13.114 8307.868 0.364 B- 10413.096 13.112 35 978259.625 14.078 + 4 20 16 36 S -30664.124 0.188 8575.389 0.005 B- -1142.107 0.189 35 967080.706 0.201 + 2 19 17 36 Cl -29522.017 0.036 8521.932 0.001 B- 709.522 0.045 35 968306.809 0.038 + 0 18 18 36 Ar -30231.540 0.027 8519.909 0.001 B- -12814.475 0.342 35 967545.105 0.028 + -2 17 19 36 K -17417.065 0.341 8142.219 0.009 B- -10965.915 40.001 35 981302.010 0.366 + -4 16 20 36 Ca 4n -6451.150 40.000 7815.879 1.111 B- -21802# 301# 35 993074.404 42.941 + -6 15 21 36 Sc x 15351# 298# 7189# 8# B- * 36 016480# 320# +0 15 26 11 37 Na -nn 53143# 605# 6402# 16# B- 24853# 786# 37 057051# 649# + 13 25 12 37 Mg x 28289# 503# 7053# 14# B- 18480# 517# 37 030370# 540# + 11 24 13 37 Al x 9809.563 120.163 7531.315 3.248 B- 16403.851 146.026 37 010531.000 129.000 + 9 23 14 37 Si x -6594.287 82.973 7953.518 2.243 B- 12401.817 91.239 36 992920.740 89.074 + 7 22 15 37 P p-2n -18996.105 37.948 8267.558 1.026 B- 7900.306 37.947 36 979606.841 40.738 + 5 21 16 37 S -n -26896.410 0.198 8459.935 0.005 B- 4865.111 0.196 36 971125.514 0.212 + 3 20 17 37 Cl -31761.521 0.052 8570.280 0.001 B- -813.873 0.200 36 965902.602 0.055 + 1 19 18 37 Ar - -30947.648 0.207 8527.139 0.006 B- -6147.449 0.227 36 966776.331 0.221 + -1 18 19 37 K -p -24800.199 0.094 8339.847 0.003 B- -11664.133 0.641 36 973375.889 0.100 + -3 17 20 37 Ca x -13136.066 0.634 8003.456 0.017 B- -16620# 298# 36 985897.852 0.680 + -5 16 21 37 Sc x 3484# 298# 7533# 8# B- * 37 003740# 320# +0 14 26 12 38 Mg x 34074# 503# 6928# 13# B- 17864# 562# 38 036580# 540# + 12 25 13 38 Al x 16209.859 249.640 7377.097 6.569 B- 20380.157 259.232 38 017402.000 268.000 + 10 24 14 38 Si x -4170.299 69.862 7892.829 1.838 B- 10499.257 111.407 37 995523.000 75.000 + 8 23 15 38 P x -14669.556 86.780 8148.537 2.284 B- 12191.631 87.076 37 984251.583 93.162 + 6 22 16 38 S + -26861.187 7.172 8448.781 0.189 B- 2936.900 7.171 37 971163.328 7.699 + 4 21 17 38 Cl -n -29798.087 0.098 8505.480 0.003 B- 4916.733 0.218 37 968010.436 0.105 + 2 20 18 38 Ar -34714.820 0.195 8614.280 0.005 B- -5914.066 0.045 37 962732.106 0.209 + 0 19 19 38 K -28800.754 0.195 8438.058 0.005 B- -6742.253 0.063 37 969081.117 0.209 + -2 18 20 38 Ca -22058.500 0.194 8240.043 0.005 B- -17513# 196# 37 976319.224 0.208 + -4 17 21 38 Sc x -4546# 196# 7759# 5# B- -15211# 357# 37 995120# 210# + -6 16 22 38 Ti x 10666# 298# 7338# 8# B- * 38 011450# 320# +0 15 27 12 39 Mg -n 42275# 513# 6747# 13# B- 21279# 718# 39 045384# 551# + 13 26 13 39 Al x 20996# 503# 7272# 13# B- 18676# 511# 39 022540# 540# + 11 25 14 39 Si x 2320.352 90.355 7730.979 2.317 B- 15149.625 128.539 39 002491.000 97.000 + 9 24 15 39 P x -12829.273 91.423 8099.370 2.344 B- 10333.073 104.203 38 986227.208 98.146 + 7 23 16 39 S 2p-n -23162.346 50.000 8344.261 1.282 B- 6637.846 50.030 38 975134.197 53.677 + 5 22 17 39 Cl -nn -29800.192 1.732 8494.402 0.044 B- 3441.998 5.292 38 968008.176 1.859 + 3 21 18 39 Ar + -33242.190 5.000 8562.598 0.128 B- 565.000 5.000 38 964313.038 5.367 + 1 20 19 39 K -33807.19022 0.00458 8557.025 0.000 B- -6524.488 0.596 38 963706.48643 0.00492 + -1 19 20 39 Ca -27282.702 0.596 8369.670 0.015 B- -13109.992 24.007 38 970710.813 0.640 + -3 18 21 39 Sc 2n-p -14172.710 24.000 8013.456 0.615 B- -16371# 206# 38 984784.968 25.765 + -5 17 22 39 Ti x 2198# 205# 7574# 5# B- * 39 002360# 220# +0 16 28 12 40 Mg x 48605# 596# 6621# 15# B- 20633# 780# 40 052180# 640# + 14 27 13 40 Al x 27973# 503# 7118# 13# B- 22543# 553# 40 030030# 540# + 12 26 14 40 Si x 5429.679 230.079 7661.754 5.752 B- 13504.103 255.542 40 005829.000 247.000 + 10 25 15 40 P x -8074.425 111.199 7979.798 2.780 B- 14763.421 111.271 39 991331.748 119.377 + 8 24 16 40 S -22837.846 3.982 8329.325 0.100 B- 4719.967 32.312 39 975482.562 4.274 + 6 23 17 40 Cl + -27557.813 32.066 8427.765 0.802 B- 7482.082 32.066 39 970415.469 34.423 + 4 22 18 40 Ar -35039.89464 0.00224 8595.259 0.000 B- -1504.403 0.056 39 962383.12372 0.00240 + 2 21 19 40 K -33535.492 0.056 8538.090 0.001 B- 1310.894 0.060 39 963998.166 0.060 + 0 20 20 40 Ca -34846.386 0.021 8551.304 0.001 B- -14323.050 2.828 39 962590.863 0.022 + -2 19 21 40 Sc - -20523.336 2.828 8173.669 0.071 B- -11672.950 160.025 39 977967.291 3.036 + -4 18 22 40 Ti -- -8850.386 160.000 7862.286 4.000 B- -20736# 431# 39 990498.719 171.767 + -6 17 23 40 V x 11886# 401# 7324# 10# B- * 40 012760# 430# +0 15 28 13 41 Al x 33888# 596# 6997# 15# B- 21768# 702# 41 036380# 640# + 13 27 14 41 Si x 12119.668 369.803 7508.573 9.020 B- 17099.435 378.380 41 013011.000 397.000 + 11 26 15 41 P x -4979.767 80.108 7906.551 1.954 B- 14028.810 80.213 40 994654.000 86.000 + 9 25 16 41 S x -19008.577 4.099 8229.635 0.100 B- 8298.611 68.846 40 979593.451 4.400 + 7 24 17 41 Cl x -27307.189 68.723 8412.959 1.676 B- 5760.317 68.724 40 970684.525 73.777 + 5 23 18 41 Ar -n -33067.505 0.347 8534.372 0.008 B- 2492.038 0.347 40 964500.570 0.372 + 3 22 19 41 K -35559.54329 0.00380 8576.072 0.000 B- -421.656 0.138 40 961825.25792 0.00408 + 1 21 20 41 Ca -35137.887 0.138 8546.706 0.003 B- -6495.476 0.158 40 962277.924 0.147 + -1 20 21 41 Sc -28642.411 0.083 8369.198 0.002 B- -12944.874 27.945 40 969251.105 0.088 + -3 19 22 41 Ti x -15697.537 27.945 8034.388 0.682 B- -15893# 299# 40 983148.000 30.000 + -5 18 23 41 V x 196# 298# 7628# 7# B- * 41 000210# 320# +0 16 29 13 42 Al x 40837# 596# 6857# 14# B- 24275# 780# 42 043840# 640# + 14 28 14 42 Si x 16562# 503# 7416# 12# B- 15552# 545# 42 017780# 540# + 12 27 15 42 P x 1009.739 209.586 7767.866 4.990 B- 18647.485 209.605 42 001084.000 225.000 + 10 26 16 42 S x -17637.746 2.794 8193.227 0.067 B- 7275.244 143.787 41 981065.100 3.000 + 8 25 17 42 Cl x -24912.990 143.760 8347.819 3.423 B- 9509.686 143.876 41 973254.804 154.332 + 6 24 18 42 Ar x -34422.675 5.775 8555.613 0.138 B- 599.351 5.776 41 963045.736 6.200 + 4 23 19 42 K -n -35022.026 0.106 8551.256 0.003 B- 3525.217 0.183 41 962402.306 0.113 + 2 22 20 42 Ca -38547.243 0.149 8616.563 0.004 B- -6426.100 0.097 41 958617.830 0.159 + 0 21 21 42 Sc -32121.143 0.169 8444.933 0.004 B- -7016.480 0.224 41 965516.532 0.181 + -2 20 22 42 Ti -25104.663 0.277 8259.247 0.007 B- -17485# 298# 41 973049.034 0.297 + -4 19 23 42 V x -7620# 298# 7824# 7# B- -13861# 499# 41 991820# 320# + -6 18 24 42 Cr x 6241# 401# 7476# 10# B- * 42 006700# 430# +0 17 30 13 43 Al x 47944# 699# 6720# 16# B- 24843# 918# 43 051470# 750# + 15 29 14 43 Si x 23101# 596# 7279# 14# B- 18421# 702# 43 024800# 640# + 13 28 15 43 P x 4679.826 369.803 7689.572 8.600 B- 16875.285 369.837 43 005024.000 397.000 + 11 27 16 43 S x -12195.459 4.970 8063.827 0.116 B- 12127.168 95.466 42 986907.635 5.335 + 9 26 17 43 Cl x -24322.627 95.336 8327.660 2.217 B- 7687.181 95.484 42 973888.584 102.347 + 7 25 18 43 Ar x -32009.808 5.310 8488.237 0.123 B- 4565.581 5.325 42 965636.055 5.700 + 5 24 19 43 K -4n -36575.389 0.410 8576.220 0.010 B- 1833.426 0.469 42 960734.702 0.440 + 3 23 20 43 Ca -38408.815 0.228 8600.663 0.005 B- -2220.715 1.865 42 958766.438 0.244 + 1 22 21 43 Sc -p -36188.100 1.863 8530.825 0.043 B- -6867.016 7.481 42 961150.474 1.999 + -1 21 22 43 Ti -n2p -29321.084 7.245 8352.932 0.168 B- -11404.728 43.457 42 968522.520 7.777 + -3 20 23 43 V x -17916.356 42.849 8069.512 0.996 B- -15616# 403# 42 980766.000 46.000 + -5 19 24 43 Cr x -2301# 401# 7688# 9# B- * 42 997530# 430# +0 16 30 14 44 Si x 28513# 596# 7174# 14# B- 18071# 780# 44 030610# 640# + 14 29 15 44 P x 10442# 503# 7567# 11# B- 19646# 503# 44 011210# 540# + 12 28 16 44 S x -9204.234 5.216 7996.015 0.119 B- 11405.496 188.452 43 990118.848 5.600 + 10 27 17 44 Cl x -20609.730 188.380 8237.450 4.281 B- 12063.525 188.386 43 977874.543 202.234 + 8 26 18 44 Ar x -32673.255 1.584 8493.840 0.036 B- 3108.237 1.638 43 964923.815 1.700 + 6 25 19 44 K x -35781.492 0.419 8546.701 0.010 B- 5687.166 0.530 43 961586.985 0.450 + 4 24 20 44 Ca -41468.658 0.325 8658.175 0.007 B- -3652.680 1.757 43 955481.561 0.348 + 2 23 21 44 Sc -p -37815.978 1.756 8557.379 0.040 B- -267.407 1.890 43 959402.875 1.884 + 0 22 22 44 Ti -a -37548.570 0.700 8533.520 0.016 B- -13432.191 181.643 43 959689.949 0.751 + -2 21 23 44 V x -24116.380 181.641 8210.463 4.128 B- -10479# 349# 43 974110.000 195.000 + -4 20 24 44 Cr x -13637# 298# 7955# 7# B- -20297# 585# 43 985360# 320# + -6 19 25 44 Mn x 6660# 503# 7475# 11# B- * 44 007150# 540# +0 17 31 14 45 Si x 37213# 699# 7001# 16# B- 21890# 918# 45 039950# 750# + 15 30 15 45 P x 15323# 596# 7470# 13# B- 19313# 912# 45 016450# 640# + 13 29 16 45 S x -3989.589 690.237 7881.807 15.339 B- 14370.158 697.396 44 995717.000 741.000 + 11 28 17 45 Cl x -18359.747 99.670 8183.758 2.215 B- 11411.050 99.671 44 980290.000 107.000 + 9 27 18 45 Ar x -29770.796 0.512 8419.952 0.011 B- 6844.841 0.731 44 968039.733 0.550 + 7 26 19 45 K x -36615.638 0.522 8554.674 0.012 B- 4196.514 0.637 44 960691.493 0.560 + 5 25 20 45 Ca -40812.152 0.366 8630.544 0.008 B- 259.025 0.786 44 956186.350 0.392 + 3 24 21 45 Sc -41071.177 0.721 8618.915 0.016 B- -2062.055 0.509 44 955908.275 0.773 + 1 23 22 45 Ti - -39009.121 0.882 8555.706 0.020 B- -7128.572 8.028 44 958121.983 0.946 + -1 22 23 45 V -31880.549 7.981 8379.908 0.177 B- -12365.750 36.285 44 965774.820 8.567 + -3 21 24 45 Cr x -19514.799 35.397 8087.728 0.787 B- -14382# 402# 44 979050.000 38.000 + -5 20 25 45 Mn x -5133# 401# 7751# 9# B- -18564# 567# 44 994490# 430# + -7 19 26 45 Fe -pp 13431# 401# 7321# 9# B- * 45 014419# 430# +0 16 31 15 46 P x 22784# 699# 7321# 15# B- 22747# 861# 46 024460# 750# + 14 30 16 46 S x 37# 503# 7798# 11# B- 13848# 528# 46 000040# 540# + 12 29 17 46 Cl x -13810.330 160.217 8082.414 3.483 B- 15920.432 165.302 45 985174.000 172.000 + 10 28 18 46 Ar +pp -29730.762 40.687 8411.502 0.884 B- 5683.162 40.693 45 968082.712 43.679 + 8 27 19 46 K x -35413.924 0.727 8518.042 0.016 B- 7724.473 2.375 45 961981.586 0.780 + 6 26 20 46 Ca -43138.396 2.261 8668.958 0.049 B- -1377.897 2.335 45 953689.023 2.426 + 4 25 21 46 Sc -n -41760.499 0.728 8621.996 0.016 B- 2366.496 0.667 45 955168.257 0.781 + 2 24 22 46 Ti -44126.996 0.327 8656.434 0.007 B- -7052.394 0.095 45 952627.718 0.351 + 0 23 23 46 V -37074.602 0.332 8486.113 0.007 B- -7601.071 19.997 45 960198.775 0.356 + -2 22 24 46 Cr x -29473.531 19.994 8303.865 0.435 B- -16516# 401# 45 968358.861 21.464 + -4 21 25 46 Mn x -12957# 401# 7928# 9# B- -13544# 643# 45 986090# 430# + -6 20 26 46 Fe x 587# 503# 7616# 11# B- * 46 000630# 540# +0 17 32 15 47 P x 29240# 801# 7200# 17# B- 21834# 946# 47 031390# 860# + 15 31 16 47 S x 7405# 503# 7647# 11# B- 17503# 643# 47 007950# 540# + 13 30 17 47 Cl x -10097# 401# 8003# 9# B- 15114# 410# 46 989160# 430# + 11 29 18 47 Ar -n -25211.011 89.752 8308.100 1.910 B- 10500.966 89.763 46 972934.865 96.352 + 9 28 19 47 K x -35711.976 1.397 8514.879 0.030 B- 6631.477 2.647 46 961661.614 1.500 + 7 27 20 47 Ca -42343.453 2.248 8639.328 0.048 B- 1992.177 1.185 46 954542.430 2.413 + 5 26 21 47 Sc -44335.630 1.962 8665.069 0.042 B- 600.770 1.929 46 952403.740 2.106 + 3 25 22 47 Ti -44936.400 0.357 8661.206 0.008 B- -2930.599 0.147 46 951758.787 0.382 + 1 24 23 47 V -42005.801 0.333 8582.207 0.007 B- -7444.914 6.962 46 954904.914 0.357 + -1 23 24 47 Cr -34560.887 6.956 8407.159 0.148 B- -11995.445 32.426 46 962897.359 7.468 + -3 22 25 47 Mn x -22565.442 31.671 8135.291 0.674 B- -14974# 504# 46 975775.000 34.000 + -5 21 26 47 Fe x -7592# 503# 7800# 11# B- -17438# 946# 46 991850# 540# + -7 20 27 47 Co x 9846# 801# 7412# 17# B- * 47 010570# 860# +0 16 32 16 48 S x 12761# 596# 7545# 12# B- 16823# 780# 48 013700# 640# + 14 31 17 48 Cl x -4061# 503# 7879# 10# B- 18378# 585# 47 995640# 540# + 12 30 18 48 Ar x -22440# 298# 8245# 6# B- 9845# 298# 47 975910# 320# + 10 29 19 48 K x -32284.477 0.773 8434.232 0.016 B- 11940.282 0.782 47 965341.186 0.830 + 8 28 20 48 Ca -44224.759 0.120 8666.689 0.003 B- 278.661 4.953 47 952522.765 0.129 + 6 27 21 48 Sc -44503.420 4.953 8656.195 0.103 B- 3988.314 4.953 47 952223.611 5.317 + 4 26 22 48 Ti -48491.734 0.358 8722.986 0.007 B- -4014.966 0.969 47 947941.979 0.384 + 2 25 23 48 V -44476.768 1.027 8623.042 0.021 B- -1655.114 7.426 47 952252.223 1.102 + 0 24 24 48 Cr +nn -42821.654 7.363 8572.262 0.153 B- -13498.222 167.831 47 954029.061 7.904 + -2 23 25 48 Mn x -29323.431 167.669 8274.750 3.493 B- -10908# 434# 47 968520.000 180.000 + -4 22 26 48 Fe x -18416# 401# 8031# 8# B- -19282# 896# 47 980230# 430# + -6 21 27 48 Co x 866# 801# 7613# 17# B- -15610# 947# 48 000930# 860# + -8 20 28 48 Ni -pp 16477# 506# 7272# 11# B- * 48 017688# 543# +0 17 33 16 49 S -n 21203# 667# 7383# 14# B- 20057# 895# 49 022762# 716# + 15 32 17 49 Cl x 1146# 596# 7777# 12# B- 18006# 718# 49 001230# 640# + 13 31 18 49 Ar x -16860# 401# 8128# 8# B- 12751# 401# 48 981900# 430# + 11 30 19 49 K x -29611.491 0.801 8372.274 0.016 B- 11688.404 0.829 48 968210.755 0.860 + 9 29 20 49 Ca -n -41299.895 0.214 8594.847 0.004 B- 5261.178 2.704 48 955662.736 0.229 + 7 28 21 49 Sc -46561.073 2.700 8686.252 0.055 B- 2001.737 2.710 48 950014.629 2.898 + 5 27 22 49 Ti -48562.809 0.360 8711.137 0.007 B- -601.856 0.820 48 947865.676 0.386 + 3 26 23 49 V - -47960.953 0.896 8682.888 0.018 B- -2628.260 2.505 48 948511.795 0.961 + 1 25 24 49 Cr +n -45332.693 2.369 8613.284 0.048 B- -7695.955 10.404 48 951333.349 2.543 + -1 24 25 49 Mn -37636.738 10.133 8440.257 0.207 B- -12886.011 26.253 48 959595.297 10.878 + -3 23 26 49 Fe x -24750.727 24.219 8161.311 0.494 B- -14420# 699# 48 973429.000 26.000 + -5 22 27 49 Co x -10330# 699# 7851# 14# B- -17503# 1063# 48 988910# 750# + -7 21 28 49 Ni x 7173# 801# 7478# 16# B- * 49 007700# 860# +0 16 33 17 50 Cl x 8430# 596# 7637# 12# B- 21350# 780# 50 009050# 640# + 14 32 18 50 Ar x -12920# 503# 8048# 10# B- 12808# 503# 49 986130# 540# + 12 31 19 50 K x -25727.848 7.731 8288.582 0.155 B- 13861.376 7.892 49 972380.017 8.300 + 10 30 20 50 Ca x -39589.224 1.584 8550.163 0.032 B- 4958.290 15.084 49 957499.217 1.700 + 8 29 21 50 Sc -pn -44547.514 15.000 8633.682 0.300 B- 6883.167 15.005 49 952176.274 16.103 + 6 28 22 50 Ti -51430.681 0.362 8755.698 0.007 B- -2206.825 0.871 49 944786.889 0.389 + 4 27 23 50 V +n -49223.856 0.881 8695.915 0.018 B- 1037.853 0.317 49 947156.014 0.945 + 2 26 24 50 Cr -50261.709 0.879 8701.025 0.018 B- -7634.477 0.067 49 946041.833 0.943 + 0 25 25 50 Mn -42627.232 0.882 8532.689 0.018 B- -8138.601 60.006 49 954237.781 0.946 + -2 24 26 50 Fe 4n -34488.631 60.002 8354.270 1.200 B- -16706# 599# 49 962974.929 64.414 + -4 23 27 50 Co x -17782# 596# 8004# 12# B- -12883# 999# 49 980910# 640# + -6 22 28 50 Ni x -4900# 801# 7731# 16# B- * 49 994740# 860# +0 17 34 17 51 Cl x 14475# 699# 7527# 14# B- 20344# 918# 51 015540# 750# + 15 33 18 51 Ar x -5868# 596# 7910# 12# B- 16648# 596# 50 993700# 640# + 13 32 19 51 K x -22516.039 13.070 8221.346 0.256 B- 13822.490 25.896 50 975828.036 14.031 + 11 31 20 51 Ca x -36338.529 22.360 8477.035 0.438 B- 6890.284 30.000 50 960988.981 24.004 + 9 30 21 51 Sc -p2n -43228.814 20.000 8596.798 0.392 B- 6503.044 20.010 50 953591.956 21.471 + 7 29 22 51 Ti -n -49731.858 0.609 8708.969 0.012 B- 2471.826 0.996 50 946610.651 0.654 + 5 28 23 51 V -52203.685 0.877 8742.096 0.017 B- -752.630 0.238 50 943957.036 0.942 + 3 27 24 51 Cr -51451.054 0.879 8711.998 0.017 B- -3207.559 0.352 50 944765.018 0.943 + 1 26 25 51 Mn -48243.495 0.880 8633.765 0.017 B- -8041.165 9.001 50 948208.475 0.944 + -1 25 26 51 Fe -40202.330 8.965 8460.755 0.176 B- -12860.187 49.260 50 956841.021 9.624 + -3 24 27 51 Co x -27342.143 48.438 8193.254 0.950 B- -14404# 803# 50 970647.000 52.000 + -5 23 28 51 Ni x -12938# 801# 7895# 16# B- * 50 986110# 860# +0 16 34 18 52 Ar x -969# 596# 7819# 11# B- 15575# 718# 51 998960# 640# + 14 33 19 52 K x -16543# 401# 8104# 8# B- 17720# 405# 51 982240# 430# + 12 32 20 52 Ca -34263.009 59.809 8429.319 1.150 B- 5903.497 142.381 51 963217.145 64.207 + 10 31 21 52 Sc -40166.506 141.950 8527.802 2.730 B- 9302.339 142.127 51 956879.479 152.390 + 8 30 22 52 Ti -nn -49468.845 7.080 8691.648 0.136 B- 1974.766 7.125 51 946893.006 7.601 + 6 29 23 52 V -n -51443.612 0.886 8714.579 0.017 B- 3974.477 0.929 51 944773.007 0.951 + 4 28 24 52 Cr -55418.089 0.588 8775.967 0.011 B- -4711.235 1.893 51 940506.231 0.631 + 2 27 25 52 Mn +pn -50706.854 1.901 8670.321 0.037 B- -2374.561 6.247 51 945563.949 2.040 + 0 26 26 52 Fe - -48332.293 6.530 8609.611 0.126 B- -14342# 196# 51 948113.146 7.009 + -2 25 27 52 Co x -33990# 196# 8319# 4# B- -10517# 725# 51 963510# 210# + -4 24 28 52 Ni x -23474# 699# 8101# 13# B- -20409# 1063# 51 974800# 750# + -6 23 29 52 Cu x -3065# 801# 7694# 15# B- * 51 996710# 860# +0 17 35 18 53 Ar x 6791# 699# 7677# 13# B- 18472# 861# 53 007290# 750# + 15 34 19 53 K x -11681# 503# 8011# 9# B- 16776# 643# 52 987460# 540# + 13 33 20 53 Ca x -28457# 401# 8313# 8# B- 9650# 483# 52 969450# 430# + 11 32 21 53 Sc x -38107.420 270.133 8480.339 5.097 B- 8722.572 288.066 52 959090.000 290.000 + 9 31 22 53 Ti + -46829.991 100.050 8630.154 1.888 B- 5020.000 100.000 52 949725.933 107.407 + 7 30 23 53 V +p -51849.991 3.152 8710.110 0.059 B- 3435.903 3.103 52 944336.741 3.383 + 5 29 24 53 Cr -55285.894 0.578 8760.177 0.011 B- -596.849 0.357 52 940648.147 0.620 + 3 28 25 53 Mn -54689.045 0.638 8734.155 0.012 B- -3742.311 1.716 52 941288.891 0.684 + 1 27 26 53 Fe -50946.734 1.707 8648.784 0.032 B- -8288.106 0.443 52 945306.428 1.832 + -1 26 27 53 Co -42658.627 1.763 8477.643 0.033 B- -13027.803 25.212 52 954204.077 1.892 + -3 25 28 53 Ni x -29630.824 25.150 8217.074 0.475 B- -15277# 801# 52 968190.000 27.000 + -5 24 29 53 Cu x -14354# 801# 7914# 15# B- * 52 984590# 860# +0 16 35 19 54 K x -5002# 596# 7889# 11# B- 19776# 780# 53 994630# 640# + 14 34 20 54 Ca x -24778# 503# 8240# 9# B- 8821# 620# 53 973400# 540# + 12 33 21 54 Sc x -33598.989 363.283 8389.275 6.727 B- 11998.064 384.095 53 963930.000 390.000 + 10 32 22 54 Ti x -45597.053 124.717 8596.973 2.310 B- 4295.054 125.617 53 951049.547 133.889 + 8 31 23 54 V + -49892.107 15.011 8662.023 0.278 B- 7041.591 15.000 53 946438.617 16.114 + 6 30 24 54 Cr -56933.697 0.570 8777.935 0.011 B- -1377.174 1.008 53 938879.158 0.611 + 4 29 25 54 Mn -p -55556.524 1.155 8737.944 0.021 B- 697.343 1.096 53 940357.615 1.240 + 2 28 26 54 Fe -56253.867 0.494 8736.370 0.009 B- -8244.547 0.089 53 939608.986 0.529 + 0 27 27 54 Co -48009.320 0.502 8569.205 0.009 B- -8786.402 50.001 53 948459.872 0.538 + -2 26 28 54 Ni 4n -39222.917 50.002 8392.006 0.926 B- -17482# 505# 53 957892.463 53.679 + -4 25 29 54 Cu x -21741# 503# 8054# 9# B- -14325# 861# 53 976660# 540# + -6 24 30 54 Zn -pp -7416# 699# 7774# 13# B- * 53 992039# 750# +0 17 36 19 55 K x 708# 699# 7788# 13# B- 19058# 861# 55 000760# 750# + 15 35 20 55 Ca x -18350# 503# 8120# 9# B- 11626# 684# 54 980300# 540# + 13 34 21 55 Sc x -29976.509 463.247 8317.630 8.423 B- 11691.021 490.625 54 967818.892 497.316 + 11 33 22 55 Ti -41667.530 161.602 8515.970 2.938 B- 7476.090 157.206 54 955268.064 173.486 + 9 32 23 55 V -49143.620 95.105 8637.674 1.729 B- 5965.023 95.103 54 947242.150 102.099 + 7 31 24 55 Cr -55108.643 0.600 8731.905 0.011 B- 2603.082 0.409 54 940838.434 0.643 + 5 30 25 55 Mn -57711.725 0.444 8765.009 0.008 B- -231.088 0.179 54 938043.910 0.476 + 3 29 26 55 Fe -57480.637 0.472 8746.583 0.009 B- -3451.379 0.324 54 938291.994 0.506 + 1 28 27 55 Co -54029.258 0.535 8669.606 0.010 B- -8694.034 0.578 54 941997.202 0.574 + -1 27 28 55 Ni - -45335.224 0.787 8497.308 0.014 B- -13699.825 155.561 54 951330.632 0.845 + -3 26 29 55 Cu x -31635.399 155.559 8233.996 2.828 B- -16713# 716# 54 966038.000 167.000 + -5 25 30 55 Zn x -14923# 699# 7916# 13# B- * 54 983980# 750# +0 18 37 19 56 K x 7927# 801# 7664# 14# B- 21825# 999# 56 008510# 860# + 16 36 20 56 Ca x -13898# 596# 8040# 11# B- 10833# 718# 55 985080# 640# + 14 35 21 56 Sc x -24731# 401# 8220# 7# B- 14474# 423# 55 973450# 430# + 12 34 22 56 Ti -39205.322 135.683 8464.062 2.423 B- 6917.780 199.470 55 957911.353 145.661 + 10 33 23 56 V -46123.102 177.701 8573.623 3.173 B- 9158.143 177.710 55 950484.810 190.769 + 8 32 24 56 Cr x -55281.245 1.863 8723.191 0.033 B- 1629.600 1.919 55 940653.139 2.000 + 6 31 25 56 Mn -56910.845 0.460 8738.320 0.008 B- 3695.577 0.209 55 938903.691 0.493 + 4 30 26 56 Fe -60606.422 0.456 8790.342 0.008 B- -4566.624 0.411 55 934936.326 0.489 + 2 29 27 56 Co -56039.798 0.584 8694.825 0.010 B- -2132.889 0.374 55 939838.798 0.626 + 0 28 28 56 Ni -53906.909 0.533 8642.767 0.010 B- -15669# 196# 55 942128.549 0.571 + -2 27 29 56 Cu x -38238# 196# 8349# 3# B- -12659# 540# 55 958950# 210# + -4 26 30 56 Zn x -25579# 503# 8109# 9# B- -21257# 780# 55 972540# 540# + -6 25 31 56 Ga x -4322# 596# 7715# 11# B- * 55 995360# 640# +0 17 37 20 57 Ca x -6874# 596# 7917# 10# B- 13833# 780# 56 992620# 640# + 15 36 21 57 Sc x -20707# 503# 8146# 9# B- 13160# 561# 56 977770# 540# + 13 35 22 57 Ti -33867.607 248.036 8363.527 4.352 B- 10360.782 325.483 56 963641.626 266.277 + 11 34 23 57 V -44228.389 226.711 8531.570 3.977 B- 8295.751 226.719 56 952518.869 243.384 + 9 33 24 57 Cr x -52524.139 1.863 8663.384 0.033 B- 4961.992 2.396 56 943613.013 2.000 + 7 32 25 57 Mn -57486.131 1.506 8736.711 0.026 B- 2695.049 1.553 56 938286.096 1.616 + 5 31 26 57 Fe -60181.180 0.457 8770.267 0.008 B- -836.232 0.451 56 935392.841 0.490 + 3 30 27 57 Co -59344.948 0.619 8741.871 0.011 B- -3261.729 0.642 56 936290.574 0.664 + 1 29 28 57 Ni -56083.219 0.663 8670.923 0.012 B- -8774.967 0.439 56 939792.184 0.712 + -1 28 29 57 Cu -47308.253 0.614 8503.251 0.011 B- -14762# 205# 56 949212.498 0.659 + -3 27 30 57 Zn x -32546# 205# 8231# 4# B- -16897# 362# 56 965060# 220# + -5 26 31 57 Ga x -15649# 298# 7920# 5# B- * 56 983200# 320# +0 18 38 20 58 Ca x -1919# 699# 7835# 12# B- 12957# 918# 57 997940# 750# + 16 37 21 58 Sc x -14876# 596# 8045# 10# B- 16236# 718# 57 984030# 640# + 14 36 22 58 Ti x -31112# 401# 8311# 7# B- 9208# 421# 57 966600# 430# + 12 35 23 58 V x -40319.499 128.029 8456.240 2.207 B- 11515.227 239.931 57 956715.235 137.444 + 10 34 24 58 Cr x -51834.726 202.917 8641.290 3.499 B- 3992.834 202.935 57 944353.129 217.840 + 8 33 25 58 Mn x -55827.560 2.701 8696.643 0.047 B- 6326.907 2.746 57 940066.645 2.900 + 6 32 26 58 Fe -62154.467 0.492 8792.239 0.008 B- -2307.909 1.140 57 933274.431 0.527 + 4 31 27 58 Co -59846.558 1.201 8738.959 0.021 B- 381.595 1.107 57 935752.073 1.289 + 2 30 28 58 Ni -60228.153 0.483 8732.049 0.008 B- -8561.019 0.443 57 935342.414 0.518 + 0 29 29 58 Cu -51667.134 0.654 8570.957 0.011 B- -9368.981 50.002 57 944533.046 0.702 + -2 28 30 58 Zn -- -42298.153 50.002 8395.934 0.862 B- -18806# 202# 57 954591.062 53.679 + -4 27 31 58 Ga x -23492# 196# 8058# 3# B- -15780# 446# 57 974780# 210# + -6 26 32 58 Ge x -7713# 401# 7773# 7# B- * 57 991720# 430# +0 17 38 21 59 Sc x -10302# 596# 7967# 10# B- 15342# 718# 58 988940# 640# + 15 37 22 59 Ti x -25644# 401# 8214# 7# B- 12188# 432# 58 972470# 430# + 13 36 23 59 V x -37832.015 161.874 8407.555 2.744 B- 10059.475 293.090 58 959385.659 173.778 + 11 35 24 59 Cr x -47891.490 244.333 8564.795 4.141 B- 7633.830 244.344 58 948586.367 262.302 + 9 34 25 59 Mn x -55525.320 2.329 8680.921 0.039 B- 5138.843 2.383 58 940391.113 2.500 + 7 33 26 59 Fe -n -60664.164 0.503 8754.760 0.009 B- 1564.956 0.372 58 934874.338 0.540 + 5 32 27 59 Co -62229.119 0.518 8768.025 0.009 B- -1073.001 0.194 58 933194.288 0.556 + 3 31 28 59 Ni -61156.118 0.483 8736.578 0.008 B- -4798.386 0.397 58 934346.202 0.518 + 1 30 29 59 Cu -56357.732 0.625 8641.990 0.011 B- -9142.777 0.602 58 939497.482 0.671 + -1 29 30 59 Zn -47214.955 0.830 8473.767 0.014 B- -13243# 168# 58 949312.657 0.891 + -3 28 31 59 Ga x -33972# 168# 8236# 3# B- -17661# 342# 58 963530# 180# + -5 27 32 59 Ge x -16310# 298# 7923# 5# B- * 58 982490# 320# +0 18 39 21 60 Sc x -4052# 699# 7865# 12# B- 18276# 861# 59 995650# 750# + 16 38 22 60 Ti x -22328# 503# 8157# 8# B- 10914# 549# 59 976030# 540# + 14 37 23 60 V x -33241.956 220.159 8325.450 3.669 B- 13261.920 306.608 59 964313.290 236.350 + 12 36 24 60 Cr x -46503.876 213.397 8533.443 3.557 B- 6464.062 213.410 59 950076.033 229.090 + 10 35 25 60 Mn x -52967.938 2.329 8628.138 0.039 B- 8444.437 4.143 59 943136.576 2.500 + 8 34 26 60 Fe -nn -61412.375 3.427 8755.840 0.057 B- 237.345 3.411 59 934071.100 3.678 + 6 33 27 60 Co -n -61649.720 0.523 8746.757 0.009 B- 2822.813 0.212 59 933816.299 0.561 + 4 32 28 60 Ni -64472.533 0.483 8780.764 0.008 B- -6127.982 1.573 59 930785.885 0.518 + 2 31 29 60 Cu - -58344.551 1.646 8665.592 0.027 B- -4170.819 1.629 59 937364.544 1.767 + 0 30 30 60 Zn -54173.732 0.646 8583.039 0.011 B- -14390# 196# 59 941842.103 0.694 + -2 29 31 60 Ga x -39784# 196# 8330# 3# B- -12175# 277# 59 957290# 210# + -4 28 32 60 Ge x -27609# 196# 8114# 3# B- -21909# 446# 59 970360# 210# + -6 27 33 60 As x -5701# 401# 7736# 7# B- * 59 993880# 430# +0 19 40 21 61 Sc x 931# 801# 7787# 13# B- 17279# 999# 61 001000# 860# + 17 39 22 61 Ti x -16348# 596# 8057# 10# B- 14159# 1075# 60 982450# 640# + 15 38 23 61 V x -30506.429 894.234 8276.439 14.660 B- 11948.660 903.480 60 967250.000 960.000 + 13 37 24 61 Cr x -42455.089 128.922 8459.494 2.113 B- 9287.033 128.943 60 954422.585 138.403 + 11 36 25 61 Mn x -51742.122 2.329 8598.915 0.038 B- 7178.372 3.497 60 944452.544 2.500 + 9 35 26 61 Fe x -58920.494 2.608 8703.768 0.043 B- 3977.129 2.755 60 936746.244 2.800 + 7 34 27 61 Co p2n -62897.623 0.887 8756.141 0.015 B- 1323.699 0.793 60 932476.620 0.952 + 5 33 28 61 Ni -64221.322 0.484 8765.016 0.008 B- -2237.488 0.981 60 931055.570 0.519 + 3 32 29 61 Cu p2n -61983.834 0.963 8715.510 0.016 B- -5635.144 15.903 60 933457.612 1.033 + 1 31 30 61 Zn -56348.691 15.900 8610.306 0.261 B- -9214.149 37.679 60 939507.188 17.069 + -1 30 31 61 Ga -47134.542 37.994 8446.429 0.623 B- -13405# 300# 60 949398.984 40.787 + -3 29 32 61 Ge x -33729# 298# 8214# 5# B- -16143# 422# 60 963790# 320# + -5 28 33 61 As x -17587# 298# 7936# 5# B- * 60 981120# 320# +0 18 40 22 62 Ti x -12566# 699# 7996# 11# B- 12911# 760# 61 986510# 750# + 16 39 23 62 V x -25476# 298# 8192# 5# B- 15419# 333# 61 972650# 320# + 14 38 24 62 Cr x -40894.961 148.099 8428.069 2.389 B- 7586# 211# 61 956097.451 158.991 + 12 37 25 62 Mn IT -48481# 150# 8538# 2# B- 10397# 150# 61 947954# 161# + 10 36 26 62 Fe x -58878.048 2.794 8692.882 0.045 B- 2545.776 18.786 61 936791.812 3.000 + 8 35 27 62 Co + -61423.824 18.577 8721.325 0.300 B- 5322.039 18.570 61 934058.809 19.942 + 6 34 28 62 Ni -66745.863 0.517 8794.546 0.008 B- -3958.896 0.475 61 928345.365 0.554 + 4 33 29 62 Cu - -62786.966 0.702 8718.074 0.011 B- -1619.455 0.651 61 932595.415 0.753 + 2 32 30 62 Zn -61167.512 0.682 8679.335 0.011 B- -9181.066 0.376 61 934333.971 0.731 + 0 31 31 62 Ga -51986.446 0.702 8518.635 0.011 B- -10088# 140# 61 944190.251 0.753 + -2 30 32 62 Ge x -41899# 140# 8343# 2# B- -17316# 329# 61 955020# 150# + -4 29 33 62 As x -24582# 298# 8051# 5# B- * 61 973610# 320# +0 19 41 22 63 Ti x -5822# 699# 7891# 11# B- 16171# 805# 62 993750# 750# + 17 40 23 63 V x -21993# 401# 8135# 6# B- 13730# 609# 62 976390# 430# + 15 39 24 63 Cr x -35722.114 458.743 8340.298 7.282 B- 11164.939 458.758 62 961650.731 492.481 + 13 38 25 63 Mn x -46887.053 3.726 8505.101 0.059 B- 8748.568 5.692 62 949664.675 4.000 + 11 37 26 63 Fe -55635.621 4.302 8631.549 0.068 B- 6215.378 19.069 62 940272.700 4.618 + 9 36 27 63 Co -61850.999 18.577 8717.788 0.295 B- 3661.322 18.570 62 933600.217 19.943 + 7 35 28 63 Ni -65512.321 0.518 8763.486 0.008 B- 66.977 0.015 62 929669.626 0.556 + 5 34 29 63 Cu -65579.298 0.518 8752.131 0.008 B- -3366.187 1.549 62 929597.723 0.556 + 3 33 30 63 Zn -62213.111 1.571 8686.281 0.025 B- -5666.019 2.041 62 933211.474 1.686 + 1 32 31 63 Ga x -56547.092 1.304 8583.926 0.021 B- -9625.876 37.283 62 939294.196 1.400 + -1 31 32 63 Ge x -46921.216 37.260 8418.716 0.591 B- -13294# 199# 62 949628.000 40.000 + -3 30 33 63 As x -33627# 196# 8195# 3# B- * 62 963900# 210# +0 18 41 23 64 V x -16171# 401# 8043# 6# B- 17289# 499# 63 982640# 430# + 16 40 24 64 Cr x -33459# 298# 8301# 5# B- 9530# 298# 63 964080# 320# + 14 39 25 64 Mn x -42989.034 3.540 8437.417 0.055 B- 11980.510 6.140 63 953849.370 3.800 + 12 38 26 64 Fe x -54969.544 5.017 8612.388 0.078 B- 4822.343 20.627 63 940987.763 5.386 + 10 37 27 64 Co + -59791.888 20.007 8675.513 0.313 B- 7306.591 20.000 63 935810.764 21.478 + 8 36 28 64 Ni -67098.478 0.545 8777.454 0.009 B- -1674.385 0.225 63 927966.816 0.584 + 6 35 29 64 Cu -65424.094 0.524 8739.068 0.008 B- 579.696 0.664 63 929764.342 0.562 + 4 34 30 64 Zn -66003.789 0.661 8735.901 0.010 B- -7171.039 1.486 63 929142.013 0.709 + 2 33 31 64 Ga -58832.751 1.429 8611.630 0.022 B- -4517.255 3.991 63 936840.440 1.534 + 0 32 32 64 Ge x -54315.496 3.726 8528.823 0.058 B- -14663# 302# 63 941689.913 4.000 + -2 31 33 64 As -p -39652# 302# 8287# 5# B- -12723# 587# 63 957432# 325# + -4 30 34 64 Se x -26929# 503# 8076# 8# B- * 63 971090# 540# +0 19 42 23 65 V x -11644# 503# 7974# 8# B- 16338# 585# 64 987500# 540# + 17 41 24 65 Cr x -27982# 298# 8213# 5# B- 12985# 298# 64 969960# 320# + 15 40 25 65 Mn x -40967.338 3.726 8400.681 0.057 B- 10254.154 7.768 64 956019.750 4.000 + 13 39 26 65 Fe x -51221.492 6.816 8546.401 0.105 B- 7963.706 7.127 64 945011.462 7.317 + 11 38 27 65 Co x -59185.198 2.083 8656.884 0.032 B- 5940.044 2.157 64 936462.072 2.235 + 9 37 28 65 Ni -n -65125.242 0.562 8736.233 0.009 B- 2138.215 0.721 64 930085.173 0.603 + 7 36 29 65 Cu -67263.457 0.661 8757.093 0.010 B- -1351.659 0.360 64 927789.704 0.709 + 5 35 30 65 Zn -65911.798 0.663 8724.262 0.010 B- -3254.470 0.663 64 929240.770 0.711 + 3 34 31 65 Ga -62657.328 0.822 8662.157 0.013 B- -6179.112 2.315 64 932734.588 0.882 + 1 33 32 65 Ge -56478.216 2.165 8555.058 0.033 B- -9541.165 84.794 64 939368.137 2.323 + -1 32 33 65 As x -46937.051 84.766 8396.234 1.304 B- -13776# 602# 64 949611.000 91.000 + -3 31 34 65 Se x -33161# 596# 8172# 9# B- * 64 964400# 640# +0 20 43 23 66 V x -5608# 596# 7884# 9# B- 18928# 780# 65 993980# 640# + 18 42 24 66 Cr x -24536# 503# 8159# 8# B- 12215# 503# 65 973660# 540# + 16 41 25 66 Mn x -36750.387 11.178 8331.798 0.169 B- 13317.453 11.906 65 960546.834 12.000 + 14 40 26 66 Fe x -50067.840 4.099 8521.724 0.062 B- 6340.694 14.561 65 946249.960 4.400 + 12 39 27 66 Co x -56408.533 13.972 8605.941 0.212 B- 9597.751 14.042 65 939442.945 15.000 + 10 38 28 66 Ni x -66006.285 1.397 8739.508 0.021 B- 251.785 1.548 65 929139.334 1.500 + 8 37 29 66 Cu -66258.070 0.666 8731.469 0.010 B- 2640.993 1.001 65 928869.032 0.715 + 6 36 30 66 Zn -68899.062 0.876 8759.630 0.013 B- -5175.000 3.000 65 926033.809 0.939 + 4 35 31 66 Ga - -63724.062 3.125 8669.367 0.047 B- -2117.030 3.941 65 931589.401 3.354 + 2 34 32 66 Ge x -61607.033 2.401 8625.437 0.036 B- -9581.956 6.168 65 933862.126 2.577 + 0 33 33 66 As x -52025.077 5.682 8468.403 0.086 B- -10657# 298# 65 944148.779 6.100 + -2 32 34 66 Se x -41368# 298# 8295# 5# B- * 65 955590# 320# +0 19 43 24 67 Cr x -18481# 503# 8067# 8# B- 14829# 643# 66 980160# 540# + 17 42 25 67 Mn x -33310# 401# 8277# 6# B- 12758# 456# 66 964240# 430# + 15 41 26 67 Fe x -46068.530 217.972 8455.310 3.253 B- 9253.245 218.067 66 950543.395 234.002 + 13 40 27 67 Co x -55321.775 6.443 8581.741 0.096 B- 8420.904 7.061 66 940609.627 6.917 + 11 39 28 67 Ni x -63742.680 2.888 8695.750 0.043 B- 3576.099 3.131 66 931569.414 3.100 + 9 38 29 67 Cu x -67318.779 1.211 8737.447 0.018 B- 561.288 1.505 66 927730.314 1.300 + 7 37 30 67 Zn -67880.067 0.893 8734.148 0.013 B- -1001.171 1.136 66 927127.746 0.958 + 5 36 31 67 Ga -66878.896 1.216 8707.528 0.018 B- -4220.892 4.804 66 928202.547 1.305 + 3 35 32 67 Ge -n2p -62658.004 4.663 8632.853 0.070 B- -6070.780 4.683 66 932733.861 5.005 + 1 34 33 67 As -56587.225 0.443 8530.568 0.007 B- -10006.936 67.069 66 939251.112 0.475 + -1 33 34 67 Se x -46580.289 67.068 8369.534 1.001 B- -13652# 507# 66 949994.000 72.000 + -3 32 35 67 Br x -32928# 503# 8154# 8# B- * 66 964650# 540# +0 20 44 24 68 Cr x -14876# 699# 8014# 10# B- 13423# 861# 67 984030# 750# + 18 43 25 68 Mn x -28299# 503# 8200# 7# B- 15527# 622# 67 969620# 540# + 16 42 26 68 Fe x -43825.349 365.259 8416.675 5.371 B- 8098.373 394.777 67 952951.550 392.121 + 14 41 27 68 Co x -51923.721 149.782 8524.264 2.203 B- 11540.093 149.812 67 944257.589 160.798 + 12 40 28 68 Ni x -63463.814 2.981 8682.466 0.044 B- 2103.220 3.375 67 931868.789 3.200 + 10 39 29 68 Cu x -65567.034 1.584 8701.890 0.023 B- 4439.812 1.828 67 929610.889 1.700 + 8 38 30 68 Zn -70006.846 0.913 8755.677 0.013 B- -2921.100 1.200 67 924844.554 0.980 + 6 37 31 68 Ga - -67085.746 1.508 8701.214 0.022 B- -106.957 2.407 67 927980.485 1.618 + 4 36 32 68 Ge x -66978.789 1.876 8688.136 0.028 B- -8084.271 2.632 67 928095.307 2.014 + 2 35 33 68 As -58894.519 1.846 8557.745 0.027 B- -4705.077 1.911 67 936774.130 1.981 + 0 34 34 68 Se x -54189.441 0.496 8477.047 0.007 B- -15748# 307# 67 941825.238 0.532 + -2 33 35 68 Br -p -38441# 307# 8234# 5# B- * 67 958732# 330# +0 19 44 25 69 Mn x -24536# 596# 8143# 9# B- 14522# 718# 68 973660# 640# + 17 43 26 69 Fe x -39058# 401# 8343# 6# B- 11112# 444# 68 958070# 430# + 15 42 27 69 Co x -50169.085 190.770 8492.270 2.765 B- 9809.563 190.806 68 946141.268 204.799 + 13 41 28 69 Ni x -59978.648 3.726 8623.099 0.054 B- 5757.564 3.979 68 935610.269 4.000 + 11 40 29 69 Cu x -65736.212 1.397 8695.204 0.020 B- 2681.387 1.677 68 929429.269 1.500 + 9 39 30 69 Zn -n -68417.599 0.927 8722.726 0.013 B- 910.200 1.496 68 926550.682 0.995 + 7 38 31 69 Ga -69327.799 1.198 8724.579 0.017 B- -2227.146 0.550 68 925573.541 1.285 + 5 37 32 69 Ge -67100.654 1.318 8680.963 0.019 B- -3988.490 31.982 68 927964.481 1.414 + 3 36 33 69 As -63112.163 31.999 8611.820 0.464 B- -6677.457 32.021 68 932246.302 34.352 + 1 35 34 69 Se -56434.706 1.490 8503.707 0.022 B- -10323.236 37.033 68 939414.847 1.599 + -1 34 35 69 Br -p -46111.471 37.003 8342.757 0.536 B- -13677# 402# 68 950497.297 39.724 + -3 33 36 69 Kr x -32435# 401# 8133# 6# B- * 68 965180# 430# +0 20 45 25 70 Mn x -19217# 699# 8066# 10# B- 17093# 861# 69 979370# 750# + 18 44 26 70 Fe x -36310# 503# 8299# 7# B- 10610# 585# 69 961020# 540# + 16 43 27 70 Co x -46919.353 298.078 8439.831 4.258 B- 12294.507 298.086 69 949630.000 320.000 + 14 42 28 70 Ni x -59213.860 2.144 8604.291 0.031 B- 3762.512 2.401 69 936431.302 2.301 + 12 41 29 70 Cu x -62976.372 1.082 8646.865 0.015 B- 6588.337 2.202 69 932392.079 1.161 + 10 40 30 70 Zn -69564.709 1.918 8729.807 0.027 B- -654.578 1.574 69 925319.208 2.059 + 8 39 31 70 Ga -68910.131 1.201 8709.280 0.017 B- 1651.704 1.464 69 926021.927 1.289 + 6 38 32 70 Ge -70561.835 0.842 8721.699 0.012 B- -6220.000 50.000 69 924248.750 0.903 + 4 37 33 70 As - -64341.835 50.007 8621.666 0.714 B- -2411.943 50.032 69 930926.195 53.684 + 2 36 34 70 Se x -61929.891 1.584 8576.033 0.023 B- -10504.272 14.988 69 933515.523 1.700 + 0 35 35 70 Br x -51425.620 14.904 8414.796 0.213 B- -10477# 196# 69 944792.323 16.000 + -2 34 36 70 Kr x -40948# 196# 8254# 3# B- * 69 956040# 210# +0 21 46 25 71 Mn x -15202# 699# 8010# 10# B- 15798# 918# 70 983680# 750# + 19 45 26 71 Fe x -31000# 596# 8221# 8# B- 13370# 756# 70 966720# 640# + 17 44 27 71 Co x -44369.925 465.030 8398.734 6.550 B- 11036.302 465.035 70 952366.923 499.230 + 15 43 28 71 Ni x -55406.228 2.237 8543.156 0.032 B- 7304.898 2.688 70 940518.964 2.401 + 13 42 29 71 Cu x -62711.126 1.490 8635.022 0.021 B- 4617.649 3.044 70 932676.833 1.600 + 11 41 30 71 Zn -67328.775 2.654 8689.041 0.037 B- 2810.322 2.776 70 927719.582 2.849 + 9 40 31 71 Ga -70139.097 0.815 8717.604 0.011 B- -232.641 0.223 70 924702.577 0.874 + 7 39 32 71 Ge -69906.457 0.837 8703.308 0.012 B- -2013.400 4.082 70 924952.327 0.898 + 5 38 33 71 As - -67893.057 4.167 8663.932 0.059 B- -4746.550 5.018 70 927113.801 4.473 + 3 37 34 71 Se x -63146.507 2.794 8586.060 0.039 B- -6644.089 6.082 70 932209.433 3.000 + 1 36 35 71 Br -56502.418 5.402 8481.462 0.076 B- -10175.212 128.845 70 939342.155 5.799 + -1 35 36 71 Kr -46327.205 128.769 8327.130 1.814 B- -14023# 519# 70 950265.696 138.238 + -3 34 37 71 Rb x -32304# 503# 8119# 7# B- * 70 965320# 540# +0 20 46 26 72 Fe x -28103# 699# 8179# 10# B- 11681# 805# 71 969830# 750# + 18 45 27 72 Co x -39784# 401# 8330# 6# B- 14442# 401# 71 957290# 430# + 16 44 28 72 Ni x -54226.061 2.237 8520.211 0.031 B- 5556.938 2.637 71 941785.926 2.401 + 14 43 29 72 Cu x -59782.998 1.397 8586.525 0.019 B- 8362.487 2.558 71 935820.307 1.500 + 12 42 30 72 Zn x -68145.486 2.142 8691.804 0.030 B- 442.770 2.295 71 926842.807 2.300 + 10 41 31 72 Ga -68588.256 0.822 8687.088 0.011 B- 3997.645 0.825 71 926367.474 0.882 + 8 40 32 72 Ge -72585.901 0.076 8731.745 0.001 B- -4356.102 4.082 71 922075.826 0.081 + 6 39 33 72 As - -68229.798 4.083 8660.378 0.057 B- -361.618 4.528 71 926752.294 4.383 + 4 38 34 72 Se x -67868.180 1.956 8644.489 0.027 B- -8800.859 6.986 71 927140.507 2.100 + 2 37 35 72 Br x -59067.321 6.707 8511.389 0.093 B- -5126.746 10.448 71 936588.619 7.200 + 0 36 36 72 Kr x -53940.575 8.011 8429.319 0.111 B- -15824# 503# 71 942092.407 8.600 + -2 35 37 72 Rb x -38117# 503# 8199# 7# B- * 71 959080# 540# +0 21 47 26 73 Fe x -22617# 699# 8102# 10# B- 14280# 861# 72 975720# 750# + 19 46 27 73 Co x -36896# 503# 8287# 7# B- 13212# 503# 72 960390# 540# + 17 45 28 73 Ni x -50108.152 2.423 8457.652 0.033 B- 8879.285 3.104 72 946206.683 2.601 + 15 44 29 73 Cu -58987.437 1.942 8568.569 0.027 B- 6605.965 2.691 72 936674.378 2.084 + 13 43 30 73 Zn x -65593.402 1.863 8648.345 0.026 B- 4105.932 2.506 72 929582.582 2.000 + 11 42 31 73 Ga x -69699.335 1.677 8693.873 0.023 B- 1598.189 1.678 72 925174.682 1.800 + 9 41 32 73 Ge -71297.523 0.057 8705.049 0.001 B- -344.774 3.853 72 923458.956 0.061 + 7 40 33 73 As -70952.749 3.853 8689.609 0.053 B- -2725.361 7.399 72 923829.086 4.136 + 5 39 34 73 Se -68227.388 7.424 8641.558 0.102 B- -4579.803 10.388 72 926754.882 7.969 + 3 38 35 73 Br x -63647.585 7.266 8568.104 0.100 B- -7095.834 9.801 72 931671.503 7.800 + 1 37 36 73 Kr x -56551.750 6.578 8460.184 0.090 B- -10470# 101# 72 939289.195 7.061 + -1 36 37 73 Rb -p -46082# 100# 8306# 1# B- -14131# 413# 72 950529# 108# + -3 35 38 73 Sr x -31950# 401# 8102# 5# B- * 72 965700# 430# +0 22 48 26 74 Fe x -19235# 801# 8056# 11# B- 13227# 999# 73 979350# 860# + 20 47 27 74 Co x -32463# 596# 8225# 8# B- 15994# 718# 73 965150# 640# + 18 46 28 74 Ni x -48456# 401# 8430# 5# B- 7550# 401# 73 947980# 430# + 16 45 29 74 Cu x -56006.205 6.148 8521.562 0.083 B- 9750.507 6.642 73 939874.862 6.600 + 14 44 30 74 Zn x -65756.712 2.515 8642.754 0.034 B- 2292.905 3.910 73 929407.262 2.700 + 12 43 31 74 Ga x -68049.617 2.994 8663.167 0.040 B- 5372.825 2.994 73 926945.727 3.214 + 10 42 32 74 Ge -73422.442 0.013 8725.200 0.000 B- -2562.387 1.693 73 921177.761 0.013 + 8 41 33 74 As -70860.055 1.693 8680.001 0.023 B- 1353.147 1.693 73 923928.598 1.817 + 6 40 34 74 Se -72213.202 0.015 8687.715 0.000 B- -6924.952 5.836 73 922475.934 0.015 + 4 39 35 74 Br -65288.249 5.836 8583.562 0.079 B- -2956.415 6.173 73 929910.177 6.265 + 2 38 36 74 Kr -62331.834 2.013 8533.038 0.027 B- -10415.849 3.424 73 933084.020 2.161 + 0 37 37 74 Rb -51915.985 3.027 8381.711 0.041 B- -11089# 100# 73 944265.894 3.249 + -2 36 38 74 Sr x -40827# 100# 8221# 1# B- * 73 956170# 107# +0 21 48 27 75 Co x -29100# 699# 8178# 9# B- 15146# 760# 74 968760# 750# + 19 47 28 75 Ni x -44246# 298# 8369# 4# B- 10225# 298# 74 952500# 320# + 17 46 29 75 Cu x -54471.341 2.330 8495.094 0.031 B- 8087.566 3.042 74 941522.606 2.501 + 15 45 30 75 Zn x -62558.908 1.956 8592.497 0.026 B- 5905.672 3.113 74 932840.246 2.100 + 13 44 31 75 Ga x -68464.580 2.422 8660.808 0.032 B- 3392.385 2.422 74 926500.246 2.600 + 11 43 32 75 Ge -n -71856.965 0.052 8695.609 0.001 B- 1177.226 0.885 74 922858.370 0.055 + 9 42 33 75 As -73034.190 0.884 8700.874 0.012 B- -864.709 0.882 74 921594.567 0.948 + 7 41 34 75 Se -72169.481 0.073 8678.913 0.001 B- -3062.363 4.285 74 922522.870 0.078 + 5 40 35 75 Br x -69107.118 4.285 8627.650 0.057 B- -4783.495 9.167 74 925810.452 4.600 + 3 39 36 75 Kr x -64323.623 8.104 8553.439 0.108 B- -7104.929 8.189 74 930945.746 8.700 + 1 38 37 75 Rb x -57218.694 1.180 8448.275 0.016 B- -10600.000 220.000 74 938573.201 1.266 + -1 37 38 75 Sr - -46618.694 220.003 8296.511 2.933 B- * 74 949952.770 236.183 +0 22 49 27 76 Co x -24098# 801# 8110# 11# B- 17512# 946# 75 974130# 860# + 20 48 28 76 Ni x -41610# 503# 8331# 7# B- 9366# 503# 75 955330# 540# + 18 47 29 76 Cu x -50975.985 6.707 8443.527 0.088 B- 11327.031 6.863 75 945275.026 7.200 + 16 46 30 76 Zn -62303.016 1.456 8582.273 0.019 B- 3993.624 2.438 75 933114.957 1.562 + 14 45 31 76 Ga x -66296.639 1.956 8624.526 0.026 B- 6916.250 1.956 75 928827.626 2.100 + 12 44 32 76 Ge -73212.889 0.018 8705.236 0.000 B- -921.517 0.886 75 921402.726 0.019 + 10 43 33 76 As -n -72291.372 0.886 8682.816 0.012 B- 2960.578 0.886 75 922392.015 0.951 + 8 42 34 76 Se -75251.950 0.016 8711.477 0.000 B- -4962.881 9.322 75 919213.704 0.017 + 6 41 35 76 Br - -70289.069 9.322 8635.882 0.123 B- -1274.931 10.151 75 924541.576 10.007 + 4 40 36 76 Kr -69014.137 4.018 8608.813 0.053 B- -8535.057 4.126 75 925910.271 4.313 + 2 39 37 76 Rb x -60479.081 0.938 8486.215 0.012 B- -6231.442 34.478 75 935073.032 1.006 + 0 38 38 76 Sr x -54247.638 34.465 8393.929 0.453 B- -15647# 504# 75 941762.761 37.000 + -2 37 39 76 Y x -38601# 503# 8178# 7# B- * 75 958560# 540# +0 21 49 28 77 Ni x -36747# 503# 8264# 7# B- 11765# 525# 76 960550# 540# + 19 48 29 77 Cu x -48512# 149# 8407# 2# B- 10277# 149# 76 947920# 160# + 17 47 30 77 Zn -58789.195 1.973 8530.003 0.026 B- 7203.149 3.124 76 936887.199 2.117 + 15 46 31 77 Ga x -65992.344 2.422 8613.390 0.031 B- 5220.518 2.422 76 929154.300 2.600 + 13 45 32 77 Ge -n -71212.862 0.053 8671.028 0.001 B- 2703.457 1.717 76 923549.843 0.057 + 11 44 33 77 As -73916.319 1.716 8695.978 0.022 B- 683.166 1.716 76 920647.563 1.842 + 9 43 34 77 Se -74599.485 0.063 8694.690 0.001 B- -1364.680 2.810 76 919914.154 0.067 + 7 42 35 77 Br - -73234.805 2.811 8666.806 0.037 B- -3065.363 3.424 76 921379.198 3.017 + 5 41 36 77 Kr x -70169.442 1.956 8616.836 0.025 B- -5338.951 2.351 76 924670.000 2.100 + 3 40 37 77 Rb x -64830.491 1.304 8537.339 0.017 B- -7027.056 8.024 76 930401.600 1.400 + 1 39 38 77 Sr x -57803.436 7.918 8435.918 0.103 B- -11025# 61# 76 937945.455 8.500 + -1 38 39 77 Y -p -46779# 61# 8283# 1# B- * 76 949781# 65# +0 22 50 28 78 Ni x -34130# 801# 8228# 10# B- 10368# 946# 77 963360# 860# + 20 49 29 78 Cu x -44497.468 503.007 8350.925 6.449 B- 12985.766 503.011 77 952230.000 540.000 + 18 48 30 78 Zn -57483.234 1.944 8507.379 0.025 B- 6222.716 2.719 77 938289.206 2.086 + 16 47 31 78 Ga -63705.950 1.903 8577.127 0.024 B- 8156.103 4.015 77 931608.845 2.043 + 14 46 32 78 Ge -nn -71862.053 3.536 8671.663 0.045 B- 954.907 10.430 77 922852.908 3.795 + 12 45 33 78 As +pn -72816.961 9.813 8673.875 0.126 B- 4208.949 9.813 77 921827.773 10.534 + 10 44 34 78 Se -77025.909 0.182 8717.806 0.002 B- -3573.784 3.575 77 917309.280 0.195 + 8 43 35 78 Br - -73452.125 3.580 8661.958 0.046 B- 727.452 3.648 77 921145.895 3.842 + 6 42 36 78 Kr -74179.577 0.705 8661.254 0.009 B- -7244.158 3.313 77 920364.944 0.756 + 4 41 37 78 Rb x -66935.418 3.237 8558.350 0.042 B- -3761.477 8.125 77 928141.868 3.475 + 2 40 38 78 Sr x -63173.941 7.452 8500.096 0.096 B- -10647# 401# 77 932179.980 8.000 + 0 39 39 78 Y x -52527# 401# 8354# 5# B- -11225# 643# 77 943610# 430# + -2 38 40 78 Zr x -41302# 503# 8200# 6# B- * 77 955660# 540# +0 23 51 28 79 Ni x -27710# 800# 8145# 10# B- 14189# 895# 78 970252# 859# + 21 50 29 79 Cu x -41899# 401# 8314# 5# B- 11534# 401# 78 955020# 430# + 19 49 30 79 Zn -53432.294 2.225 8450.582 0.028 B- 9115.384 2.901 78 942638.069 2.388 + 17 48 31 79 Ga -62547.678 1.868 8556.063 0.024 B- 6978.916 37.147 78 932852.301 2.005 + 15 47 32 79 Ge -69526.594 37.181 8634.501 0.471 B- 4109.475 37.463 78 925360.127 39.915 + 13 46 33 79 As -73636.069 5.386 8676.616 0.068 B- 2281.356 5.389 78 920948.423 5.782 + 11 45 34 79 Se -n -75917.425 0.225 8695.591 0.003 B- 150.630 1.302 78 918499.287 0.241 + 9 44 35 79 Br +n -76068.055 1.292 8687.595 0.016 B- -1625.778 3.333 78 918337.579 1.387 + 7 43 36 79 Kr - -74442.277 3.575 8657.112 0.045 B- -3639.292 4.168 78 920082.923 3.838 + 5 42 37 79 Rb x -70802.985 2.142 8601.142 0.027 B- -5326.096 8.653 78 923989.864 2.300 + 3 41 38 79 Sr x -65476.889 8.383 8523.820 0.106 B- -7120.000 450.000 78 929707.664 9.000 + 1 40 39 79 Y - -58356.889 450.078 8423.790 5.697 B- -11298# 602# 78 937351.299 483.178 + -1 39 40 79 Zr x -47059# 401# 8271# 5# B- * 78 949480# 430# +0 22 51 29 80 Cu x -36431# 596# 8243# 7# B- 15218# 596# 79 960890# 640# + 20 50 30 80 Zn -51648.612 2.585 8423.545 0.032 B- 7575.055 3.877 79 944552.931 2.774 + 18 49 31 80 Ga x -59223.667 2.891 8508.454 0.036 B- 10311.639 3.541 79 936420.775 3.103 + 16 48 32 80 Ge x -69535.305 2.054 8627.570 0.026 B- 2679.155 3.916 79 925350.775 2.205 + 14 47 33 80 As x -72214.460 3.334 8651.280 0.042 B- 5545.017 3.517 79 922474.584 3.579 + 12 46 34 80 Se -77759.477 1.247 8710.813 0.016 B- -1870.463 0.310 79 916521.762 1.339 + 10 45 35 80 Br - -75889.014 1.285 8677.653 0.016 B- 2004.299 1.356 79 918529.788 1.379 + 8 44 36 80 Kr -77893.313 0.697 8692.928 0.009 B- -5717.846 1.989 79 916378.084 0.747 + 6 43 37 80 Rb x -72175.467 1.863 8611.675 0.023 B- -1863.987 3.933 79 922516.444 2.000 + 4 42 38 80 Sr -70311.480 3.464 8578.596 0.043 B- -9164.578 7.151 79 924517.516 3.718 + 2 41 39 80 Y x -61146.903 6.257 8454.259 0.078 B- -5629.860 1490.404 79 934356.096 6.716 + 0 40 40 80 Zr x -55517.043 1490.390 8374.107 18.630 B- * 79 940400.000 1600.000 +0 23 52 29 81 Cu x -31790# 800# 8184# 10# B- 14410# 800# 80 965872# 859# + 21 51 30 81 Zn x -46199.663 5.030 8351.925 0.062 B- 11428.291 5.996 80 950402.619 5.400 + 19 50 31 81 Ga x -57627.954 3.264 8483.357 0.040 B- 8663.733 3.851 80 938133.843 3.503 + 17 49 32 81 Ge x -66291.686 2.055 8580.658 0.025 B- 6241.628 3.362 80 928832.943 2.205 + 15 48 33 81 As -72533.314 2.667 8648.056 0.033 B- 3855.693 2.845 80 922132.280 2.863 + 13 47 34 81 Se -76389.007 1.264 8685.999 0.016 B- 1586.644 1.700 80 917993.023 1.357 + 11 46 35 81 Br -77975.651 1.281 8695.929 0.016 B- -280.837 0.483 80 916289.690 1.375 + 9 45 36 81 Kr -77694.814 1.352 8682.803 0.017 B- -2238.151 5.084 80 916591.181 1.451 + 7 44 37 81 Rb -75456.663 4.904 8645.513 0.061 B- -3928.538 5.817 80 918993.936 5.265 + 5 43 38 81 Sr x -71528.125 3.128 8587.354 0.039 B- -5816.399 6.259 80 923211.395 3.358 + 3 42 39 81 Y -65711.726 5.421 8505.888 0.067 B- -7315.335 164.700 80 929455.556 5.820 + 1 41 40 81 Zr -58396.391 164.669 8405.916 2.033 B- -11449# 433# 80 937308.892 176.778 + -1 40 41 81 Nb x -46947# 401# 8255# 5# B- * 80 949600# 430# +0 24 53 29 82 Cu x -25670# 800# 8108# 10# B- 16936# 854# 81 972442# 859# + 22 52 30 82 Zn x -42607# 298# 8305# 4# B- 10324# 298# 81 954260# 320# + 20 51 31 82 Ga x -52930.718 2.426 8421.049 0.030 B- 12484.348 3.296 81 943176.533 2.604 + 18 50 32 82 Ge x -65415.066 2.241 8563.756 0.027 B- 4688.023 4.833 81 929774.033 2.405 + 16 49 33 82 As x -70103.089 4.287 8611.386 0.052 B- 7490.829 4.514 81 924741.233 4.602 + 14 48 34 82 Se -77593.919 1.412 8693.197 0.017 B- -96.642 1.748 81 916699.497 1.516 + 12 47 35 82 Br -77497.277 1.277 8682.477 0.016 B- 3093.041 0.973 81 916803.246 1.370 + 10 46 36 82 Kr -80590.318 0.877 8710.657 0.011 B- -4402.515 3.134 81 913482.730 0.940 + 8 45 37 82 Rb IT -76187.803 3.009 8647.427 0.037 B- -177.757 6.705 81 918209.024 3.230 + 6 44 38 82 Sr -76010.046 5.992 8635.718 0.073 B- -7947.084 8.143 81 918399.855 6.432 + 4 43 39 82 Y x -68062.962 5.515 8529.262 0.067 B- -4120# 200# 81 926931.401 5.920 + 2 42 40 82 Zr - -63943# 200# 8469# 2# B- -11742# 359# 81 931354# 215# + 0 41 41 82 Nb x -52201# 298# 8317# 4# B- * 81 943960# 320# +0 23 53 30 83 Zn x -36738# 503# 8231# 6# B- 12519# 503# 82 960560# 540# + 21 52 31 83 Ga x -49257.122 2.613 8372.575 0.031 B- 11719.312 3.559 82 947120.301 2.804 + 19 51 32 83 Ge x -60976.434 2.427 8504.345 0.029 B- 8692.888 3.698 82 934539.101 2.605 + 17 50 33 83 As x -69669.322 2.799 8599.653 0.034 B- 5671.245 4.339 82 925206.901 3.004 + 15 49 34 83 Se -n -75340.567 3.316 8658.556 0.040 B- 3672.833 4.895 82 919118.569 3.559 + 13 48 35 83 Br -79013.401 3.847 8693.381 0.046 B- 976.630 3.846 82 915175.620 4.130 + 11 47 36 83 Kr -79990.031 0.300 8695.721 0.004 B- -919.402 2.348 82 914127.164 0.321 + 9 46 37 83 Rb -79070.629 2.329 8675.218 0.028 B- -2273.024 6.424 82 915114.183 2.500 + 7 45 38 83 Sr -76797.605 6.834 8638.407 0.082 B- -4593.081 19.849 82 917554.374 7.336 + 5 44 39 83 Y x -72204.524 18.636 8573.643 0.225 B- -6294.012 19.707 82 922485.250 20.006 + 3 43 40 83 Zr x -65910.513 6.444 8488.385 0.078 B- -7500.000 300.000 82 929242.150 6.918 + 1 42 41 83 Nb - -58410.513 300.069 8388.598 3.615 B- -11724# 500# 82 937293.731 322.137 + -1 41 42 83 Mo x -46686# 401# 8238# 5# B- * 82 949880# 430# +0 24 54 30 84 Zn x -32410# 600# 8178# 7# B- 11873# 721# 83 965206# 644# + 22 53 31 84 Ga x -44283# 401# 8310# 5# B- 13865# 401# 83 952460# 430# + 20 52 32 84 Ge x -58148.427 3.171 8465.524 0.038 B- 7705.132 4.479 83 937575.092 3.403 + 18 51 33 84 As x -65853.559 3.171 8547.938 0.038 B- 10094.161 3.722 83 929303.292 3.403 + 16 50 34 84 Se -75947.721 1.961 8658.793 0.023 B- 1835.364 25.765 83 918466.763 2.105 + 14 49 35 84 Br -77783.084 25.730 8671.329 0.306 B- 4656.251 25.730 83 916496.419 27.622 + 12 48 36 84 Kr -82439.33541 0.00412 8717.446 0.000 B- -2680.375 2.194 83 911497.72816 0.00442 + 10 47 37 84 Rb -79758.960 2.194 8676.224 0.026 B- 890.595 2.336 83 914375.229 2.355 + 8 46 38 84 Sr -80649.555 1.243 8677.512 0.015 B- -6756.079 4.426 83 913419.136 1.334 + 6 45 39 84 Y -73893.476 4.314 8587.769 0.051 B- -2472.943 6.977 83 920672.086 4.631 + 4 44 40 84 Zr x -71420.533 5.516 8549.016 0.066 B- -10400# 300# 83 923326.899 5.921 + 2 43 41 84 Nb - -61021# 300# 8416# 4# B- -6519# 500# 83 934492# 322# + 0 42 42 84 Mo x -54502# 401# 8329# 5# B- * 83 941490# 430# +0 25 55 30 85 Zn x -25840# 700# 8099# 8# B- 14224# 760# 84 972260# 751# + 23 54 31 85 Ga x -40064# 298# 8257# 4# B- 13060# 298# 84 956990# 320# + 21 53 32 85 Ge x -53123.419 3.729 8401.768 0.044 B- 10065.724 4.830 84 942969.660 4.003 + 19 52 33 85 As x -63189.143 3.078 8510.984 0.036 B- 9224.492 4.031 84 932163.660 3.304 + 17 51 34 85 Se +3p -72413.635 2.613 8610.304 0.031 B- 6161.833 4.031 84 922260.760 2.804 + 15 50 35 85 Br +n2p -78575.468 3.078 8673.592 0.036 B- 2904.862 3.671 84 915645.760 3.304 + 13 49 36 85 Kr + -81480.330 2.000 8698.562 0.024 B- 687.000 2.000 84 912527.262 2.147 + 11 48 37 85 Rb -82167.33008 0.00498 8697.441 0.000 B- -1064.054 2.813 84 911789.73790 0.00535 + 9 47 38 85 Sr -81103.276 2.813 8675.718 0.033 B- -3261.153 19.173 84 912932.046 3.020 + 7 46 39 85 Y x -77842.123 18.965 8628.148 0.223 B- -4668.098 20.031 84 916433.039 20.360 + 5 45 40 85 Zr x -73174.025 6.445 8564.025 0.076 B- -6894.349 7.638 84 921444.448 6.918 + 3 44 41 85 Nb x -66279.675 4.099 8473.711 0.048 B- -8769.923 16.357 84 928845.837 4.400 + 1 43 42 85 Mo x -57509.752 15.835 8361.331 0.186 B- -11475# 401# 84 938260.737 17.000 + -1 42 43 85 Tc x -46034# 401# 8217# 5# B- * 84 950580# 430# +0 24 55 31 86 Ga x -34456# 699# 8190# 8# B- 15304# 760# 85 963010# 750# + 22 54 32 86 Ge x -49760# 298# 8359# 3# B- 9202# 298# 85 946580# 320# + 20 53 33 86 As x -58962.142 3.450 8456.721 0.040 B- 11541.024 4.267 85 936701.533 3.703 + 18 52 34 86 Se x -70503.166 2.520 8581.822 0.029 B- 5129.085 3.972 85 924311.733 2.705 + 16 51 35 86 Br +pp -75632.251 3.078 8632.365 0.036 B- 7633.414 3.078 85 918805.433 3.304 + 14 50 36 86 Kr -83265.66488 0.00379 8712.029 0.000 B- -518.655 0.199 85 910610.62693 0.00407 + 12 49 37 86 Rb -82747.010 0.199 8696.901 0.002 B- 1776.189 1.076 85 911167.425 0.213 + 10 48 38 86 Sr -84523.199 1.076 8708.457 0.013 B- -5240.000 14.142 85 909260.608 1.154 + 8 47 39 86 Y - -79283.199 14.183 8638.430 0.165 B- -1314.546 14.625 85 914885.980 15.226 + 6 46 40 86 Zr -77968.652 3.568 8614.047 0.041 B- -8835.774 6.559 85 916297.204 3.830 + 4 45 41 86 Nb x -69132.879 5.517 8502.209 0.064 B- -5022.634 6.657 85 925782.798 5.922 + 2 44 42 86 Mo x -64110.244 3.726 8434.709 0.043 B- -12813# 298# 85 931174.817 4.000 + 0 43 43 86 Tc x -51297# 298# 8277# 3# B- * 85 944930# 320# +0 25 56 31 87 Ga x -29580# 800# 8133# 9# B- 14499# 895# 86 968245# 859# + 23 55 32 87 Ge x -44078# 401# 8290# 5# B- 11540# 401# 86 952680# 430# + 21 54 33 87 As x -55617.906 2.985 8413.851 0.034 B- 10808.218 3.726 86 940291.718 3.204 + 19 53 34 87 Se x -66426.124 2.241 8529.091 0.026 B- 7465.552 3.877 86 928688.618 2.405 + 17 52 35 87 Br 2p-n -73891.676 3.171 8605.910 0.036 B- 6817.845 3.181 86 920674.018 3.404 + 15 51 36 87 Kr -n -80709.521 0.246 8675.283 0.003 B- 3888.269 0.246 86 913354.760 0.264 + 13 50 37 87 Rb -84597.790 0.006 8710.983 0.000 B- 282.243 1.075 86 909180.531 0.006 + 11 49 38 87 Sr -84880.033 1.075 8705.235 0.012 B- -1861.690 1.128 86 908877.531 1.154 + 9 48 39 87 Y - -83018.343 1.558 8674.844 0.018 B- -3671.810 4.461 86 910876.138 1.672 + 7 47 40 87 Zr -79346.533 4.194 8623.647 0.048 B- -5473.234 7.979 86 914817.988 4.501 + 5 46 41 87 Nb x -73873.299 6.817 8551.743 0.078 B- -6988.491 7.392 86 920693.747 7.318 + 3 45 42 87 Mo -66884.808 2.857 8462.423 0.033 B- -9194.764 5.073 86 928196.201 3.067 + 1 44 43 87 Tc x -57690.044 4.192 8347.744 0.048 B- -11758# 401# 86 938067.187 4.500 + -1 43 44 87 Ru x -45932# 401# 8204# 5# B- * 86 950690# 430# +0 24 56 32 88 Ge x -40138# 503# 8243# 6# B- 10582# 540# 87 956910# 540# + 22 55 33 88 As x -50720# 196# 8354# 2# B- 13164# 196# 87 945550# 210# + 20 54 34 88 Se x -63884.195 3.357 8495.004 0.038 B- 6831.763 4.613 87 931417.492 3.604 + 18 53 35 88 Br ++ -70715.958 3.171 8563.747 0.036 B- 8975.327 4.106 87 924083.292 3.404 + 16 52 36 88 Kr x -79691.285 2.608 8656.849 0.030 B- 2917.709 2.613 87 914447.881 2.800 + 14 51 37 88 Rb -82608.994 0.159 8681.115 0.002 B- 5312.357 1.097 87 911315.592 0.171 + 12 50 38 88 Sr -87921.351 1.085 8732.592 0.012 B- -3622.600 1.500 87 905612.542 1.164 + 10 49 39 88 Y - -84298.751 1.851 8682.536 0.021 B- -670.422 5.739 87 909501.563 1.987 + 8 48 40 88 Zr -83628.329 5.444 8666.027 0.062 B- -7452.342 56.873 87 910221.290 5.844 + 6 47 41 88 Nb -76175.987 56.783 8572.451 0.645 B- -3489.443 56.911 87 918221.710 60.958 + 4 46 42 88 Mo x -72686.543 3.819 8523.908 0.043 B- -11005.229 149.088 87 921967.781 4.100 + 2 45 43 88 Tc x -61681.314 149.039 8389.958 1.694 B- -7282# 333# 87 933782.381 160.000 + 0 44 44 88 Ru x -54399# 298# 8298# 3# B- * 87 941600# 320# +0 25 57 32 89 Ge x -33729# 600# 8169# 7# B- 13069# 670# 88 963790# 644# + 23 56 33 89 As x -46798# 298# 8307# 3# B- 12194# 298# 88 949760# 320# + 21 55 34 89 Se x -58992.390 3.729 8435.279 0.042 B- 9281.872 4.951 88 936669.060 4.003 + 19 54 35 89 Br x -68274.262 3.264 8530.779 0.037 B- 8261.522 3.904 88 926704.560 3.504 + 17 53 36 89 Kr x -76535.784 2.142 8614.815 0.024 B- 5176.454 5.867 88 917835.451 2.300 + 15 52 37 89 Rb -81712.239 5.462 8664.187 0.061 B- 4496.511 5.447 88 912278.298 5.863 + 13 51 38 89 Sr -86208.750 1.089 8705.919 0.012 B- 1500.401 2.335 88 907451.095 1.168 + 11 50 39 89 Y -87709.151 2.233 8713.987 0.025 B- -2832.760 2.776 88 905840.348 2.397 + 9 49 40 89 Zr -84876.390 3.467 8673.368 0.039 B- -4250.996 23.774 88 908881.441 3.722 + 7 48 41 89 Nb -80625.395 23.634 8616.814 0.266 B- -5610.460 23.956 88 913445.073 25.372 + 5 47 42 89 Mo x -75014.934 3.912 8544.984 0.044 B- -7620.087 5.467 88 919468.151 4.200 + 3 46 43 89 Tc x -67394.848 3.819 8450.575 0.043 B- -9288# 298# 88 927648.651 4.100 + 1 45 44 89 Ru x -58107# 298# 8337# 3# B- -12076# 467# 88 937620# 320# + -1 44 45 89 Rh -p -46030# 359# 8193# 4# B- * 88 950584# 385# +0 26 58 32 90 Ge x -29221# 699# 8118# 8# B- 12109# 918# 89 968630# 750# + 24 57 33 90 As x -41330# 596# 8244# 7# B- 14470# 681# 89 955630# 640# + 22 56 34 90 Se x -55800.217 329.749 8395.766 3.664 B- 8200.081 329.766 89 940096.000 354.000 + 20 55 35 90 Br x -64000.297 3.357 8478.186 0.037 B- 10958.952 3.840 89 931292.850 3.604 + 18 54 36 90 Kr x -74959.250 1.863 8591.259 0.021 B- 4405.480 6.776 89 919527.931 2.000 + 16 53 37 90 Rb -79364.730 6.515 8631.516 0.072 B- 6584.187 6.606 89 914798.453 6.993 + 14 52 38 90 Sr -85948.917 2.617 8695.981 0.029 B- 545.944 1.406 89 907730.037 2.809 + 12 51 39 90 Y -86494.860 2.233 8693.354 0.025 B- 2278.698 1.647 89 907143.942 2.397 + 10 50 40 90 Zr -88773.558 1.849 8709.980 0.021 B- -6111.336 3.366 89 904697.659 1.984 + 8 49 41 90 Nb -82662.222 3.551 8633.384 0.039 B- -2489.336 3.366 89 911258.449 3.812 + 6 48 42 90 Mo -80172.886 3.531 8597.032 0.039 B- -9448.200 3.676 89 913930.861 3.790 + 4 47 43 90 Tc x -70724.686 1.025 8483.359 0.011 B- -5840.894 3.869 89 924073.921 1.100 + 2 46 44 90 Ru -64883.792 3.730 8409.768 0.041 B- -12925# 401# 89 930344.380 4.004 + 0 45 45 90 Rh x -51959# 401# 8257# 4# B- * 89 944220# 430# +0 25 58 33 91 As x -36896# 596# 8193# 7# B- 13441# 780# 90 960390# 640# + 23 57 34 91 Se x -50338# 503# 8332# 6# B- 10769# 503# 90 945960# 540# + 21 56 35 91 Br -n2p -61107.293 3.544 8441.923 0.039 B- 9866.671 4.190 90 934398.619 3.804 + 19 55 36 91 Kr x -70973.964 2.236 8541.751 0.025 B- 6771.161 8.121 90 923806.311 2.400 + 17 54 37 91 Rb -77745.126 7.807 8607.562 0.086 B- 5907.281 8.951 90 916537.169 8.381 + 15 53 38 91 Sr -83652.406 5.651 8663.880 0.062 B- 2699.470 5.256 90 910195.442 6.066 + 13 52 39 91 Y -86351.877 2.572 8684.947 0.028 B- 1544.281 1.841 90 907297.442 2.761 + 11 51 40 91 Zr -87896.158 1.830 8693.320 0.020 B- -1257.582 2.925 90 905639.587 1.964 + 9 50 41 91 Nb -86638.575 3.428 8670.904 0.038 B- -4429.863 6.926 90 906989.658 3.679 + 7 49 42 91 Mo -82208.712 6.244 8613.627 0.069 B- -6222.459 6.677 90 911745.312 6.703 + 5 48 43 91 Tc -75986.253 2.367 8536.651 0.026 B- -7746.735 3.242 90 918425.397 2.540 + 3 47 44 91 Ru -68239.518 2.223 8442.925 0.024 B- -9444# 401# 90 926741.859 2.386 + 1 46 45 91 Rh x -58796# 401# 8331# 4# B- -12519# 643# 90 936880# 430# + -1 45 46 91 Pd x -46277# 503# 8184# 6# B- * 90 950320# 540# +0 26 59 33 92 As x -30981# 699# 8127# 8# B- 15742# 918# 91 966740# 750# + 24 58 34 92 Se x -46724# 596# 8290# 6# B- 9509# 596# 91 949840# 640# + 22 57 35 92 Br x -56232.805 6.709 8384.911 0.073 B- 12536.515 7.232 91 939631.597 7.202 + 20 56 36 92 Kr x -68769.319 2.701 8512.674 0.029 B- 6003.204 6.697 91 926173.094 2.900 + 18 55 37 92 Rb -74772.524 6.128 8569.423 0.067 B- 8094.868 6.421 91 919728.389 6.579 + 16 54 38 92 Sr -82867.392 3.424 8648.907 0.037 B- 1949.662 9.451 91 911038.190 3.676 + 14 53 39 92 Y -84817.054 9.206 8661.595 0.100 B- 3642.576 9.153 91 908945.142 9.882 + 12 52 40 92 Zr -88459.630 1.828 8692.684 0.020 B- -2005.885 1.790 91 905034.675 1.962 + 10 51 41 92 Nb -86453.745 2.394 8662.377 0.026 B- 354.082 2.488 91 907188.081 2.570 + 8 50 42 92 Mo -86807.827 0.781 8657.722 0.008 B- -7882.135 3.199 91 906807.959 0.837 + 6 49 43 92 Tc -78925.692 3.102 8563.543 0.034 B- -4624.492 4.125 91 915269.779 3.330 + 4 48 44 92 Ru -74301.201 2.718 8504.773 0.030 B- -11302.114 5.153 91 920234.375 2.917 + 2 47 45 92 Rh x -62999.087 4.378 8373.420 0.048 B- -7929# 503# 91 932367.694 4.700 + 0 46 46 92 Pd x -55070# 503# 8279# 5# B- * 91 940880# 540# +0 25 59 34 93 Se x -40716# 801# 8223# 9# B- 12255# 919# 92 956290# 860# + 23 58 35 93 Br x -52970.338 449.912 8346.459 4.838 B- 11165.656 449.919 92 943134.000 483.000 + 21 57 36 93 Kr x -64135.994 2.515 8458.108 0.027 B- 8483.959 8.225 92 931147.174 2.700 + 19 56 37 93 Rb -72619.953 7.831 8540.921 0.084 B- 7465.963 8.877 92 922039.269 8.406 + 17 55 38 93 Sr -80085.915 7.557 8612.788 0.081 B- 4141.741 11.754 92 914024.228 8.112 + 15 54 39 93 Y -84227.656 10.574 8648.910 0.114 B- 2895.027 10.491 92 909577.886 11.351 + 13 53 40 93 Zr -87122.683 1.819 8671.627 0.020 B- 90.301 1.549 92 906469.947 1.952 + 11 52 41 93 Nb -87212.984 1.824 8664.186 0.020 B- -406.665 1.934 92 906373.004 1.958 + 9 51 42 93 Mo -86806.320 0.785 8651.401 0.008 B- -3200.963 1.004 92 906809.577 0.843 + 7 50 43 93 Tc -p -83605.357 1.269 8608.569 0.014 B- -6388.644 2.423 92 910245.952 1.361 + 5 49 44 93 Ru -77216.712 2.065 8531.462 0.022 B- -8204.913 3.343 92 917104.444 2.216 + 3 48 45 93 Rh -69011.800 2.629 8434.825 0.028 B- -9872# 400# 92 925912.781 2.821 + 1 47 46 93 Pd +p -59140# 400# 8320# 4# B- -12872# 643# 92 936511# 430# + -1 46 47 93 Ag x -46267# 503# 8173# 5# B- * 92 950330# 540# +0 26 60 34 94 Se x -36803# 801# 8180# 9# B- 10796# 896# 93 960490# 860# + 24 59 35 94 Br x -47599# 401# 8286# 4# B- 13748# 401# 93 948900# 430# + 22 58 36 94 Kr x -61347.771 12.109 8424.331 0.129 B- 7215.018 12.278 93 934140.454 13.000 + 20 57 37 94 Rb -68562.789 2.029 8492.764 0.022 B- 10282.959 2.623 93 926394.814 2.177 + 18 56 38 94 Sr -78845.748 1.663 8593.834 0.018 B- 3507.094 6.500 93 915355.602 1.785 + 16 55 39 94 Y -82352.842 6.463 8622.821 0.069 B- 4918.059 6.440 93 911590.582 6.938 + 14 54 40 94 Zr -87270.901 1.881 8666.818 0.020 B- -901.694 2.180 93 906310.828 2.019 + 12 53 41 94 Nb -86369.207 1.824 8648.902 0.019 B- 2043.636 1.809 93 907278.836 1.958 + 10 52 42 94 Mo -88412.843 0.447 8662.320 0.005 B- -4255.748 4.069 93 905084.903 0.479 + 8 51 43 94 Tc - -84157.095 4.093 8608.723 0.044 B- -1573.504 5.161 93 909653.637 4.394 + 6 50 44 94 Ru -82583.591 3.143 8583.661 0.033 B- -9675.978 4.615 93 911342.863 3.374 + 4 49 45 94 Rh -72907.613 3.379 8472.402 0.036 B- -6806.567 5.475 93 921730.453 3.627 + 2 48 46 94 Pd x -66101.047 4.308 8391.669 0.046 B- -13690# 640# 93 929037.603 4.624 + 0 47 47 94 Ag IT -52411# 640# 8238# 7# B- * 93 943734# 687# +0 27 61 34 95 Se x -30460# 800# 8112# 8# B- 13311# 824# 94 967300# 859# + 25 60 35 95 Br x -43771# 196# 8244# 2# B- 12388# 196# 94 953010# 210# + 23 59 36 95 Kr x -56158.912 18.630 8365.995 0.196 B- 9734.969 27.487 94 939710.924 20.000 + 21 58 37 95 Rb -65893.881 20.210 8460.234 0.213 B- 9228.370 20.171 94 929260.004 21.696 + 19 57 38 95 Sr -75122.251 5.890 8549.139 0.062 B- 6089.067 7.261 94 919352.941 6.323 + 17 56 39 95 Y -81211.319 6.890 8604.999 0.073 B- 4450.238 6.802 94 912816.058 7.396 + 15 55 40 95 Zr -85661.557 1.808 8643.609 0.019 B- 1123.500 1.785 94 908038.530 1.940 + 13 54 41 95 Nb -86785.057 0.660 8647.200 0.007 B- 925.567 0.495 94 906832.404 0.709 + 11 53 42 95 Mo -87710.624 0.441 8648.707 0.005 B- -1690.518 5.078 94 905838.766 0.473 + 9 52 43 95 Tc -86020.106 5.097 8622.677 0.054 B- -2563.609 10.531 94 907653.612 5.472 + 7 51 44 95 Ru -83456.497 9.511 8587.457 0.100 B- -5115.891 10.274 94 910405.759 10.210 + 5 50 45 95 Rh -78340.606 3.886 8525.370 0.041 B- -8375.941 4.947 94 915897.895 4.171 + 3 49 46 95 Pd x -69964.665 3.061 8428.967 0.032 B- -10368# 401# 94 924889.838 3.286 + 1 48 47 95 Ag x -59597# 401# 8312# 4# B- -12966# 643# 94 936020# 430# + -1 47 48 95 Cd x -46631# 503# 8167# 5# B- * 94 949940# 540# +0 26 61 35 96 Br x -38163# 298# 8184# 3# B- 14916# 299# 95 959030# 320# + 24 60 36 96 Kr x -53079.678 20.493 8330.850 0.213 B- 8274.683 20.765 95 943016.618 22.000 + 22 59 37 96 Rb -61354.361 3.353 8408.896 0.035 B- 11575.494 9.314 95 934133.380 3.599 + 20 58 38 96 Sr -72929.855 8.690 8521.324 0.091 B- 5411.738 9.726 95 921706.575 9.328 + 18 57 39 96 Y -78341.593 6.383 8569.547 0.066 B- 7103.017 6.087 95 915896.835 6.852 + 16 56 40 96 Zr -85444.610 1.995 8635.387 0.021 B- 162.217 3.761 95 908271.433 2.141 + 14 55 41 96 Nb + -85606.827 3.230 8628.928 0.034 B- 3186.800 3.200 95 908097.286 3.467 + 12 54 42 96 Mo -88793.627 0.441 8653.974 0.005 B- -2973.242 5.145 95 904676.115 0.473 + 10 53 43 96 Tc - -85820.385 5.164 8614.853 0.054 B- 258.738 5.146 95 907868.022 5.543 + 8 52 44 96 Ru -86079.123 0.457 8609.399 0.005 B- -6392.653 10.000 95 907590.255 0.491 + 6 51 45 96 Rh - -79686.469 10.010 8534.660 0.104 B- -3504.311 10.844 95 914453.051 10.746 + 4 50 46 96 Pd x -76182.159 4.216 8490.007 0.044 B- -11670.523 90.182 95 918215.084 4.526 + 2 49 47 96 Ag ep -64511.635 90.084 8360.290 0.938 B- -8939# 411# 95 930743.906 96.708 + 0 48 48 96 Cd x -55573# 401# 8259# 4# B- * 95 940340# 430# +0 27 62 35 97 Br x -34055# 401# 8140# 4# B- 13368# 421# 96 963440# 430# + 25 61 36 97 Kr x -47423.491 130.409 8269.864 1.344 B- 11095.629 130.423 96 949088.785 140.000 + 23 60 37 97 Rb -58519.121 1.912 8376.186 0.020 B- 10063.093 3.896 96 937177.136 2.052 + 21 59 38 97 Sr -68582.214 3.395 8471.864 0.035 B- 7544.965 7.707 96 926373.960 3.644 + 19 58 39 97 Y + -76127.179 6.993 8541.582 0.072 B- 6821.237 6.707 96 918274.106 7.507 + 17 57 40 97 Zr -82948.417 1.981 8603.838 0.020 B- 2659.671 1.721 96 910951.206 2.126 + 15 56 41 97 Nb -85608.088 1.762 8623.192 0.018 B- 1935.471 1.721 96 908095.932 1.892 + 13 55 42 97 Mo -87543.559 0.457 8635.080 0.005 B- -324.708 3.744 96 906018.118 0.490 + 11 54 43 97 Tc -87218.851 3.769 8623.667 0.039 B- -1099.548 4.652 96 906366.706 4.045 + 9 53 44 97 Ru -n -86119.303 2.795 8604.266 0.029 B- -3523.000 35.355 96 907547.120 3.000 + 7 52 45 97 Rh - -82596.303 35.466 8559.881 0.366 B- -4790.461 35.795 96 911329.216 38.073 + 5 51 46 97 Pd x -77805.842 4.844 8502.430 0.050 B- -6980.000 110.000 96 916471.988 5.200 + 3 50 47 97 Ag - -70825.842 110.107 8422.405 1.135 B- -10372# 318# 96 923965.326 118.204 + 1 49 48 97 Cd x -60454# 298# 8307# 3# B- -13264# 585# 96 935100# 320# + -1 48 49 97 In x -47189# 503# 8163# 5# B- * 96 949340# 540# +0 28 63 35 98 Br x -28448# 401# 8082# 4# B- 15863# 499# 97 969460# 430# + 26 62 36 98 Kr x -44311# 298# 8236# 3# B- 10007# 298# 97 952430# 320# + 24 61 37 98 Rb x -54318.333 3.447 8330.210 0.035 B- 12107.643 5.051 97 941686.868 3.700 + 22 60 38 98 Sr -66425.976 3.693 8445.774 0.038 B- 5874.614 8.893 97 928688.778 3.964 + 20 59 39 98 Y p-2n -72300.590 8.167 8497.736 0.083 B- 8991.924 11.576 97 922382.119 8.767 + 18 58 40 98 Zr -81292.514 8.676 8581.507 0.089 B- 2237.851 9.819 97 912728.892 9.314 + 16 57 41 98 Nb -pn -83530.365 5.383 8596.360 0.055 B- 4584.477 5.376 97 910326.459 5.779 + 14 56 42 98 Mo -88114.842 0.460 8635.157 0.005 B- -1683.717 3.377 97 905404.820 0.493 + 12 55 43 98 Tc -86431.125 3.399 8609.993 0.035 B- 1793.640 7.165 97 907212.365 3.649 + 10 54 44 98 Ru -88224.765 6.463 8620.312 0.066 B- -5049.653 10.000 97 905286.813 6.937 + 8 53 45 98 Rh - -83175.112 11.907 8560.802 0.121 B- -1854.137 12.816 97 910707.839 12.782 + 6 52 46 98 Pd -81320.975 4.742 8533.899 0.048 B- -8254.560 33.098 97 912698.337 5.090 + 4 51 47 98 Ag -73066.415 32.907 8441.686 0.336 B- -5430.000 40.000 97 921559.973 35.327 + 2 50 48 98 Cd - -67636.415 51.797 8378.294 0.529 B- -13740# 202# 97 927389.318 55.605 + 0 49 49 98 In x -53896# 196# 8230# 2# B- * 97 942140# 210# +0 27 63 36 99 Kr x -38759# 503# 8178# 5# B- 12446# 515# 98 958390# 540# + 25 62 37 99 Rb -51205.403 111.802 8296.151 1.129 B- 11306.539 111.760 98 945028.735 120.023 + 23 61 38 99 Sr -62511.942 3.562 8402.456 0.036 B- 8143.760 7.641 98 932890.666 3.824 + 21 60 39 99 Y x -70655.702 6.916 8476.814 0.070 B- 6968.724 12.429 98 924147.979 7.424 + 19 59 40 99 Zr -77624.426 10.580 8539.303 0.107 B- 4707.369 16.030 98 916666.746 11.358 + 17 58 41 99 Nb +p -82331.795 12.046 8578.949 0.122 B- 3637.175 12.049 98 911613.177 12.931 + 15 57 42 99 Mo -85968.970 0.482 8607.786 0.005 B- 1357.806 0.891 98 907708.509 0.517 + 13 56 43 99 Tc -87326.776 0.966 8613.599 0.010 B- 295.062 1.133 98 906250.844 1.037 + 11 55 44 99 Ru -87621.838 1.052 8608.677 0.011 B- -2043.844 6.691 98 905934.082 1.129 + 9 54 45 99 Rh -85577.994 6.757 8580.129 0.068 B- -3396.755 8.055 98 908128.239 7.253 + 7 53 46 99 Pd -82181.239 5.000 8537.916 0.051 B- -5468.766 8.015 98 911774.806 5.367 + 5 52 47 99 Ag x -76712.473 6.265 8474.774 0.063 B- -6781.350 6.462 98 917645.768 6.725 + 3 51 48 99 Cd x -69931.122 1.584 8398.373 0.016 B- -8555# 196# 98 924925.848 1.700 + 1 50 49 99 In x -61376# 196# 8304# 2# B- -13432# 540# 98 934110# 210# + -1 49 50 99 Sn x -47944# 503# 8160# 5# B- * 98 948530# 540# +0 28 64 36 100 Kr x -35052# 401# 8140# 4# B- 11495# 446# 99 962370# 430# + 26 63 37 100 Rb x -46547# 196# 8247# 2# B- 13283# 196# 99 950030# 210# + 24 62 38 100 Sr -n2p -59830.146 9.536 8372.327 0.095 B- 7503.184 14.550 99 935769.692 10.237 + 22 61 39 100 Y x -67333.330 11.363 8439.535 0.114 B- 9048.641 13.838 99 927714.692 12.198 + 20 60 40 100 Zr -76381.971 8.291 8522.198 0.083 B- 3421.362 11.408 99 918000.576 8.900 + 18 59 41 100 Nb IT -79803.334 8.232 8548.588 0.082 B- 6386.146 8.292 99 914327.592 8.837 + 16 58 42 100 Mo -86189.480 1.048 8604.626 0.010 B- -169.620 1.513 99 907471.782 1.124 + 14 57 43 100 Tc -n -86019.859 1.391 8595.107 0.014 B- 3203.986 1.511 99 907653.877 1.492 + 12 56 44 100 Ru -89223.846 1.052 8619.323 0.011 B- -3635.629 18.124 99 904214.256 1.129 + 10 55 45 100 Rh -85588.217 18.144 8575.143 0.181 B- -360.992 25.324 99 908117.264 19.477 + 8 54 46 100 Pd -85227.225 17.695 8563.710 0.177 B- -7089.266 18.388 99 908504.805 18.996 + 6 53 47 100 Ag x -78137.959 5.000 8484.994 0.050 B- -3943.363 5.273 99 916115.445 5.367 + 4 52 48 100 Cd -74194.596 1.677 8437.737 0.017 B- -9881.624 182.517 99 920348.820 1.799 + 2 51 49 100 In -64312.972 182.519 8331.097 1.825 B- -7030.000 240.000 99 930957.180 195.942 + 0 50 50 100 Sn - -57282.972 301.518 8252.974 3.015 B- * 99 938504.196 323.693 +0 29 65 36 101 Kr x -29128# 503# 8081# 5# B- 13684# 547# 100 968730# 540# + 27 64 37 101 Rb + -42812# 216# 8209# 2# B- 12750# 200# 100 954039# 231# + 25 63 38 101 Sr + -55561.993 80.339 8327.088 0.795 B- 9505.000 80.000 100 940351.743 86.247 + 23 62 39 101 Y x -65066.993 7.374 8413.451 0.073 B- 8103.757 10.941 100 930147.705 7.915 + 21 61 40 101 Zr -73170.750 8.493 8485.940 0.084 B- 5717.240 9.331 100 921447.964 9.117 + 19 60 41 101 Nb x -78887.990 3.875 8534.800 0.038 B- 4628.414 3.738 100 915310.254 4.160 + 17 59 42 101 Mo -n -83516.403 1.050 8572.880 0.010 B- 2824.654 24.002 100 910341.447 1.127 + 15 58 43 101 Tc + -86341.057 24.024 8593.101 0.238 B- 1613.520 24.000 100 907309.057 25.790 + 13 57 44 101 Ru -87954.577 1.075 8601.330 0.011 B- -543.751 5.922 100 905576.872 1.154 + 11 56 45 101 Rh -87410.826 5.856 8588.201 0.058 B- -1980.169 3.903 100 906160.613 6.286 + 9 55 46 101 Pd -85430.657 4.608 8560.849 0.046 B- -4096.283 6.682 100 908286.412 4.947 + 7 54 47 101 Ag x -81334.373 4.838 8512.546 0.048 B- -5497.918 5.063 100 912683.953 5.193 + 5 53 48 101 Cd x -75836.455 1.490 8450.365 0.015 B- -7223# 298# 100 918586.211 1.600 + 3 52 49 101 In x -68614# 298# 8371# 3# B- -8308# 423# 100 926340# 320# + 1 51 50 101 Sn ep -60305.625 300.005 8281.102 2.970 B- * 100 935259.244 322.068 +0 28 65 37 102 Rb x -37707# 298# 8157# 3# B- 14651# 306# 101 959520# 320# + 26 64 38 102 Sr + -52358.366 70.119 8293.172 0.687 B- 8815.000 70.000 101 943790.979 75.275 + 24 63 39 102 Y x -61173.366 4.079 8371.924 0.040 B- 10420.396 9.882 101 934327.687 4.378 + 22 62 40 102 Zr -71593.762 9.001 8466.414 0.088 B- 4716.837 9.053 101 923140.930 9.663 + 20 61 41 102 Nb -76310.599 3.260 8504.988 0.032 B- 7259.862 8.684 101 918077.197 3.500 + 18 60 42 102 Mo -83570.462 8.485 8568.493 0.083 B- 1000.127 12.495 101 910283.414 9.108 + 16 59 43 102 Tc -84570.589 9.191 8570.628 0.090 B- 4532.311 9.170 101 909209.733 9.866 + 14 58 44 102 Ru -89102.900 1.076 8607.392 0.011 B- -2322.473 4.561 101 904344.096 1.155 + 12 57 45 102 Rh -86780.428 4.684 8576.953 0.046 B- 1150.568 4.520 101 906837.373 5.028 + 10 56 46 102 Pd -87930.996 2.639 8580.563 0.026 B- -5684.462 8.586 101 905602.187 2.833 + 8 55 47 102 Ag + -82246.534 8.171 8517.163 0.080 B- -2587.000 8.000 101 911704.708 8.772 + 6 54 48 102 Cd -79659.534 1.663 8484.130 0.016 B- -8965.789 4.877 101 914481.967 1.785 + 4 53 49 102 In -70693.745 4.589 8388.560 0.045 B- -5760.000 100.000 101 924107.138 4.926 + 2 52 50 102 Sn - -64933.745 100.105 8324.419 0.981 B- * 101 930290.753 107.467 +0 29 66 37 103 Rb x -33608# 401# 8117# 4# B- 13814# 446# 102 963920# 430# + 27 65 38 103 Sr x -47422# 196# 8243# 2# B- 11035# 196# 102 949090# 210# + 25 64 39 103 Y x -58457.765 11.205 8342.640 0.109 B- 9363.681 14.663 102 937243.004 12.028 + 23 63 40 103 Zr x -67821.446 9.459 8425.954 0.092 B- 7203.653 10.287 102 927190.678 10.154 + 21 62 41 103 Nb x -75025.099 4.061 8488.297 0.039 B- 5941.683 10.287 102 919457.238 4.359 + 19 61 42 103 Mo x -80966.783 9.459 8538.387 0.092 B- 3635.106 13.636 102 913078.578 10.154 + 17 60 43 103 Tc +p -84601.889 9.828 8566.084 0.095 B- 2661.748 9.817 102 909176.131 10.550 + 15 59 44 103 Ru -87263.637 1.086 8584.331 0.011 B- 764.415 2.185 102 906318.627 1.165 + 13 58 45 103 Rh -88028.052 2.431 8584.157 0.024 B- -543.020 0.797 102 905497.993 2.610 + 11 57 46 103 Pd -87485.032 2.542 8571.289 0.025 B- -2684.742 4.611 102 906080.949 2.728 + 9 56 47 103 Ag -84800.290 3.847 8537.628 0.037 B- -4148.295 4.149 102 908963.138 4.129 + 7 55 48 103 Cd -80651.995 1.788 8489.758 0.017 B- -6022.480 9.229 102 913416.517 1.919 + 5 54 49 103 In -74629.515 9.127 8423.691 0.089 B- -7660.000 70.000 102 919881.915 9.798 + 3 53 50 103 Sn - -66969.515 70.592 8341.727 0.685 B- -10791# 306# 102 928105.264 75.784 + 1 52 51 103 Sb x -56178# 298# 8229# 3# B- * 102 939690# 320# +0 28 66 38 104 Sr x -44106# 298# 8210# 3# B- 9958# 499# 103 952650# 320# + 26 65 39 104 Y x -54064# 401# 8298# 4# B- 11666# 401# 103 941960# 430# + 24 64 40 104 Zr x -65730.230 9.554 8402.436 0.092 B- 6094.952 9.699 103 929435.691 10.256 + 22 63 41 104 Nb x -71825.182 3.436 8453.519 0.033 B- 8530.732 9.311 103 922892.491 3.688 + 20 62 42 104 Mo -80355.913 9.146 8528.023 0.088 B- 2151.272 24.174 103 913734.373 9.819 + 18 61 43 104 Tc -82507.185 24.932 8541.185 0.240 B- 5586.549 24.984 103 911424.888 26.765 + 16 60 44 104 Ru -88093.734 2.567 8587.380 0.025 B- -1138.042 3.337 103 905427.481 2.755 + 14 59 45 104 Rh -n -86955.692 2.433 8568.914 0.023 B- 2439.284 2.760 103 906649.220 2.611 + 12 58 46 104 Pd +n -89394.976 1.337 8584.846 0.013 B- -4278.653 4.000 103 904030.540 1.435 + 10 57 47 104 Ag - -85116.322 4.218 8536.183 0.041 B- -1148.087 4.537 103 908623.864 4.527 + 8 56 48 104 Cd -83968.236 1.674 8517.621 0.016 B- -7785.571 6.013 103 909856.386 1.796 + 6 55 49 104 In x -76182.664 5.775 8435.237 0.056 B- -4555.623 8.146 103 918214.541 6.200 + 4 54 50 104 Sn -71627.041 5.745 8383.911 0.055 B- -12456.496 122.541 103 923105.204 6.167 + 2 53 51 104 Sb -p -59170.544 122.406 8256.614 1.177 B- * 103 936477.804 131.408 +0 29 67 38 105 Sr x -38610# 503# 8156# 5# B- 12212# 711# 104 958550# 540# + 27 66 39 105 Y x -50822# 503# 8265# 5# B- 10649# 503# 104 945440# 540# + 25 65 40 105 Zr x -61470.962 12.298 8358.718 0.117 B- 8440.950 12.976 104 934008.204 13.202 + 23 64 41 105 Nb x -69911.912 4.156 8431.657 0.040 B- 7431.323 10.176 104 924946.471 4.461 + 21 63 42 105 Mo -77343.235 9.297 8494.981 0.089 B- 4949.711 35.041 104 916968.617 9.980 + 19 62 43 105 Tc -82292.947 35.287 8534.670 0.336 B- 3639.569 35.302 104 911654.883 37.881 + 17 61 44 105 Ru -85932.515 2.568 8561.882 0.024 B- 1918.035 2.876 104 907747.645 2.756 + 15 60 45 105 Rh -87850.550 2.510 8572.698 0.024 B- 567.208 2.352 104 905688.549 2.694 + 13 59 46 105 Pd -88417.759 1.139 8570.649 0.011 B- -1346.930 4.670 104 905079.626 1.222 + 11 58 47 105 Ag -87070.828 4.544 8550.370 0.043 B- -2736.991 4.362 104 906525.615 4.877 + 9 57 48 105 Cd -84333.837 1.392 8516.852 0.013 B- -4693.266 10.341 104 909463.896 1.494 + 7 56 49 105 In x -79640.571 10.246 8464.704 0.098 B- -6302.586 10.989 104 914502.325 11.000 + 5 55 50 105 Sn -73337.986 3.971 8397.228 0.038 B- -9321.896 21.900 104 921268.429 4.263 + 3 54 51 105 Sb +a -64016.090 21.537 8300.997 0.205 B- -11204.580 300.792 104 931275.897 23.120 + 1 53 52 105 Te -a -52811.510 300.020 8186.836 2.857 B- * 104 943304.508 322.084 +0 30 68 38 106 Sr x -34790# 600# 8119# 6# B- 11263# 783# 105 962651# 644# + 28 67 39 106 Y x -46053# 503# 8218# 5# B- 12855# 540# 105 950560# 540# + 26 66 40 106 Zr x -58908# 196# 8332# 2# B- 7292# 196# 105 936760# 210# + 24 65 41 106 Nb x -66199.683 4.248 8393.237 0.040 B- 9941.136 10.293 105 928931.712 4.560 + 22 64 42 106 Mo x -76140.819 9.382 8479.640 0.089 B- 3634.565 15.430 105 918259.464 10.071 + 20 63 43 106 Tc + -79775.384 12.252 8506.548 0.116 B- 6547.000 11.000 105 914357.598 13.153 + 18 62 44 106 Ru -86322.384 5.397 8560.932 0.051 B- 39.405 0.212 105 907329.104 5.793 + 16 61 45 106 Rh -86361.788 5.395 8553.923 0.051 B- 3545.616 5.339 105 907286.801 5.792 + 14 60 46 106 Pd -89907.404 1.106 8579.991 0.010 B- -2965.142 2.817 105 903480.426 1.187 + 12 59 47 106 Ag -86942.262 3.016 8544.638 0.028 B- 189.753 2.819 105 906663.637 3.237 + 10 58 48 106 Cd -87132.015 1.104 8539.047 0.010 B- -6524.003 12.176 105 906459.928 1.185 + 8 57 49 106 In - -80608.012 12.226 8470.119 0.115 B- -3254.332 13.244 105 913463.735 13.125 + 6 56 50 106 Sn -77353.680 5.091 8432.037 0.048 B- -10880.389 9.025 105 916957.404 5.465 + 4 55 51 106 Sb x -66473.291 7.452 8322.012 0.070 B- -8254.603 100.817 105 928637.982 8.000 + 2 54 52 106 Te -a -58218.688 100.541 8236.757 0.949 B- * 105 937499.664 107.935 +0 31 69 38 107 Sr x -28900# 700# 8064# 7# B- 13465# 862# 106 968975# 751# + 29 68 39 107 Y x -42364# 503# 8182# 5# B- 11904# 585# 106 954520# 540# + 27 67 40 107 Zr x -54269# 298# 8286# 3# B- 9451# 298# 106 941740# 320# + 25 66 41 107 Nb x -63720.100 8.090 8367.054 0.076 B- 8837.808 12.455 106 931593.654 8.685 + 23 65 42 107 Mo x -72557.908 9.477 8442.339 0.089 B- 6189.994 12.856 106 922105.877 10.174 + 21 64 43 107 Tc x -78747.902 8.693 8492.878 0.081 B- 5112.598 11.724 106 915460.645 9.332 + 19 63 44 107 Ru -nn -83860.500 8.693 8533.348 0.081 B- 3003.355 14.860 106 909972.045 9.332 + 17 62 45 107 Rh +p -86863.855 12.051 8554.105 0.113 B- 1508.662 12.111 106 906747.811 12.937 + 15 61 46 107 Pd -88372.517 1.202 8560.893 0.011 B- 34.078 2.318 106 905128.195 1.290 + 13 60 47 107 Ag -88406.595 2.382 8553.899 0.022 B- -1416.347 2.567 106 905091.611 2.557 + 11 59 48 107 Cd -86990.248 1.665 8533.351 0.016 B- -3426.000 11.000 106 906612.122 1.787 + 9 58 49 107 In - -83564.248 11.125 8494.021 0.104 B- -5052.021 12.327 106 910290.084 11.943 + 7 57 50 107 Sn x -78512.227 5.310 8439.494 0.050 B- -7859.005 6.738 106 915713.652 5.700 + 5 56 51 107 Sb -70653.222 4.148 8358.733 0.039 B- -10116.893 70.886 106 924150.641 4.452 + 3 55 52 107 Te -a -60536.329 70.764 8256.871 0.661 B- -10962# 306# 106 935011.573 75.968 + 1 54 53 107 I x -49574# 298# 8147# 3# B- * 106 946780# 320# +0 30 69 39 108 Y x -37297# 596# 8134# 6# B- 14056# 718# 107 959960# 640# + 28 68 40 108 Zr x -51353# 401# 8257# 4# B- 8193# 401# 107 944870# 430# + 26 67 41 108 Nb x -59545.965 8.237 8325.667 0.076 B- 11216.383 12.560 107 936074.773 8.843 + 24 66 42 108 Mo x -70762.348 9.482 8422.278 0.088 B- 5158.397 12.925 107 924033.490 10.178 + 22 65 43 108 Tc x -75920.745 8.790 8462.797 0.081 B- 7738.573 11.790 107 918495.722 9.436 + 20 64 44 108 Ru -3n -83659.318 8.701 8527.207 0.081 B- 1372.602 16.480 107 910188.022 9.341 + 18 63 45 108 Rh x -85031.920 13.996 8532.672 0.130 B- 4492.440 14.039 107 908714.473 15.025 + 16 62 46 108 Pd -89524.361 1.110 8567.025 0.010 B- -1917.673 2.634 107 903891.640 1.191 + 14 61 47 108 Ag -n -87606.688 2.388 8542.025 0.022 B- 1645.863 2.640 107 905950.346 2.563 + 12 60 48 108 Cd -89252.551 1.124 8550.020 0.010 B- -5132.610 8.584 107 904183.440 1.206 + 10 59 49 108 In -84119.941 8.641 8495.252 0.080 B- -2049.998 9.837 107 909693.524 9.276 + 8 58 50 108 Sn -82069.943 5.382 8469.027 0.050 B- -9624.613 7.692 107 911894.287 5.778 + 6 57 51 108 Sb x -72445.330 5.496 8372.666 0.051 B- -6663.659 7.712 107 922226.735 5.900 + 4 56 52 108 Te -65781.671 5.411 8303.721 0.050 B- -13135.142 132.335 107 929380.467 5.808 + 2 55 53 108 I -a -52646.529 132.224 8174.856 1.224 B- * 107 943481.623 141.948 +0 31 70 39 109 Y x -33200# 700# 8096# 6# B- 12992# 862# 108 964358# 751# + 29 69 40 109 Zr x -46193# 503# 8208# 5# B- 10427# 727# 108 950410# 540# + 27 68 41 109 Nb x -56619.931 525.363 8296.489 4.820 B- 10052.534 525.486 108 939216.000 564.000 + 25 67 42 109 Mo x -66672.465 11.398 8381.536 0.105 B- 7608.260 14.955 108 928424.160 12.235 + 23 66 43 109 Tc x -74280.725 9.689 8444.160 0.089 B- 6455.626 12.657 108 920256.356 10.401 + 21 65 44 109 Ru -4n -80736.351 8.975 8496.208 0.082 B- 4263.574 9.845 108 913325.956 9.634 + 19 64 45 109 Rh -84999.925 4.047 8528.146 0.037 B- 2606.706 4.191 108 908748.821 4.344 + 17 63 46 109 Pd -87606.632 1.116 8544.883 0.010 B- 1113.251 1.413 108 905950.406 1.198 + 15 62 47 109 Ag -88719.883 1.309 8547.919 0.012 B- -215.521 1.790 108 904755.282 1.405 + 13 61 48 109 Cd -88504.363 1.537 8538.764 0.014 B- -2016.432 4.119 108 904986.653 1.650 + 11 60 49 109 In -86487.931 4.026 8513.087 0.037 B- -3857.018 8.927 108 907151.381 4.321 + 9 59 50 109 Sn -82630.914 7.958 8470.524 0.073 B- -6379.860 8.814 108 911292.060 8.543 + 7 58 51 109 Sb -76251.054 5.265 8404.816 0.048 B- -8535.664 6.850 108 918141.122 5.652 + 5 57 52 109 Te -67715.390 4.382 8319.330 0.040 B- -10042.207 7.206 108 927304.534 4.704 + 3 56 53 109 I -p -57673.183 5.721 8220.022 0.052 B- -11503.556 300.162 108 938085.287 6.141 + 1 55 54 109 Xe -a -46169.627 300.108 8107.307 2.753 B- * 108 950434.864 322.178 +0 30 70 40 110 Zr x -42886# 596# 8177# 5# B- 9250# 627# 109 953960# 640# + 28 69 41 110 Nb x -52136# 196# 8254# 2# B- 12413# 197# 109 944030# 210# + 26 68 42 110 Mo x -64549.112 24.323 8359.413 0.221 B- 6483.328 26.116 109 930703.673 26.111 + 24 67 43 110 Tc x -71032.441 9.517 8411.240 0.087 B- 9038.135 12.509 109 923743.534 10.216 + 22 66 44 110 Ru -80070.575 8.944 8486.293 0.081 B- 2758.402 19.414 109 914040.696 9.602 + 20 65 45 110 Rh -82828.978 17.807 8504.257 0.162 B- 5502.549 17.797 109 911079.429 19.116 + 18 64 46 110 Pd -88331.527 0.694 8547.168 0.006 B- -873.766 1.380 109 905172.199 0.745 + 16 63 47 110 Ag -87457.761 1.309 8532.112 0.012 B- 2891.004 1.289 109 906110.226 1.404 + 14 62 48 110 Cd -90348.765 0.564 8551.282 0.005 B- -3878.000 11.547 109 903006.606 0.606 + 12 61 49 110 In - -86470.765 11.561 8508.915 0.105 B- -628.781 17.985 109 907169.810 12.411 + 10 60 50 110 Sn x -85841.983 13.777 8496.087 0.125 B- -8392.250 15.012 109 907844.835 14.790 + 8 59 51 110 Sb x -77449.733 5.962 8412.681 0.054 B- -5219.910 8.875 109 916854.287 6.400 + 6 58 52 110 Te -72229.823 6.575 8358.115 0.060 B- -11765.648 50.978 109 922458.091 7.058 + 4 57 53 110 I -a -60464.175 50.552 8244.043 0.460 B- -8545.589 113.041 109 935089.034 54.270 + 2 56 54 110 Xe -a -51918.586 101.107 8159.243 0.919 B- * 109 944263.102 108.543 +0 31 71 40 111 Zr x -37560# 700# 8128# 6# B- 11316# 760# 110 959678# 751# + 29 70 41 111 Nb x -48875# 298# 8223# 3# B- 11062# 298# 110 947530# 320# + 27 69 42 111 Mo + -59937.674 12.593 8315.273 0.113 B- 9084.861 6.800 110 935654.257 13.519 + 25 68 43 111 Tc x -69022.535 10.600 8390.071 0.095 B- 7760.649 13.848 110 925901.257 11.379 + 23 67 44 111 Ru x -76783.184 9.702 8452.938 0.087 B- 5521.474 11.877 110 917569.857 10.415 + 21 66 45 111 Rh -82304.658 6.851 8495.633 0.062 B- 3681.852 6.891 110 911642.310 7.355 + 19 65 46 111 Pd -n -85986.510 0.801 8521.755 0.007 B- 2229.769 1.576 110 907689.679 0.859 + 17 64 47 111 Ag + -88216.279 1.523 8534.795 0.014 B- 1036.800 1.414 110 905295.923 1.634 + 15 63 48 111 Cd -89253.079 0.564 8537.087 0.005 B- -862.178 3.509 110 904182.872 0.605 + 13 62 49 111 In -88390.901 3.510 8522.271 0.032 B- -2451.383 6.389 110 905108.458 3.768 + 11 61 50 111 Sn +n -85939.518 5.359 8493.139 0.048 B- -5102.783 10.345 110 907740.127 5.753 + 9 60 51 111 Sb x -80836.736 8.849 8440.119 0.080 B- -7249.259 10.937 110 913218.189 9.500 + 7 59 52 111 Te x -73587.477 6.427 8367.763 0.058 B- -8633.669 7.994 110 921000.589 6.900 + 5 58 53 111 I -64953.808 4.754 8282.934 0.043 B- -10561.271 86.777 110 930269.214 5.103 + 3 57 54 111 Xe -a -54392.537 86.646 8180.739 0.781 B- * 110 941607.206 93.018 +0 32 72 40 112 Zr x -33810# 700# 8094# 6# B- 10463# 760# 111 963703# 751# + 30 71 41 112 Nb x -44274# 298# 8180# 3# B- 13190# 357# 111 952470# 320# + 28 70 42 112 Mo x -57464# 196# 8291# 2# B- 7791# 196# 111 938310# 210# + 26 69 43 112 Tc x -65255.055 5.621 8353.586 0.050 B- 10373.656 11.070 111 929945.813 6.034 + 24 68 44 112 Ru x -75628.711 9.620 8439.223 0.086 B- 4104.174 45.123 111 918809.234 10.327 + 22 67 45 112 Rh -79732.885 44.085 8468.882 0.394 B- 6588.945 43.927 111 914403.222 47.327 + 20 66 46 112 Pd -86321.830 6.545 8520.727 0.058 B- 261.888 6.979 111 907329.698 7.026 + 18 65 47 112 Ag x -86583.717 2.422 8516.080 0.022 B- 3992.088 2.485 111 907048.550 2.600 + 16 64 48 112 Cd -90575.805 0.555 8544.738 0.005 B- -2584.734 4.243 111 902762.868 0.595 + 14 63 49 112 In -87991.071 4.279 8514.675 0.038 B- 664.919 4.243 111 905537.694 4.593 + 12 62 50 112 Sn -88655.990 0.573 8513.627 0.005 B- -7057.026 17.838 111 904823.874 0.614 + 10 61 51 112 Sb x -81598.964 17.829 8443.632 0.159 B- -4031.457 19.702 111 912399.903 19.140 + 8 60 52 112 Te x -77567.508 8.383 8400.652 0.075 B- -10504.178 13.239 111 916727.850 9.000 + 6 59 53 112 I x -67063.329 10.246 8299.879 0.091 B- -7036.908 13.175 111 928004.550 11.000 + 4 58 54 112 Xe -a -60026.421 8.283 8230.065 0.074 B- -13739.142 87.136 111 935558.982 8.891 + 2 57 55 112 Cs -p -46287.280 86.742 8100.408 0.774 B- * 111 950308.558 93.121 +0 31 72 41 113 Nb x -40511# 401# 8146# 4# B- 12258# 499# 112 956510# 430# + 29 71 42 113 Mo x -52769# 298# 8248# 3# B- 10042# 298# 112 943350# 320# + 27 70 43 113 Tc x -62811.539 3.353 8329.464 0.030 B- 9058.813 36.620 112 932569.035 3.600 + 25 69 44 113 Ru -71870.352 36.467 8402.707 0.323 B- 6897.393 37.157 112 922843.999 39.148 + 23 68 45 113 Rh x -78767.745 7.130 8456.823 0.063 B- 4823.555 9.881 112 915439.342 7.654 + 21 67 46 113 Pd x -83591.301 6.946 8492.586 0.061 B- 3435.488 18.036 112 910261.042 7.456 + 19 66 47 113 Ag + -87026.789 16.646 8516.065 0.147 B- 2016.462 16.641 112 906572.893 17.870 + 17 65 48 113 Cd -89043.251 0.415 8526.986 0.004 B- 322.571 0.790 112 904408.133 0.445 + 15 64 49 113 In -89365.821 0.852 8522.917 0.008 B- -1037.581 1.696 112 904061.839 0.914 + 13 63 50 113 Sn -88328.240 1.642 8506.812 0.015 B- -3911.164 17.121 112 905175.728 1.762 + 11 62 51 113 Sb - -84417.076 17.199 8465.276 0.152 B- -6070.047 32.813 112 909374.536 18.464 + 9 61 52 113 Te x -78347.029 27.945 8404.636 0.247 B- -7227.523 29.070 112 915891.000 30.000 + 7 60 53 113 I x -71119.507 8.011 8333.752 0.071 B- -8915.874 10.533 112 923650.064 8.600 + 5 59 54 113 Xe -62203.632 6.839 8247.927 0.061 B- -10439.713 11.042 112 933221.650 7.342 + 3 58 55 113 Cs -p -51763.919 8.669 8148.617 0.077 B- * 112 944429.144 9.306 +0 32 73 41 114 Nb x -35387# 503# 8100# 4# B- 14420# 585# 113 962010# 540# + 30 72 42 114 Mo x -49807# 298# 8220# 3# B- 8961# 315# 113 946530# 320# + 28 71 43 114 Tc IT -58768# 101# 8292# 1# B- 11454# 101# 113 936910# 108# + 26 70 44 114 Ru x -70222.022 3.552 8385.341 0.031 B- 5491.399 71.643 113 924613.554 3.813 + 24 69 45 114 Rh -75713.421 71.561 8426.649 0.628 B- 7777.733 71.891 113 918718.294 76.824 + 22 68 46 114 Pd x -83491.154 6.946 8488.012 0.061 B- 1439.645 8.312 113 910368.554 7.457 + 20 67 47 114 Ag x -84930.799 4.564 8493.778 0.040 B- 5084.043 4.582 113 908823.031 4.900 + 18 66 48 114 Cd -90014.842 0.401 8531.512 0.004 B- -1446.445 0.825 113 903365.086 0.430 + 16 65 49 114 In -88568.397 0.875 8511.961 0.008 B- 1988.939 0.628 113 904917.909 0.938 + 14 64 50 114 Sn -90557.336 0.971 8522.545 0.009 B- -6061.691 21.846 113 902782.695 1.042 + 12 63 51 114 Sb -84495.645 21.841 8462.510 0.192 B- -2607.075 35.468 113 909290.189 23.447 + 10 62 52 114 Te x -81888.569 27.945 8432.778 0.245 B- -9092# 299# 113 912089.000 30.000 + 8 61 53 114 I x -72796# 298# 8346# 3# B- -5710# 298# 113 921850# 320# + 6 60 54 114 Xe x -67085.889 11.178 8289.205 0.098 B- -12403.629 71.976 113 927980.331 12.000 + 4 59 55 114 Cs -a -54682.260 71.102 8173.538 0.624 B- -8722.755 130.372 113 941296.176 76.331 + 2 58 56 114 Ba -a -45959.505 109.276 8090.160 0.959 B- * 113 950660.438 117.312 +0 33 74 41 115 Nb x -31354# 503# 8065# 4# B- 13395# 643# 114 966340# 540# + 31 73 42 115 Mo x -44749# 401# 8175# 3# B- 11159# 446# 114 951960# 430# + 29 72 43 115 Tc x -55908# 196# 8265# 2# B- 10396# 207# 114 939980# 210# + 27 71 44 115 Ru -66303.837 66.352 8348.540 0.577 B- 7925.439 66.395 114 928819.898 71.232 + 25 70 45 115 Rh -74229.276 7.306 8410.654 0.064 B- 6197.307 15.345 114 920311.589 7.843 + 23 69 46 115 Pd -80426.583 13.546 8457.740 0.118 B- 4556.078 21.649 114 913658.506 14.542 + 21 68 47 115 Ag -84982.661 18.268 8490.555 0.159 B- 3101.728 18.276 114 908767.355 19.611 + 19 67 48 115 Cd -88084.389 0.713 8510.724 0.006 B- 1451.955 0.713 114 905437.513 0.765 + 17 66 49 115 In -89536.343 0.012 8516.546 0.000 B- 497.490 0.010 114 903878.776 0.012 + 15 65 50 115 Sn -90033.833 0.015 8514.069 0.000 B- -3030.430 16.025 114 903344.699 0.016 + 13 64 51 115 Sb x -87003.403 16.025 8480.915 0.139 B- -4940.644 32.214 114 906598.000 17.203 + 11 63 52 115 Te x -82062.759 27.945 8431.150 0.243 B- -5724.962 40.184 114 911902.000 30.000 + 9 62 53 115 I x -76337.796 28.876 8374.564 0.251 B- -7681.049 31.313 114 918048.000 31.000 + 7 61 54 115 Xe x -68656.747 12.109 8300.970 0.105 B- -8957# 298# 114 926293.945 13.000 + 5 60 55 115 Cs x -59699# 298# 8216# 3# B- -10675# 585# 114 935910# 320# + 3 59 56 115 Ba x -49025# 503# 8117# 4# B- * 114 947370# 540# +0 32 74 42 116 Mo x -41500# 500# 8146# 4# B- 9956# 582# 115 955448# 537# + 30 73 43 116 Tc x -51456# 298# 8225# 3# B- 12613# 298# 115 944760# 320# + 28 72 44 116 Ru x -64068.907 3.726 8326.883 0.032 B- 6670.118 70.778 115 931219.195 4.000 + 26 71 45 116 Rh -70739.025 70.680 8377.640 0.609 B- 9092.824 71.033 115 924058.528 75.878 + 24 70 46 116 Pd x -79831.849 7.133 8449.282 0.061 B- 2710.804 7.843 115 914296.979 7.657 + 22 69 47 116 Ag x -82542.653 3.260 8465.906 0.028 B- 6169.903 3.264 115 911386.812 3.500 + 20 68 48 116 Cd -88712.556 0.160 8512.351 0.001 B- -462.810 0.272 115 904763.148 0.171 + 18 67 49 116 In -n -88249.746 0.220 8501.617 0.002 B- 3276.249 0.240 115 905259.995 0.236 + 16 66 50 116 Sn -91525.995 0.096 8523.116 0.001 B- -4704.341 5.167 115 901742.797 0.102 + 14 65 51 116 Sb -86821.654 5.168 8475.817 0.045 B- -1552.693 28.419 115 906793.115 5.547 + 12 64 52 116 Te x -85268.961 27.945 8455.687 0.241 B- -7776.725 100.553 115 908460.000 30.000 + 10 63 53 116 I + -77492.236 96.592 8381.902 0.833 B- -4445.512 95.707 115 916808.658 103.695 + 8 62 54 116 Xe x -73046.723 13.041 8336.834 0.112 B- -10984# 101# 115 921581.112 14.000 + 6 61 55 116 Cs ea -62063# 100# 8235# 1# B- -7365# 315# 115 933373# 108# + 4 60 56 116 Ba x -54697# 298# 8165# 3# B- -13995# 369# 115 941280# 320# + 2 59 57 116 La -a -40702# 218# 8038# 2# B- * 115 956304# 234# +0 33 75 42 117 Mo x -36170# 500# 8100# 4# B- 12212# 641# 116 961170# 537# + 31 74 43 117 Tc x -48382# 401# 8197# 3# B- 11138# 709# 116 948060# 430# + 29 73 44 117 Ru x -59519.672 585.444 8285.816 5.004 B- 9377.917 585.512 116 936103.000 628.500 + 27 72 45 117 Rh x -68897.589 8.893 8359.283 0.076 B- 7527.095 11.411 116 926035.391 9.547 + 25 71 46 117 Pd -76424.685 7.253 8416.930 0.062 B- 5757.366 14.767 116 917954.721 7.786 + 23 70 47 117 Ag -82182.050 13.572 8459.452 0.116 B- 4236.414 13.610 116 911773.934 14.570 + 21 69 48 117 Cd -n -86418.465 1.013 8488.974 0.009 B- 2524.608 4.983 116 907225.956 1.087 + 19 68 49 117 In -88943.073 4.881 8503.865 0.042 B- 1454.710 4.857 116 904515.678 5.239 + 17 67 50 117 Sn -90397.782 0.483 8509.612 0.004 B- -1758.218 8.445 116 902953.983 0.519 + 15 66 51 117 Sb -88639.564 8.437 8487.897 0.072 B- -3544.139 13.079 116 904841.508 9.057 + 13 65 52 117 Te -85095.425 13.456 8450.919 0.115 B- -4659.346 28.673 116 908646.298 14.446 + 11 64 53 117 I -80436.079 26.196 8404.409 0.224 B- -6250.743 28.177 116 913648.312 28.123 + 9 63 54 117 Xe x -74185.336 10.378 8344.297 0.089 B- -7692.245 63.267 116 920358.761 11.141 + 7 62 55 117 Cs x -66493.091 62.410 8271.864 0.533 B- -8871.404 202.362 116 928616.726 67.000 + 5 61 56 117 Ba ep -57621.687 192.498 8189.354 1.645 B- -11033# 355# 116 938140.570 206.654 + 3 60 57 117 La -p -46588# 298# 8088# 3# B- * 116 949985# 320# +0 32 75 43 118 Tc x -43790# 401# 8157# 3# B- 13469# 499# 117 952990# 430# + 30 74 44 118 Ru x -57259# 298# 8265# 3# B- 7629# 299# 117 938530# 320# + 28 73 45 118 Rh x -64887.678 24.235 8322.860 0.205 B- 10501.206 24.342 117 930340.208 26.017 + 26 72 46 118 Pd -75388.883 2.492 8405.223 0.021 B- 4164.908 3.540 117 919066.700 2.674 + 24 71 47 118 Ag x -79553.791 2.515 8433.889 0.021 B- 7147.929 20.158 117 914595.487 2.700 + 22 70 48 118 Cd -nn -86701.720 20.001 8487.835 0.169 B- 526.530 21.450 117 906921.869 21.471 + 20 69 49 118 In -87228.250 7.752 8485.667 0.066 B- 4424.635 7.740 117 906356.616 8.322 + 18 68 50 118 Sn -91652.886 0.500 8516.534 0.004 B- -3656.640 2.975 117 901606.574 0.536 + 16 67 51 118 Sb - -87996.246 3.016 8478.915 0.026 B- -299.466 18.730 117 905532.139 3.238 + 14 66 52 118 Te +nn -87696.780 18.486 8469.747 0.157 B- -6725.732 27.059 117 905853.629 19.845 + 12 65 53 118 I x -80971.048 19.760 8406.120 0.167 B- -2891.991 22.320 117 913074.000 21.213 + 10 64 54 118 Xe x -78079.056 10.378 8374.981 0.088 B- -9669.689 16.442 117 916178.680 11.141 + 8 63 55 118 Cs IT -68409.367 12.753 8286.404 0.108 B- -6055# 196# 117 926559.519 13.690 + 6 62 56 118 Ba x -62354# 196# 8228# 2# B- -12734# 357# 117 933060# 210# + 4 61 57 118 La x -49621# 298# 8114# 3# B- * 117 946730# 320# +0 33 76 43 119 Tc x -40371# 503# 8128# 4# B- 12193# 585# 118 956660# 540# + 31 75 44 119 Ru x -52564# 298# 8224# 3# B- 10259# 298# 118 943570# 320# + 29 74 45 119 Rh x -62822.792 9.315 8303.394 0.078 B- 8585.330 12.441 118 932556.954 10.000 + 27 73 46 119 Pd x -71408.122 8.246 8368.966 0.069 B- 7237.648 16.856 118 923340.223 8.852 + 25 72 47 119 Ag -78645.771 14.703 8423.212 0.124 B- 5331.346 35.926 118 915570.287 15.783 + 23 71 48 119 Cd -83977.117 37.695 8461.439 0.317 B- 3722.384 38.088 118 909846.851 40.467 + 21 70 49 119 In -87699.500 7.308 8486.145 0.061 B- 2365.563 7.336 118 905850.708 7.845 + 19 69 50 119 Sn -90065.063 0.726 8499.449 0.006 B- -590.846 7.689 118 903311.172 0.779 + 17 68 51 119 Sb -89474.217 7.701 8487.910 0.065 B- -2293.000 2.000 118 903945.471 8.267 + 15 67 52 119 Te - -87181.217 7.957 8462.067 0.067 B- -3415.687 29.055 118 906407.108 8.541 + 13 66 53 119 I x -83765.530 27.945 8426.789 0.235 B- -4971.117 29.810 118 910074.000 30.000 + 11 65 54 119 Xe x -78794.412 10.378 8378.441 0.087 B- -6489.361 17.379 118 915410.714 11.141 + 9 64 55 119 Cs IT -72305.051 13.940 8317.334 0.117 B- -7714.965 200.754 118 922377.330 14.965 + 7 63 56 119 Ba ep -64590.086 200.269 8245.928 1.683 B- -9623# 359# 118 930659.686 214.997 + 5 62 57 119 La x -54967# 298# 8158# 3# B- -10917# 585# 118 940990# 320# + 3 61 58 119 Ce x -44050# 503# 8060# 4# B- * 118 952710# 540# +0 34 77 43 120 Tc x -35518# 503# 8087# 4# B- 14494# 643# 119 961870# 540# + 32 76 44 120 Ru x -50012# 401# 8201# 3# B- 8803# 446# 119 946310# 430# + 30 75 45 120 Rh x -58815# 196# 8268# 2# B- 11466# 196# 119 936860# 210# + 28 74 46 120 Pd -70280.208 2.293 8357.086 0.019 B- 5371.293 5.025 119 924551.089 2.461 + 26 73 47 120 Ag x -75651.501 4.471 8395.327 0.037 B- 8305.853 5.820 119 918784.768 4.800 + 24 72 48 120 Cd x -83957.354 3.726 8458.023 0.031 B- 1771.237 40.183 119 909868.068 4.000 + 22 71 49 120 In + -85728.591 40.010 8466.264 0.333 B- 5370.000 40.000 119 907966.567 42.952 + 20 70 50 120 Sn -91098.591 0.904 8504.494 0.008 B- -2680.608 7.140 119 902201.634 0.970 + 18 69 51 120 Sb - -88417.983 7.197 8475.636 0.060 B- 950.204 7.823 119 905079.385 7.726 + 16 68 52 120 Te -89368.186 3.113 8477.035 0.026 B- -5615.000 15.000 119 904059.300 3.341 + 14 67 53 120 I - -83753.186 15.320 8423.724 0.128 B- -1580.763 19.348 119 910087.251 16.446 + 12 66 54 120 Xe x -82172.423 11.817 8404.031 0.098 B- -8283.785 15.461 119 911784.270 12.686 + 10 65 55 120 Cs IT -73888.638 9.970 8328.480 0.083 B- -5000.000 300.000 119 920677.279 10.702 + 8 64 56 120 Ba - -68888.638 300.166 8280.294 2.501 B- -11201# 423# 119 926045.000 322.241 + 6 63 57 120 La x -57687# 298# 8180# 2# B- -7890# 585# 119 938070# 320# + 4 62 58 120 Ce x -49798# 503# 8108# 4# B- * 119 946540# 540# +0 33 77 44 121 Ru x -45047# 401# 8159# 3# B- 11383# 499# 120 951640# 430# + 31 76 45 121 Rh x -56430# 298# 8247# 2# B- 9752# 298# 120 939420# 320# + 29 75 46 121 Pd x -66182.327 3.353 8320.858 0.028 B- 8220.493 12.565 120 928950.345 3.600 + 27 74 47 121 Ag x -74402.820 12.109 8382.330 0.100 B- 6671.005 12.264 120 920125.282 13.000 + 25 73 48 121 Cd x -81073.825 1.942 8430.996 0.016 B- 4762.358 27.483 120 912963.663 2.085 + 23 72 49 121 In +p -85836.183 27.415 8463.889 0.227 B- 3361.303 27.409 120 907851.062 29.430 + 21 71 50 121 Sn -89197.486 0.963 8485.203 0.008 B- 401.089 2.900 120 904242.554 1.033 + 19 70 51 121 Sb -89598.575 2.803 8482.052 0.023 B- -1054.306 25.769 120 903811.967 3.009 + 17 69 52 121 Te -88544.269 25.863 8466.873 0.214 B- -2292.629 26.062 120 904943.812 27.764 + 15 68 53 121 I -86251.640 5.372 8441.460 0.044 B- -3770.655 11.566 120 907405.050 5.766 + 13 67 54 121 Xe -82480.985 10.243 8403.832 0.085 B- -5378.654 13.979 120 911453.015 10.995 + 11 66 55 121 Cs -77102.331 14.290 8352.914 0.118 B- -6357.495 141.176 120 917227.238 15.340 + 9 65 56 121 Ba - -70744.836 141.898 8293.907 1.173 B- -8474# 330# 120 924052.290 152.333 + 7 64 57 121 La x -62270# 298# 8217# 2# B- -9501# 499# 120 933150# 320# + 5 63 58 121 Ce x -52769# 401# 8132# 3# B- -11150# 643# 120 943350# 430# + 3 62 59 121 Pr -p -41619# 503# 8034# 4# B- * 120 955320# 540# +0 34 78 44 122 Ru x -42411# 503# 8137# 4# B- 9762# 585# 121 954470# 540# + 32 77 45 122 Rh x -52173# 298# 8210# 2# B- 12443# 299# 121 943990# 320# + 30 76 46 122 Pd x -64616.159 19.561 8305.975 0.160 B- 6489.949 42.909 121 930631.696 21.000 + 28 75 47 122 Ag x -71106.108 38.191 8352.758 0.313 B- 9506.265 38.260 121 923664.449 41.000 + 26 74 48 122 Cd -80612.373 2.299 8424.266 0.019 B- 2960.581 50.110 121 913459.053 2.468 + 24 73 49 122 In + -83572.954 50.058 8442.120 0.410 B- 6368.591 50.000 121 910280.738 53.739 + 22 72 50 122 Sn -89941.545 2.400 8487.909 0.020 B- -1607.921 3.540 121 903443.774 2.576 + 20 71 51 122 Sb -88333.624 2.800 8468.317 0.023 B- 1980.816 2.412 121 905169.948 3.006 + 18 70 52 122 Te -90314.440 1.509 8478.140 0.012 B- -4234.000 5.000 121 903043.455 1.619 + 16 69 53 122 I - -86080.440 5.223 8437.023 0.043 B- -725.464 12.277 121 907588.841 5.606 + 14 68 54 122 Xe x -85354.976 11.111 8424.664 0.091 B- -7210.218 35.472 121 908367.658 11.928 + 12 67 55 122 Cs -78144.759 33.687 8359.151 0.276 B- -3535.815 43.769 121 916108.146 36.164 + 10 66 56 122 Ba x -74608.944 27.945 8323.756 0.229 B- -10066# 299# 121 919904.000 30.000 + 8 65 57 122 La x -64543# 298# 8235# 2# B- -6669# 499# 121 930710# 320# + 6 64 58 122 Ce x -57874# 401# 8174# 3# B- -12929# 643# 121 937870# 430# + 4 63 59 122 Pr x -44945# 503# 8061# 4# B- * 121 951750# 540# +0 35 79 44 123 Ru x -37362# 503# 8095# 4# B- 12147# 643# 122 959890# 540# + 33 78 45 123 Rh x -49509# 401# 8188# 3# B- 10908# 446# 122 946850# 430# + 31 77 46 123 Pd x -60417# 196# 8270# 2# B- 9131# 198# 122 935140# 210# + 29 76 47 123 Ag x -69548.078 30.739 8337.803 0.250 B- 7866.103 30.857 122 925337.063 33.000 + 27 75 48 123 Cd -77414.181 2.696 8395.395 0.022 B- 6016.274 19.893 122 916892.453 2.894 + 25 74 49 123 In -83430.454 19.827 8437.947 0.161 B- 4385.936 19.839 122 910433.718 21.285 + 23 73 50 123 Sn -87816.391 2.423 8467.244 0.020 B- 1408.435 2.976 122 905725.221 2.601 + 21 72 51 123 Sb -89224.825 2.122 8472.335 0.017 B- -52.689 1.564 122 904213.204 2.278 + 19 71 52 123 Te -89172.136 1.507 8465.546 0.012 B- -1228.425 3.445 122 904269.769 1.617 + 17 70 53 123 I -87943.711 3.741 8449.198 0.030 B- -2695.017 9.691 122 905588.537 4.015 + 15 69 54 123 Xe -85248.694 9.537 8420.927 0.078 B- -4205.048 15.414 122 908481.757 10.238 + 13 68 55 123 Cs x -81043.645 12.109 8380.379 0.098 B- -5388.693 17.125 122 912996.063 13.000 + 11 67 56 123 Ba x -75654.952 12.109 8330.208 0.098 B- -7004# 196# 122 918781.063 13.000 + 9 66 57 123 La x -68651# 196# 8267# 2# B- -8365# 357# 122 926300# 210# + 7 65 58 123 Ce x -60286# 298# 8193# 2# B- -9948# 499# 122 935280# 320# + 5 64 59 123 Pr x -50338# 401# 8105# 3# B- * 122 945960# 430# +0 36 80 44 124 Ru x -34419# 596# 8071# 5# B- 10749# 718# 123 963050# 640# + 34 79 45 124 Rh x -45168# 401# 8152# 3# B- 13386# 499# 123 951510# 430# + 32 78 46 124 Pd x -58554# 298# 8253# 2# B- 7646# 390# 123 937140# 320# + 30 77 47 124 Ag x -66200.133 251.503 8308.655 2.028 B- 10501.538 251.521 123 928931.229 270.000 + 28 76 48 124 Cd -76701.671 2.995 8387.035 0.024 B- 4168.546 30.539 123 917657.364 3.215 + 26 75 49 124 In -80870.217 30.572 8414.343 0.247 B- 7364.020 30.576 123 913182.245 32.820 + 24 74 50 124 Sn -88234.237 1.014 8467.421 0.008 B- -613.233 2.125 123 905276.645 1.089 + 22 73 51 124 Sb -87621.004 2.122 8456.167 0.017 B- 2904.299 1.561 123 905934.978 2.277 + 20 72 52 124 Te -90525.302 1.504 8473.279 0.012 B- -3159.587 1.859 123 902817.085 1.614 + 18 71 53 124 I - -87365.715 2.391 8441.489 0.019 B- 295.337 2.851 123 906209.041 2.567 + 16 70 54 124 Xe -87661.052 1.803 8437.562 0.015 B- -5929.718 8.497 123 905891.984 1.936 + 14 69 55 124 Cs x -81731.334 8.304 8383.432 0.067 B- -2641.560 15.004 123 912257.798 8.914 + 12 68 56 124 Ba x -79089.775 12.497 8355.820 0.101 B- -8831.165 58.030 123 915093.629 13.416 + 10 67 57 124 La x -70258.610 56.669 8278.292 0.457 B- -5343# 303# 123 924574.275 60.836 + 8 66 58 124 Ce x -64916# 298# 8229# 2# B- -11765# 499# 123 930310# 320# + 6 65 59 124 Pr x -53151# 401# 8128# 3# B- -8626# 643# 123 942940# 430# + 4 64 60 124 Nd x -44525# 503# 8052# 4# B- * 123 952200# 540# +0 35 80 45 125 Rh x -42206# 503# 8127# 4# B- 12016# 643# 124 954690# 540# + 33 79 46 125 Pd x -54222# 401# 8217# 3# B- 10008# 721# 124 941790# 430# + 31 78 47 125 Ag x -64230.237 599.416 8290.997 4.795 B- 9117.857 599.423 124 931046.000 643.500 + 29 77 48 125 Cd -73348.094 2.885 8357.681 0.023 B- 7128.746 27.119 124 921257.577 3.097 + 27 76 49 125 In -80476.840 27.023 8408.452 0.216 B- 5419.579 27.011 124 913604.553 29.010 + 25 75 50 125 Sn -85896.420 1.034 8445.550 0.008 B- 2359.836 2.611 124 907786.395 1.109 + 23 74 51 125 Sb + -88256.255 2.600 8458.170 0.021 B- 766.700 2.121 124 905253.007 2.791 + 21 73 52 125 Te -89022.955 1.504 8458.045 0.012 B- -185.770 0.060 124 904429.920 1.614 + 19 72 53 125 I - -88837.185 1.505 8450.300 0.012 B- -1644.173 2.199 124 904629.353 1.615 + 17 71 54 125 Xe -87193.012 1.846 8430.888 0.015 B- -3105.172 7.832 124 906394.445 1.982 + 15 70 55 125 Cs -84087.840 7.744 8399.787 0.062 B- -4418.875 13.446 124 909727.985 8.313 + 13 69 56 125 Ba -79668.965 10.992 8358.178 0.088 B- -5909.481 27.631 124 914471.843 11.800 + 11 68 57 125 La -73759.484 25.997 8304.643 0.208 B- -7102# 197# 124 920815.932 27.909 + 9 67 58 125 Ce x -66658# 196# 8242# 2# B- -8626# 357# 124 928440# 210# + 7 66 59 125 Pr x -58032# 298# 8166# 2# B- -10433# 499# 124 937700# 320# + 5 65 60 125 Nd x -47599# 401# 8077# 3# B- * 124 948900# 430# +0 36 81 45 126 Rh x -37763# 503# 8092# 4# B- 14252# 711# 125 959460# 540# + 34 80 46 126 Pd x -52015# 503# 8199# 4# B- 8765# 540# 125 944160# 540# + 32 79 47 126 Ag x -60780# 196# 8262# 2# B- 11477# 196# 125 934750# 210# + 30 78 48 126 Cd -72256.802 2.476 8346.747 0.020 B- 5516.127 26.908 125 922429.128 2.658 + 28 77 49 126 In -77772.929 26.921 8384.317 0.214 B- 8242.357 27.078 125 916507.322 28.901 + 26 76 50 126 Sn -86015.286 10.447 8443.523 0.083 B- 378.000 30.000 125 907658.786 11.215 + 24 75 51 126 Sb - -86393.286 31.767 8440.314 0.252 B- 3672.043 31.787 125 907252.987 34.103 + 22 74 52 126 Te -90065.330 1.505 8463.248 0.012 B- -2154.027 3.677 125 903310.886 1.616 + 20 73 53 126 I -87911.302 3.810 8439.944 0.030 B- 1234.264 5.230 125 905623.329 4.090 + 18 72 54 126 Xe -89145.566 3.584 8443.530 0.028 B- -4795.112 10.686 125 904298.292 3.847 + 16 71 55 126 Cs -84350.454 10.403 8399.265 0.083 B- -1680.553 16.261 125 909446.057 11.168 + 14 70 56 126 Ba x -82669.902 12.497 8379.718 0.099 B- -7696.434 91.366 125 911250.204 13.416 + 12 69 57 126 La x -74973.468 90.508 8312.426 0.718 B- -4152.910 94.723 125 919512.667 97.163 + 10 68 58 126 Ce x -70820.558 27.945 8273.257 0.222 B- -10497# 198# 125 923971.000 30.000 + 8 67 59 126 Pr x -60324# 196# 8184# 2# B- -7331# 357# 125 935240# 210# + 6 66 60 126 Nd x -52993# 298# 8119# 2# B- -13795# 585# 125 943110# 320# + 4 65 61 126 Pm x -39197# 503# 8004# 4# B- * 125 957920# 540# +0 35 81 46 127 Pd x -47441# 503# 8161# 4# B- 11141# 540# 126 949070# 540# + 33 80 47 127 Ag x -58582# 196# 8243# 2# B- 9909# 196# 126 937110# 210# + 31 79 48 127 Cd -68490.514 12.800 8314.922 0.101 B- 8407.785 23.997 126 926472.404 13.741 + 29 78 49 127 In -76898.298 21.187 8374.965 0.167 B- 6572.931 19.119 126 917446.276 22.745 + 27 77 50 127 Sn -83471.230 10.060 8420.560 0.079 B- 3228.247 10.877 126 910389.943 10.799 + 25 76 51 127 Sb -86699.477 5.126 8439.820 0.040 B- 1582.183 4.913 126 906924.278 5.503 + 23 75 52 127 Te -88281.659 1.516 8446.117 0.012 B- 702.236 3.576 126 905225.735 1.627 + 21 74 53 127 I -88983.895 3.647 8445.487 0.029 B- -662.349 2.044 126 904471.853 3.915 + 19 73 54 127 Xe -88321.546 4.111 8434.111 0.032 B- -2081.396 6.421 126 905182.914 4.412 + 17 72 55 127 Cs -86240.151 5.578 8411.562 0.044 B- -3422.207 12.653 126 907417.384 5.988 + 15 71 56 127 Ba -82817.944 11.357 8378.455 0.089 B- -4921.836 27.740 126 911091.275 12.192 + 13 70 57 127 La -77896.108 26.000 8333.540 0.205 B- -5916.772 38.857 126 916375.084 27.912 + 11 69 58 127 Ce x -71979.336 28.876 8280.791 0.227 B- -7436# 198# 126 922727.000 31.000 + 9 68 59 127 Pr x -64543# 196# 8216# 2# B- -9008# 357# 126 930710# 210# + 7 67 60 127 Nd x -55536# 298# 8139# 2# B- -10749# 499# 126 940380# 320# + 5 66 61 127 Pm x -44786# 401# 8048# 3# B- * 126 951920# 430# +0 36 82 46 128 Pd x -44870# 596# 8141# 5# B- 10032# 667# 127 951830# 640# + 34 81 47 128 Ag x -54902# 298# 8213# 2# B- 12340# 298# 127 941060# 320# + 32 80 48 128 Cd -67241.890 7.244 8303.264 0.057 B- 6904.060 153.554 127 927812.858 7.776 + 30 79 49 128 In -74145.950 153.479 8351.090 1.199 B- 9216.071 153.027 127 920401.044 164.766 + 28 78 50 128 Sn -83362.021 17.660 8416.979 0.138 B- 1268.282 13.796 127 910507.184 18.958 + 26 77 51 128 Sb IT -84630.302 19.119 8420.775 0.149 B- 4363.443 19.117 127 909145.628 20.525 + 24 76 52 128 Te -88993.745 0.866 8448.752 0.007 B- -1255.036 3.715 127 904461.279 0.929 + 22 75 53 128 I -87738.709 3.648 8432.835 0.028 B- 2121.568 3.748 127 905808.615 3.915 + 20 74 54 128 Xe -89860.278 1.061 8443.298 0.008 B- -3928.713 5.380 127 903531.018 1.138 + 18 73 55 128 Cs -85931.564 5.443 8406.493 0.043 B- -552.657 7.563 127 907748.666 5.843 + 16 72 56 128 Ba -85378.907 5.251 8396.063 0.041 B- -6753.477 54.700 127 908341.967 5.637 + 14 71 57 128 La x -78625.430 54.448 8337.190 0.425 B- -3091.513 61.200 127 915592.123 58.452 + 12 70 58 128 Ce x -75533.917 27.945 8306.925 0.218 B- -9203.161 40.859 127 918911.000 30.000 + 10 69 59 128 Pr x -66330.756 29.808 8228.913 0.233 B- -6017# 198# 127 928791.000 32.000 + 8 68 60 128 Nd x -60314# 196# 8176# 2# B- -12529# 357# 127 935250# 210# + 6 67 61 128 Pm x -47786# 298# 8072# 2# B- -9054# 585# 127 948700# 320# + 4 66 62 128 Sm x -38732# 503# 7995# 4# B- * 127 958420# 540# +0 35 82 47 129 Ag x -52210# 298# 8191# 2# B- 11299# 357# 128 943950# 320# + 33 81 48 129 Cd x -63509# 196# 8273# 2# B- 9329# 196# 128 931820# 210# + 31 80 49 129 In -72837.892 2.695 8338.782 0.021 B- 7769.210 19.360 128 921805.301 2.893 + 29 79 50 129 Sn -80607.102 19.379 8392.943 0.150 B- 4022.234 28.746 128 913464.711 20.804 + 27 78 51 129 Sb + -84629.337 21.231 8418.059 0.165 B- 2375.500 21.213 128 909146.665 22.792 + 25 77 52 129 Te -87004.837 0.869 8430.409 0.007 B- 1502.305 3.142 128 906596.460 0.933 + 23 76 53 129 I -88507.142 3.168 8435.990 0.025 B- 188.915 3.168 128 904983.669 3.401 + 21 75 54 129 Xe -88696.05676 0.00555 8431.390 0.000 B- -1196.805 4.555 128 904780.86113 0.00596 + 19 74 55 129 Cs -87499.252 4.555 8416.047 0.035 B- -2435.964 10.625 128 906065.683 4.889 + 17 73 56 129 Ba -85063.288 10.578 8391.099 0.082 B- -3738.675 21.639 128 908680.798 11.356 + 15 72 57 129 La -81324.613 21.351 8356.052 0.166 B- -5037.117 35.168 128 912694.431 22.920 + 13 71 58 129 Ce x -76287.496 27.945 8310.940 0.217 B- -6513.938 40.859 128 918102.000 30.000 + 11 70 59 129 Pr x -69773.558 29.808 8254.380 0.231 B- -7459# 204# 128 925095.000 32.000 + 9 69 60 129 Nd ep -62315# 202# 8190# 2# B- -9434# 360# 128 933102# 217# + 7 68 61 129 Pm x -52881# 298# 8111# 2# B- -10740# 585# 128 943230# 320# + 5 67 62 129 Sm x -42141# 503# 8022# 4# B- * 128 954760# 540# +0 36 83 47 130 Ag -nn -45920# 334# 8142# 3# B- 15614# 372# 129 950703# 358# + 34 82 48 130 Cd + -61533.861 164.464 8255.788 1.265 B- 8350.000 160.000 129 933940.679 176.559 + 32 81 49 130 In + -69883.861 38.059 8314.001 0.293 B- 10249.000 38.000 129 924976.585 40.858 + 30 80 50 130 Sn -80132.861 2.126 8386.821 0.016 B- 2153.406 14.113 129 913973.830 2.282 + 28 79 51 130 Sb -82286.266 14.241 8397.368 0.110 B- 5066.681 14.241 129 911662.054 15.288 + 26 78 52 130 Te -87352.947 0.011 8430.324 0.000 B- -416.792 3.168 129 906222.748 0.012 + 24 77 53 130 I -n -86936.155 3.168 8421.100 0.024 B- 2944.307 3.168 129 906670.193 3.401 + 22 76 54 130 Xe -89880.462 0.009 8437.731 0.000 B- -2980.719 8.357 129 903509.349 0.010 + 20 75 55 130 Cs -86899.743 8.357 8408.784 0.064 B- 361.992 8.745 129 906709.283 8.971 + 18 74 56 130 Ba -87261.734 2.578 8405.550 0.020 B- -5634.369 26.074 129 906320.669 2.767 + 16 73 57 130 La x -81627.365 25.946 8356.191 0.200 B- -2204.461 38.133 129 912369.413 27.854 + 14 72 58 130 Ce x -79422.905 27.945 8333.216 0.215 B- -8247.448 70.085 129 914736.000 30.000 + 12 71 59 130 Pr x -71175.457 64.273 8263.756 0.494 B- -4579.225 70.085 129 923590.000 69.000 + 10 70 60 130 Nd x -66596.232 27.945 8222.513 0.215 B- -11200# 198# 129 928506.000 30.000 + 8 69 61 130 Pm x -55396# 196# 8130# 2# B- -7890# 446# 129 940530# 210# + 6 68 62 130 Sm x -47506# 401# 8064# 3# B- -13682# 643# 129 949000# 430# + 4 67 63 130 Eu -p -33824# 503# 7952# 4# B- * 129 963689# 540# +0 35 83 48 131 Cd x -55331# 196# 8207# 1# B- 12695# 196# 130 940600# 210# + 33 82 49 131 In -68025.582 2.675 8297.963 0.020 B- 9246.546 6.512 130 926971.529 2.871 + 31 81 50 131 Sn -77272.128 6.072 8362.575 0.046 B- 4709.778 6.032 130 917044.954 6.518 + 29 80 51 131 Sb -81981.906 2.109 8392.556 0.016 B- 3229.104 2.110 130 911988.799 2.264 + 27 79 52 131 Te -n -85211.010 0.061 8411.233 0.001 B- 2231.774 0.646 130 908522.213 0.065 + 25 78 53 131 I + -87442.784 0.643 8422.297 0.005 B- 970.848 0.605 130 906126.305 0.690 + 23 77 54 131 Xe -88413.631 0.220 8423.736 0.002 B- -354.752 4.976 130 905084.057 0.236 + 21 76 55 131 Cs -88058.879 4.977 8415.056 0.038 B- -1374.958 5.287 130 905464.899 5.343 + 19 75 56 131 Ba -86683.922 2.593 8398.588 0.020 B- -2914.666 28.065 130 906940.977 2.784 + 17 74 57 131 La x -83769.256 27.945 8370.367 0.213 B- -4060.816 43.092 130 910070.000 30.000 + 15 73 58 131 Ce -79708.439 32.802 8333.396 0.250 B- -5407.784 55.446 130 914429.465 35.214 + 13 72 59 131 Pr -74300.656 46.995 8286.143 0.359 B- -6532.623 53.081 130 920234.960 50.451 + 11 71 60 131 Nd -67768.033 27.517 8230.304 0.210 B- -7845# 198# 130 927248.020 29.541 + 9 70 61 131 Pm x -59923# 196# 8164# 1# B- -9790# 446# 130 935670# 210# + 7 69 62 131 Sm x -50133# 401# 8084# 3# B- -10863# 566# 130 946180# 430# + 5 68 63 131 Eu -p -39270# 401# 7995# 3# B- * 130 957842# 430# +0 36 84 48 132 Cd x -50263# 196# 8168# 1# B- 12145# 205# 131 946040# 210# + 34 83 49 132 In + -62408.912 60.070 8253.695 0.455 B- 14135.000 60.000 131 933001.273 64.487 + 32 82 50 132 Sn -76543.912 2.897 8354.852 0.022 B- 3091.660 3.961 131 917826.725 3.110 + 30 81 51 132 Sb x -79635.573 2.701 8372.347 0.020 B- 5552.613 4.410 131 914507.691 2.900 + 28 80 52 132 Te -85188.185 3.486 8408.485 0.026 B- 515.305 3.483 131 908546.716 3.742 + 26 79 53 132 I -85703.490 4.065 8406.462 0.031 B- 3575.473 4.065 131 907993.514 4.364 + 24 78 54 132 Xe -89278.96289 0.00521 8427.622 0.000 B- -2122.715 2.000 131 904155.08563 0.00559 + 22 77 55 132 Cs +n -87156.248 2.000 8405.614 0.015 B- 1278.742 2.261 131 906433.914 2.147 + 20 76 56 132 Ba -88434.990 1.055 8409.375 0.008 B- -4711.358 36.354 131 905061.128 1.132 + 18 75 57 132 La -83723.632 36.359 8367.756 0.275 B- -1252.669 41.723 131 910118.979 39.032 + 16 74 58 132 Ce -82470.963 20.451 8352.339 0.155 B- -7257.479 60.389 131 911463.775 21.955 + 14 73 59 132 Pr x -75213.483 56.821 8291.431 0.430 B- -3787.676 61.762 131 919255.000 61.000 + 12 72 60 132 Nd x -71425.807 24.205 8256.810 0.183 B- -9798# 151# 131 923321.237 25.985 + 10 71 61 132 Pm x -61628# 149# 8177# 1# B- -6548# 333# 131 933840# 160# + 8 70 62 132 Sm x -55079# 298# 8121# 2# B- -12855# 499# 131 940870# 320# + 6 69 63 132 Eu x -42225# 401# 8018# 3# B- * 131 954670# 430# +0 37 85 48 133 Cd x -43920# 298# 8119# 2# B- 13544# 357# 132 952850# 320# + 35 84 49 133 In x -57464# 196# 8215# 1# B- 13410# 196# 132 938310# 210# + 33 83 50 133 Sn x -70874.208 2.387 8310.091 0.018 B- 8048.300 3.977 132 923913.404 2.562 + 31 82 51 133 Sb -78922.507 3.181 8364.722 0.024 B- 4009.553 4.246 132 915273.198 3.415 + 29 81 52 133 Te -82932.060 3.608 8388.987 0.027 B- 2954.511 5.897 132 910968.766 3.873 + 27 80 53 133 I + -85886.571 4.665 8405.319 0.035 B- 1757.000 4.000 132 907796.968 5.007 + 25 79 54 133 Xe + -87643.571 2.400 8412.647 0.018 B- 427.360 2.400 132 905910.751 2.576 + 23 78 55 133 Cs -88070.931 0.008 8409.978 0.000 B- -517.343 0.993 132 905451.961 0.008 + 21 77 56 133 Ba -87553.588 0.994 8400.206 0.007 B- -2059.206 27.962 132 906007.351 1.066 + 19 76 57 133 La x -85494.383 27.945 8378.841 0.210 B- -3076.168 32.379 132 908218.000 30.000 + 17 75 58 133 Ce x -82418.214 16.354 8349.829 0.123 B- -4480.634 20.583 132 911520.402 17.557 + 15 74 59 133 Pr x -77937.580 12.497 8310.258 0.094 B- -5605.208 48.222 132 916330.561 13.416 + 13 73 60 133 Nd x -72332.372 46.575 8262.231 0.350 B- -6924.726 68.552 132 922348.000 50.000 + 11 72 61 133 Pm x -65407.646 50.301 8204.283 0.378 B- -8177# 302# 132 929782.000 54.000 + 9 71 62 133 Sm x -57231# 298# 8137# 2# B- -9995# 422# 132 938560# 320# + 7 70 63 133 Eu x -47236# 298# 8056# 2# B- -11215# 585# 132 949290# 320# + 5 69 64 133 Gd x -36021# 503# 7966# 4# B- * 132 961330# 540# +0 36 85 49 134 In x -51661# 298# 8171# 2# B- 14772# 298# 133 944540# 320# + 34 84 50 134 Sn x -66432.229 3.277 8275.160 0.024 B- 7588.311 3.694 133 928682.064 3.518 + 32 83 51 134 Sb x -74020.541 1.705 8325.950 0.013 B- 8515.455 3.254 133 920535.676 1.830 + 30 82 52 134 Te -82535.996 2.772 8383.660 0.021 B- 1523.107 5.414 133 911393.959 2.975 + 28 81 53 134 I -84059.102 5.511 8389.188 0.041 B- 4065.201 5.515 133 909758.836 5.916 + 26 80 54 134 Xe -88124.303 0.842 8413.687 0.006 B- -1233.149 0.842 133 905394.664 0.904 + 24 79 55 134 Cs -86891.154 0.016 8398.646 0.000 B- 2058.901 0.276 133 906718.503 0.017 + 22 78 56 134 Ba -88950.055 0.276 8408.173 0.002 B- -3731.405 19.932 133 904508.182 0.296 + 20 77 57 134 La x -85218.650 19.930 8374.488 0.149 B- -385.760 28.510 133 908514.011 21.395 + 18 76 58 134 Ce x -84832.889 20.387 8365.771 0.152 B- -6304.898 28.781 133 908928.142 21.886 + 16 75 59 134 Pr x -78527.991 20.316 8312.881 0.152 B- -2881.559 23.503 133 915696.729 21.810 + 14 74 60 134 Nd x -75646.432 11.817 8285.538 0.088 B- -8907.681 58.949 133 918790.210 12.686 + 12 73 61 134 Pm x -66738.751 57.753 8213.225 0.431 B- -5363# 204# 133 928353.000 62.000 + 10 72 62 134 Sm x -61376# 196# 8167# 1# B- -11448# 357# 133 934110# 210# + 8 71 63 134 Eu x -49928# 298# 8076# 2# B- -8626# 499# 133 946400# 320# + 6 70 64 134 Gd x -41302# 401# 8006# 3# B- * 133 955660# 430# +0 37 86 49 135 In x -46528# 401# 8132# 3# B- 14104# 401# 134 950050# 430# + 35 85 50 135 Sn x -60632.243 3.074 8230.687 0.023 B- 9057.382 4.218 134 934908.606 3.300 + 33 84 51 135 Sb x -69689.625 2.888 8291.983 0.021 B- 8038.234 3.954 134 925185.106 3.100 + 31 83 52 135 Te x -77727.859 2.701 8345.731 0.020 B- 6061.100 6.039 134 916555.706 2.900 + 29 82 53 135 I -83788.959 5.402 8384.833 0.040 B- 2627.807 4.990 134 910048.847 5.798 + 27 81 54 135 Xe -86416.766 4.150 8398.503 0.031 B- 1165.048 4.071 134 907227.780 4.455 + 25 80 55 135 Cs -87581.815 0.996 8401.338 0.007 B- 268.898 1.033 134 905977.049 1.069 + 23 79 56 135 Ba -87850.713 0.274 8397.534 0.002 B- -1207.205 9.430 134 905688.375 0.294 + 21 78 57 135 La -86643.508 9.433 8382.797 0.070 B- -2027.152 4.610 134 906984.363 10.126 + 19 77 58 135 Ce -84616.356 10.267 8361.986 0.076 B- -3680.496 15.654 134 909160.599 11.021 + 17 76 59 135 Pr x -80935.860 11.817 8328.928 0.088 B- -4722.252 22.484 134 913111.775 12.686 + 15 75 60 135 Nd x -76213.609 19.128 8288.153 0.142 B- -6186.684 67.952 134 918181.321 20.534 + 13 74 61 135 Pm x -70026.925 65.205 8236.530 0.483 B- -7169.709 167.814 134 924823.000 70.000 + 11 73 62 135 Sm x -62857.215 154.628 8177.626 1.145 B- -8709# 249# 134 932520.000 166.000 + 9 72 63 135 Eu x -54148# 196# 8107# 1# B- -9855# 446# 134 941870# 210# + 7 71 64 135 Gd x -44293# 401# 8029# 3# B- -11467# 566# 134 952450# 430# + 5 70 65 135 Tb -p -32825# 401# 7938# 3# B- * 134 964760# 430# +0 36 86 50 136 Sn x -55899# 401# 8195# 3# B- 8611# 401# 135 939990# 430# + 34 85 51 136 Sb x -64509.798 6.334 8252.274 0.047 B- 9916.006 6.790 135 930745.879 6.800 + 32 84 52 136 Te -74425.804 2.445 8319.433 0.018 B- 5119.674 14.195 135 920100.608 2.624 + 30 83 53 136 I -79545.478 14.195 8351.325 0.104 B- 6883.674 14.195 135 914604.412 15.238 + 28 82 54 136 Xe -86429.152 0.010 8396.188 0.000 B- -90.238 1.877 135 907214.484 0.011 + 26 81 55 136 Cs + -86338.914 1.877 8389.772 0.014 B- 2548.224 1.857 135 907311.358 2.015 + 24 80 56 136 Ba -88887.138 0.274 8402.756 0.002 B- -2849.660 53.172 135 904575.727 0.294 + 22 79 57 136 La x -86037.478 53.171 8376.050 0.391 B- 471.110 53.172 135 907634.962 57.081 + 20 78 58 136 Ce -86508.588 0.385 8373.762 0.003 B- -5168.163 11.457 135 907129.205 0.412 + 18 77 59 136 Pr -81340.426 11.455 8330.008 0.084 B- -2141.140 16.458 135 912677.456 12.297 + 16 76 60 136 Nd x -79199.286 11.817 8308.512 0.087 B- -8018.786 72.340 135 914976.064 12.686 + 14 75 61 136 Pm x -71180.500 71.368 8243.798 0.525 B- -4369.611 72.454 135 923584.586 76.616 + 12 74 62 136 Sm x -66810.889 12.497 8205.916 0.092 B- -10567# 196# 135 928275.556 13.416 + 10 73 63 136 Eu x -56244# 196# 8122# 1# B- -7154# 357# 135 939620# 210# + 8 72 64 136 Gd x -49090# 298# 8064# 2# B- -13032# 585# 135 947300# 320# + 6 71 65 136 Tb x -36058# 503# 7963# 4# B- * 135 961290# 540# +0 37 87 50 137 Sn x -49788# 503# 8149# 4# B- 10242# 586# 136 946550# 540# + 35 86 51 137 Sb x -60030.131 300.407 8218.255 2.193 B- 9274.091 300.417 136 935555.000 322.500 + 33 85 52 137 Te x -69304.222 2.515 8280.238 0.018 B- 7052.029 8.753 136 925598.852 2.700 + 31 84 53 137 I p-2n -76356.251 8.383 8326.002 0.061 B- 6027.146 8.384 136 918028.188 9.000 + 29 83 54 137 Xe -n -82383.396 0.104 8364.286 0.001 B- 4162.428 0.347 136 911557.781 0.111 + 27 82 55 137 Cs + -86545.824 0.331 8388.958 0.002 B- 1175.629 0.172 136 907089.231 0.355 + 25 81 56 137 Ba -87721.453 0.283 8391.828 0.002 B- -580.548 1.632 136 905827.141 0.303 + 23 80 57 137 La + -87140.904 1.653 8381.880 0.012 B- -1222.100 1.600 136 906450.385 1.774 + 21 79 58 137 Ce -85918.804 0.415 8367.249 0.003 B- -2716.969 8.133 136 907762.364 0.445 + 19 78 59 137 Pr -83201.836 8.137 8341.707 0.059 B- -3617.269 14.282 136 910679.150 8.734 + 17 77 60 137 Nd -79584.566 11.737 8309.593 0.086 B- -5511.719 17.545 136 914562.448 12.600 + 15 76 61 137 Pm x -74072.847 13.041 8263.651 0.095 B- -6046.323 44.355 136 920479.523 14.000 + 13 75 62 137 Sm -68026.525 42.395 8213.806 0.309 B- -7908# 200# 136 926970.517 45.512 + 11 74 63 137 Eu x -60119# 196# 8150# 1# B- -8905# 357# 136 935460# 210# + 9 73 64 137 Gd x -51214# 298# 8080# 2# B- -10246# 585# 136 945020# 320# + 7 72 65 137 Tb x -40967# 503# 7999# 4# B- * 136 956020# 540# +0 38 88 50 138 Sn x -44861# 596# 8113# 4# B- 9678# 667# 137 951840# 640# + 36 87 51 138 Sb x -54539# 298# 8177# 2# B- 11157# 298# 137 941450# 320# + 34 86 52 138 Te x -65696.198 4.378 8252.579 0.032 B- 6283.694 7.396 137 929472.226 4.700 + 32 85 53 138 I x -71979.892 5.962 8292.444 0.043 B- 7992.339 6.588 137 922726.402 6.400 + 30 84 54 138 Xe -79972.231 2.804 8344.690 0.020 B- 2914.817 9.578 137 914146.273 3.010 + 28 83 55 138 Cs -82887.048 9.159 8360.143 0.066 B- 5374.808 9.159 137 911017.089 9.832 + 26 82 56 138 Ba -88261.856 0.285 8393.422 0.002 B- -1739.960 3.431 137 905246.995 0.306 + 24 81 57 138 La +n -86521.895 3.432 8375.144 0.025 B- 1046.841 10.166 137 907114.919 3.684 + 22 80 58 138 Ce -87568.736 9.886 8377.061 0.072 B- -4437.000 10.000 137 905991.089 10.612 + 20 79 59 138 Pr - -83131.736 14.062 8339.240 0.102 B- -1113.427 18.229 137 910754.405 15.095 + 18 78 60 138 Nd -82018.309 11.601 8325.502 0.084 B- -7077.827 28.756 137 911949.718 12.454 + 16 77 61 138 Pm -74940.483 27.739 8268.544 0.201 B- -3442.721 30.151 137 919548.077 29.778 + 14 76 62 138 Sm x -71497.762 11.817 8237.928 0.086 B- -9748.093 30.341 137 923243.991 12.686 + 12 75 63 138 Eu x -61749.669 27.945 8161.620 0.202 B- -6093# 198# 137 933709.000 30.000 + 10 74 64 138 Gd x -55657# 196# 8112# 1# B- -11988# 357# 137 940250# 210# + 8 73 65 138 Tb x -43668# 298# 8019# 2# B- -8737# 499# 137 953120# 320# + 6 72 66 138 Dy x -34931# 401# 7950# 3# B- * 137 962500# 430# +0 37 88 51 139 Sb x -49788# 401# 8142# 3# B- 10417# 401# 138 946550# 430# + 35 87 52 139 Te x -60205.071 3.540 8211.771 0.025 B- 8253.957 29.092 138 935367.194 3.800 + 33 86 53 139 I x -68459.027 28.876 8265.523 0.208 B- 7185.548 28.956 138 926506.206 31.000 + 31 85 54 139 Xe x -75644.575 2.142 8311.590 0.015 B- 5056.565 3.799 138 918792.203 2.300 + 29 84 55 139 Cs + -80701.140 3.137 8342.339 0.023 B- 4212.829 3.123 138 913363.758 3.367 + 27 83 56 139 Ba -84913.969 0.288 8367.019 0.002 B- 2314.616 2.271 138 908841.099 0.309 + 25 82 57 139 La -87228.585 2.271 8378.043 0.016 B- -278.382 6.953 138 906356.256 2.438 + 23 81 58 139 Ce -86950.204 7.305 8370.411 0.053 B- -2129.070 2.996 138 906655.111 7.842 + 21 80 59 139 Pr -84821.133 7.879 8349.466 0.057 B- -2806.486 28.043 138 908940.762 8.458 + 19 79 60 139 Nd -82014.648 27.602 8323.647 0.199 B- -4514.039 25.928 138 911953.649 29.632 + 17 78 61 139 Pm -77500.608 13.593 8285.544 0.098 B- -5120.390 17.414 138 916799.670 14.593 + 15 77 62 139 Sm x -72380.218 10.884 8243.078 0.078 B- -6982.177 17.071 138 922296.635 11.684 + 13 76 63 139 Eu x -65398.041 13.151 8187.218 0.095 B- -7767# 196# 138 929792.310 14.117 + 11 75 64 139 Gd x -57632# 196# 8126# 1# B- -9501# 357# 138 938130# 210# + 9 74 65 139 Tb x -48130# 298# 8052# 2# B- -10489# 585# 138 948330# 320# + 7 73 66 139 Dy x -37642# 503# 7971# 4# B- * 138 959590# 540# +0 38 89 51 140 Sb x -43939# 596# 8100# 4# B- 12418# 597# 139 952830# 640# + 36 88 52 140 Te x -56356.721 27.945 8183.279 0.200 B- 7239.169 183.778 139 939498.567 30.000 + 34 87 53 140 I x -63595.890 181.641 8229.399 1.297 B- 9390.561 181.656 139 931727.000 195.000 + 32 86 54 140 Xe x -72986.451 2.329 8290.887 0.017 B- 4063.879 8.526 139 921645.817 2.500 + 30 85 55 140 Cs -77050.330 8.202 8314.326 0.059 B- 6219.896 9.886 139 917283.063 8.804 + 28 84 56 140 Ba -83270.226 7.943 8353.166 0.057 B- 1048.019 8.020 139 910605.730 8.527 + 26 83 57 140 La -84318.245 2.272 8355.064 0.016 B- 3760.933 1.797 139 909480.635 2.438 + 24 82 58 140 Ce -88079.178 2.180 8376.339 0.016 B- -3388.000 6.000 139 905443.107 2.340 + 22 81 59 140 Pr - -84691.178 6.384 8346.551 0.046 B- -437.406 26.786 139 909080.275 6.853 + 20 80 60 140 Nd -84253.772 26.014 8337.838 0.186 B- -6045.200 24.000 139 909549.849 27.927 + 18 79 61 140 Pm - -78208.572 35.394 8289.070 0.253 B- -2752.638 37.536 139 916039.639 37.997 + 16 78 62 140 Sm x -75455.934 12.497 8263.820 0.089 B- -8470.000 50.000 139 918994.717 13.416 + 14 77 63 140 Eu - -66985.934 51.538 8197.732 0.368 B- -5203.663 58.627 139 928087.637 55.328 + 12 76 64 140 Gd x -61782.271 27.945 8154.975 0.200 B- -11300.000 800.000 139 933674.000 30.000 + 10 75 65 140 Tb - -50482.271 800.488 8068.672 5.718 B- -7652# 945# 139 945805.049 859.359 + 8 74 66 140 Dy x -42830# 503# 8008# 4# B- -13571# 711# 139 954020# 540# + 6 73 67 140 Ho -p -29259# 503# 7906# 4# B- * 139 968589# 540# +0 37 89 52 141 Te x -50487# 401# 8141# 3# B- 9417# 446# 140 945800# 430# + 35 88 53 141 I x -59904# 196# 8202# 1# B- 8293# 196# 140 935690# 210# + 33 87 54 141 Xe x -68197.298 2.888 8255.364 0.020 B- 6279.847 9.562 140 926787.184 3.100 + 31 86 55 141 Cs -74477.145 9.115 8294.353 0.065 B- 5255.636 9.558 140 920045.491 9.785 + 29 85 56 141 Ba -79732.781 5.318 8326.079 0.038 B- 3201.827 6.731 140 914403.333 5.709 + 27 84 57 141 La -82934.609 4.455 8343.238 0.032 B- 2501.393 3.928 140 910966.030 4.782 + 25 83 58 141 Ce -85436.002 2.180 8355.430 0.015 B- 580.420 1.053 140 908280.674 2.340 + 23 82 59 141 Pr -86016.422 2.135 8353.998 0.015 B- -1823.014 2.809 140 907657.568 2.292 + 21 81 60 141 Nd - -84193.408 3.528 8335.520 0.025 B- -3670.488 14.411 140 909614.653 3.787 + 19 80 61 141 Pm x -80522.920 13.972 8303.940 0.099 B- -4589.054 16.386 140 913555.084 15.000 + 17 79 62 141 Sm -75933.866 8.560 8265.845 0.061 B- -6008.246 14.292 140 918481.636 9.189 + 15 78 63 141 Eu -69925.620 12.639 8217.684 0.090 B- -6701.396 23.456 140 924931.754 13.568 + 13 77 64 141 Gd x -63224.224 19.760 8164.608 0.140 B- -8683.387 107.098 140 932126.000 21.213 + 11 76 65 141 Tb x -54540.837 105.259 8097.475 0.747 B- -9158# 316# 140 941448.000 113.000 + 9 75 66 141 Dy x -45382# 298# 8027# 2# B- -11018# 585# 140 951280# 320# + 7 74 67 141 Ho -p -34364# 503# 7943# 4# B- * 140 963108# 540# +0 38 90 52 142 Te x -46370# 503# 8111# 4# B- 8400# 627# 141 950220# 540# + 36 89 53 142 I x -54769.984 374.461 8165.019 2.637 B- 10459.654 374.470 141 941202.000 402.000 + 34 88 54 142 Xe x -65229.639 2.701 8233.169 0.019 B- 5288.192 7.838 141 929973.098 2.900 + 32 87 55 142 Cs -70517.830 7.358 8264.900 0.052 B- 7324.904 8.542 141 924295.991 7.898 + 30 86 56 142 Ba -77842.734 5.929 8310.974 0.042 B- 2181.086 8.446 141 916432.382 6.364 + 28 85 57 142 La -80023.821 6.384 8320.825 0.045 B- 4508.911 5.845 141 914090.890 6.853 + 26 84 58 142 Ce -84532.731 2.711 8347.068 0.019 B- -744.480 2.387 141 909250.375 2.910 + 24 83 59 142 Pr -83788.251 2.135 8336.316 0.015 B- 2161.635 1.487 141 910049.607 2.291 + 22 82 60 142 Nd -85949.886 1.820 8346.029 0.013 B- -4807.827 23.653 141 907728.996 1.953 + 20 81 61 142 Pm -81142.059 23.598 8306.662 0.166 B- -2155.453 23.778 141 912890.411 25.333 + 18 80 62 142 Sm -78986.606 3.323 8285.973 0.023 B- -7673.000 30.000 141 915204.385 3.567 + 16 79 63 142 Eu - -71313.606 30.183 8226.428 0.213 B- -4354.091 41.133 141 923441.690 32.403 + 14 78 64 142 Gd x -66959.515 27.945 8190.256 0.197 B- -10400.000 700.000 141 928116.000 30.000 + 12 77 65 142 Tb - -56559.515 700.558 8111.507 4.934 B- -6440# 200# 141 939280.859 752.079 + 10 76 66 142 Dy - -50120# 729# 8061# 5# B- -12869# 885# 141 946194# 782# + 8 75 67 142 Ho x -37250# 503# 7965# 4# B- -9399# 711# 141 960010# 540# + 6 74 68 142 Er x -27852# 503# 7893# 4# B- * 141 970100# 540# +0 39 91 52 143 Te x -40278# 503# 8068# 4# B- 10349# 585# 142 956760# 540# + 37 90 53 143 I x -50627# 298# 8135# 2# B- 9576# 298# 142 945650# 320# + 35 89 54 143 Xe x -60202.873 4.657 8196.885 0.033 B- 7470.793 22.544 142 935369.554 5.000 + 33 88 55 143 Cs -67673.666 22.057 8243.657 0.154 B- 6263.397 21.537 142 927349.327 23.679 + 31 87 56 143 Ba -73937.063 6.921 8281.986 0.048 B- 4234.368 10.083 142 920625.293 7.430 + 29 86 57 143 La -78171.430 7.333 8306.126 0.051 B- 3434.784 7.641 142 916079.512 7.871 + 27 85 58 143 Ce -81606.215 2.711 8324.675 0.019 B- 1461.816 1.829 142 912392.120 2.909 + 25 84 59 143 Pr -83068.031 2.232 8329.426 0.016 B- 934.108 1.355 142 910822.796 2.396 + 23 83 60 143 Nd -84002.139 1.819 8330.487 0.013 B- -1041.664 2.687 142 909819.989 1.953 + 21 82 61 143 Pm -82960.475 3.202 8317.732 0.022 B- -3443.772 3.563 142 910938.262 3.437 + 19 81 62 143 Sm -79516.703 3.039 8288.179 0.021 B- -5275.403 11.398 142 914635.303 3.262 + 17 80 63 143 Eu x -74241.300 10.986 8245.817 0.077 B- -6010.000 200.000 142 920298.681 11.793 + 15 79 64 143 Gd - -68231.300 200.301 8198.318 1.401 B- -7812.117 206.750 142 926750.682 215.032 + 13 78 65 143 Tb x -60419.183 51.232 8138.217 0.358 B- -8250.242 52.866 142 935137.335 55.000 + 11 77 66 143 Dy x -52168.941 13.041 8075.052 0.091 B- -10121# 401# 142 943994.335 14.000 + 9 76 67 143 Ho x -42048# 401# 7999# 3# B- -10954# 566# 142 954860# 430# + 7 75 68 143 Er x -31093# 401# 7917# 3# B- * 142 966620# 430# +0 38 91 53 144 I x -45280# 401# 8098# 3# B- 11592# 401# 143 951390# 430# + 36 90 54 144 Xe x -56872.292 5.310 8172.884 0.037 B- 6398.215 25.800 143 938945.079 5.700 + 34 89 55 144 Cs -63270.507 25.247 8211.883 0.175 B- 8496.573 25.039 143 932076.313 27.104 + 32 88 56 144 Ba -71767.080 7.175 8265.454 0.050 B- 3082.572 14.793 143 922954.866 7.702 + 30 87 57 144 La x -74849.652 12.937 8281.428 0.090 B- 5582.117 13.309 143 919645.589 13.888 + 28 86 58 144 Ce + -80431.769 3.124 8314.759 0.022 B- 318.646 0.832 143 913652.939 3.354 + 26 85 59 144 Pr + -80750.415 3.012 8311.539 0.021 B- 2997.440 2.400 143 913310.859 3.233 + 24 84 60 144 Nd -83747.855 1.819 8326.922 0.013 B- -2331.923 2.650 143 910092.974 1.952 + 22 83 61 144 Pm -81415.932 3.174 8305.295 0.022 B- 549.516 2.670 143 912596.396 3.407 + 20 82 62 144 Sm -81965.449 1.947 8303.678 0.014 B- -6346.349 10.838 143 912006.466 2.090 + 18 81 63 144 Eu -75619.099 10.799 8254.173 0.075 B- -3859.596 29.959 143 918819.553 11.593 + 16 80 64 144 Gd x -71759.503 27.945 8221.937 0.194 B- -9391.323 39.520 143 922963.000 30.000 + 14 79 65 144 Tb x -62368.181 27.945 8151.287 0.194 B- -5798.099 28.851 143 933045.000 30.000 + 12 78 66 144 Dy x -56570.082 7.173 8105.589 0.050 B- -11960.569 11.104 143 939269.515 7.700 + 10 77 67 144 Ho x -44609.513 8.477 8017.097 0.059 B- -8002# 196# 143 952109.715 9.100 + 8 76 68 144 Er x -36608# 196# 7956# 1# B- -14515# 446# 143 960700# 210# + 6 75 69 144 Tm -p -22092# 401# 7850# 3# B- * 143 976283# 430# +0 39 92 53 145 I x -40939# 503# 8068# 3# B- 10554# 503# 144 956050# 540# + 37 91 54 145 Xe x -51493.329 11.178 8135.087 0.077 B- 8562.479 15.514 144 944719.634 12.000 + 35 90 55 145 Cs -60055.807 10.759 8188.743 0.074 B- 7460.368 13.697 144 935527.435 11.549 + 33 89 56 145 Ba x -67516.176 8.477 8234.798 0.058 B- 5319.139 14.912 144 927518.400 9.100 + 31 88 57 145 La -72835.315 12.269 8266.087 0.085 B- 4231.629 35.308 144 921808.068 13.170 + 29 87 58 145 Ce -77066.944 33.912 8289.875 0.234 B- 2558.881 33.637 144 917265.228 36.405 + 27 86 59 145 Pr -79625.824 7.264 8302.127 0.050 B- 1806.013 7.037 144 914518.156 7.798 + 25 85 60 145 Nd -81431.837 1.819 8309.186 0.013 B- -164.515 2.537 144 912579.322 1.953 + 23 84 61 145 Pm -81267.322 3.080 8302.656 0.021 B- -616.093 2.540 144 912755.935 3.306 + 21 83 62 145 Sm -80651.229 1.966 8293.012 0.014 B- -2659.686 2.724 144 913417.339 2.110 + 19 82 63 145 Eu -77991.543 3.317 8269.274 0.023 B- -5067.506 19.944 144 916272.629 3.560 + 17 81 64 145 Gd -72924.037 19.666 8228.930 0.136 B- -6622.108 96.886 144 921712.821 21.112 + 15 80 65 145 Tb -66301.929 97.477 8177.865 0.672 B- -8059.331 97.695 144 928821.947 104.645 + 13 79 66 145 Dy x -58242.598 6.520 8116.888 0.045 B- -9122.493 9.902 144 937473.995 7.000 + 11 78 67 145 Ho x -49120.105 7.452 8048.578 0.051 B- -10044# 196# 144 947267.395 8.000 + 9 77 68 145 Er x -39076# 196# 7974# 1# B- -11494# 277# 144 958050# 210# + 7 76 69 145 Tm -p -27583# 196# 7889# 1# B- * 144 970389# 210# +0 38 92 54 146 Xe x -47954.942 24.219 8110.415 0.166 B- 7614.011 46.389 145 948518.249 26.000 + 36 91 55 146 Cs -55568.953 39.565 8157.207 0.271 B- 9371.350 35.630 145 940344.271 42.474 + 34 90 56 146 Ba -64940.303 20.429 8216.036 0.140 B- 4106.527 33.439 145 930283.712 21.931 + 32 89 57 146 La -69046.831 33.547 8238.804 0.230 B- 6588.235 34.401 145 925875.174 36.014 + 30 88 58 146 Ce -75635.066 16.304 8278.570 0.112 B- 1045.660 32.519 145 918802.412 17.503 + 28 87 59 146 Pr -76680.726 34.817 8280.374 0.238 B- 4245.025 34.841 145 917679.850 37.377 + 26 86 60 146 Nd -80925.751 1.819 8304.091 0.012 B- -1471.545 4.121 145 913122.628 1.953 + 24 85 61 146 Pm + -79454.206 4.445 8288.653 0.030 B- 1542.000 3.000 145 914702.396 4.771 + 22 84 62 146 Sm -80996.206 3.280 8293.856 0.022 B- -3878.786 5.872 145 913046.991 3.520 + 20 83 63 146 Eu -77117.420 6.093 8261.931 0.042 B- -1031.888 7.081 145 917211.039 6.541 + 18 82 64 146 Gd -76085.532 4.255 8249.504 0.029 B- -8322.123 44.749 145 918318.817 4.568 + 16 81 65 146 Tb -67763.409 44.871 8187.145 0.307 B- -5208.492 45.168 145 927252.984 48.170 + 14 80 66 146 Dy -62554.917 6.695 8146.112 0.046 B- -11316.698 9.392 145 932844.530 7.187 + 12 79 67 146 Ho -51238.218 6.587 8063.242 0.045 B- -6916.206 9.399 145 944993.506 7.071 + 10 78 68 146 Er -44322.012 6.705 8010.512 0.046 B- -13431# 196# 145 952418.360 7.197 + 8 77 69 146 Tm -p -30892# 196# 7913# 1# B- * 145 966837# 210# +0 39 93 54 147 Xe x -42607# 196# 8074# 1# B- 9412# 203# 146 954260# 210# + 37 92 55 147 Cs -52018.205 53.016 8132.468 0.361 B- 8245.824 56.575 146 944156.156 56.915 + 35 91 56 147 Ba x -60264.029 19.748 8183.240 0.134 B- 6414.361 22.466 146 935303.900 21.200 + 33 90 57 147 La x -66678.390 10.712 8221.553 0.073 B- 5335.492 13.725 146 928417.800 11.500 + 31 89 58 147 Ce -72013.882 8.581 8252.527 0.058 B- 3430.129 15.540 146 922689.913 9.211 + 29 88 59 147 Pr -75444.011 15.867 8270.539 0.108 B- 2702.620 15.872 146 919007.518 17.033 + 27 87 60 147 Nd -78146.631 1.820 8283.602 0.012 B- 895.303 0.915 146 916106.136 1.953 + 25 86 61 147 Pm -79041.934 1.795 8284.370 0.012 B- 224.074 0.301 146 915144.988 1.926 + 23 85 62 147 Sm -79266.008 1.788 8280.572 0.012 B- -1721.609 2.302 146 914904.435 1.919 + 21 84 63 147 Eu -77544.399 2.842 8263.539 0.019 B- -2187.824 2.582 146 916752.659 3.051 + 19 83 64 147 Gd -75356.575 2.289 8243.333 0.016 B- -4614.066 8.170 146 919101.384 2.456 + 17 82 65 147 Tb -70742.509 8.119 8206.623 0.055 B- -6546.472 12.009 146 924054.788 8.716 + 15 81 66 147 Dy x -64196.037 8.849 8156.767 0.060 B- -8438.945 10.164 146 931082.715 9.500 + 13 80 67 147 Ho -55757.092 5.001 8094.037 0.034 B- -9149.286 38.517 146 940142.296 5.368 + 11 79 68 147 Er x -46607.806 38.191 8026.475 0.260 B- -10633.406 38.799 146 949964.459 41.000 + 9 78 69 147 Tm -35974.400 6.839 7948.817 0.047 B- * 146 961379.891 7.341 +0 40 94 54 148 Xe x -39002# 196# 8049# 1# B- 8295# 608# 147 958130# 210# + 38 93 55 148 Cs -47296.480 575.562 8100.151 3.889 B- 10297.255 579.008 147 949225.137 617.890 + 36 92 56 148 Ba + -57593.735 63.079 8164.441 0.426 B- 5115.000 60.000 147 938170.578 67.718 + 34 91 57 148 La x -62708.735 19.468 8193.716 0.132 B- 7689.645 22.458 147 932679.400 20.900 + 32 90 58 148 Ce -70398.380 11.196 8240.387 0.076 B- 2136.980 12.569 147 924424.225 12.019 + 30 89 59 148 Pr -72535.360 15.048 8249.540 0.102 B- 4872.449 15.109 147 922130.083 16.154 + 28 88 60 148 Nd -77407.809 2.417 8277.175 0.016 B- -542.735 5.915 147 916899.294 2.594 + 26 87 61 148 Pm +p -76865.073 5.829 8268.222 0.039 B- 2470.992 5.645 147 917481.945 6.257 + 24 86 62 148 Sm -79336.065 1.789 8279.632 0.012 B- -3036.687 10.056 147 914829.226 1.920 + 22 85 63 148 Eu -76299.378 10.032 8253.828 0.068 B- -30.057 10.037 147 918089.243 10.769 + 20 84 64 148 Gd -76269.321 1.947 8248.338 0.013 B- -5738.041 12.921 147 918121.511 2.090 + 18 83 65 148 Tb -70531.280 12.808 8204.282 0.087 B- -2678.064 9.600 147 924281.552 13.749 + 16 82 66 148 Dy -67853.216 9.300 8180.901 0.063 B- -9862.059 84.349 147 927156.571 9.984 + 14 81 67 148 Ho x -57991.157 83.834 8108.979 0.566 B- -6512.169 84.458 147 937743.928 90.000 + 12 80 68 148 Er x -51478.988 10.246 8059.692 0.069 B- -12713.962 14.491 147 944735.029 11.000 + 10 79 69 148 Tm x -38765.027 10.246 7968.500 0.069 B- -8566# 596# 147 958384.029 11.000 + 8 78 70 148 Yb x -30199# 596# 7905# 4# B- * 147 967580# 640# +0 39 94 55 149 Cs x -43762# 196# 8076# 1# B- 9259# 277# 148 953020# 210# + 37 93 56 149 Ba x -53021# 196# 8133# 1# B- 7199# 280# 148 943080# 210# + 35 92 57 149 La + -60219.913 200.262 8176.191 1.344 B- 6450.000 200.000 148 935351.260 214.990 + 33 91 58 149 Ce x -66669.913 10.246 8214.229 0.069 B- 4369.452 14.230 148 928426.900 11.000 + 31 90 59 149 Pr x -71039.365 9.874 8238.303 0.066 B- 3335.913 10.166 148 923736.100 10.600 + 29 89 60 149 Nd -n -74375.279 2.418 8255.441 0.016 B- 1688.400 2.528 148 920154.849 2.595 + 27 88 61 149 Pm -76063.679 2.513 8261.522 0.017 B- 1071.418 1.877 148 918342.277 2.698 + 25 87 62 149 Sm -77135.097 1.714 8263.462 0.012 B- -694.616 3.792 148 917192.062 1.839 + 23 86 63 149 Eu -76440.481 4.092 8253.550 0.027 B- -1313.737 4.147 148 917937.763 4.393 + 21 85 64 149 Gd -75126.744 3.531 8239.482 0.024 B- -3637.887 4.347 148 919348.117 3.791 + 19 84 65 149 Tb -71488.858 3.846 8209.816 0.026 B- -3789.450 9.316 148 923253.549 4.129 + 17 83 66 149 Dy -67699.408 9.456 8179.133 0.063 B- -6036.970 14.270 148 927321.692 10.151 + 15 82 67 149 Ho -61662.438 14.485 8133.366 0.097 B- -7920.823 31.476 148 933802.646 15.549 + 13 81 68 149 Er x -53741.615 27.945 8074.955 0.188 B- -9859# 299# 148 942306.000 30.000 + 11 80 69 149 Tm x -43883# 298# 8004# 2# B- -10684# 585# 148 952890# 320# + 9 79 70 149 Yb x -33198# 503# 7927# 3# B- * 148 964360# 540# +0 40 95 55 150 Cs x -38815# 298# 8043# 2# B- 11439# 422# 149 958330# 320# + 38 94 56 150 Ba x -50254# 298# 8114# 2# B- 6129# 357# 149 946050# 320# + 36 93 57 150 La x -56383# 196# 8150# 1# B- 8464# 196# 149 939470# 210# + 34 92 58 150 Ce -64846.847 11.697 8201.122 0.078 B- 3453.551 14.292 149 930384.042 12.556 + 32 91 59 150 Pr -68300.398 9.016 8218.930 0.060 B- 5378.682 9.136 149 926676.502 9.679 + 30 90 60 150 Nd -73679.080 1.696 8249.572 0.011 B- -82.616 20.001 149 920902.249 1.821 + 28 89 61 150 Pm + -73596.464 20.071 8243.806 0.134 B- 3454.000 20.000 149 920990.941 21.546 + 26 88 62 150 Sm -77050.464 1.685 8261.617 0.011 B- -2258.642 6.190 149 917282.919 1.809 + 24 87 63 150 Eu -74791.823 6.322 8241.344 0.042 B- 971.780 3.543 149 919707.671 6.787 + 22 86 64 150 Gd -75763.602 6.145 8242.607 0.041 B- -4657.953 8.381 149 918664.422 6.597 + 20 85 65 150 Tb -71105.649 7.440 8206.338 0.050 B- -1796.221 8.394 149 923664.941 7.986 + 18 84 66 150 Dy -69309.428 4.486 8189.148 0.030 B- -7363.595 14.490 149 925593.264 4.815 + 16 83 67 150 Ho -61945.833 14.172 8134.841 0.094 B- -4114.557 13.591 149 933498.408 15.213 + 14 82 68 150 Er -57831.276 17.196 8102.195 0.115 B- -11340# 196# 149 937915.567 18.460 + 12 81 69 150 Tm x -46491# 196# 8021# 1# B- -7852# 446# 149 950090# 210# + 10 80 70 150 Yb x -38638# 401# 7964# 3# B- -13998# 643# 149 958520# 430# + 8 79 71 150 Lu -p -24640# 503# 7865# 3# B- * 149 973548# 540# +0 41 96 55 151 Cs x -34857# 401# 8017# 3# B- 10535# 499# 150 962580# 430# + 39 95 56 151 Ba x -45392# 298# 8082# 2# B- 8337# 357# 150 951270# 320# + 37 94 57 151 La x -53729# 196# 8132# 1# B- 7496# 196# 150 942320# 210# + 35 93 58 151 Ce x -61225.051 17.698 8176.277 0.117 B- 5554.420 21.191 150 934272.200 19.000 + 33 92 59 151 Pr -66779.471 11.654 8207.880 0.077 B- 4162.843 11.719 150 928309.285 12.510 + 31 91 60 151 Nd -70942.314 1.699 8230.268 0.011 B- 2443.076 4.473 150 923840.289 1.823 + 29 90 61 151 Pm -73385.389 4.781 8241.266 0.032 B- 1190.210 4.476 150 921217.539 5.132 + 27 89 62 151 Sm -74575.599 1.684 8243.967 0.011 B- 76.376 0.535 150 919939.796 1.807 + 25 88 63 151 Eu -74651.975 1.717 8239.292 0.011 B- -464.021 2.779 150 919857.803 1.843 + 23 87 64 151 Gd -74187.955 3.243 8231.038 0.021 B- -2565.008 3.763 150 920355.950 3.481 + 21 86 65 151 Tb -71622.947 4.275 8208.870 0.028 B- -2870.832 4.986 150 923109.599 4.588 + 19 85 66 151 Dy -a -68752.115 3.496 8184.676 0.023 B- -5129.533 8.778 150 926191.564 3.752 + 17 84 67 151 Ho -a -63622.582 8.320 8145.525 0.055 B- -5356.298 18.452 150 931698.345 8.932 + 15 83 68 151 Er x -58266.284 16.470 8104.872 0.109 B- -7488.567 25.648 150 937448.567 17.681 + 13 82 69 151 Tm +a -50777.717 19.661 8050.097 0.130 B- -9235.411 300.151 150 945487.875 21.107 + 11 81 70 151 Yb ep -41542.306 300.492 7983.755 1.990 B- -11434# 501# 150 955402.497 322.591 + 9 80 71 151 Lu -p -30108# 401# 7903# 3# B- * 150 967677# 430# +0 40 96 56 152 Ba x -42094# 401# 8060# 3# B- 7443# 499# 151 954810# 430# + 38 95 57 152 La x -49537# 298# 8104# 2# B- 9520# 357# 151 946820# 320# + 36 94 58 152 Ce x -59057# 196# 8161# 1# B- 4701# 196# 151 936600# 210# + 34 93 59 152 Pr x -63758.063 18.537 8187.104 0.122 B- 6390.686 30.730 151 931552.900 19.900 + 32 92 60 152 Nd -70148.749 24.509 8224.001 0.161 B- 1104.784 18.501 151 924692.216 26.312 + 30 91 61 152 Pm -71253.533 25.936 8226.122 0.171 B- 3508.436 25.886 151 923506.181 27.842 + 28 90 62 152 Sm -74761.968 1.639 8244.057 0.011 B- -1874.597 0.675 151 919739.721 1.759 + 26 89 63 152 Eu -72887.371 1.717 8226.577 0.011 B- 1818.919 0.689 151 921752.184 1.843 + 24 88 64 152 Gd -74706.290 1.634 8233.397 0.011 B- -3990.000 40.000 151 919799.494 1.754 + 22 87 65 152 Tb - -70716.290 40.033 8202.000 0.263 B- -598.346 40.265 151 924082.936 42.977 + 20 86 66 152 Dy -a -70117.944 4.770 8192.916 0.031 B- -6518.909 13.694 151 924725.286 5.121 + 18 85 67 152 Ho -63599.035 12.871 8144.882 0.085 B- -3105.100 9.822 151 931723.623 13.817 + 16 84 68 152 Er -60493.935 9.432 8119.306 0.062 B- -8723.362 74.190 151 935057.085 10.125 + 14 83 69 152 Tm -51770.574 73.588 8056.769 0.484 B- -5449.892 139.620 151 944422.000 79.000 + 12 82 70 152 Yb -46320.681 157.826 8015.767 1.038 B- -12899# 251# 151 950272.700 169.432 + 10 81 71 152 Lu x -33422# 196# 7926# 1# B- * 151 964120# 210# +0 41 97 56 153 Ba x -36924# 401# 8026# 3# B- 9315# 499# 152 960360# 430# + 39 96 57 153 La x -46239# 298# 8082# 2# B- 8784# 357# 152 950360# 320# + 37 95 58 153 Ce x -55023# 196# 8134# 1# B- 6545# 196# 152 940930# 210# + 35 94 59 153 Pr -61568.457 11.882 8172.036 0.078 B- 5761.813 12.190 152 933903.539 12.755 + 33 93 60 153 Nd -67330.270 2.747 8204.582 0.018 B- 3317.322 9.362 152 927717.978 2.949 + 31 92 61 153 Pm -70647.592 9.073 8221.150 0.059 B- 1911.459 9.123 152 924156.686 9.740 + 29 91 62 153 Sm -n -72559.051 1.644 8228.530 0.011 B- 807.276 0.695 152 922104.650 1.765 + 27 90 63 153 Eu -73366.327 1.720 8228.693 0.011 B- -484.399 0.702 152 921238.003 1.846 + 25 89 64 153 Gd -72881.928 1.632 8220.414 0.011 B- -1568.987 3.852 152 921758.027 1.751 + 23 88 65 153 Tb -71312.942 4.136 8205.045 0.027 B- -2170.358 1.934 152 923442.403 4.440 + 21 87 66 153 Dy -69142.584 4.187 8185.747 0.027 B- -4130.292 6.174 152 925772.378 4.494 + 19 86 67 153 Ho -a -65012.292 5.224 8153.638 0.034 B- -4540.112 10.058 152 930206.429 5.608 + 17 85 68 153 Er -60472.180 9.554 8118.851 0.062 B- -6482.882 14.374 152 935080.440 10.256 + 15 84 69 153 Tm -53989.298 14.511 8071.365 0.095 B- -6781# 196# 152 942040.101 15.577 + 13 83 70 153 Yb x -47208# 196# 8022# 1# B- -8785# 252# 152 949320# 210# + 11 82 71 153 Lu +a -38423.145 158.135 7959.399 1.034 B- -11121# 527# 152 958751.054 169.764 + 9 81 72 153 Hf x -27302# 503# 7882# 3# B- * 152 970690# 540# +0 40 97 57 154 La x -41759# 401# 8053# 3# B- 10591# 499# 153 955170# 430# + 38 96 58 154 Ce x -52350# 298# 8117# 2# B- 5844# 334# 153 943800# 320# + 36 95 59 154 Pr + -58194.398 151.640 8149.473 0.985 B- 7490.000 100.000 153 937525.741 162.792 + 34 94 60 154 Nd + -65684.398 113.995 8193.029 0.740 B- 2806.930 122.439 153 929484.894 122.378 + 32 93 61 154 Pm + -68491.327 44.759 8206.176 0.291 B- 3963.200 44.721 153 926471.531 48.050 + 30 92 62 154 Sm -72454.527 1.830 8226.830 0.012 B- -717.345 1.092 153 922216.861 1.964 + 28 91 63 154 Eu -71737.183 1.730 8217.092 0.011 B- 1968.156 0.737 153 922986.962 1.857 + 26 90 64 154 Gd -73705.338 1.628 8224.792 0.011 B- -3549.651 45.298 153 920874.060 1.747 + 24 89 65 154 Tb - -70155.687 45.328 8196.662 0.294 B- 237.987 45.903 153 924684.767 48.661 + 22 88 66 154 Dy -70393.674 7.493 8193.128 0.049 B- -5754.357 10.180 153 924429.277 8.043 + 20 87 67 154 Ho -a -64639.317 8.278 8150.681 0.054 B- -2034.390 9.466 153 930606.834 8.886 + 18 86 68 154 Er -62604.927 5.105 8132.391 0.033 B- -8177.764 14.937 153 932790.842 5.480 + 16 85 69 154 Tm -a -54427.163 14.416 8074.208 0.094 B- -4495.038 13.953 153 941570.033 15.475 + 14 84 70 154 Yb -49932.125 17.283 8039.940 0.112 B- -10217# 203# 153 946395.655 18.554 + 12 83 71 154 Lu +a -39715# 202# 7969# 1# B- -6982# 542# 153 957364# 217# + 10 82 72 154 Hf x -32733# 503# 7918# 3# B- * 153 964860# 540# +0 41 98 57 155 La x -38182# 401# 8030# 3# B- 9743# 566# 154 959010# 430# + 39 97 58 155 Ce x -47925# 401# 8088# 3# B- 7490# 401# 154 948550# 430# + 37 96 59 155 Pr -55415.247 17.198 8131.038 0.111 B- 6868.455 19.472 154 940509.281 18.462 + 35 95 60 155 Nd -62283.702 9.154 8170.304 0.059 B- 4656.206 10.278 154 933135.691 9.826 + 33 94 61 155 Pm -66939.908 4.719 8195.296 0.030 B- 3250.262 5.067 154 928137.048 5.065 + 31 93 62 155 Sm -n -70190.170 1.849 8211.218 0.012 B- 1626.986 1.193 154 924647.748 1.985 + 29 92 63 155 Eu -71817.156 1.773 8216.668 0.011 B- 252.094 0.856 154 922901.107 1.902 + 27 91 64 155 Gd -72069.250 1.624 8213.247 0.010 B- -819.784 9.789 154 922630.473 1.742 + 25 90 65 155 Tb + -71249.466 9.902 8202.910 0.064 B- -2094.500 1.897 154 923510.547 10.629 + 23 89 66 155 Dy -69154.966 9.718 8184.350 0.063 B- -3115.813 16.594 154 925759.086 10.432 + 21 88 67 155 Ho -66039.153 17.487 8159.201 0.113 B- -3830.175 18.490 154 929104.049 18.773 + 19 87 68 155 Er -a -62208.978 6.210 8129.442 0.040 B- -5583.141 11.531 154 933215.911 6.666 + 17 86 69 155 Tm -a -56625.836 9.940 8088.375 0.064 B- -6123.149 19.348 154 939209.660 10.671 + 15 85 70 155 Yb -a -50502.687 16.600 8043.823 0.107 B- -7952.600 25.603 154 945783.132 17.820 + 13 84 71 155 Lu +a -42550.087 19.493 7987.469 0.126 B- -8187# 299# 154 954320.600 20.926 + 11 83 72 155 Hf x -34363# 298# 7930# 2# B- -10372# 585# 154 963110# 320# + 9 82 73 155 Ta -p -23991# 503# 7858# 3# B- * 154 974245# 540# +0 40 98 58 156 Ce x -44870# 401# 8068# 3# B- 6697# 499# 155 951830# 430# + 38 97 59 156 Pr x -51568# 298# 8106# 2# B- 8906# 359# 155 944640# 320# + 36 96 60 156 Nd + -60473.620 200.033 8158.066 1.282 B- 3690.000 200.000 155 935078.894 214.744 + 34 95 61 156 Pm -64163.620 3.631 8176.705 0.023 B- 5199.086 10.035 155 931117.516 3.898 + 32 94 62 156 Sm -69362.706 9.356 8205.017 0.060 B- 722.442 7.913 155 925536.067 10.044 + 30 93 63 156 Eu -70085.148 5.521 8204.633 0.035 B- 2449.134 5.283 155 924760.494 5.927 + 28 92 64 156 Gd -72534.282 1.624 8215.318 0.010 B- -2444.184 3.681 155 922131.241 1.742 + 26 91 65 156 Tb -70090.097 4.004 8194.635 0.026 B- 438.238 3.682 155 924755.181 4.298 + 24 90 66 156 Dy -70528.335 1.627 8192.429 0.010 B- -5050.000 60.000 155 924284.713 1.746 + 22 89 67 156 Ho - -65478.335 60.022 8155.042 0.385 B- -1267.951 64.881 155 929706.112 64.436 + 20 88 68 156 Er -64210.384 24.639 8141.899 0.158 B- -7381.401 26.801 155 931067.313 26.450 + 18 87 69 156 Tm -56828.983 14.570 8089.568 0.093 B- -3570.533 12.579 155 938991.573 15.642 + 16 86 70 156 Yb -53258.450 10.046 8061.665 0.064 B- -9508.527 74.340 155 942824.698 10.784 + 14 85 71 156 Lu -a -43749.924 73.658 7995.697 0.472 B- -5882.648 139.709 155 953032.522 79.074 + 12 84 72 156 Hf -37867.276 157.872 7952.973 1.012 B- -11813# 337# 155 959347.805 169.482 + 10 83 73 156 Ta -p -26054# 298# 7872# 2# B- * 155 972030# 320# +0 41 99 58 157 Ce x -40008# 503# 8037# 3# B- 8532# 643# 156 957050# 540# + 39 98 59 157 Pr x -48540# 401# 8086# 3# B- 7921# 401# 156 947890# 430# + 37 97 60 157 Nd -56461.520 24.918 8131.959 0.159 B- 5835.500 25.877 156 939386.061 26.751 + 35 96 61 157 Pm -62297.021 7.006 8164.144 0.045 B- 4380.533 8.265 156 933121.393 7.521 + 33 95 62 157 Sm -66677.553 4.434 8187.063 0.028 B- 2780.744 6.179 156 928418.698 4.759 + 31 94 63 157 Eu -69458.297 4.322 8199.791 0.028 B- 1364.524 4.218 156 925433.446 4.639 + 29 93 64 157 Gd -70822.822 1.623 8203.500 0.010 B- -60.044 0.297 156 923968.569 1.742 + 27 92 65 157 Tb -70762.778 1.649 8198.134 0.011 B- -1339.145 5.139 156 924033.028 1.770 + 25 91 66 157 Dy -69423.633 5.351 8184.621 0.034 B- -2593.062 23.799 156 925470.660 5.744 + 23 90 67 157 Ho -66830.570 23.459 8163.122 0.149 B- -3441.154 32.709 156 928254.427 25.184 + 21 89 68 157 Er -63389.417 25.028 8136.221 0.159 B- -4653.243 33.823 156 931948.658 26.868 + 19 88 69 157 Tm -58736.174 26.208 8101.599 0.167 B- -5310.661 28.467 156 936944.120 28.135 + 17 87 70 157 Yb -53425.513 11.115 8062.790 0.071 B- -6968.803 15.634 156 942645.349 11.932 + 15 86 71 157 Lu -46456.710 14.628 8013.420 0.093 B- -7553# 196# 156 950126.667 15.704 + 13 85 72 157 Hf -a -38903# 196# 7960# 1# B- -9260# 252# 156 958236# 210# + 11 84 73 157 Ta IT -29643.709 158.168 7896.364 1.007 B- -9933# 431# 156 968176.167 169.800 + 9 83 74 157 W x -19710# 401# 7828# 3# B- * 156 978840# 430# +0 40 99 59 158 Pr x -44330# 401# 8060# 3# B- 9725# 499# 157 952410# 430# + 38 98 60 158 Nd x -54055# 298# 8116# 2# B- 5035# 298# 157 941970# 320# + 36 97 61 158 Pm -59089.187 13.453 8143.254 0.085 B- 6161.033 14.299 157 936565.144 14.442 + 34 96 62 158 Sm -65250.220 4.892 8177.296 0.031 B- 2004.946 10.369 157 929951.004 5.251 + 32 95 63 158 Eu -67255.165 10.255 8185.034 0.065 B- 3433.727 10.382 157 927798.606 11.008 + 30 94 64 158 Gd -70688.892 1.623 8201.815 0.010 B- -1218.952 0.993 157 924112.348 1.742 + 28 93 65 158 Tb -69469.940 1.861 8189.149 0.012 B- 936.219 2.523 157 925420.947 1.997 + 26 92 66 158 Dy -70406.159 2.865 8190.123 0.018 B- -4219.755 27.005 157 924415.875 3.075 + 24 91 67 158 Ho - -66186.403 27.156 8158.464 0.172 B- -882.595 37.061 157 928945.969 29.153 + 22 90 68 158 Er -65303.808 25.219 8147.926 0.160 B- -6600.615 31.341 157 929893.474 27.074 + 20 89 69 158 Tm -58703.194 25.219 8101.199 0.160 B- -2692.971 26.475 157 936979.525 27.074 + 18 88 70 158 Yb -56010.223 8.057 8079.203 0.051 B- -8797.922 16.887 157 939870.549 8.649 + 16 87 71 158 Lu -a -47212.300 15.128 8018.568 0.096 B- -5109.789 14.937 157 949315.507 16.240 + 14 86 72 158 Hf -42102.511 17.495 7981.276 0.111 B- -10936# 203# 157 954801.092 18.782 + 12 85 73 158 Ta +a -31167# 202# 7907# 1# B- -7471# 542# 157 966541# 217# + 10 84 74 158 W -a -23695# 503# 7855# 3# B- * 157 974562# 540# +0 41 100 59 159 Pr x -41088# 503# 8039# 3# B- 8719# 643# 158 955890# 540# + 39 99 60 159 Nd x -49807# 401# 8089# 3# B- 6747# 401# 158 946530# 430# + 37 98 61 159 Pm -56554.259 10.039 8126.859 0.063 B- 5653.494 11.644 158 939286.502 10.777 + 35 97 62 159 Sm -62207.753 5.934 8157.495 0.037 B- 3835.109 7.335 158 933217.226 6.370 + 33 96 63 159 Eu -66042.861 4.345 8176.695 0.027 B- 2517.920 4.444 158 929100.067 4.664 + 31 95 64 159 Gd -68560.782 1.625 8187.610 0.010 B- 970.858 0.765 158 926396.969 1.744 + 29 94 65 159 Tb -69531.640 1.751 8188.796 0.011 B- -365.377 1.168 158 925354.710 1.879 + 27 93 66 159 Dy -69166.263 2.037 8181.577 0.013 B- -1837.600 2.683 158 925746.958 2.187 + 25 92 67 159 Ho - -67328.663 3.369 8165.100 0.021 B- -2768.500 2.000 158 927719.703 3.616 + 23 91 68 159 Er - -64560.163 3.918 8142.767 0.025 B- -3989.765 28.218 158 930691.810 4.206 + 21 90 69 159 Tm x -60570.397 27.945 8112.754 0.176 B- -4731.639 33.159 158 934975.000 30.000 + 19 89 70 159 Yb x -55838.758 17.849 8078.075 0.112 B- -6130.155 41.679 158 940054.623 19.162 + 17 88 71 159 Lu x -49708.604 37.663 8034.600 0.237 B- -6855.846 41.246 158 946635.615 40.433 + 15 87 72 159 Hf -a -42852.758 16.813 7986.561 0.106 B- -8408.491 26.075 158 953995.669 18.049 + 13 86 73 159 Ta IT -34444.267 19.931 7928.757 0.125 B- -8957# 299# 158 963022.556 21.397 + 11 85 74 159 W -a -25487# 298# 7868# 2# B- -10750# 587# 158 972638# 320# + 9 84 75 159 Re IT -14737# 506# 7795# 3# B- * 158 984179# 543# +0 40 100 60 160 Nd x -47134# 401# 8073# 3# B- 5868# 499# 159 949400# 430# + 38 99 61 160 Pm x -53002# 298# 8104# 2# B- 7233# 298# 159 943100# 320# + 36 98 62 160 Sm -60234.770 5.934 8144.625 0.037 B- 3245.671 11.183 159 935335.311 6.370 + 34 97 63 160 Eu -63480.441 9.501 8160.021 0.059 B- 4460.485 9.654 159 931850.939 10.199 + 32 96 64 160 Gd -67940.926 1.714 8183.009 0.011 B- -105.394 1.018 159 927062.411 1.840 + 30 95 65 160 Tb -67835.532 1.756 8177.461 0.011 B- 1835.891 1.264 159 927175.556 1.884 + 28 94 66 160 Dy -69671.423 1.883 8184.046 0.012 B- -3290.000 15.000 159 925204.646 2.021 + 26 93 67 160 Ho - -66381.423 15.118 8158.593 0.094 B- -317.196 28.580 159 928736.606 16.229 + 24 92 68 160 Er -66064.228 24.254 8151.721 0.152 B- -5762.200 40.311 159 929077.130 26.037 + 22 91 69 160 Tm -60302.028 34.262 8110.818 0.214 B- -2137.127 37.791 159 935263.106 36.781 + 20 90 70 160 Yb x -58164.901 15.947 8092.571 0.100 B- -7894.964 59.017 159 937557.406 17.119 + 18 89 71 160 Lu x -50269.937 56.821 8038.338 0.355 B- -4338.665 57.757 159 946033.000 61.000 + 16 88 72 160 Hf -45931.271 10.354 8006.332 0.065 B- -10057.118 74.523 159 950690.749 11.115 + 14 87 73 160 Ta -a -35874.153 73.801 7938.585 0.461 B- -6497.240 139.859 159 961487.510 79.228 + 12 86 74 160 W -29376.914 157.938 7893.088 0.987 B- -12445# 337# 159 968462.584 169.553 + 10 85 75 160 Re -a -16931# 298# 7810# 2# B- * 159 981823# 320# +0 41 101 60 161 Nd x -42588# 503# 8044# 3# B- 7648# 585# 160 954280# 540# + 39 100 61 161 Pm x -50235# 298# 8087# 2# B- 6436# 298# 160 946070# 320# + 37 99 62 161 Sm -56671.937 6.817 8122.040 0.042 B- 5119.564 12.415 160 939160.170 7.318 + 35 98 63 161 Eu -61791.501 10.400 8148.980 0.065 B- 3713.508 10.586 160 933664.091 11.164 + 33 97 64 161 Gd -n -65505.009 1.985 8167.186 0.012 B- 1955.813 1.441 160 929677.476 2.130 + 31 96 65 161 Tb -67460.822 1.828 8174.474 0.011 B- 593.672 1.339 160 927577.825 1.962 + 29 95 66 161 Dy -68054.493 1.882 8173.302 0.012 B- -857.957 2.173 160 926940.492 2.020 + 27 94 67 161 Ho -67196.536 2.816 8163.114 0.017 B- -1996.241 9.013 160 927861.547 3.023 + 25 93 68 161 Er +n -65200.295 8.947 8145.856 0.056 B- -3301.587 29.342 160 930004.599 9.604 + 23 92 69 161 Tm x -61898.708 27.945 8120.490 0.174 B- -4059.580 31.917 160 933549.000 30.000 + 21 91 70 161 Yb x -57839.128 15.419 8090.416 0.096 B- -5276.784 31.917 160 937907.138 16.553 + 19 90 71 161 Lu x -52562.344 27.945 8052.781 0.174 B- -6246.944 35.911 160 943572.000 30.000 + 17 89 72 161 Hf -46315.400 22.555 8009.121 0.140 B- -7613.934 33.994 160 950278.370 24.213 + 15 88 73 161 Ta +a -38701.466 25.465 7956.970 0.158 B- -8146# 197# 160 958452.265 27.337 + 13 87 74 161 W -a -30556# 196# 7902# 1# B- -9665# 252# 160 967197# 210# + 11 86 75 161 Re -20890.661 158.029 7836.626 0.982 B- -10671# 431# 160 977572.951 169.650 + 9 85 76 161 Os -a -10220# 401# 7765# 2# B- * 160 989029# 430# +0 40 101 61 162 Pm x -46370# 401# 8063# 2# B- 8160# 446# 161 950220# 430# + 38 100 62 162 Sm x -54530# 196# 8109# 1# B- 4165# 205# 161 941460# 210# + 36 99 63 162 Eu + -58694.590 60.145 8129.384 0.371 B- 5585.000 60.000 161 936988.761 64.567 + 34 98 64 162 Gd -nn -64279.590 4.169 8159.030 0.026 B- 1395.059 36.584 161 930993.017 4.475 + 32 97 65 162 Tb + -65674.649 36.412 8162.812 0.225 B- 2505.521 36.364 161 929495.360 39.090 + 30 96 66 162 Dy -68180.170 1.883 8173.449 0.012 B- -2139.364 3.118 161 926805.573 2.021 + 28 95 67 162 Ho -66040.806 3.596 8155.413 0.022 B- 292.405 3.132 161 929102.274 3.860 + 26 94 68 162 Er -66333.211 1.906 8152.389 0.012 B- -4856.728 26.047 161 928788.364 2.046 + 24 93 69 162 Tm - -61476.483 26.117 8117.580 0.161 B- -1649.980 30.263 161 934002.277 28.037 + 22 92 70 162 Yb x -59826.502 15.425 8102.566 0.095 B- -6994.749 76.605 161 935773.604 16.559 + 20 91 71 162 Lu x -52831.753 75.036 8054.559 0.463 B- -3662.691 75.576 161 943282.776 80.554 + 18 90 72 162 Hf -49169.062 9.018 8027.120 0.056 B- -9388.757 52.934 161 947214.837 9.681 + 16 89 73 162 Ta -a -39780.305 52.239 7964.336 0.322 B- -5779.975 52.254 161 957294.083 56.080 + 14 88 74 162 W -34000.330 17.705 7923.828 0.109 B- -11499# 203# 161 963499.142 19.007 + 12 87 75 162 Re +a -22501# 202# 7848# 1# B- -7998# 542# 161 975844# 217# + 10 86 76 162 Os -a -14503# 503# 7794# 3# B- * 161 984431# 540# +0 41 102 61 163 Pm x -43249# 503# 8044# 3# B- 7471# 585# 162 953570# 540# + 39 101 62 163 Sm x -50720# 298# 8085# 2# B- 5919# 306# 162 945550# 320# + 37 100 63 163 Eu + -56638.864 70.505 8116.415 0.433 B- 4675.000 70.000 162 939195.675 75.690 + 35 99 64 163 Gd -61313.864 8.426 8140.297 0.052 B- 3280.905 9.515 162 934176.855 9.045 + 33 98 65 163 Tb +p -64594.769 4.421 8155.625 0.027 B- 1785.092 4.001 162 930654.659 4.746 + 31 97 66 163 Dy -66379.861 1.883 8161.777 0.012 B- -2.555 0.016 162 928738.284 2.021 + 29 96 67 163 Ho -66377.306 1.883 8156.962 0.012 B- -1210.729 4.575 162 928741.027 2.021 + 27 95 68 163 Er -65166.577 4.948 8144.734 0.030 B- -2439.000 3.000 162 930040.797 5.311 + 25 94 69 163 Tm - -62727.577 5.786 8124.972 0.035 B- -3428.327 16.352 162 932659.172 6.211 + 23 93 70 163 Yb x -59299.250 15.431 8099.139 0.095 B- -4507.842 31.922 162 936339.632 16.565 + 21 92 71 163 Lu x -54791.409 27.945 8066.684 0.171 B- -5527.435 37.348 162 941179.000 30.000 + 19 91 72 163 Hf -49263.973 24.778 8027.974 0.152 B- -6729.266 45.416 162 947112.946 26.599 + 17 90 73 163 Ta -a -42534.708 38.061 7981.890 0.234 B- -7626.357 65.049 162 954337.110 40.860 + 15 89 74 163 W -a -34908.351 52.751 7930.303 0.324 B- -8900.909 55.998 162 962524.342 56.630 + 13 88 75 163 Re +a -26007.442 18.791 7870.897 0.115 B- -9622# 303# 162 972079.860 20.173 + 11 87 76 163 Os -a -16385# 302# 7807# 2# B- * 162 982410# 324# +0 40 102 62 164 Sm x -48102# 298# 8069# 2# B- 5232# 363# 163 948360# 320# + 38 101 63 164 Eu + -53334# 208# 8096# 1# B- 6440.000 70.000 163 942744# 223# + 36 100 64 164 Gd x -59774# 196# 8130# 1# B- 2303# 220# 163 935830# 210# + 34 99 65 164 Tb + -62076.660 100.018 8139.757 0.610 B- 3890.000 100.000 163 933357.961 107.373 + 32 98 66 164 Dy -65966.660 1.883 8158.706 0.011 B- -985.893 1.427 163 929181.874 2.021 + 30 97 67 164 Ho -64980.767 2.291 8147.924 0.014 B- 960.819 1.430 163 930240.273 2.459 + 28 96 68 164 Er -65941.586 1.886 8149.012 0.012 B- -4037.862 24.436 163 929208.791 2.024 + 26 95 69 164 Tm -61903.724 24.398 8119.621 0.149 B- -886.149 28.854 163 933543.614 26.191 + 24 94 70 164 Yb x -61017.575 15.437 8109.447 0.094 B- -6375.206 31.925 163 934494.934 16.571 + 22 93 71 164 Lu x -54642.370 27.945 8065.804 0.170 B- -2824.146 32.112 163 941339.000 30.000 + 20 92 72 164 Hf -51818.224 15.820 8043.813 0.096 B- -8535.424 32.112 163 944370.845 16.983 + 18 91 73 164 Ta x -43282.800 27.945 7986.997 0.170 B- -5054.923 29.864 163 953534.000 30.000 + 16 90 74 164 W -38227.878 10.534 7951.404 0.064 B- -10704.904 74.723 163 958960.683 11.309 + 14 89 75 164 Re -a -27522.974 73.976 7881.360 0.451 B- -7050.331 140.051 163 970452.870 79.417 + 12 88 76 164 Os -20472.643 158.026 7833.599 0.964 B- -12936# 352# 163 978021.712 169.647 + 10 87 77 164 Ir -a -7537# 314# 7750# 2# B- * 163 991909# 338# +0 41 103 62 165 Sm x -43808# 401# 8043# 2# B- 6878# 514# 164 952970# 430# + 39 102 63 165 Eu + -50686# 321# 8080# 2# B- 5800.000 120.000 164 945587# 345# + 37 101 64 165 Gd x -56486# 298# 8110# 2# B- 4080# 357# 164 939360# 320# + 35 100 65 165 Tb x -60566# 196# 8130# 1# B- 3046# 196# 164 934980# 210# + 33 99 66 165 Dy -n -63611.300 1.884 8143.902 0.011 B- 1286.972 0.849 164 931710.456 2.022 + 31 98 67 165 Ho -64898.272 1.983 8146.960 0.012 B- -377.871 1.021 164 930328.835 2.129 + 29 97 68 165 Er -64520.401 1.963 8139.928 0.012 B- -1591.591 1.544 164 930734.496 2.107 + 27 96 69 165 Tm -62928.809 2.378 8125.541 0.014 B- -2633.428 26.645 164 932443.140 2.552 + 25 95 70 165 Yb -60295.381 26.539 8104.839 0.161 B- -3853.140 35.432 164 935270.241 28.490 + 23 94 71 165 Lu -56442.241 26.539 8076.745 0.161 B- -4806.734 38.539 164 939406.758 28.490 + 21 93 72 165 Hf x -51635.507 27.945 8042.872 0.169 B- -5787.906 31.195 164 944567.000 30.000 + 19 92 73 165 Ta -45847.601 13.863 8003.052 0.084 B- -6986.406 28.567 164 950780.572 14.882 + 17 91 74 165 W -38861.195 24.977 7955.969 0.151 B- -8217.521 35.355 164 958280.788 26.814 + 15 90 75 165 Re +a -30643.674 25.029 7901.424 0.152 B- -8849# 204# 164 967102.660 26.870 + 13 89 76 165 Os -a -21795# 202# 7843# 1# B- -10152# 261# 164 976602# 217# + 11 88 77 165 Ir IT -11643# 166# 7777# 1# B- * 164 987501# 178# +0 40 103 63 166 Eu x -46929# 298# 8057# 2# B- 7601# 667# 165 949620# 320# + 38 102 64 166 Gd x -54530# 596# 8098# 4# B- 3354# 600# 165 941460# 640# + 36 101 65 166 Tb + -57883.483 70.026 8113.672 0.422 B- 4700.000 70.000 165 937859.521 75.176 + 34 100 66 166 Dy -n -62583.483 1.926 8137.273 0.012 B- 487.112 0.939 165 932813.863 2.067 + 32 99 67 166 Ho -63070.595 1.983 8135.494 0.012 B- 1854.974 0.907 165 932290.927 2.129 + 30 98 68 166 Er -64925.569 2.030 8141.956 0.012 B- -3037.667 11.547 165 930299.530 2.179 + 28 97 69 166 Tm - -61887.902 11.724 8118.944 0.071 B- -292.628 13.507 165 933560.600 12.586 + 26 96 70 166 Yb +nn -61595.275 7.293 8112.468 0.044 B- -5574.294 30.687 165 933874.749 7.829 + 24 95 71 166 Lu x -56020.981 29.808 8074.175 0.180 B- -2161.998 40.859 165 939859.000 32.000 + 22 94 72 166 Hf x -53858.983 27.945 8056.438 0.168 B- -7761.208 39.520 165 942180.000 30.000 + 20 93 73 166 Ta x -46097.775 27.945 8004.971 0.168 B- -4209.617 29.522 165 950512.000 30.000 + 18 92 74 166 W -41888.158 9.521 7974.899 0.057 B- -9994.569 72.881 165 955031.210 10.221 + 16 91 75 166 Re -a -31893.589 72.311 7909.977 0.436 B- -6456.795 72.453 165 965760.821 77.628 + 14 90 76 166 Os -25436.794 18.231 7866.368 0.110 B- -12083# 203# 165 972692.476 19.571 + 12 89 77 166 Ir -p -13354# 202# 7789# 1# B- -8562# 542# 165 985664# 217# + 10 88 78 166 Pt -a -4792# 503# 7733# 3# B- * 165 994855# 540# +0 41 104 63 167 Eu x -43883# 401# 8039# 2# B- 6930# 566# 166 952890# 430# + 39 103 64 167 Gd x -50813# 401# 8076# 2# B- 5114# 446# 166 945450# 430# + 37 102 65 167 Tb x -55927# 196# 8102# 1# B- 4004# 205# 166 939960# 210# + 35 101 66 167 Dy + -59931.039 60.255 8120.995 0.361 B- 2350.000 60.000 166 935661.379 64.686 + 33 100 67 167 Ho p2n -62281.039 5.538 8130.382 0.033 B- 1009.677 5.224 166 933138.550 5.945 + 31 99 68 167 Er -63290.716 2.031 8131.743 0.012 B- -746.662 1.524 166 932054.617 2.180 + 29 98 69 167 Tm -62544.054 2.295 8122.587 0.014 B- -1953.153 3.798 166 932856.192 2.464 + 27 97 70 167 Yb -60590.901 4.398 8106.207 0.026 B- -3089.776 31.975 166 934952.988 4.721 + 25 96 71 167 Lu x -57501.125 31.671 8083.021 0.190 B- -4033.369 42.237 166 938270.000 34.000 + 23 95 72 167 Hf x -53467.756 27.945 8054.184 0.167 B- -5116.697 39.520 166 942600.000 30.000 + 21 94 73 167 Ta x -48351.059 27.945 8018.861 0.167 B- -6251.778 33.381 166 948093.000 30.000 + 19 93 74 167 W -42099.281 18.259 7976.740 0.109 B- -7257# 45# 166 954804.560 19.601 + 17 92 75 167 Re +a -34843# 41# 7929# 0# B- -8341# 84# 166 962595# 44# + 15 91 76 167 Os -a -26502.151 72.682 7873.975 0.435 B- -9424.435 75.026 166 971548.768 78.027 + 13 90 77 167 Ir -17077.717 18.605 7812.856 0.111 B- -10273# 307# 166 981666.315 19.973 + 11 89 78 167 Pt -a -6805# 306# 7747# 2# B- * 166 992695# 329# +0 40 104 64 168 Gd x -48363# 401# 8061# 2# B- 4359# 499# 167 948080# 430# + 38 103 65 168 Tb x -52723# 298# 8082# 2# B- 5837# 329# 167 943400# 320# + 36 102 66 168 Dy +pp -58559.979 140.020 8112.538 0.833 B- 1500.730 143.186 167 937133.273 150.317 + 34 101 67 168 Ho + -60060.709 30.069 8116.814 0.179 B- 2930.000 30.000 167 935522.173 32.280 + 32 100 68 168 Er -62990.709 2.033 8129.598 0.012 B- -1677.361 1.891 167 932376.688 2.182 + 30 99 69 168 Tm -61313.348 2.554 8114.957 0.015 B- 268.091 1.908 167 934177.409 2.741 + 28 98 70 168 Yb -61581.439 2.048 8111.896 0.012 B- -4514.051 39.248 167 933889.602 2.198 + 26 97 71 168 Lu - -57067.388 39.301 8080.369 0.234 B- -1706.837 48.223 167 938735.635 42.191 + 24 96 72 168 Hf x -55360.552 27.945 8065.553 0.166 B- -6966.644 39.520 167 940568.000 30.000 + 22 95 73 168 Ta x -48393.908 27.945 8019.428 0.166 B- -3501.055 30.936 167 948047.000 30.000 + 20 94 74 168 W -44892.853 13.272 7993.931 0.079 B- -9097.968 33.557 167 951805.537 14.247 + 18 93 75 168 Re -a -35794.885 30.821 7935.120 0.183 B- -5807.998 32.675 167 961572.608 33.087 + 16 92 76 168 Os -29986.887 10.852 7895.892 0.065 B- -11270.045 75.253 167 967807.751 11.650 + 14 91 77 168 Ir -a -18716.842 74.466 7824.151 0.443 B- -7658.765 140.344 167 979906.642 79.942 + 12 90 78 168 Pt -a -11058.077 158.056 7773.907 0.941 B- * 167 988128.665 169.679 +0 41 105 64 169 Gd x -44153# 503# 8036# 3# B- 6176# 585# 168 952600# 540# + 39 104 65 169 Tb x -50329# 298# 8068# 2# B- 5269# 423# 168 945970# 320# + 37 103 66 169 Dy + -55597.587 300.675 8094.765 1.779 B- 3200.000 300.000 168 940313.531 322.788 + 35 102 67 169 Ho +p -58797.587 20.141 8109.071 0.119 B- 2125.054 20.058 168 936878.189 21.622 + 33 101 68 169 Er -n -60922.642 2.039 8117.016 0.012 B- 352.999 1.150 168 934596.850 2.188 + 31 100 69 169 Tm -61275.641 2.065 8114.475 0.012 B- -898.540 1.176 168 934217.889 2.217 + 29 99 70 169 Yb -n -60377.101 2.054 8104.529 0.012 B- -2293.000 3.000 168 935182.512 2.204 + 27 98 71 169 Lu - -58084.101 3.636 8086.332 0.022 B- -3367.211 28.180 168 937644.149 3.903 + 25 97 72 169 Hf x -54716.889 27.945 8061.778 0.165 B- -4426.459 39.520 168 941259.000 30.000 + 23 96 73 169 Ta x -50290.430 27.945 8030.957 0.165 B- -5372.713 31.925 168 946011.000 30.000 + 21 95 74 169 W -44917.716 15.436 7994.537 0.091 B- -6508.552 19.173 168 951778.845 16.571 + 19 94 75 169 Re +a -38409.165 11.374 7951.395 0.067 B- -7686.234 27.618 168 958766.063 12.210 + 17 93 76 169 Os -a -30722.931 25.167 7901.285 0.149 B- -8645.115 35.299 168 967017.574 27.018 + 15 92 77 169 Ir +a -22077.816 24.760 7845.501 0.147 B- -9565# 204# 168 976298.488 26.580 + 13 91 78 169 Pt -a -12513# 202# 7784# 1# B- -10724# 360# 168 986567# 217# + 11 90 79 169 Au x -1788# 298# 7716# 2# B- * 168 998080# 320# +0 40 105 65 170 Tb x -46724# 401# 8047# 2# B- 6940# 446# 169 949840# 430# + 38 104 66 170 Dy x -53663# 196# 8083# 1# B- 2576# 202# 169 942390# 210# + 36 103 67 170 Ho + -56239.094 50.057 8093.799 0.294 B- 3870.000 50.000 169 939624.846 53.738 + 34 102 68 170 Er -60109.094 2.381 8111.961 0.014 B- -312.798 1.868 169 935470.230 2.556 + 32 101 69 170 Tm -59796.295 2.066 8105.519 0.012 B- 968.433 0.805 169 935806.032 2.218 + 30 100 70 170 Yb -60764.729 2.059 8106.614 0.012 B- -3457.695 16.843 169 934766.376 2.210 + 28 99 71 170 Lu - -57307.034 16.968 8081.673 0.100 B- -1053.179 32.693 169 938478.365 18.216 + 26 98 72 170 Hf x -56253.854 27.945 8070.875 0.164 B- -6116.190 39.520 169 939609.000 30.000 + 24 97 73 170 Ta x -50137.665 27.945 8030.296 0.164 B- -2847.193 30.904 169 946175.000 30.000 + 22 96 74 170 W -47290.471 13.196 8008.946 0.078 B- -8372.718 28.975 169 949231.588 14.167 + 20 95 75 170 Re x -38917.753 25.795 7955.092 0.152 B- -4991.302 27.599 169 958220.071 27.692 + 18 94 76 170 Os -33926.451 9.814 7921.130 0.058 B- -10567# 89# 169 963578.454 10.536 + 16 93 77 170 Ir -a -23360# 89# 7854# 1# B- -7055# 89# 169 974922# 95# + 14 92 78 170 Pt -16304.550 18.507 7808.267 0.109 B- -12553# 203# 169 982496.345 19.868 + 12 91 79 170 Au -p -3752# 202# 7730# 1# B- * 169 995972# 217# +0 41 106 65 171 Tb x -44032# 503# 8031# 3# B- 6157# 585# 170 952730# 540# + 39 105 66 171 Dy x -50189# 298# 8063# 2# B- 4330# 670# 170 946120# 320# + 37 104 67 171 Ho + -54519.391 600.005 8083.611 3.509 B- 3200.000 600.000 170 941471.022 644.131 + 35 103 68 171 Er -57719.391 2.392 8097.749 0.014 B- 1492.076 1.276 170 938035.681 2.568 + 33 102 69 171 Tm -59211.468 2.232 8101.899 0.013 B- 96.561 0.972 170 936433.871 2.396 + 31 101 70 171 Yb -59308.029 2.019 8097.889 0.012 B- -1478.049 1.916 170 936330.208 2.167 + 29 100 71 171 Lu -57829.979 2.504 8084.670 0.015 B- -2398.634 28.985 170 937916.960 2.688 + 27 99 72 171 Hf x -55431.345 28.876 8066.068 0.169 B- -3711.072 40.184 170 940492.000 31.000 + 25 98 73 171 Ta x -51720.273 27.945 8039.791 0.163 B- -4634.183 39.520 170 944476.000 30.000 + 23 97 74 171 W x -47086.090 27.945 8008.115 0.163 B- -5835.810 39.520 170 949451.000 30.000 + 21 96 75 171 Re x -41250.280 27.945 7969.412 0.163 B- -6947.054 33.143 170 955716.000 30.000 + 19 95 76 171 Os -34303.227 17.820 7924.211 0.104 B- -7886.292 42.607 170 963173.969 19.131 + 17 94 77 171 Ir -a -26416.935 38.701 7873.517 0.226 B- -8946.996 82.401 170 971640.252 41.547 + 15 93 78 171 Pt -a -17469.939 72.747 7816.621 0.425 B- -9902.288 75.702 170 981245.248 78.097 + 13 92 79 171 Au -p -7567.651 20.944 7754.137 0.122 B- -10855# 307# 170 991875.791 22.483 + 11 91 80 171 Hg -a 3288# 307# 7686# 2# B- * 171 003529# 329# +0 40 106 66 172 Dy x -48009# 298# 8050# 2# B- 3474# 357# 171 948460# 320# + 38 105 67 172 Ho x -51484# 196# 8066# 1# B- 5000# 196# 171 944730# 210# + 36 104 68 172 Er -56484.065 4.407 8090.413 0.026 B- 890.823 4.544 171 939361.858 4.731 + 34 103 69 172 Tm -57374.888 5.812 8091.044 0.034 B- 1881.291 5.506 171 938405.521 6.239 + 32 102 70 172 Yb -59256.179 2.018 8097.433 0.012 B- -2518.043 2.367 171 936385.872 2.166 + 30 101 71 172 Lu -56738.135 2.771 8078.245 0.016 B- -335.910 24.585 171 939089.103 2.974 + 28 100 72 172 Hf x -56402.225 24.428 8071.743 0.142 B- -5072.248 37.117 171 939449.716 26.224 + 26 99 73 172 Ta x -51329.977 27.945 8037.705 0.162 B- -2232.791 39.520 171 944895.000 30.000 + 24 98 74 172 W x -49097.186 27.945 8020.175 0.162 B- -7570.872 48.442 171 947292.000 30.000 + 22 97 75 172 Re -41526.314 39.570 7971.610 0.230 B- -4282.685 41.583 171 955419.665 42.479 + 20 96 76 172 Os -37243.629 12.783 7942.162 0.074 B- -9864.260 34.833 171 960017.317 13.722 + 18 95 77 172 Ir -a -27379.369 32.402 7880.263 0.188 B- -6281.889 34.395 171 970607.036 34.785 + 16 94 78 172 Pt -21097.480 11.538 7839.192 0.067 B- -11728.779 76.047 171 977350.921 12.386 + 14 93 79 172 Au -a -9368.702 75.166 7766.453 0.437 B- -8259.262 140.853 171 989942.284 80.694 + 12 92 80 172 Hg -a -1109.439 158.177 7713.885 0.920 B- * 171 998808.967 169.809 +0 41 107 66 173 Dy x -43939# 401# 8027# 2# B- 5412# 499# 172 952830# 430# + 39 106 67 173 Ho x -49351# 298# 8054# 2# B- 4304# 357# 172 947020# 320# + 37 105 68 173 Er x -53654# 196# 8074# 1# B- 2600# 196# 172 942400# 210# + 35 104 69 173 Tm p2n -56254.440 4.941 8084.453 0.029 B- 1297.789 4.518 172 939608.371 5.304 + 33 103 70 173 Yb -57552.229 2.013 8087.433 0.012 B- -669.644 1.648 172 938215.136 2.160 + 31 102 71 173 Lu -56882.585 2.161 8079.040 0.012 B- -1470.802 28.028 172 938934.029 2.319 + 29 101 72 173 Hf x -55411.784 27.945 8066.016 0.162 B- -3015.246 39.520 172 940513.000 30.000 + 27 100 73 173 Ta x -52396.538 27.945 8044.064 0.162 B- -3669.155 39.520 172 943750.000 30.000 + 25 99 74 173 W x -48727.383 27.945 8018.333 0.162 B- -5173.518 39.520 172 947689.000 30.000 + 23 98 75 173 Re x -43553.865 27.945 7983.906 0.162 B- -6115.692 31.697 172 953243.000 30.000 + 21 97 76 173 Os -37438.173 14.959 7944.033 0.086 B- -7169.868 18.583 172 959808.465 16.059 + 19 96 77 173 Ir -30268.305 11.026 7898.066 0.064 B- -8325.155 57.052 172 967505.636 11.837 + 17 95 78 173 Pt -a -21943.150 55.977 7845.422 0.324 B- -9126.654 61.007 172 976443.058 60.093 + 15 94 79 173 Au +a -12816.496 24.267 7788.144 0.140 B- -10107# 204# 172 986240.924 26.052 + 13 93 80 173 Hg -a -2710# 202# 7725# 1# B- * 172 997091# 217# +0 40 107 67 174 Ho x -45690# 298# 8033# 2# B- 6260# 422# 173 950950# 320# + 38 106 68 174 Er x -51949# 298# 8064# 2# B- 1916# 301# 173 944230# 320# + 36 105 69 174 Tm + -53865.547 44.767 8070.648 0.257 B- 3080.000 44.721 173 942172.953 48.058 + 34 104 70 174 Yb -56945.547 2.013 8083.853 0.012 B- -1373.411 1.607 173 938866.437 2.160 + 32 103 71 174 Lu -55572.136 2.149 8071.464 0.012 B- 274.523 2.169 173 940340.854 2.307 + 30 102 72 174 Hf -55846.659 2.651 8068.545 0.015 B- -4105.893 28.070 173 940046.141 2.845 + 28 101 73 174 Ta x -51740.766 27.945 8040.452 0.161 B- -1513.678 39.520 173 944454.000 30.000 + 26 100 74 174 W x -50227.088 27.945 8027.256 0.161 B- -6553.992 39.520 173 946079.000 30.000 + 24 99 75 174 Re x -43673.096 27.945 7985.094 0.161 B- -3678.011 29.767 173 953115.000 30.000 + 22 98 76 174 Os -39995.085 10.256 7959.459 0.059 B- -9126.348 29.506 173 957063.507 11.010 + 20 97 77 174 Ir -a -30868.738 27.666 7902.513 0.159 B- -5550.291 29.553 173 966861.045 29.700 + 18 96 78 174 Pt -a -25318.446 10.390 7866.118 0.060 B- -11083# 89# 173 972819.528 11.154 + 16 95 79 174 Au -a -14236# 89# 7798# 1# B- -7589# 89# 173 984717# 95# + 14 94 80 174 Hg -a -6646.444 19.459 7749.816 0.112 B- * 173 992864.748 20.890 +0 41 108 67 175 Ho x -43203# 401# 8019# 2# B- 5449# 566# 174 953620# 430# + 39 107 68 175 Er x -48652# 401# 8045# 2# B- 3660# 404# 174 947770# 430# + 37 106 69 175 Tm + -52311.585 50.041 8061.772 0.286 B- 2385.000 50.000 174 943841.200 53.720 + 35 105 70 175 Yb -54696.585 2.013 8070.930 0.012 B- 470.968 1.255 174 941280.797 2.161 + 33 104 71 175 Lu -55167.553 1.902 8069.151 0.011 B- -683.712 1.951 174 940775.191 2.041 + 31 103 72 175 Hf -54483.841 2.670 8060.774 0.015 B- -2075.194 28.072 174 941509.187 2.866 + 29 102 73 175 Ta x -52408.647 27.945 8044.445 0.160 B- -2775.852 39.520 174 943737.000 30.000 + 27 101 74 175 W x -49632.795 27.945 8024.112 0.160 B- -4344.488 39.520 174 946717.000 30.000 + 25 100 75 175 Re x -45288.307 27.945 7994.816 0.160 B- -5183.125 30.325 174 951381.000 30.000 + 23 99 76 175 Os -40105.182 11.776 7960.728 0.067 B- -6710.740 17.089 174 956945.313 12.641 + 21 98 77 175 Ir -33394.442 12.384 7917.910 0.071 B- -7694.263 21.825 174 964149.589 13.295 + 19 97 78 175 Pt -25700.179 17.972 7869.472 0.103 B- -8284.700 43.278 174 972409.721 19.293 + 17 96 79 175 Au -a -17415.479 39.370 7817.661 0.225 B- -9442.587 82.848 174 981303.712 42.265 + 15 95 80 175 Hg -a -7972.892 72.896 7759.232 0.417 B- * 174 991440.747 78.257 +0 40 108 68 176 Er x -46631# 401# 8034# 2# B- 2739# 413# 175 949940# 430# + 38 107 69 176 Tm + -49369.695 100.025 8045.111 0.568 B- 4120.000 100.000 175 946999.449 107.381 + 36 106 70 176 Yb -53489.695 2.249 8064.075 0.013 B- -105.476 1.614 175 942576.447 2.414 + 34 105 71 176 Lu -53384.219 1.900 8059.031 0.011 B- 1194.223 0.874 175 942689.680 2.039 + 32 104 72 176 Hf -54578.442 2.041 8061.371 0.012 B- -3213.068 30.807 175 941407.628 2.190 + 30 103 73 176 Ta x -51365.374 30.739 8038.670 0.175 B- -723.771 41.543 175 944857.000 33.000 + 28 102 74 176 W x -50641.603 27.945 8030.112 0.159 B- -5578.718 39.520 175 945634.000 30.000 + 26 101 75 176 Re x -45062.885 27.945 7993.970 0.159 B- -2964.945 39.520 175 951623.000 30.000 + 24 100 76 176 Os x -42097.940 27.945 7972.679 0.159 B- -8238.496 34.636 175 954806.000 30.000 + 22 99 77 176 Ir -33859.444 20.463 7921.424 0.116 B- -4925.715 24.097 175 963650.389 21.968 + 20 98 78 176 Pt -28933.729 12.725 7888.992 0.072 B- -10537.126 35.522 175 968938.362 13.661 + 18 97 79 176 Au -a -18396.604 33.165 7824.676 0.188 B- -6623.324 35.528 175 980250.432 35.604 + 16 96 80 176 Hg -11773.280 12.741 7782.599 0.072 B- -12354.558 76.159 175 987360.863 13.677 + 14 95 81 176 Tl -p 581.278 75.086 7707.957 0.427 B- * 176 000624.028 80.607 +0 41 109 68 177 Er x -42858# 503# 8013# 3# B- 4611# 585# 176 953990# 540# + 39 108 69 177 Tm x -47469# 298# 8035# 2# B- 3516# 298# 176 949040# 320# + 37 107 70 177 Yb -n -50984.778 2.260 8049.964 0.013 B- 1401.024 1.620 176 945265.586 2.425 + 35 106 71 177 Lu -52385.802 1.901 8053.459 0.011 B- 497.239 0.789 176 943761.525 2.040 + 33 105 72 177 Hf -52883.041 1.892 8051.849 0.011 B- -1166.000 3.000 176 943227.717 2.031 + 31 104 73 177 Ta - -51717.041 3.547 8040.841 0.020 B- -2015.315 28.169 176 944479.469 3.807 + 29 103 74 177 W x -49701.725 27.945 8025.035 0.158 B- -3432.555 39.520 176 946643.000 30.000 + 27 102 75 177 Re x -46269.170 27.945 8001.222 0.158 B- -4319.923 32.062 176 950328.000 30.000 + 25 101 76 177 Os +a -41949.247 15.718 7972.396 0.089 B- -5901.826 25.249 176 954965.628 16.873 + 23 100 77 177 Ir x -36047.421 19.760 7934.632 0.112 B- -6676.984 24.801 176 961301.500 21.213 + 21 99 78 177 Pt -29370.436 14.988 7892.489 0.085 B- -7825.389 18.297 176 968469.537 16.090 + 19 98 79 177 Au -21545.047 10.496 7843.858 0.059 B- -8762.453 75.786 176 976870.439 11.268 + 17 97 80 177 Hg -a -12782.594 75.056 7789.932 0.424 B- -9457.933 78.553 176 986277.319 80.575 + 15 96 81 177 Tl IT -3324.661 23.186 7732.078 0.131 B- * 176 996430.829 24.891 +0 40 109 69 178 Tm x -44116# 401# 8016# 2# B- 5578# 401# 177 952640# 430# + 38 108 70 178 Yb -nn -49693.859 10.250 8042.832 0.058 B- 645.923 10.303 177 946651.444 11.003 + 36 107 71 178 Lu -50339.782 2.681 8042.065 0.015 B- 2097.896 2.056 177 945958.018 2.878 + 34 106 72 178 Hf -52437.678 1.890 8049.456 0.011 B- -1837# 52# 177 943705.833 2.029 + 32 105 73 178 Ta IT -50601# 52# 8035# 0# B- -191# 50# 177 945678# 56# + 30 104 74 178 W - -50409.378 15.250 8029.271 0.086 B- -4755.926 31.835 177 945883.303 16.371 + 28 103 75 178 Re x -45653.453 27.945 7998.157 0.157 B- -2109.487 31.093 177 950989.000 30.000 + 26 102 76 178 Os -43543.966 13.633 7981.911 0.077 B- -7292.082 24.007 177 953253.627 14.635 + 24 101 77 178 Ir x -36251.884 19.760 7936.549 0.111 B- -4254.621 22.208 177 961082.000 21.213 + 22 100 78 178 Pt -31997.263 10.135 7908.251 0.057 B- -9671.141 58.036 177 965649.523 10.880 + 20 99 79 178 Au -a -22326.122 57.144 7849.524 0.321 B- -6009.858 58.157 177 976031.920 61.346 + 18 98 80 178 Hg -a -16316.264 10.808 7811.365 0.061 B- -11523# 103# 177 982483.769 11.602 + 16 97 81 178 Tl -a -4794# 102# 7742# 1# B- -8362# 103# 177 994854# 109# + 14 96 82 178 Pb -a 3568.780 24.162 7690.861 0.136 B- * 178 003831.243 25.938 +0 41 110 69 179 Tm x -41601# 503# 8002# 3# B- 4937# 540# 178 955340# 540# + 39 109 70 179 Yb x -46537# 196# 8025# 1# B- 2523# 196# 178 950040# 210# + 37 108 71 179 Lu -49060.918 5.351 8035.084 0.030 B- 1404.435 5.067 178 947330.935 5.744 + 35 107 72 179 Hf -50465.352 1.890 8038.560 0.011 B- -105.578 0.409 178 945823.212 2.028 + 33 106 73 179 Ta -50359.774 1.925 8033.599 0.011 B- -1062.358 14.520 178 945936.555 2.066 + 31 105 74 179 W -49297.416 14.620 8023.294 0.082 B- -2712.592 26.817 178 947077.043 15.694 + 29 104 75 179 Re -46584.825 24.640 8003.769 0.138 B- -3565.527 29.657 178 949989.130 26.452 + 27 103 76 179 Os -43019.298 16.505 7979.479 0.092 B- -4939.989 19.160 178 953816.881 17.718 + 25 102 77 179 Ir -38079.308 9.732 7947.511 0.054 B- -5811.382 12.584 178 959120.178 10.447 + 23 101 78 179 Pt -32267.927 7.978 7910.674 0.045 B- -7279.346 14.157 178 965358.953 8.564 + 21 100 79 179 Au -24988.580 11.696 7865.637 0.065 B- -8064.573 29.660 178 973173.654 12.555 + 19 99 80 179 Hg -16924.007 27.257 7816.213 0.152 B- -8643.674 48.136 178 981831.329 29.261 + 17 98 81 179 Tl -a -8280.333 39.675 7763.553 0.222 B- -10330.656 85.370 178 991110.696 42.592 + 15 97 82 179 Pb -a 2050.323 75.590 7701.469 0.422 B- * 179 002201.112 81.149 +0 40 110 70 180 Yb x -44600# 298# 8015# 2# B- 2079# 306# 179 952120# 320# + 38 109 71 180 Lu + -46678.794 70.736 8022.052 0.393 B- 3103.000 70.711 179 949888.250 75.938 + 36 108 72 180 Hf -49781.794 1.893 8034.944 0.011 B- -845.601 2.596 179 946557.042 2.032 + 34 107 73 180 Ta +n -48936.193 2.278 8025.900 0.013 B- 702.372 2.605 179 947464.832 2.445 + 32 106 74 180 W -49638.565 1.904 8025.456 0.011 B- -3801.207 21.477 179 946710.805 2.043 + 30 105 75 180 Re x -45837.359 21.392 7999.991 0.119 B- -1475.409 26.860 179 950791.568 22.965 + 28 104 76 180 Os -44361.950 16.244 7987.448 0.090 B- -6384.424 27.111 179 952375.485 17.438 + 26 103 77 180 Ir x -37977.526 21.706 7947.633 0.121 B- -3542.014 24.324 179 959229.446 23.302 + 24 102 78 180 Pt +a -34435.511 10.978 7923.609 0.061 B- -8841.221 22.830 179 963031.955 11.784 + 22 101 79 180 Au -25594.291 20.017 7870.144 0.111 B- -5343.923 23.679 179 972523.397 21.489 + 20 100 80 180 Hg -20250.367 12.650 7836.110 0.070 B- -10988.079 61.318 179 978260.335 13.580 + 18 99 81 180 Tl -a -9262.288 59.999 7770.718 0.333 B- -7332.499 61.581 179 990056.524 64.411 + 16 98 82 180 Pb -a -1929.789 13.868 7725.636 0.077 B- * 179 997928.286 14.888 +0 41 111 70 181 Yb x -41088# 298# 7996# 2# B- 3709# 338# 180 955890# 320# + 39 110 71 181 Lu x -44797.410 159.285 8011.929 0.880 B- 2607.868 159.297 180 951908.000 171.000 + 37 109 72 181 Hf -n -47405.277 1.894 8022.015 0.010 B- 1036.352 2.226 180 949108.338 2.033 + 35 108 73 181 Ta -48441.629 1.844 8023.418 0.010 B- -188.175 4.536 180 947995.769 1.979 + 33 107 74 181 W -48253.454 4.734 8018.056 0.026 B- -1732.476 13.400 180 948197.783 5.081 + 31 106 75 181 Re 4n -46520.978 12.583 8004.162 0.070 B- -2971.015 28.291 180 950057.673 13.508 + 29 105 76 181 Os -43549.963 25.338 7983.426 0.140 B- -4078.330 36.039 180 953247.188 27.201 + 27 104 77 181 Ir x -39471.633 25.627 7956.571 0.142 B- -5097.258 29.625 180 957625.456 27.512 + 25 103 78 181 Pt x -34374.375 14.863 7924.087 0.082 B- -6503.187 24.899 180 963097.588 15.956 + 23 102 79 181 Au -a -27871.188 19.976 7883.835 0.110 B- -7210.066 25.212 180 970079.047 21.445 + 21 101 80 181 Hg -20661.122 15.383 7839.678 0.085 B- -7862.376 17.876 180 977819.371 16.513 + 19 100 81 181 Tl -12798.747 9.108 7791.918 0.050 B- -9681.326 75.959 180 986259.979 9.778 + 17 99 82 181 Pb -a -3117.421 75.411 7734.107 0.417 B- * 180 996653.310 80.957 +0 40 111 71 182 Lu x -41880# 196# 7996# 1# B- 4172# 196# 181 955040# 210# + 38 110 72 182 Hf -nn -46051.959 6.292 8014.850 0.035 B- 381.290 6.400 181 950561.185 6.754 + 36 109 73 182 Ta -46433.249 1.845 8012.647 0.010 B- 1814.465 1.702 181 950151.853 1.980 + 34 108 74 182 W -48247.714 0.843 8018.318 0.005 B- -2800.000 101.980 181 948203.945 0.905 + 32 107 75 182 Re IT -45447.714 101.984 7998.634 0.560 B- -838.641 104.276 181 951209.869 109.484 + 30 106 76 182 Os -44609.073 21.745 7989.728 0.119 B- -5557.395 30.207 181 952110.187 23.344 + 28 105 77 182 Ir -39051.678 20.967 7954.894 0.115 B- -2883.465 24.721 181 958076.296 22.509 + 26 104 78 182 Pt -36168.213 13.096 7934.752 0.072 B- -7867.445 24.124 181 961171.823 14.058 + 24 103 79 182 Au -a -28300.768 20.260 7887.226 0.111 B- -4724.051 22.502 181 969617.874 21.749 + 22 102 80 182 Hg -23576.717 9.793 7856.971 0.054 B- -10268.611 59.886 181 974689.351 10.513 + 20 101 81 182 Tl -a -13308.106 59.080 7796.251 0.325 B- -6482.553 60.312 181 985713.159 63.424 + 18 100 82 182 Pb -a -6825.554 12.131 7756.334 0.067 B- * 181 992672.466 13.023 +0 41 112 71 183 Lu x -39716.110 91.286 7984.812 0.499 B- 3570.002 96.107 182 957363.000 98.000 + 39 111 72 183 Hf + -43286.112 30.057 8000.045 0.164 B- 2010.000 30.000 182 953530.444 32.267 + 37 110 73 183 Ta -n -45296.112 1.855 8006.753 0.010 B- 1071.100 1.713 182 951372.620 1.991 + 35 109 74 183 W -46367.212 0.842 8008.331 0.005 B- -556.000 8.000 182 950222.748 0.903 + 33 108 75 183 Re - -45811.212 8.044 8001.018 0.044 B- -2147.169 50.406 182 950819.638 8.635 + 31 107 76 183 Os -43664.042 49.760 7985.010 0.272 B- -3460.732 52.733 182 953124.719 53.420 + 29 106 77 183 Ir -40203.311 24.398 7961.823 0.133 B- -4430.964 28.923 182 956839.968 26.191 + 27 105 78 183 Pt -35772.347 15.534 7933.335 0.085 B- -5583.218 18.147 182 961596.804 16.676 + 25 104 79 183 Au -30189.129 9.382 7898.551 0.051 B- -6384.599 11.757 182 967590.635 10.071 + 23 103 80 183 Hg -23804.531 7.085 7859.387 0.039 B- -7217.268 11.717 182 974444.783 7.606 + 21 102 81 183 Tl -16587.263 9.331 7815.673 0.051 B- -9016.171 29.648 182 982192.839 10.017 + 19 101 82 183 Pb -a -7571.092 28.141 7762.130 0.154 B- * 182 991872.098 30.211 +0 42 113 71 184 Lu x -36412# 298# 7967# 2# B- 5089# 301# 183 960910# 320# + 40 112 72 184 Hf + -41501.557 39.709 7990.733 0.216 B- 1340.000 30.000 183 955446.243 42.628 + 38 111 73 184 Ta + -42841.557 26.015 7993.764 0.141 B- 2866.000 26.000 183 954007.694 27.928 + 36 110 74 184 W -45707.557 0.878 8005.088 0.005 B- -1482.839 4.281 183 950930.916 0.942 + 34 109 75 184 Re -44224.718 4.367 7992.778 0.024 B- 31.925 4.173 183 952522.809 4.688 + 32 108 76 184 Os -44256.643 1.343 7988.699 0.007 B- -4645.792 27.977 183 952488.536 1.441 + 30 107 77 184 Ir x -39610.851 27.945 7959.198 0.152 B- -2272.019 31.907 183 957476.000 30.000 + 28 106 78 184 Pt -37338.832 15.400 7942.599 0.084 B- -7020.122 27.080 183 959915.113 16.532 + 26 105 79 184 Au -a -30318.710 22.275 7900.194 0.121 B- -3970.032 24.443 183 967451.524 23.912 + 24 104 80 184 Hg -26348.678 10.065 7874.366 0.055 B- -9475.458 22.467 183 971713.528 10.805 + 22 103 81 184 Tl -16873.221 20.086 7818.617 0.109 B- -5821.698 23.821 183 981885.851 21.562 + 20 102 82 184 Pb -11051.523 12.807 7782.725 0.070 B- -12238.950 79.145 183 988135.701 13.748 + 18 101 83 184 Bi -a 1187.428 78.102 7711.957 0.424 B- * 184 001274.756 83.845 +0 43 114 71 185 Lu x -33888# 298# 7954# 2# B- 4432# 312# 184 963620# 320# + 41 113 72 185 Hf x -38319.800 91.286 7973.970 0.493 B- 3076.646 92.380 184 958862.000 98.000 + 39 112 73 185 Ta + -41396.446 14.172 7986.372 0.077 B- 1993.500 14.142 184 955559.084 15.214 + 37 111 74 185 W -43389.946 0.925 7992.919 0.005 B- 432.668 0.860 184 953418.974 0.993 + 35 110 75 185 Re -43822.614 1.235 7991.029 0.007 B- -1012.771 0.447 184 952954.486 1.326 + 33 109 76 185 Os -42809.843 1.313 7981.325 0.007 B- -2474.289 27.976 184 954041.741 1.410 + 31 108 77 185 Ir x -40335.553 27.945 7963.722 0.151 B- -3647.414 38.055 184 956698.000 30.000 + 29 107 78 185 Pt -36688.140 25.832 7939.777 0.140 B- -4821.329 36.671 184 960613.659 27.731 + 27 106 79 185 Au -a -31866.811 26.028 7909.487 0.141 B- -5691.260 30.312 184 965789.569 27.942 + 25 105 80 185 Hg -a -26175.551 15.536 7874.495 0.084 B- -6417.679 25.861 184 971899.388 16.678 + 23 104 81 185 Tl IT -19757.872 20.674 7835.576 0.112 B- -8216.665 26.249 184 978789.050 22.194 + 21 103 82 185 Pb -a -11541.207 16.175 7786.932 0.087 B- -9305# 83# 184 987610.004 17.364 + 19 102 83 185 Bi IT -2236# 81# 7732# 0# B- * 184 997600# 87# +0 42 114 72 186 Hf x -36424.210 54.958 7964.302 0.295 B- 2185.595 81.380 185 960897.000 59.000 + 40 113 73 186 Ta + -38609.805 60.020 7971.847 0.323 B- 3901.000 60.000 185 958550.667 64.433 + 38 112 74 186 W -42510.805 1.542 7988.614 0.008 B- -580.156 1.318 185 954362.771 1.655 + 36 111 75 186 Re -41930.648 1.245 7981.288 0.007 B- 1071.731 1.002 185 954985.595 1.336 + 34 110 76 186 Os -43002.379 1.487 7982.844 0.008 B- -3827.610 16.592 185 953835.044 1.596 + 32 109 77 186 Ir x -39174.769 16.526 7958.060 0.089 B- -1310.295 27.312 185 957944.153 17.740 + 30 108 78 186 Pt -37864.474 21.745 7946.809 0.117 B- -6149.622 30.207 185 959350.812 23.344 + 28 107 79 186 Au -31714.852 20.967 7909.540 0.113 B- -3175.993 23.988 185 965952.703 22.509 + 26 106 80 186 Hg -28538.859 11.653 7888.259 0.063 B- -8652.247 25.211 185 969362.272 12.509 + 24 105 81 186 Tl x -19886.613 22.356 7837.535 0.120 B- -5204.713 25.079 185 978650.841 24.000 + 22 104 82 186 Pb -a -14681.900 11.366 7805.347 0.061 B- -11555.509 61.348 185 984238.331 12.201 + 20 103 83 186 Bi -a -3126.391 60.286 7739.014 0.324 B- -7218.669 68.714 185 996643.681 64.719 + 18 102 84 186 Po -a 4092.278 32.973 7695.998 0.177 B- * 186 004393.241 35.398 +0 43 115 72 187 Hf x -32817# 298# 7946# 2# B- 4084# 305# 186 964770# 320# + 41 114 73 187 Ta x -36900.203 66.136 7963.236 0.354 B- 3006.079 66.154 186 960386.000 71.000 + 39 113 74 187 W -39906.282 1.542 7975.128 0.008 B- 1312.261 1.189 186 957158.841 1.655 + 37 112 75 187 Re -41218.543 1.500 7977.962 0.008 B- 2.467 0.002 186 955750.071 1.609 + 35 111 76 187 Os -41221.010 1.500 7973.791 0.008 B- -1671.638 27.985 186 955747.422 1.609 + 33 110 77 187 Ir x -39549.372 27.945 7960.668 0.149 B- -2864.323 36.868 186 957542.000 30.000 + 31 109 78 187 Pt -36685.050 24.048 7941.168 0.129 B- -3657.212 27.377 186 960616.976 25.816 + 29 108 79 187 Au -33027.838 22.308 7917.427 0.119 B- -4910.159 26.288 186 964543.155 23.948 + 27 107 80 187 Hg -28117.679 13.908 7886.985 0.074 B- -5674.587 16.125 186 969814.428 14.930 + 25 106 81 187 Tl -22443.092 8.161 7852.456 0.044 B- -7456.187 9.620 186 975906.348 8.760 + 23 105 82 187 Pb -14986.905 5.094 7808.400 0.027 B- -8603.549 11.227 186 983910.895 5.468 + 21 104 83 187 Bi -a -6383.356 10.005 7758.208 0.054 B- -9216.080 33.422 186 993147.184 10.740 + 19 103 84 187 Po -a 2832.724 31.890 7704.740 0.171 B- * 187 003041.054 34.234 +0 44 116 72 188 Hf x -30879# 298# 7936# 2# B- 2733# 305# 187 966850# 320# + 42 115 73 188 Ta x -33612.030 66.136 7946.321 0.352 B- 5057.847 66.221 187 963916.000 71.000 + 40 114 74 188 W + -38669.876 3.354 7969.063 0.018 B- 349.000 3.000 187 958486.177 3.600 + 38 113 75 188 Re -n -39018.876 1.500 7966.758 0.008 B- 2120.394 0.153 187 958111.510 1.610 + 36 112 76 188 Os -41139.270 1.506 7973.875 0.008 B- -2787.888 9.496 187 955835.174 1.616 + 34 111 77 188 Ir -38351.382 9.561 7954.885 0.051 B- -522.376 8.698 187 958828.095 10.264 + 32 110 78 188 Pt -37829.006 5.641 7947.945 0.030 B- -5552.173 16.391 187 959388.889 6.056 + 30 109 79 188 Au -32276.833 15.391 7914.250 0.082 B- -2065.584 15.311 187 965349.392 16.522 + 28 108 80 188 Hg -30211.250 11.280 7899.102 0.060 B- -7874.849 31.961 187 967566.887 12.109 + 26 107 81 188 Tl x -22336.400 29.904 7853.053 0.159 B- -4521.405 31.736 187 976020.886 32.103 + 24 106 82 188 Pb -a -17814.995 10.626 7824.841 0.057 B- -10630.329 23.261 187 980874.815 11.407 + 22 105 83 188 Bi -a -7184.666 20.693 7764.136 0.110 B- -6640.273 28.760 187 992286.943 22.214 + 20 104 84 188 Po -a -544.393 19.973 7724.654 0.106 B- * 187 999415.569 21.442 +0 45 117 72 189 Hf x -27162# 298# 7917# 2# B- 4667# 422# 188 970840# 320# + 43 116 73 189 Ta x -31829# 298# 7938# 2# B- 3788# 301# 188 965830# 320# + 41 115 74 189 W x -35617.536 40.986 7953.454 0.217 B- 2363.182 41.821 188 961763.000 44.000 + 39 114 75 189 Re +p -37980.718 8.318 7961.818 0.044 B- 1007.744 8.167 188 959226.020 8.929 + 37 113 76 189 Os -38988.462 1.578 7963.011 0.008 B- -531.759 12.693 188 958144.162 1.694 + 35 112 77 189 Ir -38456.703 12.777 7956.058 0.068 B- -1971.278 13.954 188 958715.028 13.716 + 33 111 78 189 Pt -36485.425 11.232 7941.489 0.059 B- -2903.471 23.009 188 960831.282 12.057 + 31 110 79 189 Au x -33581.954 20.081 7921.987 0.106 B- -3955.720 37.401 188 963948.286 21.558 + 29 109 80 189 Hg -29626.234 31.553 7896.918 0.167 B- -5024.054 33.380 188 968194.927 33.873 + 27 108 81 189 Tl +a -24602.181 10.891 7866.196 0.058 B- -6724.016 36.145 188 973588.471 11.692 + 25 107 82 189 Pb x -17878.164 34.465 7826.480 0.182 B- -7813.358 40.282 188 980807.000 37.000 + 23 106 83 189 Bi -a -10064.807 20.851 7781.000 0.110 B- -8642.816 30.354 188 989194.984 22.384 + 21 105 84 189 Po -a -1421.991 22.060 7731.131 0.117 B- * 188 998473.429 23.681 +0 44 117 73 190 Ta x -28513# 196# 7921# 1# B- 5868# 199# 189 969390# 210# + 42 116 74 190 W -34380.894 38.876 7947.566 0.205 B- 1254.097 63.503 189 963090.589 41.735 + 40 115 75 190 Re -35634.992 70.542 7950.049 0.371 B- 3074.450 70.551 189 961744.260 75.729 + 38 114 76 190 Os -38709.442 1.588 7962.112 0.008 B- -1953.820 1.223 189 958443.702 1.705 + 36 113 77 190 Ir +n -36755.621 1.963 7947.712 0.010 B- 569.616 5.665 189 960541.215 2.107 + 34 112 78 190 Pt -37325.237 5.834 7946.592 0.031 B- -4442.000 15.000 189 959929.707 6.263 + 32 111 79 190 Au - -32883.237 16.095 7919.095 0.085 B- -1513.068 22.631 189 964698.390 17.278 + 30 110 80 190 Hg -31370.170 15.913 7907.014 0.084 B- -6991# 53# 189 966322.735 17.083 + 28 109 81 190 Tl IT -24379# 50# 7866# 0# B- -3963# 52# 189 973828# 54# + 26 108 82 190 Pb -a -20416.486 12.516 7841.128 0.066 B- -9817.539 25.864 189 978081.999 13.436 + 24 107 83 190 Bi -a -10598.947 22.634 7785.339 0.119 B- -6035.157 26.337 189 988621.561 24.298 + 22 106 84 190 Po -a -4563.790 13.467 7749.458 0.071 B- * 189 995100.569 14.457 +0 45 118 73 191 Ta x -26492# 298# 7911# 2# B- 4684# 301# 190 971560# 320# + 43 117 74 191 W x -31176.173 44.712 7931.435 0.234 B- 3175.881 45.897 190 966531.000 48.000 + 41 116 75 191 Re +p -34352.054 10.365 7943.967 0.054 B- 2044.806 10.245 190 963121.551 11.127 + 39 115 76 191 Os -36396.860 1.592 7950.576 0.008 B- 313.977 1.151 190 960926.361 1.708 + 37 114 77 191 Ir -36710.837 1.922 7948.124 0.010 B- -1009.384 3.924 190 960589.293 2.063 + 35 113 78 191 Pt -35701.452 4.960 7938.743 0.026 B- -1890.315 37.023 190 961672.912 5.325 + 33 112 79 191 Au -33811.138 37.054 7924.750 0.194 B- -3218.230 40.065 190 963702.248 39.779 + 31 111 80 191 Hg -30592.908 22.591 7903.805 0.118 B- -4310.059 23.756 190 967157.160 24.251 + 29 110 81 191 Tl +a -26282.849 7.349 7877.143 0.038 B- -6047.073 38.892 190 971784.199 7.889 + 27 109 82 191 Pb x -20235.776 38.191 7841.387 0.200 B- -6996.039 38.918 190 978276.000 41.000 + 25 108 83 191 Bi -13239.737 7.486 7800.663 0.039 B- -8170.977 10.319 190 985786.556 8.036 + 23 107 84 191 Po -5068.760 7.103 7753.787 0.037 B- -8932.513 17.600 190 994558.462 7.625 + 21 106 85 191 At -a 3863.753 16.103 7702.923 0.084 B- * 191 004147.909 17.287 +0 46 119 73 192 Ta x -23157# 401# 7894# 2# B- 6493# 446# 191 975140# 430# + 44 118 74 192 W x -29649# 196# 7924# 1# B- 1939# 210# 191 968170# 210# + 42 117 75 192 Re x -31588.825 76.383 7930.238 0.398 B- 4295.120 76.431 191 966088.000 82.000 + 40 116 76 192 Os -35883.945 2.726 7948.534 0.014 B- -1046.300 2.400 191 961476.998 2.926 + 38 115 77 192 Ir -34837.645 1.924 7939.010 0.010 B- 1454.529 2.346 191 962600.247 2.065 + 36 114 78 192 Pt -36292.174 3.004 7942.511 0.016 B- -3516.341 15.617 191 961038.746 3.225 + 34 113 79 192 Au - -32775.833 15.904 7920.122 0.083 B- -764.764 22.236 191 964813.694 17.073 + 32 112 80 192 Hg x -32011.069 15.543 7912.064 0.081 B- -6138.823 35.279 191 965634.702 16.686 + 30 111 81 192 Tl x -25872.246 31.671 7876.016 0.165 B- -3306.812 34.005 191 972225.000 34.000 + 28 110 82 192 Pb -a -22565.434 12.382 7854.718 0.064 B- -9029.950 32.750 191 975775.008 13.292 + 26 109 83 192 Bi -a -13535.485 30.319 7803.613 0.158 B- -5464.952 32.291 191 985469.058 32.548 + 24 108 84 192 Po -a -8070.533 11.113 7771.075 0.058 B- -11006.330 34.693 191 991335.925 11.929 + 22 107 85 192 At -a 2935.796 32.865 7709.675 0.171 B- * 192 003151.707 35.281 +0 45 119 74 193 W x -26287# 196# 7908# 1# B- 3949# 199# 192 971780# 210# + 43 118 75 193 Re x -30235.364 38.191 7923.956 0.198 B- 3160.680 38.289 192 967541.000 41.000 + 41 117 76 193 Os -33396.044 2.730 7936.279 0.014 B- 1142.275 2.404 192 964147.870 2.931 + 39 116 77 193 Ir -34538.319 1.932 7938.144 0.010 B- -56.628 0.300 192 962921.587 2.074 + 37 115 78 193 Pt -34481.690 1.952 7933.797 0.010 B- -1075.761 8.889 192 962982.380 2.095 + 35 114 79 193 Au -33405.930 8.681 7924.170 0.045 B- -2343.081 14.371 192 964137.257 9.319 + 33 113 80 193 Hg -31062.849 15.508 7907.976 0.080 B- -3585.637 16.896 192 966652.658 16.648 + 31 112 81 193 Tl x -27477.212 6.707 7885.344 0.035 B- -5282.722 50.028 192 970501.998 7.200 + 29 111 82 193 Pb x -22194.490 49.577 7853.919 0.257 B- -6321.658 50.501 192 976173.234 53.222 + 27 110 83 193 Bi x -15872.832 9.620 7817.110 0.050 B- -7513.305 35.970 192 982959.813 10.327 + 25 109 84 193 Po -a -8359.526 34.659 7774.128 0.180 B- -8291.917 40.856 192 991025.678 37.208 + 23 108 85 193 At -a -67.609 21.632 7727.111 0.112 B- -9110.533 33.144 192 999927.418 23.222 + 21 107 86 193 Rn -a 9042.924 25.112 7675.852 0.130 B- * 193 009707.979 26.959 +0 46 120 74 194 W x -24526# 298# 7899# 2# B- 2711# 357# 193 973670# 320# + 44 119 75 194 Re x -27237# 196# 7909# 1# B- 5200# 196# 193 970760# 210# + 42 118 76 194 Os + -32437.191 2.783 7932.033 0.014 B- 96.600 2.000 193 965177.240 2.987 + 40 117 77 194 Ir -n -32533.791 1.935 7928.498 0.010 B- 2228.772 2.096 193 965073.536 2.077 + 38 116 78 194 Pt -34762.564 0.935 7935.954 0.005 B- -2549.409 2.156 193 962680.850 1.003 + 36 115 79 194 Au +3n -32213.155 2.149 7918.780 0.011 B- -29.210 3.600 193 965417.754 2.307 + 34 114 80 194 Hg x -32183.944 2.888 7914.597 0.015 B- -5246.454 14.268 193 965449.112 3.100 + 32 113 81 194 Tl x -26937.491 13.972 7883.520 0.072 B- -2730.058 22.348 193 971081.412 15.000 + 30 112 82 194 Pb -24207.433 17.441 7865.415 0.090 B- -8171# 54# 193 974012.250 18.723 + 28 111 83 194 Bi -a -16036# 51# 7819# 0# B- -5032# 52# 193 982785# 54# + 26 110 84 194 Po -a -11004.576 12.913 7789.294 0.067 B- -10293.044 30.067 193 988186.101 13.863 + 24 109 85 194 At -a -711.531 27.153 7732.204 0.140 B- -6434.994 31.983 193 999236.139 29.149 + 22 108 86 194 Rn -a 5723.462 16.900 7695.001 0.087 B- * 194 006144.389 18.143 +0 45 120 75 195 Re x -25579# 298# 7902# 2# B- 3933# 304# 194 972540# 320# + 43 119 76 195 Os x -29511.593 60.547 7917.744 0.310 B- 2182.741 60.578 194 968318.000 65.000 + 41 118 77 195 Ir -n -31694.334 1.936 7924.926 0.010 B- 1101.968 2.094 194 965974.730 2.078 + 39 117 78 195 Pt -32796.302 0.927 7926.565 0.005 B- -226.824 1.000 194 964791.719 0.995 + 37 116 79 195 Au -32569.478 1.363 7921.389 0.007 B- -1569.861 23.166 194 965035.225 1.463 + 35 115 80 195 Hg -30999.617 23.145 7909.327 0.119 B- -2844.529 25.659 194 966720.540 24.847 + 33 114 81 195 Tl -28155.088 11.094 7890.727 0.057 B- -4441.973 25.867 194 969774.268 11.909 + 31 113 82 195 Pb x -23713.115 23.367 7863.936 0.120 B- -5687.571 23.957 194 974542.922 25.085 + 29 112 83 195 Bi -18025.544 5.287 7830.757 0.027 B- -6964.549 38.657 194 980648.781 5.675 + 27 111 84 195 Po -a -11060.995 38.293 7791.029 0.196 B- -7585.169 39.361 194 988125.532 41.109 + 25 110 85 195 At -a -3475.827 9.104 7748.119 0.047 B- -8526.083 51.316 194 996268.546 9.773 + 23 109 86 195 Rn -a 5050.256 50.502 7700.384 0.259 B- * 195 005421.673 54.216 +0 46 121 75 196 Re x -22542# 298# 7887# 2# B- 5737# 301# 195 975800# 320# + 44 120 76 196 Os +pp -28278.795 40.059 7912.238 0.204 B- 1159.106 55.496 195 969641.463 43.004 + 42 119 77 196 Ir + -29437.900 38.422 7914.160 0.196 B- 3209.016 38.411 195 968397.112 41.247 + 40 118 78 196 Pt -32646.917 0.918 7926.541 0.005 B- -1506.987 2.985 195 964952.091 0.985 + 38 117 79 196 Au -31139.930 2.985 7914.861 0.015 B- 686.836 3.120 195 966569.908 3.204 + 36 116 80 196 Hg -31826.765 2.955 7914.373 0.015 B- -4330.174 12.465 195 965832.560 3.172 + 34 115 81 196 Tl x -27496.591 12.109 7888.289 0.062 B- -2135.953 18.717 195 970481.193 13.000 + 32 114 82 196 Pb x -25360.638 14.272 7873.400 0.073 B- -7351.608 28.292 195 972774.233 15.322 + 30 113 83 196 Bi x -18009.031 24.428 7831.900 0.125 B- -4526.495 27.493 195 980666.509 26.224 + 28 112 84 196 Po -a -13482.535 12.615 7804.814 0.064 B- -9569.906 33.073 195 985525.902 13.542 + 26 111 85 196 At -a -3912.629 30.573 7751.997 0.156 B- -5883.669 33.803 195 995799.619 32.821 + 24 110 86 196 Rn -a 1971.040 14.419 7717.986 0.074 B- * 196 002115.998 15.479 +0 47 122 75 197 Re x -20502# 298# 7878# 2# B- 4807# 357# 196 977990# 320# + 45 121 76 197 Os x -25309# 196# 7898# 1# B- 2957# 197# 196 972830# 210# + 43 120 77 197 Ir +p -28265.798 20.117 7909.008 0.102 B- 2156.155 20.107 196 969655.415 21.596 + 41 119 78 197 Pt -30421.954 0.879 7915.982 0.004 B- 719.021 0.590 196 967340.687 0.943 + 39 118 79 197 Au -31140.975 0.657 7915.660 0.003 B- -599.939 3.205 196 966568.786 0.705 + 37 117 80 197 Hg -30541.036 3.214 7908.644 0.016 B- -2201.161 16.678 196 967212.847 3.450 + 35 116 81 197 Tl +a -28339.875 16.367 7893.499 0.083 B- -3591.166 17.295 196 969575.890 17.570 + 33 115 82 197 Pb IT -24748.709 5.590 7871.298 0.028 B- -5061.676 10.034 196 973431.166 6.001 + 31 114 83 197 Bi +a -19687.033 8.333 7841.633 0.042 B- -6328.964 50.373 196 978865.099 8.946 + 29 113 84 197 Po -a -13358.069 49.679 7805.535 0.252 B- -7013.838 71.138 196 985659.522 53.332 + 27 112 85 197 At -a -6344.231 50.917 7765.961 0.258 B- -7820.295 62.007 196 993189.187 54.661 + 25 111 86 197 Rn -a 1476.065 35.388 7722.292 0.180 B- * 197 001584.620 37.990 +0 48 123 75 198 Re x -17139# 401# 7862# 2# B- 6697# 446# 197 981600# 430# + 46 122 76 198 Os x -23837# 196# 7891# 1# B- 1984# 277# 197 974410# 210# + 44 121 77 198 Ir x -25821# 196# 7897# 1# B- 4085# 196# 197 972280# 210# + 42 120 78 198 Pt -29905.689 2.165 7914.159 0.011 B- -323.694 2.065 197 967894.920 2.324 + 40 119 79 198 Au -29581.995 0.651 7908.573 0.003 B- 1372.852 0.535 197 968242.420 0.698 + 38 118 80 198 Hg -30954.847 0.480 7911.555 0.002 B- -3460.000 80.000 197 966768.602 0.515 + 36 117 81 198 Tl - -27494.847 80.001 7890.129 0.404 B- -1444.758 81.318 197 970483.065 85.885 + 34 116 82 198 Pb x -26050.089 14.573 7878.881 0.074 B- -6680.603 31.517 197 972034.077 15.645 + 32 115 83 198 Bi x -19369.486 27.945 7841.189 0.141 B- -3896.563 32.935 197 979206.000 30.000 + 30 114 84 198 Po -15472.924 17.430 7817.559 0.088 B- -8752# 54# 197 983389.132 18.711 + 28 113 85 198 At -a -6721# 51# 7769# 0# B- -5491# 52# 197 992784# 54# + 26 112 86 198 Rn -a -1230.357 13.422 7737.724 0.068 B- * 197 998679.156 14.409 +0 47 123 76 199 Os x -20484# 196# 7875# 1# B- 3917# 200# 198 978010# 210# + 45 122 77 199 Ir p-2n -24400.204 41.057 7891.214 0.206 B- 2990.167 41.003 198 973805.301 44.076 + 43 121 78 199 Pt -n -27390.372 2.222 7902.309 0.011 B- 1704.580 2.126 198 970595.224 2.385 + 41 120 79 199 Au -29094.952 0.652 7906.943 0.003 B- 451.438 0.649 198 968765.282 0.699 + 39 119 80 199 Hg -29546.390 0.426 7905.280 0.002 B- -1486.996 27.948 198 968280.643 0.457 + 37 118 81 199 Tl x -28059.394 27.945 7893.877 0.140 B- -2827.718 29.679 198 969877.000 30.000 + 35 117 82 199 Pb +a -25231.676 9.996 7875.736 0.050 B- -4434.219 14.547 198 972912.680 10.730 + 33 116 83 199 Bi -20797.457 10.569 7849.522 0.053 B- -5583.473 25.716 198 977673.010 11.345 + 31 115 84 199 Po -a -15213.984 23.444 7817.533 0.118 B- -6390.551 24.054 198 983667.115 25.167 + 29 114 85 199 At -8823.433 5.384 7781.488 0.027 B- -7323.594 63.209 198 990527.654 5.780 + 27 113 86 199 Rn -a -1499.839 62.979 7740.755 0.316 B- -8261.176 75.602 198 998389.856 67.611 + 25 112 87 199 Fr -a 6761.337 41.825 7695.310 0.210 B- * 199 007258.594 44.900 +0 48 124 76 200 Os x -18779# 298# 7868# 1# B- 2832# 357# 199 979840# 320# + 46 123 77 200 Ir x -21611# 196# 7878# 1# B- 4990# 197# 199 976800# 210# + 44 122 78 200 Pt -nn -26600.853 20.117 7899.206 0.101 B- 639.332 33.442 199 971442.807 21.596 + 42 121 79 200 Au -27240.185 26.716 7898.491 0.134 B- 2263.406 26.718 199 970756.456 28.681 + 40 120 80 200 Hg -29503.591 0.435 7905.896 0.002 B- -2456.040 5.735 199 968326.590 0.467 + 38 119 81 200 Tl - -27047.551 5.751 7889.705 0.029 B- -797.019 12.348 199 970963.258 6.174 + 36 118 82 200 Pb 4n -26250.532 10.938 7881.808 0.055 B- -5879.857 24.849 199 971818.893 11.742 + 34 117 83 200 Bi +a -20370.675 22.312 7848.497 0.112 B- -3416.357 26.552 199 978131.179 23.953 + 32 116 84 200 Po -a -16954.318 14.393 7827.503 0.072 B- -7966.347 28.384 199 981798.790 15.451 + 30 115 85 200 At -a -8987.971 24.465 7783.760 0.122 B- -4973.633 27.609 199 990351.015 26.264 + 28 114 86 200 Rn -a -4014.338 12.795 7754.980 0.064 B- -10149.160 59.987 199 995690.431 13.735 + 26 113 87 200 Fr -a 6134.822 58.606 7700.322 0.293 B- * 200 006586.003 62.916 +0 49 125 76 201 Os x -15239# 298# 7851# 1# B- 4657# 357# 200 983640# 320# + 47 124 77 201 Ir x -19897# 196# 7871# 1# B- 3844# 202# 200 978640# 210# + 45 123 78 201 Pt + -23740.883 50.103 7885.834 0.249 B- 2660.000 50.000 200 974513.112 53.787 + 43 122 79 201 Au -26400.883 3.206 7895.175 0.016 B- 1261.844 3.147 200 971657.484 3.441 + 41 121 80 201 Hg -27662.727 0.646 7897.561 0.003 B- -483.793 14.336 200 970302.839 0.693 + 39 120 81 201 Tl -27178.934 14.342 7891.262 0.071 B- -1919.535 23.614 200 970822.212 15.397 + 37 119 82 201 Pb -25259.399 21.634 7877.820 0.108 B- -3844.740 26.450 200 972882.917 23.225 + 35 118 83 201 Bi +a -21414.660 15.227 7854.799 0.076 B- -4889.775 16.312 200 977010.416 16.347 + 33 117 84 201 Po -a -16524.884 5.848 7826.580 0.029 B- -5735.526 10.059 200 982259.806 6.278 + 31 116 85 201 At +a -10789.358 8.184 7794.152 0.041 B- -6716.876 50.401 200 988417.147 8.786 + 29 115 86 201 Rn -a -4072.482 49.732 7756.843 0.247 B- -7674.191 86.981 200 995628.010 53.389 + 27 114 87 201 Fr -a 3601.709 71.362 7714.771 0.355 B- -8239# 128# 201 003866.593 76.610 + 25 113 88 201 Ra -a 11841# 106# 7670# 1# B- * 201 012712# 114# +0 50 126 76 202 Os x -13087# 401# 7842# 2# B- 3689# 499# 201 985950# 430# + 48 125 77 202 Ir x -16776# 298# 7856# 1# B- 5916# 299# 201 981990# 320# + 46 124 78 202 Pt x -22692.125 25.150 7881.560 0.125 B- 1660.854 34.276 201 975639.000 27.000 + 44 123 79 202 Au x -24352.979 23.287 7885.909 0.115 B- 2992.517 23.296 201 973856.000 25.000 + 42 122 80 202 Hg -27345.496 0.645 7896.851 0.003 B- -1359.088 14.286 201 970643.400 0.692 + 40 121 81 202 Tl -25986.409 14.285 7886.250 0.071 B- -46.188 14.277 201 972102.441 15.335 + 38 120 82 202 Pb -25940.221 3.764 7882.148 0.019 B- -5199.446 15.855 201 972152.026 4.040 + 36 119 83 202 Bi -20740.775 15.404 7852.535 0.076 B- -2816.648 21.263 201 977733.861 16.536 + 34 118 84 202 Po -a -17924.127 14.672 7834.718 0.073 B- -7333.321 31.591 201 980757.657 15.750 + 32 117 85 202 At -a -10590.805 27.977 7794.542 0.138 B- -4316.520 33.013 201 988630.302 30.034 + 30 116 86 202 Rn -a -6274.285 17.526 7769.300 0.087 B- -9366# 54# 201 993264.277 18.814 + 28 115 87 202 Fr -a 3092# 51# 7719# 0# B- -5999# 56# 202 003320# 55# + 26 114 88 202 Ra -a 9091.143 24.423 7685.487 0.121 B- * 202 009759.744 26.219 +0 49 126 77 203 Ir x -14690# 401# 7847# 2# B- 4937# 446# 202 984230# 430# + 47 125 78 203 Pt x -19627# 196# 7867# 1# B- 3517# 196# 202 978930# 210# + 45 124 79 203 Au -23143.484 3.082 7880.864 0.015 B- 2125.305 3.479 202 975154.446 3.308 + 43 123 80 203 Hg -25268.789 1.690 7887.480 0.008 B- 492.056 1.225 202 972872.837 1.814 + 41 122 81 203 Tl -25760.846 1.271 7886.050 0.006 B- -974.840 6.461 202 972344.593 1.363 + 39 121 82 203 Pb -24786.006 6.572 7877.394 0.032 B- -3261.769 14.362 202 973391.126 7.055 + 37 120 83 203 Bi +a -21524.237 12.782 7857.472 0.063 B- -4213.477 15.436 202 976892.779 13.721 + 35 119 84 203 Po +a -17310.760 8.655 7832.862 0.043 B- -5148.234 13.666 202 981416.133 9.291 + 33 118 85 203 At -12162.526 10.576 7803.648 0.052 B- -6003.247 25.803 202 986942.990 11.353 + 31 117 86 203 Rn -a -6159.279 23.536 7770.221 0.116 B- -7035.563 24.347 202 993387.741 25.266 + 29 116 87 203 Fr 876.284 6.232 7731.709 0.031 B- -7790.592 80.655 203 000940.729 6.689 + 27 115 88 203 Ra -a 8666.876 80.414 7689.478 0.396 B- * 203 009304.274 86.327 +0 50 127 77 204 Ir x -9688# 401# 7824# 2# B- 8234# 446# 203 989600# 430# + 48 126 78 204 Pt x -17922# 196# 7860# 1# B- 2728# 280# 203 980760# 210# + 46 125 79 204 Au + -20650# 200# 7870# 1# B- 4040# 200# 203 977831# 215# + 44 124 80 204 Hg -24690.197 0.491 7885.545 0.002 B- -344.578 1.282 203 973493.981 0.527 + 42 123 81 204 Tl -24345.620 1.250 7880.021 0.006 B- 763.750 0.177 203 973863.900 1.341 + 40 122 82 204 Pb -25109.370 1.242 7879.930 0.006 B- -4463.795 9.257 203 973043.981 1.333 + 38 121 83 204 Bi +a -20645.575 9.181 7854.213 0.045 B- -2304.774 14.341 203 977836.062 9.856 + 36 120 84 204 Po -a -18340.801 11.023 7839.080 0.054 B- -6465.369 24.857 203 980310.339 11.833 + 34 119 85 204 At -11875.432 22.279 7803.552 0.109 B- -3892.456 26.586 203 987251.198 23.917 + 32 118 86 204 Rn -a -7982.976 14.508 7780.637 0.071 B- -8590.365 28.551 203 991429.922 15.575 + 30 117 87 204 Fr -a 607.390 24.590 7734.692 0.121 B- -5439.745 28.539 204 000652.059 26.398 + 28 116 88 204 Ra -a 6047.135 14.485 7704.191 0.071 B- * 204 006491.866 15.550 +0 49 127 78 205 Pt x -12966# 298# 7837# 1# B- 5803# 357# 204 986080# 320# + 47 126 79 205 Au x -18770# 196# 7861# 1# B- 3518# 196# 204 979850# 210# + 45 125 80 205 Hg -22287.468 3.661 7874.731 0.018 B- 1532.881 3.732 204 976073.417 3.930 + 43 124 81 205 Tl -23820.349 1.329 7878.392 0.006 B- -50.632 0.503 204 974427.801 1.426 + 41 123 82 205 Pb -23769.717 1.239 7874.328 0.006 B- -2705.559 5.112 204 974482.157 1.330 + 39 122 83 205 Bi -21064.159 5.117 7857.314 0.025 B- -3554.951 20.947 204 977386.694 5.493 + 37 121 84 205 Po -17509.208 20.320 7836.157 0.099 B- -4538.956 25.330 204 981203.091 21.814 + 35 120 85 205 At +a -12970.252 15.130 7810.199 0.074 B- -5256.401 52.565 204 986075.861 16.242 + 33 119 86 205 Rn -a -7713.850 50.341 7780.742 0.246 B- -6404.038 50.945 204 991718.840 54.043 + 31 118 87 205 Fr x -1309.812 7.824 7745.686 0.038 B- -7148.645 70.954 204 998593.858 8.399 + 29 117 88 205 Ra -a 5838.833 70.521 7706.998 0.344 B- * 205 006268.245 75.707 +0 50 128 78 206 Pt x -9632# 298# 7822# 1# B- 4583# 422# 205 989660# 320# + 48 127 79 206 Au x -14215# 298# 7840# 1# B- 6731# 299# 205 984740# 320# + 46 126 80 206 Hg +a -20945.200 20.446 7869.169 0.099 B- 1307.643 20.410 205 977514.401 21.949 + 44 125 81 206 Tl -22252.843 1.373 7871.719 0.007 B- 1532.219 0.612 205 976110.589 1.473 + 42 124 82 206 Pb -23785.062 1.238 7875.359 0.006 B- -3757.306 7.546 205 974465.683 1.329 + 40 123 83 206 Bi - -20027.757 7.647 7853.322 0.037 B- -1839.397 8.593 205 978499.317 8.209 + 38 122 84 206 Po -a -18188.360 3.981 7840.595 0.019 B- -5759.374 15.579 205 980473.991 4.274 + 36 121 85 206 At -12428.986 15.064 7808.839 0.073 B- -3313.590 21.082 205 986656.933 16.171 + 34 120 86 206 Rn -a -9115.396 14.764 7788.956 0.072 B- -7872.906 31.827 205 990214.219 15.850 + 32 119 87 206 Fr -a -1242.490 28.195 7746.940 0.137 B- -4808.299 33.458 205 998666.132 30.268 + 30 118 88 206 Ra -a 3565.809 18.013 7719.801 0.087 B- -9896# 74# 206 003828.053 19.338 + 28 117 89 206 Ac -a 13462# 71# 7668# 0# B- * 206 014452# 77# +0 49 128 79 207 Au x -10805# 298# 7825# 1# B- 5682# 300# 206 988400# 320# + 47 127 80 207 Hg x -16487.444 29.808 7848.610 0.144 B- 4545.959 30.310 206 982300.000 32.000 + 45 126 81 207 Tl -21033.402 5.494 7866.792 0.027 B- 1418.121 5.427 206 977419.712 5.897 + 43 125 82 207 Pb -22451.523 1.241 7869.864 0.006 B- -2397.410 2.118 206 975897.297 1.332 + 41 124 83 207 Bi -20054.113 2.445 7854.502 0.012 B- -2908.813 6.614 206 978471.022 2.624 + 39 123 84 207 Po -17145.300 6.676 7836.671 0.032 B- -3918.395 14.081 206 981593.762 7.167 + 37 122 85 207 At +a -13226.905 12.410 7813.962 0.060 B- -4592.192 15.040 206 985800.332 13.322 + 35 121 86 207 Rn +a -8634.713 8.497 7787.998 0.041 B- -5790.376 19.458 206 990730.254 9.121 + 33 120 87 207 Fr -2844.337 17.505 7756.246 0.085 B- -6383.231 57.969 206 996946.478 18.792 + 31 119 88 207 Ra -a 3538.895 55.262 7721.629 0.267 B- -7607.205 74.785 207 003799.159 59.326 + 29 118 89 207 Ac -a 11146.100 50.387 7681.100 0.243 B- * 207 011965.830 54.092 +0 50 129 79 208 Au x -6101# 298# 7804# 1# B- 7164# 300# 207 993450# 320# + 48 128 80 208 Hg x -13265.406 30.739 7834.191 0.148 B- 3483.786 30.803 207 985759.000 33.000 + 46 127 81 208 Tl +a -16749.192 1.977 7847.178 0.010 B- 4998.882 1.716 207 982019.001 2.122 + 44 126 82 208 Pb -21748.074 1.242 7867.450 0.006 B- -2878.363 2.013 207 976652.481 1.333 + 42 125 83 208 Bi +n -18869.711 2.354 7849.851 0.011 B- -1400.559 2.397 207 979742.530 2.527 + 40 124 84 208 Po -a -17469.152 1.801 7839.356 0.009 B- -4999.524 9.095 207 981246.092 1.933 + 38 123 85 208 At +a -12469.628 8.922 7811.558 0.043 B- -2814.402 14.275 207 986613.302 9.578 + 36 122 86 208 Rn -a -9655.227 11.148 7794.266 0.054 B- -6989.414 15.940 207 989634.687 11.968 + 34 121 87 208 Fr -2665.813 11.393 7756.902 0.055 B- -4380.807 19.138 207 997138.132 12.230 + 32 120 88 208 Ra -a 1714.994 15.378 7732.079 0.074 B- -9044.140 57.803 208 001841.122 16.509 + 30 119 89 208 Ac -a 10759.134 55.719 7684.836 0.268 B- -5914.866 65.193 208 011550.406 59.817 + 28 118 90 208 Th -a 16674.000 33.845 7652.638 0.163 B- * 208 017900.275 36.334 +0 51 130 79 209 Au x -2468# 401# 7787# 2# B- 6176# 427# 208 997350# 430# + 49 129 80 209 Hg x -8644# 149# 7813# 1# B- 4993# 149# 208 990720# 160# + 47 128 81 209 Tl +a -13637.674 8.029 7833.363 0.038 B- 3976.448 8.079 208 985359.353 8.619 + 45 127 82 209 Pb -17614.122 1.813 7848.646 0.009 B- 644.028 1.146 208 981090.461 1.946 + 43 126 83 209 Bi -18258.150 1.447 7847.984 0.007 B- -1892.580 1.564 208 980399.068 1.553 + 41 125 84 209 Po -a -16365.570 1.840 7835.185 0.009 B- -3483.209 5.293 208 982430.836 1.975 + 39 124 85 209 At -12882.361 5.107 7814.776 0.024 B- -3953.536 21.036 208 986170.215 5.483 + 37 123 86 209 Rn -a -8928.826 20.414 7792.116 0.098 B- -5160.869 25.148 208 990414.510 21.915 + 35 122 87 209 Fr x -3767.956 14.695 7763.680 0.070 B- -5622.054 52.510 208 995954.932 15.775 + 33 121 88 209 Ra -a 1854.098 50.412 7733.037 0.241 B- -6990.216 71.433 209 001990.455 54.120 + 31 120 89 209 Ac -a 8844.314 50.608 7695.847 0.242 B- -7692.475 100.172 209 009494.762 54.330 + 29 119 90 209 Th -a 16536.789 86.448 7655.298 0.414 B- * 209 017752.974 92.805 +0 52 131 79 210 Au x 2329# 401# 7766# 2# B- 7694# 446# 210 002500# 430# + 50 130 80 210 Hg x -5365# 196# 7799# 1# B- 3881# 196# 209 994240# 210# + 48 129 81 210 Tl +a -9246.048 11.621 7813.584 0.055 B- 5481.933 11.566 209 990073.958 12.475 + 46 128 82 210 Pb -14727.981 1.526 7835.963 0.007 B- 63.486 0.499 209 984188.861 1.638 + 44 127 83 210 Bi -14791.467 1.446 7832.540 0.007 B- 1161.228 0.766 209 984120.705 1.552 + 42 126 84 210 Po -15952.695 1.240 7834.344 0.006 B- -3981.039 7.610 209 982874.076 1.331 + 40 125 85 210 At -a -11971.655 7.710 7811.661 0.037 B- -2367.121 8.915 209 987147.898 8.276 + 38 124 86 210 Rn -a -9604.535 4.531 7796.663 0.022 B- -6272.031 15.824 209 989689.107 4.863 + 36 123 87 210 Fr -3332.504 15.164 7763.071 0.072 B- -3792.820 21.404 209 996422.409 16.279 + 34 122 88 210 Ra -a 460.315 15.122 7741.285 0.072 B- -8329.310 59.360 210 000494.169 16.234 + 32 121 89 210 Ac -a 8789.626 57.402 7697.896 0.273 B- -5270.012 60.438 210 009436.052 61.623 + 30 120 90 210 Th -a 14059.638 18.914 7669.075 0.090 B- * 210 015093.642 20.305 +0 51 131 80 211 Hg x -624# 196# 7778# 1# B- 5454# 200# 210 999330# 210# + 49 130 81 211 Tl x -6077.998 41.917 7799.791 0.199 B- 4413.302 42.000 210 993475.000 45.000 + 47 129 82 211 Pb -10491.300 2.641 7816.999 0.013 B- 1366.859 5.512 210 988737.125 2.834 + 45 128 83 211 Bi -11858.159 5.497 7819.769 0.026 B- 573.967 5.454 210 987269.741 5.901 + 43 127 84 211 Po -a -12432.126 1.342 7818.782 0.006 B- -785.297 2.539 210 986653.562 1.440 + 41 126 85 211 At -a -11646.829 2.771 7811.352 0.013 B- -2891.820 6.894 210 987496.614 2.974 + 39 125 86 211 Rn -a -8755.009 6.830 7793.939 0.032 B- -4615.192 13.792 210 990601.110 7.332 + 37 124 87 211 Fr -4139.817 11.995 7768.358 0.057 B- -4971.841 14.372 210 995555.723 12.876 + 35 123 88 211 Ra x 832.024 7.918 7741.087 0.038 B- -6370.194 53.564 211 000893.214 8.500 + 33 122 89 211 Ac -a 7202.218 52.976 7707.189 0.251 B- -6704.492 91.435 211 007731.899 56.871 + 31 121 90 211 Th -a 13906.710 74.525 7671.706 0.353 B- * 211 014929.468 80.005 +0 52 132 80 212 Hg x 2757# 298# 7763# 1# B- 4308# 359# 212 002960# 320# + 50 131 81 212 Tl +a -1551# 200# 7780# 1# B- 5996# 200# 211 998335# 215# + 48 130 82 212 Pb -7547.241 2.167 7804.312 0.010 B- 569.773 1.902 211 991897.703 2.326 + 46 129 83 212 Bi -8117.014 1.977 7803.309 0.009 B- 2252.026 1.714 211 991286.026 2.122 + 44 128 84 212 Po -10369.040 1.246 7810.241 0.006 B- -1741.252 2.107 211 988868.376 1.337 + 42 127 85 212 At -a -8627.788 2.432 7798.338 0.011 B- 31.455 3.605 211 990737.688 2.611 + 40 126 86 212 Rn -a -8659.243 3.181 7794.796 0.015 B- -5143.461 9.327 211 990703.919 3.414 + 38 125 87 212 Fr -3515.782 8.776 7766.844 0.041 B- -3317.109 14.282 211 996225.652 9.421 + 36 124 88 212 Ra -a -198.673 11.273 7747.507 0.053 B- -7476.596 52.506 211 999786.715 12.102 + 34 123 89 212 Ac -a 7277.922 51.282 7708.549 0.242 B- -4819.945 53.731 212 007813.171 55.052 + 32 122 90 212 Th -a 12097.868 16.039 7682.123 0.076 B- -9515.582 76.563 212 012987.595 17.219 + 30 121 91 212 Pa -a 21613.450 74.864 7633.548 0.353 B- * 212 023202.993 80.370 +0 53 133 80 213 Hg x 7666# 298# 7741# 1# B- 5882# 299# 213 008230# 320# + 51 132 81 213 Tl x 1783.811 27.013 7765.430 0.127 B- 4985.454 27.827 213 001915.000 29.000 + 49 131 82 213 Pb +a -3201.643 6.682 7785.163 0.031 B- 2028.633 8.037 212 996562.894 7.173 + 47 130 83 213 Bi -5230.276 5.203 7791.014 0.024 B- 1422.804 5.553 212 994385.067 5.585 + 45 129 84 213 Po -6653.080 3.094 7794.021 0.015 B- -73.918 5.465 212 992857.623 3.321 + 43 128 85 213 At -a -6579.162 4.921 7790.001 0.023 B- -881.278 7.309 212 992936.978 5.283 + 41 127 86 213 Rn -a -5697.884 5.677 7782.191 0.027 B- -2145.205 7.535 212 993883.069 6.094 + 39 126 87 213 Fr -3552.680 5.096 7768.446 0.024 B- -3910.614 21.158 212 996186.041 5.470 + 37 125 88 213 Ra -a 357.934 20.542 7746.414 0.096 B- -5798.329 56.015 213 000384.258 22.052 + 35 124 89 213 Ac -a 6156.263 52.115 7715.519 0.245 B- -5961.751 88.076 213 006609.020 55.947 + 33 123 90 213 Th -a 12118.013 71.003 7683.856 0.333 B- -7545.116 100.512 213 013009.223 76.224 + 31 122 91 213 Pa -a 19663.130 71.142 7644.760 0.334 B- * 213 021109.239 76.374 +0 54 134 80 214 Hg x 11178# 401# 7727# 2# B- 4713# 446# 214 012000# 430# + 52 133 81 214 Tl x 6465# 196# 7745# 1# B- 6645# 196# 214 006940# 210# + 50 132 82 214 Pb -180.786 2.343 7772.384 0.011 B- 1019.046 11.280 213 999805.917 2.515 + 48 131 83 214 Bi -1199.832 11.227 7773.490 0.052 B- 3269.771 11.170 213 998711.926 12.053 + 46 130 84 214 Po -4469.603 1.527 7785.114 0.007 B- -1090.204 4.107 213 995201.683 1.639 + 44 129 85 214 At -a -3379.399 4.325 7776.364 0.020 B- 939.980 10.014 213 996372.066 4.643 + 42 128 86 214 Rn -a -4319.378 9.199 7777.100 0.043 B- -3361.181 12.503 213 995362.956 9.875 + 40 127 87 214 Fr -a -958.197 8.647 7757.738 0.040 B- -1051.093 10.080 213 998971.333 9.282 + 38 126 88 214 Ra -a 92.896 5.227 7749.170 0.024 B- -6351.635 16.231 214 000099.727 5.611 + 36 125 89 214 Ac -a 6444.531 15.370 7715.834 0.072 B- -4267.798 22.216 214 006918.488 16.499 + 34 124 90 214 Th -a 10712.329 16.057 7692.235 0.075 B- -8773.112 77.800 214 011500.159 17.237 + 32 123 91 214 Pa -a 19485.441 76.125 7647.584 0.356 B- * 214 020918.483 81.723 +0 55 135 80 215 Hg x 16208# 401# 7705# 2# B- 6297# 499# 215 017400# 430# + 53 134 81 215 Tl x 9911# 298# 7730# 1# B- 5495# 315# 215 010640# 320# + 51 133 82 215 Pb +a 4416# 101# 7752# 0# B- 2768# 102# 215 004741# 109# + 49 132 83 215 Bi x 1648.580 14.904 7761.627 0.069 B- 2188.710 15.116 215 001769.823 16.000 + 47 131 84 215 Po -540.130 2.526 7768.168 0.012 B- 714.732 6.852 214 999420.146 2.711 + 45 130 85 215 At -a -1254.862 6.843 7767.854 0.032 B- -86.667 10.181 214 998652.849 7.346 + 43 129 86 215 Rn -a -1168.195 7.687 7763.812 0.036 B- -1486.616 10.306 214 998745.890 8.252 + 41 128 87 215 Fr -a 318.420 7.082 7753.259 0.033 B- -2215.635 10.077 215 000341.838 7.602 + 39 127 88 215 Ra -a 2534.055 7.628 7739.315 0.035 B- -3496.913 14.556 215 002720.420 8.189 + 37 126 89 215 Ac -a 6030.969 12.410 7719.411 0.058 B- -4890.588 15.237 215 006474.511 13.322 + 35 125 90 215 Th -a 10921.557 8.840 7693.025 0.041 B- -6947.227 73.380 215 011724.774 9.490 + 33 124 91 215 Pa -a 17868.783 72.845 7657.074 0.339 B- * 215 019182.929 78.202 +0 56 136 80 216 Hg x 19859# 401# 7690# 2# B- 5142# 499# 216 021320# 430# + 54 135 81 216 Tl x 14718# 298# 7710# 1# B- 7238# 357# 216 015800# 320# + 52 134 82 216 Pb x 7480# 196# 7740# 1# B- 1606# 196# 216 008030# 210# + 50 133 83 216 Bi x 5873.992 11.178 7743.499 0.052 B- 4090.007 11.385 216 006305.989 12.000 + 48 132 84 216 Po 1783.984 2.159 7758.812 0.010 B- -473.543 3.616 216 001915.186 2.318 + 46 131 85 216 At -a 2257.527 3.640 7752.998 0.017 B- 2004.292 6.847 216 002423.555 3.907 + 44 130 86 216 Rn -a 253.235 6.013 7758.655 0.028 B- -2718.105 7.126 216 000271.859 6.455 + 42 129 87 216 Fr -a 2971.341 4.201 7742.449 0.019 B- -320.022 9.548 216 003189.865 4.510 + 40 128 88 216 Ra -a 3291.363 8.750 7737.346 0.041 B- -4853.139 13.927 216 003533.423 9.393 + 38 127 89 216 Ac -a 8144.502 10.841 7711.255 0.050 B- -2154.103 16.206 216 008743.482 11.638 + 36 126 90 216 Th -a 10298.604 12.052 7697.661 0.056 B- -7501.234 54.773 216 011056.007 12.938 + 34 125 91 216 Pa -a 17799.838 53.430 7659.311 0.247 B- * 216 019108.913 57.359 +0 55 136 81 217 Tl x 18313# 401# 7695# 2# B- 6073# 499# 217 019660# 430# + 53 135 82 217 Pb x 12240# 298# 7719# 1# B- 3510# 299# 217 013140# 320# + 51 134 83 217 Bi x 8729.962 17.698 7731.848 0.082 B- 2844.634 18.771 217 009372.000 19.000 + 49 133 84 217 Po +a 5885.328 6.254 7741.352 0.029 B- 1489.400 7.627 217 006318.159 6.713 + 47 132 85 217 At 4395.928 5.126 7744.610 0.024 B- 737.003 6.209 217 004719.222 5.503 + 45 131 86 217 Rn -a 3658.925 4.228 7744.401 0.019 B- -656.018 7.539 217 003928.018 4.538 + 43 130 87 217 Fr -a 4314.943 6.548 7737.773 0.030 B- -1572.776 10.610 217 004632.282 7.029 + 41 129 88 217 Ra -a 5887.719 8.529 7726.920 0.039 B- -2816.043 14.180 217 006320.726 9.155 + 39 128 89 217 Ac -a 8703.762 11.391 7710.337 0.052 B- -3514.367 23.826 217 009343.872 12.229 + 37 127 90 217 Th -a 12218.129 20.934 7690.537 0.096 B- -4851.837 56.339 217 013116.701 22.473 + 35 126 91 217 Pa -a 17069.966 52.308 7664.573 0.241 B- -5901# 113# 217 018325.363 56.154 + 33 125 92 217 U -a 22971# 100# 7634# 0# B- * 217 024661# 108# +0 56 137 81 218 Tl x 23092# 401# 7675# 2# B- 7638# 499# 218 024790# 430# + 54 136 82 218 Pb x 15453# 298# 7706# 1# B- 2237# 299# 218 016590# 320# + 52 135 83 218 Bi x 13216.037 27.013 7712.827 0.124 B- 4857.232 27.115 218 014188.000 29.000 + 50 134 84 218 Po 8358.805 2.341 7731.519 0.011 B- 259.722 11.672 218 008973.546 2.513 + 48 133 85 218 At -a 8099.083 11.621 7729.122 0.053 B- 2881.239 11.709 218 008694.723 12.475 + 46 132 86 218 Rn 5217.844 2.372 7738.750 0.011 B- -1841.626 4.943 218 005601.586 2.546 + 44 131 87 218 Fr -a 7059.470 4.781 7726.713 0.022 B- 408.015 12.039 218 007578.653 5.132 + 42 130 88 218 Ra -a 6651.455 11.186 7724.996 0.051 B- -4192.664 51.931 218 007140.631 12.008 + 40 129 89 218 Ac -a 10844.119 50.742 7702.175 0.233 B- -1522.704 51.813 218 011641.640 54.473 + 38 128 90 218 Th -a 12366.823 10.504 7691.601 0.048 B- -6317.624 21.130 218 013276.331 11.276 + 36 127 91 218 Pa -a 18684.447 18.336 7659.033 0.084 B- -3227.527 25.845 218 020058.579 19.684 + 34 126 92 218 U -a 21911.973 18.228 7640.639 0.084 B- * 218 023523.472 19.568 +0 55 137 82 219 Pb x 20279# 401# 7686# 2# B- 3996# 446# 219 021770# 430# + 53 136 83 219 Bi x 16283# 196# 7700# 1# B- 3601# 196# 219 017480# 210# + 51 135 84 219 Po x 12681.359 15.835 7713.333 0.072 B- 2284.165 16.301 219 013614.000 17.000 + 49 134 85 219 At +a 10397.195 3.869 7720.191 0.018 B- 1566.295 3.177 219 011161.848 4.153 + 47 133 86 219 Rn 8830.900 2.509 7723.771 0.011 B- 212.319 7.090 219 009480.361 2.693 + 45 132 87 219 Fr -a 8618.581 7.082 7721.168 0.032 B- -775.987 10.785 219 009252.427 7.602 + 43 131 88 219 Ra -a 9394.568 8.272 7714.052 0.038 B- -2175.268 51.142 219 010085.484 8.880 + 41 130 89 219 Ac -a 11569.836 50.499 7700.547 0.231 B- -2903.235 71.425 219 012420.730 54.212 + 39 129 90 219 Th -a 14473.071 50.579 7683.718 0.231 B- -4067.413 72.193 219 015537.481 54.298 + 37 128 91 219 Pa -a 18540.484 51.517 7661.573 0.235 B- -4746.056 72.334 219 019904.029 55.305 + 35 127 92 219 U -a 23286.540 50.775 7636.329 0.232 B- -5990# 202# 219 024999.130 54.509 + 33 126 93 219 Np x 29277# 196# 7605# 1# B- * 219 031430# 210# +0 56 138 82 220 Pb x 23669# 401# 7672# 2# B- 2850# 499# 220 025410# 430# + 54 137 83 220 Bi x 20819# 298# 7682# 1# B- 5555# 299# 220 022350# 320# + 52 136 84 220 Po x 15263.461 17.698 7703.224 0.080 B- 887.714 22.549 220 016386.000 19.000 + 50 135 85 220 At x 14375.747 13.972 7703.703 0.064 B- 3762.183 14.138 220 015433.000 15.000 + 48 134 86 220 Rn 10613.564 2.159 7717.247 0.010 B- -869.617 4.065 220 011394.130 2.317 + 46 133 87 220 Fr -a 11483.181 4.086 7709.738 0.019 B- 1212.647 9.069 220 012327.702 4.387 + 44 132 88 220 Ra -a 10270.534 8.251 7711.694 0.038 B- -3473.524 10.141 220 011025.872 8.857 + 42 131 89 220 Ac -a 13744.058 6.148 7692.349 0.028 B- -925.248 22.941 220 014754.854 6.600 + 40 130 90 220 Th -a 14669.306 22.171 7684.588 0.101 B- -5549# 56# 220 015748.148 23.801 + 38 129 91 220 Pa -a 20218# 51# 7656# 0# B- -2715# 113# 220 021705# 55# + 36 128 92 220 U -a 22934# 101# 7640# 0# B- -7377# 220# 220 024620# 108# + 34 127 93 220 Np x 30311# 196# 7603# 1# B- * 220 032540# 210# +0 55 138 83 221 Bi x 24098# 298# 7668# 1# B- 4324# 299# 221 025870# 320# + 53 137 84 221 Po x 19773.755 19.561 7684.481 0.089 B- 2991.027 24.039 221 021228.000 21.000 + 51 136 85 221 At x 16782.727 13.972 7694.475 0.063 B- 2310.034 15.160 221 018017.000 15.000 + 49 135 86 221 Rn +a 14472.693 5.883 7701.387 0.027 B- 1194.094 7.243 221 015537.076 6.315 + 47 134 87 221 Fr 13278.600 5.018 7703.250 0.023 B- 314.364 6.444 221 014255.163 5.386 + 45 133 88 221 Ra -a 12964.236 4.657 7701.133 0.021 B- -1559.227 50.603 221 013917.680 4.999 + 43 132 89 221 Ac -a 14523.463 50.427 7690.537 0.228 B- -2414.892 51.258 221 015591.579 54.135 + 41 131 90 221 Th -a 16938.354 9.357 7676.070 0.042 B- -3438.023 52.114 221 018184.072 10.045 + 39 130 91 221 Pa -a 20376.377 51.281 7656.974 0.232 B- -4107# 114# 221 021874.941 55.052 + 37 129 92 221 U -a 24483# 102# 7635# 0# B- -5362# 221# 221 026284# 110# + 35 128 93 221 Np x 29845# 196# 7607# 1# B- * 221 032040# 210# +0 56 139 83 222 Bi x 28671# 298# 7650# 1# B- 6185# 301# 222 030780# 320# + 54 138 84 222 Po x 22486.265 40.054 7674.005 0.180 B- 1533.239 43.071 222 024140.000 43.000 + 52 137 85 222 At x 20953.026 15.835 7677.387 0.071 B- 4578.995 16.005 222 022494.000 17.000 + 50 136 86 222 Rn 16374.031 2.321 7694.489 0.010 B- 24.269 21.120 222 017578.246 2.492 + 48 135 87 222 Fr 16349.762 21.219 7691.074 0.096 B- 2028.185 21.610 222 017552.192 22.779 + 46 134 88 222 Ra 14321.577 4.568 7696.686 0.021 B- -2300.171 6.687 222 015374.846 4.903 + 44 133 89 222 Ac -a 16621.748 5.197 7682.801 0.023 B- -581.568 13.227 222 017844.181 5.578 + 42 132 90 222 Th -a 17203.317 12.288 7676.657 0.055 B- -4952# 74# 222 018468.521 13.191 + 40 131 91 222 Pa -a 22155# 72# 7651# 0# B- -2067# 124# 222 023784# 78# + 38 130 92 222 U -a 24222# 101# 7638# 0# B- -6797# 220# 222 026003# 108# + 36 129 93 222 Np x 31019# 196# 7604# 1# B- * 222 033300# 210# +0 57 140 83 223 Bi x 32137# 401# 7636# 2# B- 5058# 446# 223 034500# 430# + 55 139 84 223 Po x 27079# 196# 7655# 1# B- 3651# 196# 223 029070# 210# + 53 138 85 223 At x 23428.006 13.972 7668.055 0.063 B- 3038.267 16.013 223 025151.000 15.000 + 51 137 86 223 Rn 20389.739 7.822 7678.171 0.035 B- 2005.761 8.174 223 021889.286 8.397 + 49 136 87 223 Fr +a 18383.978 2.374 7683.657 0.011 B- 1149.170 0.848 223 019736.013 2.548 + 47 135 88 223 Ra 17234.808 2.501 7685.302 0.011 B- -591.889 7.160 223 018502.327 2.684 + 45 134 89 223 Ac -a 17826.697 7.152 7679.140 0.032 B- -1559.420 11.575 223 019137.747 7.677 + 43 133 90 223 Th -a 19386.117 9.225 7668.639 0.041 B- -2934.915 71.639 223 020811.853 9.902 + 41 132 91 223 Pa -a 22321.032 71.064 7651.969 0.319 B- -3517.855 100.506 223 023962.614 76.290 + 39 131 92 223 U -a 25838.886 71.121 7632.686 0.319 B- -4761# 208# 223 027739.187 76.351 + 37 130 93 223 Np x 30600# 196# 7608# 1# B- * 223 032850# 210# +0 58 141 83 224 Bi x 36766# 401# 7617# 2# B- 6856# 446# 224 039470# 430# + 56 140 84 224 Po x 29910# 196# 7644# 1# B- 2199# 197# 224 032110# 210# + 54 139 85 224 At x 27711.015 22.356 7650.735 0.100 B- 5265.917 24.415 224 029749.000 24.000 + 52 138 86 224 Rn 22445.098 9.814 7670.751 0.044 B- 650.001 16.321 224 024095.805 10.536 + 50 137 87 224 Fr x 21795.097 13.041 7670.160 0.058 B- 2967.769 13.218 224 023398.000 14.000 + 48 136 88 224 Ra 18827.328 2.158 7679.916 0.010 B- -1407.669 4.126 224 020211.968 2.316 + 46 135 89 224 Ac -a 20234.997 4.146 7670.139 0.019 B- 241.053 10.831 224 021723.163 4.450 + 44 134 90 224 Th -a 19993.944 10.131 7667.723 0.045 B- -3868.710 12.546 224 021464.382 10.876 + 42 133 91 224 Pa -a 23862.654 7.602 7646.959 0.034 B- -1851.390 26.374 224 025617.614 8.161 + 40 132 92 224 U -a 25714.044 25.315 7635.201 0.113 B- -6162# 197# 224 027605.163 27.176 + 38 131 93 224 Np x 31876# 196# 7604# 1# B- * 224 034220# 210# +0 57 141 84 225 Po x 34530# 298# 7626# 1# B- 4136# 422# 225 037070# 320# + 55 140 85 225 At x 30395# 298# 7641# 1# B- 3861# 298# 225 032630# 320# + 53 139 86 225 Rn 26534.142 11.140 7654.357 0.050 B- 2713.342 16.351 225 028485.574 11.958 + 51 138 87 225 Fr 23820.800 11.969 7662.940 0.053 B- 1826.497 12.214 225 025572.682 12.849 + 49 137 88 225 Ra 21994.303 2.949 7667.580 0.013 B- 355.709 5.023 225 023611.857 3.166 + 47 136 89 225 Ac 21638.594 4.897 7665.684 0.022 B- -671.957 6.716 225 023229.987 5.256 + 45 135 90 225 Th -a 22310.551 5.117 7659.221 0.023 B- -2030.327 71.170 225 023951.363 5.493 + 43 134 91 225 Pa -a 24340.878 71.013 7646.720 0.316 B- -3036.988 71.970 225 026131.009 76.235 + 41 133 92 225 U -a 27377.867 11.827 7629.745 0.053 B- -4209.926 72.583 225 029391.350 12.696 + 39 132 93 225 Np -a 31587.793 71.622 7607.557 0.318 B- * 225 033910.892 76.889 +0 58 142 84 226 Po x 37549# 401# 7614# 2# B- 2934# 499# 226 040310# 430# + 56 141 85 226 At x 34614# 298# 7624# 1# B- 5867# 298# 226 037160# 320# + 54 140 86 226 Rn 28747.193 10.477 7646.410 0.046 B- 1206.641 16.013 226 030861.382 11.247 + 52 139 87 226 Fr x 27540.552 12.109 7648.287 0.054 B- 3870.981 12.327 226 029566.000 13.000 + 50 138 88 226 Ra 23669.571 2.308 7661.954 0.010 B- -640.917 3.279 226 025410.330 2.477 + 48 137 89 226 Ac 24310.487 3.318 7655.656 0.015 B- 1113.135 4.693 226 026098.383 3.561 + 46 136 90 226 Th 23197.352 4.703 7657.120 0.021 B- -2836.119 12.239 226 024903.383 5.049 + 44 135 91 226 Pa -a 26033.471 11.430 7641.109 0.051 B- -1295.725 17.252 226 027948.082 12.270 + 42 134 92 226 U -a 27329.197 13.040 7631.914 0.058 B- -5448# 89# 226 029339.101 13.998 + 40 133 93 226 Np -a 32777# 88# 7604# 0# B- * 226 035188# 95# +0 59 143 84 227 Po x 42281# 401# 7596# 2# B- 4797# 499# 227 045390# 430# + 57 142 85 227 At x 37483# 298# 7613# 1# B- 4597# 298# 227 040240# 320# + 55 141 86 227 Rn 32885.834 14.091 7630.050 0.062 B- 3200.052 19.199 227 035304.396 15.127 + 53 140 87 227 Fr x 29685.782 13.041 7640.701 0.057 B- 2506.324 13.246 227 031869.000 14.000 + 51 139 88 227 Ra -n 27179.458 2.323 7648.295 0.010 B- 1328.372 2.290 227 029178.349 2.494 + 49 138 89 227 Ac 25851.085 2.370 7650.701 0.010 B- 44.764 0.830 227 027752.283 2.544 + 47 137 90 227 Th 25806.321 2.499 7647.451 0.011 B- -1025.691 7.468 227 027704.227 2.682 + 45 136 91 227 Pa -a 26832.012 7.460 7639.487 0.033 B- -2190.335 18.379 227 028805.351 8.008 + 43 135 92 227 U -a 29022.347 16.864 7626.391 0.074 B- -3540.009 74.423 227 031156.773 18.104 + 41 134 93 227 Np -a 32562.356 72.508 7607.350 0.319 B- * 227 034957.129 77.840 +0 58 143 85 228 At x 41684# 401# 7597# 2# B- 6441# 401# 228 044750# 430# + 56 142 86 228 Rn 35243.465 17.677 7621.645 0.078 B- 1874.392 22.234 228 037835.418 18.977 + 54 141 87 228 Fr x 33369.073 13.485 7626.435 0.059 B- 4426.876 13.697 228 035823.175 14.477 + 52 140 88 228 Ra +a 28942.197 2.400 7642.419 0.011 B- 45.811 0.667 228 031070.728 2.576 + 50 139 89 228 Ac - 28896.386 2.491 7639.189 0.011 B- 2124.063 2.645 228 031021.547 2.673 + 48 138 90 228 Th 26772.323 2.156 7645.074 0.009 B- -2152.124 4.378 228 028741.272 2.315 + 46 137 91 228 Pa -a 28924.447 4.394 7632.203 0.019 B- -297.909 14.934 228 031051.673 4.717 + 44 136 92 228 U -a 29222.357 14.361 7627.465 0.063 B- -4373.713 52.545 228 031371.492 15.417 + 42 135 93 228 Np -a 33596.070 50.575 7604.851 0.222 B- -2483.014 59.228 228 036066.866 54.294 + 40 134 94 228 Pu -a 36079.083 30.875 7590.529 0.135 B- * 228 038732.491 33.145 +0 59 144 85 229 At x 44823# 401# 7585# 2# B- 5461# 401# 229 048120# 430# + 57 143 86 229 Rn x 39362.400 13.041 7605.622 0.057 B- 3688.043 19.113 229 042257.277 14.000 + 55 142 87 229 Fr x 35674.357 13.972 7618.311 0.061 B- 3125.849 20.125 229 038298.000 15.000 + 53 141 88 229 Ra 32548.508 14.484 7628.544 0.063 B- 1850.300 17.617 229 034942.262 15.549 + 51 140 89 229 Ac 30698.209 11.654 7633.208 0.051 B- 1111.431 11.982 229 032955.884 12.510 + 49 139 90 229 Th 29586.778 2.784 7634.645 0.012 B- -311.606 3.741 229 031762.713 2.989 + 47 138 91 229 Pa 29898.383 3.530 7629.868 0.015 B- -1312.516 6.736 229 032097.236 3.789 + 45 137 92 229 U -a 31210.899 5.959 7620.720 0.026 B- -2568.930 87.031 229 033506.280 6.397 + 43 136 93 229 Np -a 33779.829 86.850 7606.085 0.379 B- -3613.708 100.895 229 036264.139 93.237 + 41 135 94 229 Pu -a 37393.536 51.380 7586.889 0.224 B- * 229 040143.614 55.158 +0 58 144 86 230 Rn x 42048# 196# 7596# 1# B- 2537# 196# 230 045140# 210# + 56 143 87 230 Fr 39510.575 15.798 7603.601 0.069 B- 4994.268 18.857 230 042416.349 16.959 + 54 142 88 230 Ra x 34516.307 10.296 7621.914 0.045 B- 677.924 18.888 230 037054.781 11.053 + 52 141 89 230 Ac x 33838.383 15.835 7621.460 0.069 B- 2974.139 15.933 230 036327.000 17.000 + 50 140 90 230 Th 30864.244 1.757 7630.989 0.008 B- -1310.534 2.840 230 033134.130 1.886 + 48 139 91 230 Pa 32174.778 3.262 7621.890 0.014 B- 559.782 4.751 230 034541.047 3.501 + 46 138 92 230 U -a 31614.997 4.757 7620.922 0.021 B- -3621.490 51.481 230 033940.096 5.106 + 44 137 93 230 Np -a 35236.487 51.290 7601.775 0.223 B- -1697.515 53.437 230 037827.926 55.061 + 42 136 94 230 Pu -a 36934.002 15.096 7590.993 0.066 B- -5998# 134# 230 039650.283 16.206 + 40 135 95 230 Am -a 42932# 133# 7562# 1# B- * 230 046090# 143# +0 59 145 86 231 Rn x 46454# 298# 7579# 1# B- 4389# 299# 231 049870# 320# + 57 144 87 231 Fr x 42064.406 25.150 7594.570 0.109 B- 3847.920 27.601 231 045158.000 27.000 + 55 143 88 231 Ra 38216.486 11.370 7607.841 0.049 B- 2453.636 17.301 231 041027.087 12.206 + 53 142 89 231 Ac x 35762.849 13.041 7615.076 0.056 B- 1945.305 13.160 231 038393.000 14.000 + 51 141 90 231 Th 33817.544 1.765 7620.111 0.008 B- 391.587 1.482 231 036304.628 1.895 + 49 140 91 231 Pa 33425.957 2.232 7618.419 0.010 B- -381.556 2.034 231 035884.243 2.395 + 47 139 92 231 U -a 33807.514 3.002 7613.380 0.013 B- -1817.814 50.582 231 036293.861 3.223 + 45 138 93 231 Np -a 35625.328 50.553 7602.124 0.219 B- -2660.484 57.027 231 038245.364 54.271 + 43 137 94 231 Pu -a 38285.812 26.432 7587.220 0.114 B- -4153# 299# 231 041101.511 28.375 + 41 136 95 231 Am x 42439# 298# 7566# 1# B- * 231 045560# 320# +0 58 145 87 232 Fr +a 45986# 155# 7580# 1# B- 5489# 155# 232 049368# 166# + 56 144 88 232 Ra 40496.954 9.151 7600.009 0.039 B- 1342.535 15.931 232 043475.270 9.823 + 54 143 89 232 Ac x 39154.419 13.041 7602.424 0.056 B- 3705.706 13.186 232 042034.000 14.000 + 52 142 90 232 Th 35448.712 1.949 7615.024 0.008 B- -499.260 7.731 232 038055.760 2.092 + 50 141 91 232 Pa + 35947.972 7.735 7609.500 0.033 B- 1337.103 7.428 232 038591.737 8.303 + 48 140 92 232 U 34610.869 2.158 7611.891 0.009 B- -2750# 100# 232 037156.297 2.317 + 46 139 93 232 Np - 37361# 100# 7597# 0# B- -1002# 102# 232 040109# 107# + 44 138 94 232 Pu -a 38363.191 17.601 7588.973 0.076 B- -4905# 299# 232 041184.582 18.895 + 42 137 95 232 Am x 43268# 298# 7564# 1# B- -3136# 360# 232 046450# 320# + 40 136 96 232 Cm -a 46404# 202# 7548# 1# B- * 232 049817# 217# +0 59 146 87 233 Fr x 49034# 298# 7569# 1# B- 4711# 298# 233 052640# 320# + 57 145 88 233 Ra x 44322.348 15.835 7585.614 0.068 B- 3014.315 20.514 233 047582.000 17.000 + 55 144 89 233 Ac x 41308.033 13.041 7595.193 0.056 B- 2574.390 13.186 233 044346.000 14.000 + 53 143 90 233 Th 38733.643 1.951 7602.884 0.008 B- 1243.596 1.332 233 041582.278 2.094 + 51 142 91 233 Pa 37490.046 2.090 7604.864 0.009 B- 569.792 2.010 233 040247.222 2.243 + 49 141 92 233 U 36920.254 2.667 7603.952 0.011 B- -1029.733 51.006 233 039635.525 2.863 + 47 140 93 233 Np -a 37949.987 50.997 7596.175 0.219 B- -2102.128 71.649 233 040740.989 54.747 + 45 139 94 233 Pu -a 40052.115 50.354 7583.795 0.216 B- -3211# 113# 233 042997.716 54.057 + 43 138 95 233 Am -a 43263# 102# 7567# 0# B- -4029# 124# 233 046445# 109# + 41 137 96 233 Cm -a 47291.952 71.693 7546.007 0.308 B- * 233 050770.001 76.965 +0 58 146 88 234 Ra x 46893.271 30.739 7576.703 0.131 B- 2052.081 33.766 234 050342.000 33.000 + 56 145 89 234 Ac x 44841.190 13.972 7582.129 0.060 B- 4226.740 14.401 234 048139.000 15.000 + 54 144 90 234 Th +a 40614.449 3.487 7596.849 0.015 B- 274.088 3.172 234 043601.407 3.743 + 52 143 91 234 Pa IT 40340.361 4.714 7594.677 0.020 B- 2193.533 4.489 234 043307.161 5.060 + 50 142 92 234 U 38146.828 1.792 7600.707 0.008 B- -1809.846 8.321 234 040952.306 1.923 + 48 141 93 234 Np - 39956.674 8.511 7589.630 0.036 B- -393.213 10.858 234 042895.256 9.137 + 46 140 94 234 Pu -a 40349.887 6.965 7584.606 0.030 B- -4112# 159# 234 043317.387 7.476 + 44 139 95 234 Am -a 44461# 159# 7564# 1# B- -2263# 160# 234 047731# 170# + 42 138 96 234 Cm -a 46723.960 18.204 7550.679 0.078 B- -6620# 143# 234 050160.237 19.543 + 40 137 97 234 Bk -a 53344# 142# 7519# 1# B- * 234 057267# 153# +0 59 147 88 235 Ra x 51204# 298# 7560# 1# B- 3847# 298# 235 054970# 320# + 57 146 89 235 Ac x 47357.155 13.972 7573.504 0.059 B- 3339.406 19.113 235 050840.000 15.000 + 55 145 90 235 Th x 44017.749 13.041 7584.385 0.055 B- 1728.853 19.113 235 047255.000 14.000 + 53 144 91 235 Pa x 42288.896 13.972 7588.413 0.059 B- 1368.242 14.086 235 045399.000 15.000 + 51 143 92 235 U 40920.654 1.789 7590.906 0.008 B- -124.220 0.854 235 043930.131 1.920 + 49 142 93 235 Np 41044.874 1.963 7587.049 0.008 B- -1138.955 20.501 235 044063.487 2.106 + 47 141 94 235 Pu -a 42183.829 20.567 7578.873 0.088 B- -2442.414 56.049 235 045286.206 22.079 + 45 140 95 235 Am -a 44626.243 52.198 7565.150 0.222 B- -3384# 208# 235 047908.245 56.037 + 43 139 96 235 Cm -a 48011# 202# 7547# 1# B- -4693# 448# 235 051542# 217# + 41 138 97 235 Bk x 52704# 401# 7524# 2# B- * 235 056580# 430# +0 58 147 89 236 Ac x 51220.992 38.191 7559.242 0.162 B- 4965.795 40.667 236 054988.000 41.000 + 56 146 90 236 Th x 46255.198 13.972 7576.968 0.059 B- 921.248 19.760 236 049657.000 15.000 + 54 145 91 236 Pa x 45333.950 13.972 7577.557 0.059 B- 2887.435 14.087 236 048668.000 15.000 + 52 144 92 236 U 42446.515 1.792 7586.476 0.008 B- -932.923 50.416 236 045568.210 1.923 + 50 143 93 236 Np IT 43379.438 50.435 7579.208 0.214 B- 476.585 50.389 236 046569.744 54.144 + 48 142 94 236 Pu 42902.852 2.160 7577.913 0.009 B- -3139# 112# 236 046058.109 2.318 + 46 141 95 236 Am -a 46042# 112# 7561# 0# B- -1813# 113# 236 049428# 120# + 44 140 96 236 Cm -a 47855.018 18.321 7550.299 0.078 B- -5687# 401# 236 051374.477 19.668 + 42 139 97 236 Bk x 53542# 401# 7523# 2# B- * 236 057480# 430# +0 59 148 89 237 Ac x 54278# 401# 7549# 2# B- 4323# 401# 237 058270# 430# + 57 147 90 237 Th x 49955.092 15.835 7563.443 0.067 B- 2427.473 20.514 237 053629.000 17.000 + 55 146 91 237 Pa x 47527.618 13.041 7570.384 0.055 B- 2135.563 13.171 237 051023.000 14.000 + 53 145 92 237 U 45392.055 1.849 7576.094 0.008 B- 518.590 0.509 237 048730.378 1.985 + 51 144 93 237 Np 44873.466 1.798 7574.981 0.008 B- -220.001 1.295 237 048173.649 1.930 + 49 143 94 237 Pu 45093.467 2.197 7570.752 0.009 B- -1478# 59# 237 048409.830 2.358 + 47 142 95 237 Am -a 46571# 59# 7561# 0# B- -2676# 93# 237 049996# 64# + 45 141 96 237 Cm -a 49247.430 70.961 7546.622 0.299 B- -3941# 235# 237 052869.294 76.180 + 43 140 97 237 Bk -a 53188# 224# 7527# 1# B- -4749# 241# 237 057100# 241# + 41 139 98 237 Cf -a 57936.868 87.406 7503.356 0.369 B- * 237 062197.789 93.834 +0 58 148 90 238 Th +a 52626# 283# 7554# 1# B- 1732# 284# 238 056496# 304# + 56 147 91 238 Pa x 50894.038 15.835 7558.344 0.067 B- 3584.926 15.947 238 054637.000 17.000 + 54 146 92 238 U 47309.112 1.881 7570.120 0.008 B- -147.351 1.203 238 050788.423 2.019 + 52 145 93 238 Np -n 47456.463 1.809 7566.213 0.008 B- 1291.516 0.446 238 050946.611 1.942 + 50 144 94 238 Pu 46164.946 1.799 7568.353 0.008 B- -2258.343 50.688 238 049560.111 1.931 + 48 143 95 238 Am -a 48423.290 50.719 7555.577 0.213 B- -1021.735 52.166 238 051984.542 54.449 + 46 142 96 238 Cm -a 49445.025 12.327 7547.997 0.052 B- -4771# 255# 238 053081.420 13.233 + 44 141 97 238 Bk -a 54216# 255# 7525# 1# B- -3061# 392# 238 058204# 274# + 42 140 98 238 Cf x 57278# 298# 7509# 1# B- * 238 061490# 320# +0 59 149 90 239 Th x 56607# 401# 7540# 2# B- 3270# 446# 239 060770# 430# + 57 148 91 239 Pa x 53337# 196# 7550# 1# B- 2763# 196# 239 057260# 210# + 55 147 92 239 U -n 50574.046 1.889 7558.556 0.008 B- 1261.461 1.556 239 054293.475 2.027 + 53 146 93 239 Np 49312.586 2.047 7560.561 0.009 B- 722.513 0.992 239 052939.241 2.197 + 51 145 94 239 Pu 48590.073 1.792 7560.310 0.008 B- -802.117 1.664 239 052163.591 1.924 + 49 144 95 239 Am -a 49392.190 2.419 7553.681 0.010 B- -1756.255 54.058 239 053024.699 2.596 + 47 143 96 239 Cm -a 51148.445 54.065 7543.059 0.226 B- -3103# 214# 239 054910.117 58.040 + 45 142 97 239 Bk -a 54251# 207# 7527# 1# B- -3995# 294# 239 058241# 222# + 43 141 98 239 Cf -a 58246# 209# 7507# 1# B- -5310# 364# 239 062529# 225# + 41 140 99 239 Es x 63556# 298# 7481# 1# B- * 239 068230# 320# +0 58 149 91 240 Pa x 56803# 298# 7538# 1# B- 4086# 298# 240 060980# 320# + 56 148 92 240 U 52716.372 5.282 7551.766 0.022 B- 398.614 17.308 240 056593.356 5.670 + 54 147 93 240 Np 52317.758 17.166 7550.167 0.072 B- 2190.573 17.075 240 056165.427 18.428 + 52 146 94 240 Pu 50127.186 1.790 7556.035 0.007 B- -1384.790 13.788 240 053813.750 1.921 + 50 145 95 240 Am +n 51511.976 13.903 7547.005 0.058 B- -213.589 13.898 240 055300.384 14.925 + 48 144 96 240 Cm 51725.565 2.240 7542.855 0.009 B- -3940# 150# 240 055529.681 2.404 + 46 143 97 240 Bk - 55666# 150# 7523# 1# B- -2325# 151# 240 059759# 161# + 44 142 98 240 Cf -a 57990.838 18.706 7510.230 0.078 B- -6208# 401# 240 062255.728 20.081 + 42 141 99 240 Es x 64199# 401# 7481# 2# B- * 240 068920# 430# +0 59 150 91 241 Pa x 59690# 401# 7528# 2# B- 3493# 499# 241 064080# 430# + 57 149 92 241 U x 56197# 298# 7539# 1# B- 1935# 306# 241 060330# 320# + 55 148 93 241 Np + 54261.981 70.733 7544.262 0.293 B- 1305.000 70.711 241 058252.636 75.935 + 53 147 94 241 Pu 52956.981 1.790 7546.431 0.007 B- 20.783 0.128 241 056851.661 1.921 + 51 146 95 241 Am 52936.198 1.794 7543.271 0.007 B- -767.384 1.169 241 056829.349 1.926 + 49 145 96 241 Cm 53703.583 2.129 7536.841 0.009 B- -2330# 200# 241 057653.170 2.285 + 47 144 97 241 Bk - 56034# 200# 7524# 1# B- -3293# 260# 241 060155# 215# + 45 143 98 241 Cf -a 59327# 166# 7507# 1# B- -4536# 280# 241 063690# 178# + 43 142 99 241 Es -a 63863# 225# 7485# 1# B- -5263# 374# 241 068560# 242# + 41 141 100 241 Fm x 69126# 298# 7460# 1# B- * 241 074210# 320# +0 58 150 92 242 U +a 58621# 201# 7532# 1# B- 1202# 283# 242 062932# 215# + 56 149 93 242 Np + 57418.575 200.008 7533.396 0.826 B- 2700.000 200.000 242 061641.379 214.717 + 54 148 94 242 Pu 54718.575 1.829 7541.321 0.008 B- -751.301 0.704 242 058742.809 1.963 + 52 147 95 242 Am -n 55469.876 1.797 7534.983 0.007 B- 664.458 0.402 242 059549.364 1.929 + 50 146 96 242 Cm 54805.418 1.801 7534.496 0.007 B- -2930# 200# 242 058836.039 1.933 + 48 145 97 242 Bk - 57735# 200# 7519# 1# B- -1651# 200# 242 061982# 215# + 46 144 98 242 Cf -a 59386.724 12.981 7509.099 0.054 B- -5415# 256# 242 063754.274 13.935 + 44 143 99 242 Es -a 64801# 256# 7483# 1# B- -3598# 475# 242 069567# 275# + 42 142 100 242 Fm x 68400# 401# 7465# 2# B- * 242 073430# 430# +0 59 151 92 243 U x 62401# 401# 7518# 2# B- 2524# 402# 243 066990# 430# + 57 150 93 243 Np IT 59877# 32# 7525# 0# B- 2121# 32# 243 064280# 34# + 55 149 94 243 Pu 57755.978 3.185 7531.002 0.013 B- 579.663 2.940 243 062003.595 3.419 + 53 148 95 243 Am 57176.315 2.266 7530.168 0.009 B- -7.473 1.713 243 061381.302 2.432 + 51 147 96 243 Cm -a 57183.788 2.052 7526.918 0.008 B- -1507.591 4.507 243 061389.325 2.203 + 49 146 97 243 Bk -a 58691.380 4.732 7517.494 0.019 B- -2300# 114# 243 063007.791 5.080 + 47 145 98 243 Cf -a 60991# 114# 7505# 0# B- -3757# 236# 243 065477# 123# + 45 144 99 243 Es -a 64748# 207# 7486# 1# B- -4616# 299# 243 069510# 222# + 43 143 100 243 Fm -a 69364# 215# 7464# 1# B- * 243 074465# 231# +0 58 151 93 244 Np x 63202# 298# 7514# 1# B- 3395# 298# 244 067850# 320# + 56 150 94 244 Pu 59806.815 5.190 7524.811 0.021 B- -74.326 5.002 244 064205.260 5.571 + 54 149 95 244 Am + 59881.141 2.051 7521.300 0.008 B- 1427.300 1.000 244 064285.052 2.202 + 52 148 96 244 Cm -a 58453.841 1.791 7523.944 0.007 B- -2261.850 14.356 244 062752.783 1.922 + 50 147 97 244 Bk -a 60715.692 14.467 7511.468 0.059 B- -763.659 14.574 244 065180.979 15.531 + 48 146 98 244 Cf 61479.351 2.866 7505.131 0.012 B- -4547# 181# 244 066000.801 3.076 + 46 145 99 244 Es -a 66027# 181# 7483# 1# B- -2939# 271# 244 070883# 195# + 44 144 100 244 Fm -a 68966# 201# 7468# 1# B- * 244 074038# 216# +0 59 152 93 245 Np x 65950# 401# 7505# 2# B- 2770# 401# 245 070800# 430# + 57 151 94 245 Pu -n 63179.566 14.385 7513.276 0.059 B- 1277.287 14.522 245 067826.058 15.443 + 55 150 95 245 Am 61902.280 3.176 7515.296 0.013 B- 897.383 2.425 245 066454.834 3.409 + 53 149 96 245 Cm 61004.897 2.051 7515.765 0.008 B- -810.742 1.729 245 065491.454 2.201 + 51 148 97 245 Bk -a 61815.639 2.279 7509.263 0.009 B- -1571.296 2.586 245 066361.821 2.446 + 49 147 98 245 Cf 63386.935 2.789 7499.656 0.011 B- -2981# 200# 245 068048.677 2.994 + 47 146 99 245 Es -a 66368# 200# 7484# 1# B- -3820# 279# 245 071249# 215# + 45 145 100 245 Fm -a 70187# 195# 7466# 1# B- -5085# 362# 245 075349# 209# + 43 144 101 245 Md -a 75272# 305# 7442# 1# B- * 245 080808# 328# +0 58 152 94 246 Pu 65395.964 15.266 7506.534 0.062 B- 401# 14# 246 070205.458 16.388 + 56 151 95 246 Am IT 64995# 18# 7505# 0# B- 2377# 18# 246 069775# 20# + 54 150 96 246 Cm 62618.605 2.034 7511.464 0.008 B- -1350.000 60.000 246 067223.841 2.183 + 52 149 97 246 Bk - 63968.605 60.034 7502.796 0.244 B- -123.335 60.020 246 068673.126 64.449 + 50 148 98 246 Cf 64091.940 2.055 7499.114 0.008 B- -3810# 224# 246 068805.531 2.206 + 48 147 99 246 Es -a 67902# 224# 7480# 1# B- -2286# 224# 246 072896# 240# + 46 146 100 246 Fm -a 70188.512 15.408 7467.971 0.063 B- -5926# 260# 246 075350.470 16.540 + 44 145 101 246 Md -a 76115# 259# 7441# 1# B- * 246 081713# 278# +0 59 153 94 247 Pu x 69108# 196# 7494# 1# B- 1953# 220# 247 074190# 210# + 57 152 95 247 Am + 67154# 100# 7499# 0# B- 1620# 100# 247 072093# 107# + 55 151 96 247 Cm 65534.451 4.370 7501.926 0.018 B- 43.621 6.534 247 070354.131 4.690 + 53 150 97 247 Bk -a 65490.830 5.489 7498.935 0.022 B- -613.073 16.287 247 070307.302 5.893 + 51 149 98 247 Cf +a 66103.904 15.334 7493.285 0.062 B- -2474.564 24.760 247 070965.463 16.461 + 49 148 99 247 Es +a 68578.468 19.441 7480.099 0.079 B- -3095# 116# 247 073622.017 20.870 + 47 147 100 247 Fm +a 71674# 115# 7464# 0# B- -4264# 237# 247 076945# 123# + 45 146 101 247 Md -a 75937# 207# 7444# 1# B- * 247 081522# 222# +0 58 153 95 248 Am + 70563# 200# 7487# 1# B- 3170# 200# 248 075753# 215# + 56 152 96 248 Cm 67393.463 5.193 7496.725 0.021 B- -687# 71# 248 072349.862 5.575 + 54 151 97 248 Bk IT 68081# 71# 7491# 0# B- 841# 71# 248 073088# 76# + 52 150 98 248 Cf -a 67239.957 5.311 7491.035 0.021 B- -3061# 53# 248 072185.066 5.701 + 50 149 99 248 Es -a 70301# 52# 7476# 0# B- -1598# 53# 248 075471# 56# + 48 148 100 248 Fm 71898.728 8.546 7465.941 0.034 B- -5250# 238# 248 077186.463 9.174 + 46 147 101 248 Md -a 77149# 237# 7442# 1# B- -3472# 327# 248 082823# 255# + 44 146 102 248 No -a 80621# 224# 7424# 1# B- * 248 086550# 241# +0 59 154 95 249 Am x 73104# 298# 7479# 1# B- 2352# 298# 249 078480# 320# + 57 153 96 249 Cm -n 70751.410 5.199 7485.547 0.021 B- 900.839 5.236 249 075954.767 5.581 + 55 152 97 249 Bk 69850.571 2.551 7486.023 0.010 B- 124.609 1.370 249 074987.676 2.738 + 53 151 98 249 Cf 69725.962 2.165 7483.382 0.009 B- -1451# 30# 249 074853.903 2.324 + 51 150 99 249 Es -a 71177# 30# 7474# 0# B- -2344# 31# 249 076411# 32# + 49 149 100 249 Fm 73520.540 6.306 7461.859 0.025 B- -3713# 201# 249 078927.550 6.770 + 47 148 101 249 Md -a 77234# 201# 7444# 1# B- -4549# 344# 249 082914# 216# + 45 147 102 249 No -a 81782# 279# 7422# 1# B- * 249 087797# 300# +0 58 154 96 250 Cm -nn 72990.299 11.268 7478.935 0.045 B- 38.764 11.652 250 078358.313 12.096 + 56 153 97 250 Bk +a 72951.535 3.954 7475.961 0.016 B- 1779.577 3.386 250 078316.698 4.245 + 54 152 98 250 Cf -a 71171.958 2.043 7479.949 0.008 B- -2055# 100# 250 076406.244 2.193 + 52 151 99 250 Es - 73227# 100# 7469# 0# B- -846# 100# 250 078612# 107# + 50 150 100 250 Fm 74073.366 8.019 7462.085 0.032 B- -4558# 301# 250 079521.034 8.608 + 48 149 101 250 Md -a 78632# 301# 7441# 1# B- -2932# 362# 250 084415# 323# + 46 148 102 250 No -a 81563# 201# 7426# 1# B- * 250 087562# 215# +0 59 155 96 251 Cm + 76649.327 22.801 7466.717 0.091 B- 1420.000 20.000 251 082286.441 24.478 + 57 154 97 251 Bk + 75229.327 10.950 7469.258 0.044 B- 1093.000 10.000 251 080762.009 11.754 + 55 153 98 251 Cf -a 74136.327 4.460 7470.495 0.018 B- -377.219 7.245 251 079588.625 4.788 + 53 152 99 251 Es -a 74513.546 6.256 7465.875 0.025 B- -1440.373 16.440 251 079993.586 6.715 + 51 151 100 251 Fm +a 75953.919 15.203 7457.020 0.061 B- -3012.904 24.271 251 081539.890 16.320 + 49 150 101 251 Md +a 78966.824 18.919 7441.900 0.075 B- -3884# 116# 251 084774.376 20.310 + 47 149 102 251 No IT 82850# 114# 7423# 0# B- -4878# 319# 251 088944# 123# + 45 148 103 251 Lr x 87728# 298# 7401# 1# B- * 251 094180# 320# +0 60 156 96 252 Cm x 79056# 298# 7460# 1# B- 521# 359# 252 084870# 320# + 58 155 97 252 Bk + 78535# 200# 7459# 1# B- 2500# 200# 252 084311# 215# + 56 154 98 252 Cf -a 76035.247 5.193 7465.344 0.021 B- -1260.000 50.000 252 081627.199 5.575 + 54 153 99 252 Es - 77295.247 50.269 7457.240 0.199 B- 477.674 50.528 252 082979.865 53.965 + 52 152 100 252 Fm -a 76817.572 5.675 7456.031 0.023 B- -3693# 130# 252 082467.060 6.092 + 50 151 101 252 Md IT 80511# 130# 7438# 1# B- -2362# 131# 252 086432# 140# + 48 150 102 252 No 82872.142 9.328 7425.795 0.037 B- -5866# 238# 252 088966.908 10.014 + 46 149 103 252 Lr -a 88738# 238# 7399# 1# B- * 252 095264# 255# +0 59 156 97 253 Bk -a 80929# 359# 7451# 1# B- 1626# 359# 253 086880# 385# + 57 155 98 253 Cf -a 79302.276 6.287 7454.826 0.025 B- 287.630 6.318 253 085134.499 6.749 + 55 154 99 253 Es -a 79014.646 2.551 7452.871 0.010 B- -334.272 3.013 253 084825.715 2.738 + 53 153 100 253 Fm -a 79348.918 3.448 7448.457 0.014 B- -1826# 31# 253 085184.571 3.701 + 51 152 101 253 Md -a 81175# 31# 7438# 0# B- -3185# 32# 253 087144# 34# + 49 151 102 253 No 84359.919 6.978 7422.466 0.028 B- -4217# 202# 253 090564.103 7.490 + 47 150 103 253 Lr -a 88577# 202# 7403# 1# B- -4980# 457# 253 095091# 217# + 45 149 104 253 Rf -a 93557# 410# 7380# 2# B- * 253 100438# 440# +0 60 157 97 254 Bk x 84393# 298# 7440# 1# B- 3051# 298# 254 090600# 320# + 58 156 98 254 Cf -a 81342.027 12.360 7449.223 0.049 B- -650.123 12.800 254 087324.263 13.269 + 56 155 99 254 Es -a 81992.151 4.229 7443.583 0.017 B- 1087.800 3.202 254 088022.199 4.540 + 54 154 100 254 Fm -a 80904.351 2.763 7444.786 0.011 B- -2550# 100# 254 086854.397 2.966 + 52 153 101 254 Md - 83454# 100# 7432# 0# B- -1270# 101# 254 089592# 107# + 50 152 102 254 No 84724.653 10.023 7423.585 0.039 B- -5148# 301# 254 090955.661 10.759 + 48 151 103 254 Lr -a 89873# 301# 7400# 1# B- -3325# 414# 254 096483# 323# + 46 150 104 254 Rf -a 93198# 283# 7384# 1# B- * 254 100053# 304# +0 59 157 98 255 Cf + 84811# 200# 7438# 1# B- 720# 200# 255 091048# 215# + 57 156 99 255 Es -a 84090.583 11.031 7437.816 0.043 B- 289.620 10.247 255 090274.958 11.842 + 55 155 100 255 Fm -a 83800.963 4.806 7435.883 0.019 B- -1043.376 7.919 255 089964.038 5.158 + 53 154 101 255 Md -a 84844.339 6.793 7428.724 0.027 B- -1962.896 16.379 255 091084.149 7.293 + 51 153 102 255 No x 86807.235 14.904 7417.958 0.058 B- -3140.066 23.138 255 093191.404 16.000 + 49 152 103 255 Lr x 89947.301 17.698 7402.576 0.069 B- -4383# 116# 255 096562.404 19.000 + 47 151 104 255 Rf -a 94331# 115# 7382# 0# B- -5402# 438# 255 101268# 123# + 45 150 105 255 Db -a 99733# 423# 7358# 2# B- * 255 107068# 454# +0 60 158 98 256 Cf -a 87041# 314# 7432# 1# B- -147# 330# 256 093442# 338# + 58 157 99 256 Es + 87187# 100# 7428# 0# B- 1700# 100# 256 093599# 108# + 56 156 100 256 Fm -a 85487.368 7.264 7431.778 0.028 B- -1969# 123# 256 091774.469 7.798 + 54 155 101 256 Md IT 87457# 123# 7421# 0# B- -367# 123# 256 093889# 132# + 52 154 102 256 No -a 87823.929 7.870 7416.539 0.031 B- -3922.670 83.276 256 094282.870 8.448 + 50 153 103 256 Lr x 91746.599 82.903 7398.160 0.324 B- -2476.086 84.806 256 098494.030 89.000 + 48 152 104 256 Rf -a 94222.685 17.867 7385.431 0.070 B- -6276# 241# 256 101152.218 19.180 + 46 151 105 256 Db -a 100499# 240# 7358# 1# B- * 256 107890# 258# +0 59 158 99 257 Es -a 89403# 411# 7422# 2# B- 813# 411# 257 095979# 441# + 57 157 100 257 Fm -a 88590.741 6.445 7422.191 0.025 B- -406.420 6.551 257 095106.078 6.918 + 55 156 101 257 Md -a 88997.161 2.740 7417.566 0.011 B- -1253.272 6.788 257 095542.387 2.941 + 53 155 102 257 No -a 90250.433 6.920 7409.645 0.027 B- -2357# 45# 257 096887.830 7.429 + 51 154 103 257 Lr -a 92607# 44# 7397# 0# B- -3261# 45# 257 099418# 47# + 49 153 104 257 Rf -a 95867.612 10.859 7381.700 0.042 B- -4341# 203# 257 102918.120 11.657 + 47 152 105 257 Db -a 100208# 203# 7362# 1# B- * 257 107578# 218# +0 60 159 99 258 Es x 92702# 298# 7412# 1# B- 2275# 359# 258 099520# 320# + 58 158 100 258 Fm -a 90427# 200# 7418# 1# B- -1261# 200# 258 097077# 215# + 56 157 101 258 Md -a 91688.349 4.619 7409.668 0.018 B- 209# 100# 258 098431.496 4.958 + 54 156 102 258 No -a 91479# 100# 7407# 0# B- -3304# 143# 258 098207# 107# + 52 155 103 258 Lr -a 94784# 102# 7392# 0# B- -1559# 107# 258 101755# 109# + 50 154 104 258 Rf -a 96342.263 32.079 7382.533 0.124 B- -5456# 307# 258 103427.679 34.438 + 48 153 105 258 Db -a 101799# 305# 7358# 1# B- -3445# 513# 258 109285# 328# + 46 152 106 258 Sg -a 105243# 413# 7342# 2# B- * 258 112983# 443# +0 59 159 100 259 Fm -a 93705# 283# 7407# 1# B- 80# 346# 259 100597# 304# + 57 158 101 259 Md -a 93625# 200# 7405# 1# B- -486# 224# 259 100511# 215# + 55 157 102 259 No -a 94111# 100# 7400# 0# B- -1742# 123# 259 101032# 108# + 53 156 103 259 Lr -a 95853# 71# 7390# 0# B- -2509# 101# 259 102902# 76# + 51 155 104 259 Rf -a 98362# 72# 7377# 0# B- -3629# 90# 259 105596# 78# + 49 154 105 259 Db -a 101991.017 53.040 7360.362 0.205 B- -4568# 128# 259 109491.866 56.940 + 47 153 106 259 Sg -a 106559# 116# 7340# 0# B- * 259 114396# 125# +0 60 160 100 260 Fm -a 95766# 509# 7402# 2# B- -787# 599# 260 102809# 546# + 58 159 101 260 Md -a 96552# 316# 7396# 1# B- 940# 374# 260 103653# 340# + 56 158 102 260 No -a 95612# 200# 7397# 1# B- -2665# 235# 260 102644# 215# + 54 157 103 260 Lr -a 98277# 124# 7383# 0# B- -872# 236# 260 105505# 133# + 52 156 104 260 Rf -a 99149# 200# 7377# 1# B- -4524# 221# 260 106441# 215# + 50 155 105 260 Db -a 103673# 93# 7357# 0# B- -2875# 95# 260 111297# 100# + 48 154 106 260 Sg -a 106548.108 20.552 7342.560 0.079 B- -6776# 246# 260 114384.105 22.063 + 46 153 107 260 Bh -a 113324# 245# 7313# 1# B- * 260 121659# 263# +0 59 160 101 261 Md -a 98578# 573# 7391# 2# B- 123# 607# 261 105828# 616# + 57 159 102 261 No -a 98456# 200# 7388# 1# B- -1106# 283# 261 105697# 215# + 55 158 103 261 Lr -a 99562# 200# 7381# 1# B- -1760# 206# 261 106884# 215# + 53 157 104 261 Rf -a 101321.771 50.477 7371.372 0.193 B- -2928# 121# 261 108773.401 54.188 + 51 156 105 261 Db -a 104250# 110# 7357# 0# B- -3756# 112# 261 111917# 118# + 49 155 106 261 Sg -a 108006.228 18.518 7339.766 0.071 B- -5128# 210# 261 115949.461 19.879 + 47 154 107 261 Bh -a 113135# 209# 7317# 1# B- * 261 121455# 224# +0 60 161 101 262 Md -a 101627# 423# 7382# 2# B- 1525# 556# 262 109101# 454# + 58 160 102 262 No -a 100102# 361# 7385# 1# B- -2001# 413# 262 107464# 387# + 56 159 103 262 Lr -a 102103# 200# 7374# 1# B- -291# 300# 262 109612# 215# + 54 158 104 262 Rf -a 102394# 224# 7370# 1# B- -3863# 265# 262 109925# 240# + 52 157 105 262 Db -a 106257# 143# 7352# 1# B- -2110# 147# 262 114072# 154# + 50 156 106 262 Sg -a 108366.919 35.512 7341.181 0.136 B- -6176# 308# 262 116336.679 38.123 + 48 155 107 262 Bh -a 114543# 306# 7315# 1# B- * 262 122967# 328# +0 59 161 102 263 No -a 103130# 490# 7376# 2# B- -600# 566# 263 110715# 526# + 57 160 103 263 Lr -a 103730# 283# 7371# 1# B- -1058# 337# 263 111359# 304# + 55 159 104 263 Rf -a 104788# 183# 7364# 1# B- -2324# 248# 263 112495# 196# + 53 158 105 263 Db -a 107112# 168# 7352# 1# B- -3078# 193# 263 114990# 181# + 51 157 106 263 Sg -a 110190# 95# 7337# 0# B- -4306# 319# 263 118294# 102# + 49 156 107 263 Bh -a 114496# 305# 7318# 1# B- -5222# 330# 263 122916# 327# + 47 155 108 263 Hs -a 119718# 127# 7295# 0# B- * 263 128522# 136# +0 60 162 102 264 No -a 105011# 647# 7371# 2# B- -1367# 780# 264 112734# 695# + 58 161 103 264 Lr -a 106377# 436# 7363# 2# B- 300# 566# 264 114201# 468# + 56 160 104 264 Rf -a 106077# 361# 7361# 1# B- -3285# 431# 264 113879# 387# + 54 159 105 264 Db -a 109362# 235# 7346# 1# B- -1422# 368# 264 117405# 253# + 52 158 106 264 Sg -a 110784# 283# 7338# 1# B- -5274# 334# 264 118931# 304# + 50 157 107 264 Bh -a 116058# 177# 7315# 1# B- -3506# 180# 264 124593# 190# + 48 156 108 264 Hs -a 119563.699 28.893 7298.373 0.109 B- * 264 128356.917 31.017 +0 59 162 103 265 Lr -a 108233# 607# 7359# 2# B- -457# 706# 265 116193# 652# + 57 161 104 265 Rf -a 108691# 361# 7354# 1# B- -1796# 424# 265 116684# 387# + 55 160 105 265 Db -a 110487# 224# 7344# 1# B- -2310# 255# 265 118613# 240# + 53 159 106 265 Sg -a 112797# 123# 7333# 0# B- -3559# 264# 265 121093# 132# + 51 158 107 265 Bh -a 116357# 234# 7316# 1# B- -4545# 235# 265 124914# 251# + 49 157 108 265 Hs -a 120901.389 23.977 7296.242 0.090 B- -5778# 452# 265 129792.986 25.739 + 47 156 109 265 Mt -a 126680# 451# 7271# 2# B- * 265 135996# 484# +0 60 163 103 266 Lr -a 111622# 519# 7349# 2# B- 1545# 699# 266 119831# 557# + 58 162 104 266 Rf -a 110077# 469# 7352# 2# B- -2661# 548# 266 118172# 504# + 56 161 105 266 Db -a 112738# 283# 7339# 1# B- -881# 374# 266 121029# 304# + 54 160 106 266 Sg -a 113619# 245# 7332# 1# B- -4489# 294# 266 121975# 263# + 52 159 107 266 Bh -a 118108# 163# 7313# 1# B- -3029# 167# 266 126794# 175# + 50 158 108 266 Hs -a 121137.442 38.787 7298.269 0.146 B- -6826# 309# 266 130046.400 41.639 + 48 157 109 266 Mt -a 127963# 307# 7270# 1# B- * 266 137374# 329# +0 59 163 104 267 Rf -a 113445# 575# 7342# 2# B- -630# 707# 267 121789# 617# + 57 162 105 267 Db -a 114075# 412# 7336# 2# B- -1763# 496# 267 122465# 443# + 55 161 106 267 Sg -a 115838# 275# 7327# 1# B- -2929# 381# 267 124357# 296# + 53 160 107 267 Bh -a 118767# 263# 7313# 1# B- -3886# 279# 267 127501# 282# + 51 159 108 267 Hs -a 122653# 96# 7295# 0# B- -5138# 512# 267 131673# 103# + 49 158 109 267 Mt -a 127791# 503# 7273# 2# B- -6128# 521# 267 137189# 540# + 47 157 110 267 Ds -a 133919# 136# 7247# 1# B- * 267 143768# 147# +0 60 164 104 268 Rf -a 115476# 713# 7337# 3# B- -1587# 888# 268 123968# 766# + 58 163 105 268 Db -a 117062# 529# 7328# 2# B- 260# 707# 268 125671# 568# + 56 162 106 268 Sg -a 116802# 469# 7326# 2# B- -4005# 605# 268 125392# 504# + 54 161 107 268 Bh -a 120807# 381# 7308# 1# B- -2024# 475# 268 129692# 409# + 52 160 108 268 Hs -a 122831# 283# 7298# 1# B- -6319# 367# 268 131865# 304# + 50 159 109 268 Mt -a 129151# 233# 7271# 1# B- -4498# 381# 268 138649# 250# + 48 158 110 268 Ds -a 133649# 301# 7252# 1# B- * 268 143478# 324# +0 59 164 105 269 Db -a 119148# 677# 7323# 3# B- -667# 769# 269 127911# 727# + 57 163 106 269 Sg -a 119815# 364# 7318# 1# B- -1667# 522# 269 128627# 391# + 55 162 107 269 Bh -a 121482# 374# 7309# 1# B- -3108# 394# 269 130416# 402# + 53 161 108 269 Hs -a 124590# 125# 7294# 0# B- -4721# 480# 269 133753# 134# + 51 160 109 269 Mt -a 129312# 463# 7274# 2# B- -5524# 464# 269 138822# 497# + 49 159 110 269 Ds -a 134835.736 31.418 7250.150 0.117 B- * 269 144752.124 33.728 +0 60 165 105 270 Db -a 122357# 599# 7314# 2# B- 865# 818# 270 131356# 643# + 58 164 106 270 Sg -a 121492# 557# 7314# 2# B- -2735# 627# 270 130427# 598# + 56 163 107 270 Bh -a 124227# 287# 7301# 1# B- -863# 380# 270 133363# 308# + 54 162 108 270 Hs -a 125090# 249# 7295# 1# B- -5624# 301# 270 134290# 267# + 52 161 109 270 Mt -a 130714# 170# 7271# 1# B- -3965# 177# 270 140327# 183# + 50 160 110 270 Ds -a 134679.272 48.086 7253.771 0.178 B- * 270 144584.153 51.621 +0 59 165 106 271 Sg -a 124758# 585# 7305# 2# B- -1232# 734# 271 133933# 628# + 57 164 107 271 Bh -a 125990# 443# 7298# 2# B- -1783# 534# 271 135256# 476# + 55 163 108 271 Hs -a 127773# 297# 7288# 1# B- -3329# 444# 271 137170# 319# + 53 162 109 271 Mt -a 131102# 330# 7273# 1# B- -4846# 344# 271 140744# 354# + 51 161 110 271 Ds -a 135947# 97# 7252# 0# B- * 271 145946# 104# +0 60 166 106 272 Sg -a 126580# 774# 7301# 3# B- -2211# 944# 272 135890# 831# + 58 165 107 272 Bh -a 128792# 541# 7290# 2# B- -215# 743# 272 138264# 581# + 56 164 108 272 Hs -a 129007# 510# 7286# 2# B- -4575# 704# 272 138495# 547# + 54 163 109 272 Mt -a 133582# 485# 7267# 2# B- -2434# 637# 272 143406# 521# + 52 162 110 272 Ds -a 136016# 413# 7255# 2# B- -6756# 474# 272 146020# 443# + 50 161 111 272 Rg -a 142773# 233# 7227# 1# B- * 272 153273# 251# +0 61 167 106 273 Sg x 130018# 503# 7291# 2# B- -615# 895# 273 139580# 540# + 59 166 107 273 Bh -a 130633# 741# 7286# 3# B- -1340# 827# 273 140240# 795# + 57 165 108 273 Hs -a 131973# 367# 7278# 1# B- -2534# 604# 273 141679# 395# + 55 164 109 273 Mt -a 134507# 480# 7266# 2# B- -3876# 498# 273 144399# 515# + 53 163 110 273 Ds -a 138383# 134# 7249# 0# B- -4253# 543# 273 148560# 144# + 51 162 111 273 Rg -a 142636# 526# 7231# 2# B- * 273 153127# 565# +0 60 167 107 274 Bh -a 133714# 601# 7278# 2# B- 227# 844# 274 143548# 645# + 58 166 108 274 Hs -a 133487# 592# 7276# 2# B- -3671# 689# 274 143304# 635# + 56 165 109 274 Mt -a 137158# 354# 7260# 1# B- -2017# 526# 274 147245# 380# + 54 164 110 274 Ds -a 139175# 390# 7249# 1# B- -5442# 428# 274 149411# 418# + 52 163 111 274 Rg -a 144617# 177# 7227# 1# B- * 274 155253# 190# +0 61 168 107 275 Bh x 135691# 596# 7273# 2# B- -930# 837# 275 145670# 640# + 59 167 108 275 Hs -a 136621# 587# 7267# 2# B- -2005# 751# 275 146668# 631# + 57 166 109 275 Mt -a 138625# 468# 7257# 2# B- -2993# 630# 275 148820# 502# + 55 165 110 275 Ds -a 141618# 422# 7243# 2# B- -3639# 669# 275 152033# 453# + 53 164 111 275 Rg -a 145257# 519# 7227# 2# B- * 275 155939# 557# +0 60 168 108 276 Hs -a 138285# 799# 7264# 3# B- -2924# 972# 276 148455# 858# + 58 167 109 276 Mt -a 141209# 552# 7251# 2# B- -1333# 778# 276 151594# 593# + 56 166 110 276 Ds -a 142542# 548# 7243# 2# B- -4945# 834# 276 153025# 588# + 54 165 111 276 Rg -a 147487# 629# 7222# 2# B- -2866# 867# 276 158334# 675# + 52 164 112 276 Cn x 150352# 596# 7209# 2# B- * 276 161410# 640# +0 61 169 108 277 Hs -a 141493# 541# 7255# 2# B- -1275# 939# 277 151899# 581# + 59 168 109 277 Mt -a 142768# 767# 7248# 3# B- -2465# 858# 277 153268# 824# + 57 167 110 277 Ds -a 145233# 384# 7236# 1# B- -2939# 684# 277 155914# 412# + 55 166 111 277 Rg -a 148172# 566# 7223# 2# B- -4259# 584# 277 159069# 607# + 53 165 112 277 Cn -a 152430# 143# 7205# 1# B- * 277 163641# 154# +0 60 169 109 278 Mt -a 145599# 634# 7241# 2# B- -683# 890# 278 156307# 680# + 58 168 110 278 Ds -a 146282# 625# 7236# 2# B- -4148# 719# 278 157040# 671# + 56 167 111 278 Rg -a 150430# 357# 7218# 1# B- -2480# 565# 278 161493# 383# + 54 166 112 278 Cn -a 152910# 438# 7206# 2# B- -5983# 475# 278 164156# 470# + 52 165 113 278 Ed -a 158893# 184# 7182# 1# B- * 278 170578# 198# +0 61 170 109 279 Mt -a 147246# 667# 7238# 2# B- -1884# 896# 279 158075# 716# + 59 169 110 279 Ds -a 149130# 598# 7228# 2# B- -2445# 761# 279 160097# 642# + 57 168 111 279 Rg -a 151574# 471# 7217# 2# B- -3559# 663# 279 162722# 505# + 55 167 112 279 Cn -a 155133# 467# 7201# 2# B- -4106# 840# 279 166542# 502# + 53 166 113 279 Ed x 159239# 699# 7184# 3# B- * 279 170950# 750# +0 60 170 110 280 Ds -a 150260# 824# 7227# 3# B- -3565# 998# 280 161311# 885# + 58 169 111 280 Rg -a 153825# 564# 7212# 2# B- -1871# 811# 280 165138# 605# + 56 168 112 280 Cn -a 155697# 583# 7202# 2# B- -5386# 910# 280 167147# 626# + 54 167 113 280 Ed x 161083# 699# 7180# 2# B- * 280 172930# 750# +0 61 171 110 281 Ds -a 153241# 553# 7220# 2# B- -1722# 992# 281 164511# 593# + 59 170 111 281 Rg -a 154963# 824# 7211# 3# B- -3154# 910# 281 166360# 885# + 57 169 112 281 Cn -a 158117# 387# 7197# 1# B- -3478# 799# 281 169746# 416# + 55 168 113 281 Ed x 161596# 699# 7182# 2# B- * 281 173480# 750# +0 60 171 111 282 Rg -a 157534# 666# 7205# 2# B- -1283# 935# 282 169119# 715# + 58 170 112 282 Cn -a 158816# 656# 7197# 2# B- -4821# 748# 282 170496# 704# + 56 169 113 282 Ed -a 163638# 361# 7178# 1# B- * 282 175672# 387# +0 61 172 111 283 Rg -a 158861# 732# 7203# 3# B- -2539# 952# 283 170544# 786# + 59 171 112 283 Cn -a 161400# 608# 7191# 2# B- -3075# 777# 283 173270# 653# + 57 170 113 283 Ed -a 164475# 484# 7178# 2# B- * 283 176571# 519# +0 60 172 112 284 Cn -a 162225# 848# 7192# 3# B- -4258# 1024# 284 174156# 910# + 58 171 113 284 Ed -a 166483# 575# 7174# 2# B- * 284 178727# 617# +0 61 173 112 285 Cn -a 164983# 555# 7185# 2# B- -2431# 995# 285 177117# 596# + 59 172 113 285 Ed -a 167415# 825# 7174# 3# B- -3647# 933# 285 179727# 886# + 57 171 114 285 Fl -a 171062# 436# 7158# 2# B- * 285 183643# 468# +0 60 173 113 286 Ed -a 169725# 668# 7169# 2# B- -1888# 937# 286 182208# 717# + 58 172 114 286 Fl -a 171613# 657# 7159# 2# B- * 286 184235# 705# +0 61 174 113 287 Ed -a 170825# 759# 7168# 3# B- -3161# 974# 287 183389# 814# + 59 173 114 287 Fl -a 173987# 610# 7154# 2# B- -3653# 781# 287 186783# 655# + 57 172 115 287 Ef -a 177639# 488# 7139# 2# B- * 287 190704# 523# +0 60 174 114 288 Fl -a 174722# 848# 7155# 3# B- -4814# 1025# 288 187572# 910# + 58 173 115 288 Ef -a 179536# 577# 7136# 2# B- * 288 192740# 619# +0 61 175 114 289 Fl -a 177374# 557# 7149# 2# B- -2988# 997# 289 190419# 598# + 59 174 115 289 Ef -a 180363# 827# 7136# 3# B- -4224# 982# 289 193627# 888# + 57 173 116 289 Lv -a 184587# 529# 7119# 2# B- * 289 198162# 568# +0 60 175 115 290 Ef -a 182550# 677# 7132# 2# B- -2480# 947# 290 195975# 727# + 58 174 116 290 Lv -a 185030# 662# 7120# 2# B- * 290 198638# 710# +0 61 176 115 291 Ef -a 183570# 816# 7131# 3# B- -3731# 1020# 291 197071# 876# + 59 175 116 291 Lv -a 187302# 612# 7116# 2# B- -4153# 879# 291 201077# 658# + 57 174 117 291 Eh -a 191454# 631# 7099# 2# B- * 291 205535# 677# +0 60 176 116 292 Lv -a 187921# 848# 7117# 3# B- -5329# 1101# 292 201742# 910# + 58 175 117 292 Eh -a 193251# 702# 7096# 2# B- * 292 207463# 753# +0 61 177 116 293 Lv -a 190479# 559# 7111# 2# B- -3492# 1000# 293 204487# 601# + 59 176 117 293 Eh -a 193970# 828# 7097# 3# B- -4962# 1103# 293 208236# 889# + 57 175 118 293 Ei -a 198932# 728# 7077# 2# B- * 293 213562# 782# +0 60 177 117 294 Eh -a 196044# 687# 7093# 2# B- -3222# 955# 294 210462# 737# + 58 176 118 294 Ei -a 199266# 664# 7080# 2# B- * 294 213921# 713# +0 59 177 118 295 Ei -a 201427# 644# 7076# 2# B- * 295 216240# 692# diff --git a/setup.py b/setup.py index 393f40bd35..4479bb82c5 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,12 @@ if have_setuptools: 'sparse' : ['scipy'], 'vtk': ['vtk', 'silomesh'], 'validate': ['lxml'] - }}) + }, + + # Data files + 'package_data': { + 'openmc.data': ['mass.mas12'] + }, + }) setup(**kwargs) From 45fb021e8906012c7c3f449c50ca4335cb66519e Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 8 Aug 2016 07:05:55 -0500 Subject: [PATCH 11/16] Strip metastable info when getting atomic mass --- openmc/data/data.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openmc/data/data.py b/openmc/data/data.py index da1406a9cf..ebc2cba432 100644 --- a/openmc/data/data.py +++ b/openmc/data/data.py @@ -213,4 +213,8 @@ def atomic_mass(isotope): line[100:106] + '.' + line[107:112]) _ATOMIC_MASS[name.lower()] = mass + # Get rid of metastable information + if '_' in isotope: + isotope = isotope[:isotope.find('_')] + return _ATOMIC_MASS.get(isotope.lower()) From d8b9d78a23f76eb8d35b6d7b69ae8a6986f19e76 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 8 Aug 2016 06:49:24 -0500 Subject: [PATCH 12/16] Respond to comments on #692 and make a few little fixes --- openmc/data/ace.py | 2 +- openmc/data/function.py | 2 +- openmc/data/neutron.py | 6 +++++- openmc/data/thermal.py | 1 + scripts/openmc-ace-to-hdf5 | 12 +++++++++--- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/openmc/data/ace.py b/openmc/data/ace.py index 03052bcabc..4085b4222f 100644 --- a/openmc/data/ace.py +++ b/openmc/data/ace.py @@ -282,7 +282,7 @@ class Library(object): lines = [ace_file.readline() for i in range(13)] - while len(lines) != 0 and lines[0] != '': + while len(lines) != 0 and lines[0].strip() != '': # Read name of table, atomic mass ratio, and temperature. If first # line is empty, we are at end of file diff --git a/openmc/data/function.py b/openmc/data/function.py index bea6f5e9a6..56a3d4a45f 100644 --- a/openmc/data/function.py +++ b/openmc/data/function.py @@ -97,7 +97,7 @@ class Tabulated1D(object): if self.interpolation[k] == 1: # Histogram - y[contined] = yi + y[contained] = yi elif self.interpolation[k] == 2: # Linear-linear diff --git a/openmc/data/neutron.py b/openmc/data/neutron.py index 75c38e823f..450cf81ec9 100644 --- a/openmc/data/neutron.py +++ b/openmc/data/neutron.py @@ -178,7 +178,7 @@ class IncidentNeutron(object): @temperature.setter def temperature(self, temperature): cv.check_type('temperature', temperature, Real) - cv.check_greater_than('temperature', temperature, 0.0) + cv.check_greater_than('temperature', temperature, 0.0, True) self._temperature = temperature @energy.setter @@ -448,6 +448,10 @@ class IncidentNeutron(object): # Create summed reaction with appropriate cross section rx = Reaction(mt) mts = data.get_reaction_components(mt) + if len(mts) == 0: + warn('Photon production is present for MT={} but no ' + 'reaction components exist.'.format(mt)) + continue rx.xs = Sum([data.reactions[mt_i].xs for mt_i in mts]) # Determine summed cross section diff --git a/openmc/data/thermal.py b/openmc/data/thermal.py index 6e3f6d452a..9de39f518d 100644 --- a/openmc/data/thermal.py +++ b/openmc/data/thermal.py @@ -16,6 +16,7 @@ from openmc.stats import Discrete, Tabular _THERMAL_NAMES = {'al': 'c_Al27', 'al27': 'c_Al27', 'be': 'c_Be', + 'beo': 'c_BeO', 'bebeo': 'c_Be_in_BeO', 'be-o': 'c_Be_in_BeO', 'be/o': 'c_Be_in_BeO', 'benz': 'c_Benzine', 'cah': 'c_Ca_in_CaH2', diff --git a/scripts/openmc-ace-to-hdf5 b/scripts/openmc-ace-to-hdf5 index 21a2718a59..c2198ec4fe 100755 --- a/scripts/openmc-ace-to-hdf5 +++ b/scripts/openmc-ace-to-hdf5 @@ -64,7 +64,9 @@ if args.xml is not None: directory = os.path.dirname(args.xml) for ace_table in root.findall('ace_table'): - ace_libraries.append(os.path.join(directory, ace_table.attrib['path'])) + path = os.path.join(directory, ace_table.attrib['path']) + if path not in ace_libraries: + ace_libraries.append(path) elif args.xsdir is not None: # Find 'directory' section @@ -116,8 +118,12 @@ for filename in ace_libraries: for table in lib.tables: if table.name.endswith('c'): # Continuous-energy neutron data - neutron = openmc.data.IncidentNeutron.from_ace( - table, args.metastable) + try: + neutron = openmc.data.IncidentNeutron.from_ace( + table, args.metastable) + except Exception as e: + print('Failed to convert {}: {}'.format(table.name, e)) + continue print('Converting {} (ACE) to {} (HDF5)'.format(table.name, neutron.name)) # Determine filename From a5763ae599eb082daf170d29ab99dbe7fa537ef9 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 8 Aug 2016 15:27:46 -0500 Subject: [PATCH 13/16] Refactor volume calculation to allow material/universe volumes as well --- openmc/cell.py | 11 +- openmc/geometry.py | 7 +- openmc/volume.py | 101 ++++++---- src/relaxng/settings.rnc | 6 +- src/relaxng/settings.rng | 16 +- src/volume_calc.F90 | 209 ++++++++++++++------- src/volume_header.F90 | 31 ++- tests/test_volume_calc/inputs_true.dat | 2 +- tests/test_volume_calc/results_true.dat | 24 ++- tests/test_volume_calc/test_volume_calc.py | 31 +-- 10 files changed, 298 insertions(+), 140 deletions(-) diff --git a/openmc/cell.py b/openmc/cell.py index c4a0952e91..fe8b4a52cd 100644 --- a/openmc/cell.py +++ b/openmc/cell.py @@ -369,10 +369,13 @@ class Cell(object): Results from a stochastic volume calculation """ - for cell_id in volume_calc.results: - if cell_id == self.id: - self._volume_information = volume_calc.results[cell_id] - break + if volume_calc.domain_type == 'cell': + for cell_id in volume_calc.results: + if cell_id == self.id: + self._volume_information = volume_calc.results[cell_id] + break + else: + raise ValueError('No volume information found for this cell.') else: raise ValueError('No volume information found for this cell.') diff --git a/openmc/geometry.py b/openmc/geometry.py index c827f4b2a7..b2a9b5e4aa 100644 --- a/openmc/geometry.py +++ b/openmc/geometry.py @@ -59,9 +59,10 @@ class Geometry(object): Results from a stochastic volume calculation """ - for cell in self.get_all_cells(): - if cell.id in volume_calc.results: - cell.add_volume_information(volume_calc) + if volume_calc.domain_type == 'cell': + for cell in self.get_all_cells(): + if cell.id in volume_calc.results: + cell.add_volume_information(volume_calc) def export_to_xml(self): """Create a geometry.xml file that can be used for a simulation. diff --git a/openmc/volume.py b/openmc/volume.py index 167971bdbd..e9b1dac1d3 100644 --- a/openmc/volume.py +++ b/openmc/volume.py @@ -5,7 +5,7 @@ from xml.etree import ElementTree as ET import numpy as np import pandas as pd -from openmc import Cell, Union +import openmc import openmc.checkvalue as cv @@ -14,8 +14,8 @@ class VolumeCalculation(object): Parameters ---------- - cells : Iterable of Cell - Cells to find volumes of + domains : Iterable of openmc.Cell, openmc.Material, or openmc.Universe + Domains to find volumes of samples : int Number of samples used to generate volume estimates lower_left : Iterable of float @@ -29,8 +29,10 @@ class VolumeCalculation(object): Attributes ---------- - cell_ids : Iterable of int - IDs of cells to find volumes of + ids : Iterable of int + IDs of domains to find volumes of + domain_type : {'cell', 'material', 'universe'} + Type of each domain samples : int Number of samples used to generate volume estimates lower_left : Iterable of float @@ -38,23 +40,31 @@ class VolumeCalculation(object): upper_right : Iterable of float Upper-right coordinates of bounding box used to sample points results : dict - Dictionary whose keys are unique IDs of cells and values are + Dictionary whose keys are unique IDs of domains and values are dictionaries with calculated volumes and total number of atoms for each - nuclide present in the cell. + nuclide present in the domain. volumes : dict - Dictionary whose keys are unique IDs of cells and values are the + Dictionary whose keys are unique IDs of domains and values are the estimated volumes atoms_dataframe : pandas.DataFrame DataFrame showing the estimated number of atoms for each nuclide present - in each cell specified. + in each domain specified. """ - def __init__(self, cells, samples, lower_left=None, + def __init__(self, domains, samples, lower_left=None, upper_right=None): self._results = None - cv.check_type('cells', cells, Iterable, Cell) - self.cell_ids = [c.id for c in cells] + cv.check_type('domains', domains, Iterable, + (openmc.Cell, openmc.Material, openmc.Universe)) + if isinstance(domains[0], openmc.Cell): + self._domain_type = 'cell' + elif isinstance(domains[0], openmc.Material): + self._domain_type = 'material' + elif isinstance(domains[0], openmc.Universe): + self._domain_type = 'universe' + self.ids = [d.id for d in domains] + self.samples = samples if lower_left is not None: @@ -64,17 +74,21 @@ class VolumeCalculation(object): 'should be specified') self.upper_right = upper_right else: - ll, ur = Union(*[c.region for c in cells]).bounding_box - if np.any(np.isinf(ll)) or np.any(np.isinf(ur)): + if self.domain_type == 'cell': + ll, ur = openmc.Union(*[c.region for c in domains]).bounding_box + if np.any(np.isinf(ll)) or np.any(np.isinf(ur)): + raise ValueError('Could not automatically determine bounding ' + 'box for stochastic volume calculation.') + else: + self.lower_left = ll + self.upper_right = ur + else: raise ValueError('Could not automatically determine bounding box ' 'for stochastic volume calculation.') - else: - self.lower_left = ll - self.upper_right = ur @property - def cell_ids(self): - return self._cell_ids + def ids(self): + return self._ids @property def samples(self): @@ -92,6 +106,10 @@ class VolumeCalculation(object): def results(self): return self._results + @property + def domain_type(self): + return self._domain_type + @property def volumes(self): return {uid: results['volume'] for uid, results in self.results.items()} @@ -99,17 +117,18 @@ class VolumeCalculation(object): @property def atoms_dataframe(self): items = [] - columns = ['Cell', 'Nuclide', 'Atoms', 'Uncertainty'] - for cell_id, results in self.results.items(): + columns = [self.domain_type.capitalize(), 'Nuclide', 'Atoms', + 'Uncertainty'] + for uid, results in self.results.items(): for name, atoms in results['atoms']: - items.append((cell_id, name, atoms[0], atoms[1])) + items.append((uid, name, atoms[0], atoms[1])) return pd.DataFrame.from_records(items, columns=columns) - @cell_ids.setter - def cell_ids(self, cell_ids): - cv.check_type('cell IDs', cell_ids, Iterable, Real) - self._cell_ids = cell_ids + @ids.setter + def ids(self, ids): + cv.check_type('domain IDs', ids, Iterable, Real) + self._ids = ids @samples.setter def samples(self, samples): @@ -154,16 +173,17 @@ class VolumeCalculation(object): import h5py with h5py.File(filename, 'r') as f: + domain_type = f.attrs['domain_type'].decode() samples = f.attrs['samples'] lower_left = f.attrs['lower_left'] upper_right = f.attrs['upper_right'] results = {} - cell_ids = [] + ids = [] for obj_name in f: - if obj_name.startswith('cell_'): - cell_id = int(obj_name[5:]) - cell_ids.append(cell_id) + if obj_name.startswith('domain_'): + domain_id = int(obj_name[7:]) + ids.append(domain_id) group = f[obj_name] volume = tuple(group['volume'].value) nucnames = group['nuclides'].value @@ -172,14 +192,19 @@ class VolumeCalculation(object): atom_list = [] for name_i, atoms_i in zip(nucnames, atoms): atom_list.append((name_i.decode(), tuple(atoms_i))) - results[cell_id] = {'volume': volume, 'atoms': atom_list} + results[domain_id] = {'volume': volume, 'atoms': atom_list} - # Instantiate some throw-away cells that are used by the constructor to - # assign IDs - cells = [Cell(uid) for uid in cell_ids] + # Instantiate some throw-away domains that are used by the constructor + # to assign IDs + if domain_type == 'cell': + domains = [openmc.Cell(uid) for uid in ids] + elif domain_type == 'material': + domains = [openmc.Material(uid) for uid in ids] + elif domain_type == 'universe': + domains = [openmc.Universe(uid) for uid in ids] # Instantiate the class and assign results - vol = cls(cells, samples, lower_left, upper_right) + vol = cls(domains, samples, lower_left, upper_right) vol.results = results return vol @@ -193,8 +218,10 @@ class VolumeCalculation(object): """ element = ET.Element("volume_calc") - cell_elem = ET.SubElement(element, "cells") - cell_elem.text = ' '.join(str(uid) for uid in self.cell_ids) + dt_elem = ET.SubElement(element, "domain_type") + dt_elem.text = self.domain_type + id_elem = ET.SubElement(element, "domain_ids") + id_elem.text = ' '.join(str(uid) for uid in self.ids) samples_elem = ET.SubElement(element, "samples") samples_elem.text = str(self.samples) ll_elem = ET.SubElement(element, "lower_left") diff --git a/src/relaxng/settings.rnc b/src/relaxng/settings.rnc index 78a32171b9..e23cbdd6cd 100644 --- a/src/relaxng/settings.rnc +++ b/src/relaxng/settings.rnc @@ -143,8 +143,10 @@ element settings { element verbosity { xsd:positiveInteger }? & element volume_calc { - (element cells { list { xsd:positiveInteger+ } } | - attribute cells { list { xsd:positiveInteger+ } }) & + (element domain_type { xsd:string } | + attribute domain_type { xsd:string }) & + (element domain_ids { list { xsd:integer+ } } | + attribute domain_ids { list { xsd:integer+ } }) & (element samples { xsd:positiveInteger } | attribute samples { xsd:positiveInteger }) & (element lower_left { list { xsd:double+ } } | diff --git a/src/relaxng/settings.rng b/src/relaxng/settings.rng index 64fe42239d..38acea5985 100644 --- a/src/relaxng/settings.rng +++ b/src/relaxng/settings.rng @@ -629,17 +629,25 @@ - + + + + + + + + + - + - + - + diff --git a/src/volume_calc.F90 b/src/volume_calc.F90 index eac96f9ba7..03e241a66b 100644 --- a/src/volume_calc.F90 +++ b/src/volume_calc.F90 @@ -9,7 +9,7 @@ module volume_calc use geometry, only: find_cell use global use hdf5_interface, only: file_create, file_close, write_attribute, & - create_group, close_group, write_dataset + create_group, close_group, write_dataset, write_attribute_string use output, only: write_message, header use message_passing use particle_header, only: Particle @@ -33,7 +33,8 @@ contains subroutine run_volume_calculations() integer :: i, j integer :: n - real(8), allocatable :: volume(:,:) ! volume mean/stdev in each cell + real(8), allocatable :: volume(:,:) ! volume mean/stdev in each domain + character(10) :: domain_type character(MAX_FILE_LEN) :: filename ! filename for HDF5 file type(Timer) :: time_volume ! timer for volume calculation type(VectorInt), allocatable :: nuclide_vec(:) ! indices in nuclides array @@ -46,7 +47,7 @@ contains end if do i = 1, size(volume_calcs) - n = size(volume_calcs(i) % cell_id) + n = size(volume_calcs(i) % domain_id) allocate(nuclide_vec(n)) allocate(atoms_vec(n), uncertainty_vec(n)) allocate(volume(2,n)) @@ -60,11 +61,20 @@ contains uncertainty_vec) if (master) then - ! Display cell volumes - do j = 1, size(volume_calcs(i) % cell_id) - call write_message(" Cell " // trim(to_str(volume_calcs(i) % & - cell_id(j))) // ": " // trim(to_str(volume(1,j))) // " +/- " // & - trim(to_str(volume(2,j))) // " cm^3") + select case (volume_calcs(i) % domain_type) + case (FILTER_CELL) + domain_type = ' Cell' + case (FILTER_MATERIAL) + domain_type = ' Material' + case (FILTER_UNIVERSE) + domain_type = ' Universe' + end select + + ! Display domain volumes + do j = 1, size(volume_calcs(i) % domain_id) + call write_message(trim(domain_type) // " " // trim(to_str(& + volume_calcs(i) % domain_id(j))) // ": " // trim(to_str(& + volume(1,j))) // " +/- " // trim(to_str(volume(2,j))) // " cm^3") end do call write_message("") @@ -85,13 +95,13 @@ contains end subroutine run_volume_calculations !=============================================================================== -! GET_VOLUME stochastically determines the volume of a set of cells along with -! the average number densities of nuclides within the cell +! GET_VOLUME stochastically determines the volume of a set of domains along with +! the average number densities of nuclides within the domain !=============================================================================== subroutine get_volume(this, volume, nuclide_vec, atoms_vec, uncertainty_vec) type(VolumeCalculation), intent(in) :: this - real(8), intent(out) :: volume(:,:) ! volume mean/stdev in each cell + real(8), intent(out) :: volume(:,:) ! volume mean/stdev in each domain type(VectorInt), intent(out) :: nuclide_vec(:) ! indices in nuclides array type(VectorReal), intent(out) :: atoms_vec(:) ! total # of atoms of each nuclide type(VectorReal), intent(out) :: uncertainty_vec(:) ! uncertainty of total # of atoms @@ -99,22 +109,22 @@ contains ! Variables that are private to each thread integer(8) :: i integer :: j, k - integer :: i_cell ! index in cell_id array + integer :: i_domain ! index in domain_id array integer :: i_material ! index in materials array integer :: level ! local coordinate level logical :: found_cell - type(VectorInt) :: indices(size(this % cell_id)) ! List of material indices - type(VectorInt) :: hits(size(this % cell_id)) ! Number of hits for each material + type(VectorInt) :: indices(size(this % domain_id)) ! List of material indices + type(VectorInt) :: hits(size(this % domain_id)) ! Number of hits for each material type(Particle) :: p ! Shared variables integer :: i_start, i_end ! Starting/ending sample for each process - type(VectorInt) :: master_indices(size(this % cell_id)) - type(VectorInt) :: master_hits(size(this % cell_id)) + type(VectorInt) :: master_indices(size(this % domain_id)) + type(VectorInt) :: master_hits(size(this % domain_id)) ! Variables used outside of parallel region integer :: i_nuclide ! index in nuclides array - integer :: total_hits ! total hits for a single cell (summed over materials) + integer :: total_hits ! total hits for a single domain (summed over materials) integer :: min_samples ! minimum number of samples per process integer :: remainder ! leftover samples from uneven divide #ifdef MPI @@ -140,15 +150,15 @@ contains call p % initialize() -!$omp parallel private(i, j, k, i_cell, i_material, level, found_cell, & +!$omp parallel private(i, j, k, i_domain, i_material, level, found_cell, & !$omp& indices, hits) firstprivate(p) ! Reset vectors -- this is really to get around a gfortran 4.6 bug. Ideally, ! indices and hits would just be firstprivate but 4.6 complains because they ! have allocatable components... - do i_cell = 1, size(this % cell_id) - call indices(i_cell) % clear() - call hits(i_cell) % clear() + do i_domain = 1, size(this % domain_id) + call indices(i_domain) % clear() + call hits(i_domain) % clear() end do call prn_set_stream(STREAM_VOLUME) @@ -174,32 +184,89 @@ contains call find_cell(p, found_cell) if (.not. found_cell) cycle - ! Determine if point is within desired cell - LEVEL_LOOP: do level = 1, p % n_coord - CELL_CHECK_LOOP: do i_cell = 1, size(this % cell_id) - if (cells(p % coord(level) % cell) % id == this % cell_id(i_cell)) then - - ! Determine what material this is - i_material = p % material + if (this % domain_type == FILTER_MATERIAL) then + ! ====================================================================== + ! MATERIAL VOLUME + i_material = p % material + MATERIAL_LOOP: do i_domain = 1, size(this % domain_id) + if (i_material == materials(i_domain) % id) then ! Check if we've already had a hit in this material and if so, ! simply add one - do j = 1, indices(i_cell) % size() - if (indices(i_cell) % data(j) == i_material) then - hits(i_cell) % data(j) = hits(i_cell) % data(j) + 1 - cycle CELL_CHECK_LOOP + do j = 1, indices(i_domain) % size() + if (indices(i_domain) % data(j) == i_material) then + hits(i_domain) % data(j) = hits(i_domain) % data(j) + 1 + cycle MATERIAL_LOOP end if end do ! If we make it here, that means we haven't yet had a hit in this ! material. Add an entry to both the indices list and the hits list - call indices(i_cell) % push_back(i_material) - call hits(i_cell) % push_back(1) + call indices(i_domain) % push_back(i_material) + call hits(i_domain) % push_back(1) end if - end do CELL_CHECK_LOOP - end do LEVEL_LOOP + end do MATERIAL_LOOP + + elseif (this % domain_type == FILTER_CELL) THEN + ! ====================================================================== + ! CELL VOLUME + + do level = 1, p % n_coord + CELL_LOOP: do i_domain = 1, size(this % domain_id) + if (cells(p % coord(level) % cell) % id == this % domain_id(i_domain)) then + + ! Determine what material this is + i_material = p % material + + ! Check if we've already had a hit in this material and if so, + ! simply add one + do j = 1, indices(i_domain) % size() + if (indices(i_domain) % data(j) == i_material) then + hits(i_domain) % data(j) = hits(i_domain) % data(j) + 1 + cycle CELL_LOOP + end if + end do + + ! If we make it here, that means we haven't yet had a hit in this + ! material. Add an entry to both the indices list and the hits list + call indices(i_domain) % push_back(i_material) + call hits(i_domain) % push_back(1) + end if + end do CELL_LOOP + end do + + elseif (this % domain_type == FILTER_UNIVERSE) then + ! ====================================================================== + ! UNIVERSE VOLUME + + do level = 1, p % n_coord + UNIVERSE_LOOP: do i_domain = 1, size(this % domain_id) + if (universes(p % coord(level) % universe) % id == & + this % domain_id(i_domain)) then + + ! Determine what material this is + i_material = p % material + + ! Check if we've already had a hit in this material and if so, + ! simply add one + do j = 1, indices(i_domain) % size() + if (indices(i_domain) % data(j) == i_material) then + hits(i_domain) % data(j) = hits(i_domain) % data(j) + 1 + cycle UNIVERSE_LOOP + end if + end do + + ! If we make it here, that means we haven't yet had a hit in this + ! material. Add an entry to both the indices list and the hits list + call indices(i_domain) % push_back(i_material) + call hits(i_domain) % push_back(1) + end if + end do UNIVERSE_LOOP + end do + + end if end do SAMPLE_LOOP - !$omp end do +!$omp end do ! ========================================================================== ! REDUCE HITS ONTO MASTER THREAD @@ -212,14 +279,14 @@ contains !$omp do ordered schedule(static) THREAD_LOOP: do i = 1, omp_get_num_threads() !$omp ordered - do i_cell = 1, size(this % cell_id) - INDEX_LOOP: do j = 1, indices(i_cell) % size() + do i_domain = 1, size(this % domain_id) + INDEX_LOOP: do j = 1, indices(i_domain) % size() ! Check if this material has been added to the master list and if so, ! accumulate the number of hits - do k = 1, master_indices(i_cell) % size() - if (indices(i_cell) % data(j) == master_indices(i_cell) % data(k)) then - master_hits(i_cell) % data(k) = & - master_hits(i_cell) % data(k) + hits(i_cell) % data(j) + do k = 1, master_indices(i_domain) % size() + if (indices(i_domain) % data(j) == master_indices(i_domain) % data(k)) then + master_hits(i_domain) % data(k) = & + master_hits(i_domain) % data(k) + hits(i_domain) % data(j) cycle INDEX_LOOP end if end do @@ -227,8 +294,8 @@ contains ! If we made it here, this means the material hasn't yet been added to ! the master list, so add an entry to both the master indices and master ! hits lists - call master_indices(i_cell) % push_back(indices(i_cell) % data(j)) - call master_hits(i_cell) % push_back(hits(i_cell) % data(j)) + call master_indices(i_domain) % push_back(indices(i_domain) % data(j)) + call master_hits(i_domain) % push_back(hits(i_domain) % data(j)) end do INDEX_LOOP end do !$omp end ordered @@ -247,7 +314,7 @@ contains volume_sample = product(this % upper_right - this % lower_left) - do i_cell = 1, size(this % cell_id) + do i_domain = 1, size(this % domain_id) atoms(:, :) = ZERO total_hits = 0 @@ -261,9 +328,9 @@ contains call MPI_RECV(data, 2*n, MPI_INTEGER, j, 1, MPI_COMM_WORLD, & MPI_STATUS_IGNORE, mpi_err) do k = 0, n - 1 - do m = 1, master_indices(i_cell) % size() - if (data(2*k + 1) == master_indices(i_cell) % data(m)) then - master_hits(i_cell) % data(m) = master_hits(i_cell) % data(m) + & + do m = 1, master_indices(i_domain) % size() + if (data(2*k + 1) == master_indices(i_domain) % data(m)) then + master_hits(i_domain) % data(m) = master_hits(i_domain) % data(m) + & data(2*k + 2) end if end do @@ -272,12 +339,12 @@ contains end do #endif - do j = 1, master_indices(i_cell) % size() - total_hits = total_hits + master_hits(i_cell) % data(j) - f = real(master_hits(i_cell) % data(j), 8) / this % samples + do j = 1, master_indices(i_domain) % size() + total_hits = total_hits + master_hits(i_domain) % data(j) + f = real(master_hits(i_domain) % data(j), 8) / this % samples var_f = f*(ONE - f) / this % samples - i_material = master_indices(i_cell) % data(j) + i_material = master_indices(i_domain) % data(j) if (i_material == MATERIAL_VOID) cycle associate (mat => materials(i_material)) @@ -293,9 +360,9 @@ contains end do ! Determine volume - volume(1, i_cell) = real(total_hits, 8) / this % samples * volume_sample - volume(2, i_cell) = sqrt(volume(1, i_cell) * (volume_sample - & - volume(1, i_cell)) / this % samples) + volume(1, i_domain) = real(total_hits, 8) / this % samples * volume_sample + volume(2, i_domain) = sqrt(volume(1, i_domain) * (volume_sample - & + volume(1, i_domain)) / this % samples) ! Determine total number of atoms. At this point, we have values in ! atoms/b-cm. To get to atoms we multiple by 10^24 V. @@ -307,19 +374,19 @@ contains ! Convert full arrays to vectors do j = 1, size(nuclides) if (atoms(1, j) > ZERO) then - call nuclide_vec(i_cell) % push_back(j) - call atoms_vec(i_cell) % push_back(atoms(1, j)) - call uncertainty_vec(i_cell) % push_back(atoms(2, j)) + call nuclide_vec(i_domain) % push_back(j) + call atoms_vec(i_domain) % push_back(atoms(1, j)) + call uncertainty_vec(i_domain) % push_back(atoms(2, j)) end if end do else #ifdef MPI - n = master_indices(i_cell) % size() + n = master_indices(i_domain) % size() allocate(data(2*n)) do k = 0, n - 1 - data(2*k + 1) = master_indices(i_cell) % data(k + 1) - data(2*k + 2) = master_hits(i_cell) % data(k + 1) + data(2*k + 1) = master_indices(i_domain) % data(k + 1) + data(2*k + 2) = master_hits(i_domain) % data(k + 1) end do call MPI_SEND(n, 1, MPI_INTEGER, 0, 0, MPI_COMM_WORLD, mpi_err) @@ -340,7 +407,7 @@ contains uncertainty_vec) type(VolumeCalculation), intent(in) :: this character(*), intent(in) :: filename ! filename for HDF5 file - real(8), intent(in) :: volume(:,:) ! volume mean/stdev in each cell + real(8), intent(in) :: volume(:,:) ! volume mean/stdev in each domain type(VectorInt), intent(in) :: nuclide_vec(:) ! indices in nuclides array type(VectorReal), intent(in) :: atoms_vec(:) ! total # of atoms of each nuclide type(VectorReal), intent(in) :: uncertainty_vec(:) ! uncertainty of total # of atoms @@ -357,15 +424,23 @@ contains file_id = file_create(filename) ! Write basic metadata + select case (this % domain_type) + case (FILTER_CELL) + call write_attribute_string(file_id, ".", "domain_type", "cell") + case (FILTER_MATERIAL) + call write_attribute_string(file_id, ".", "domain_type", "material") + case (FILTER_UNIVERSE) + call write_attribute_string(file_id, ".", "domain_type", "universe") + end select call write_attribute(file_id, "samples", this % samples) call write_attribute(file_id, "lower_left", this % lower_left) call write_attribute(file_id, "upper_right", this % upper_right) - do i = 1, size(this % cell_id) - group_id = create_group(file_id, "cell_" // trim(to_str(& - this % cell_id(i)))) + do i = 1, size(this % domain_id) + group_id = create_group(file_id, "domain_" // trim(to_str(& + this % domain_id(i)))) - ! Write volume for cell + ! Write volume for domain call write_dataset(group_id, "volume", volume(:, i)) ! Create array of nuclide names from the vector diff --git a/src/volume_header.F90 b/src/volume_header.F90 index 3a34f1231a..c70345f155 100644 --- a/src/volume_header.F90 +++ b/src/volume_header.F90 @@ -1,12 +1,14 @@ module volume_header - use error, only: fatal_error + use constants, only: FILTER_CELL, FILTER_MATERIAL, FILTER_UNIVERSE + use error, only: fatal_error use xml_interface implicit none type VolumeCalculation - integer, allocatable :: cell_id(:) + integer :: domain_type + integer, allocatable :: domain_id(:) real(8) :: lower_left(3) real(8) :: upper_right(3) integer :: samples @@ -20,16 +22,31 @@ contains class(VolumeCalculation), intent(out) :: this type(Node), pointer :: node_vol - integer :: num_cells + integer :: num_domains + character(10) :: temp_str + + ! Check domain type + call get_node_value(node_vol, "domain_type", temp_str) + select case (temp_str) + case ('cell') + this % domain_type = FILTER_CELL + case ('material') + this % domain_type = FILTER_MATERIAL + case ('universe') + this % domain_type = FILTER_UNIVERSE + case default + call fatal_error("Unrecognized domain type for stochastic volume & + &calculation: " // trim(temp_str)) + end select ! Read cell IDs - if (check_for_node(node_vol, "cells")) then - num_cells = get_arraysize_integer(node_vol, "cells") + if (check_for_node(node_vol, "domain_ids")) then + num_domains = get_arraysize_integer(node_vol, "domain_ids") else call fatal_error("Must specify at least one cell for a volume calculation") end if - allocate(this % cell_id(num_cells)) - call get_node_array(node_vol, "cells", this % cell_id) + allocate(this % domain_id(num_domains)) + call get_node_array(node_vol, "domain_ids", this % domain_id) ! Read lower-left and upper-right bounding coordinates call get_node_array(node_vol, "lower_left", this % lower_left) diff --git a/tests/test_volume_calc/inputs_true.dat b/tests/test_volume_calc/inputs_true.dat index 2a3f25e6d0..e146703f31 100644 --- a/tests/test_volume_calc/inputs_true.dat +++ b/tests/test_volume_calc/inputs_true.dat @@ -1 +1 @@ -b2de6ac20ca2ca38b00d61adae707d05519f6130eea25ab050220bac005cb6d23fa5812bf876307e92e90a8806f0b371500c5611ab23f80b7c073f118eb31649 \ No newline at end of file +102569289552d021b6803f404a0c17a9c17a40578fdba43a6ba08b77a731e0368fffa6a8a7abd48555167cb9997c6dba9ec5044c8593b12056957b7e3ec44ed0 \ No newline at end of file diff --git a/tests/test_volume_calc/results_true.dat b/tests/test_volume_calc/results_true.dat index e7a39a9312..da6dfd2afc 100644 --- a/tests/test_volume_calc/results_true.dat +++ b/tests/test_volume_calc/results_true.dat @@ -1,7 +1,8 @@ k-combined: 4.165451e-02 3.582531e-04 -Cell 1: 31.4693 +/- 0.0721 cm^3 -Cell 2: 2.0933 +/- 0.0310 cm^3 -Cell 3: 2.0486 +/- 0.0307 cm^3 +Volume calculation 0 +Domain 1: 31.4693 +/- 0.0721 cm^3 +Domain 2: 2.0933 +/- 0.0310 cm^3 +Domain 3: 2.0486 +/- 0.0307 cm^3 Cell Nuclide Atoms Uncertainty 0 1 U235.71c 3.481769e+23 7.979991e+20 1 1 Mo99.71c 3.481769e+22 7.979991e+19 @@ -11,3 +12,20 @@ Cell 3: 2.0486 +/- 0.0307 cm^3 5 3 H1.71c 1.369920e+23 2.051689e+21 6 3 O16.71c 6.849599e+22 1.025844e+21 7 3 B10.71c 6.849599e+18 1.025844e+17 +Volume calculation 1 +Domain 1: 4.1419 +/- 0.0426 cm^3 +Domain 2: 31.4693 +/- 0.0721 cm^3 + Material Nuclide Atoms Uncertainty +0 1 H1.71c 2.769690e+23 2.850068e+21 +1 1 O16.71c 1.384845e+23 1.425034e+21 +2 1 B10.71c 1.384845e+19 1.425034e+17 +3 2 U235.71c 3.481769e+23 7.979991e+20 +4 2 Mo99.71c 3.481769e+22 7.979991e+19 +Volume calculation 2 +Domain 0: 35.6112 +/- 0.0664 cm^3 + Universe Nuclide Atoms Uncertainty +0 0 H1.71c 2.769690e+23 2.850068e+21 +1 0 O16.71c 1.384845e+23 1.425034e+21 +2 0 B10.71c 1.384845e+19 1.425034e+17 +3 0 U235.71c 3.481769e+23 7.979991e+20 +4 0 Mo99.71c 3.481769e+22 7.979991e+19 diff --git a/tests/test_volume_calc/test_volume_calc.py b/tests/test_volume_calc/test_volume_calc.py index a6d779a25a..e2c3eba797 100644 --- a/tests/test_volume_calc/test_volume_calc.py +++ b/tests/test_volume_calc/test_volume_calc.py @@ -1,6 +1,7 @@ #!/usr/bin/env python import os +import glob import sys sys.path.insert(0, os.pardir) from testing_harness import PyAPITestHarness @@ -43,9 +44,12 @@ class VolumeTest(PyAPITestHarness): geometry.export_to_xml() # Set up stochastic volume calculation - vol_calc = openmc.VolumeCalculation( - [inside_cyl, top_hemisphere, bottom_hemisphere], - 100000) + ll, ur = openmc.Union(*[c.region for c in root.cells.values()]).bounding_box + vol_calcs = [ + openmc.VolumeCalculation(list(root.cells.values()), 100000), + openmc.VolumeCalculation([water, fuel], 100000, ll, ur), + openmc.VolumeCalculation([root], 100000, ll, ur) + ] # Define settings settings = openmc.Settings() @@ -54,7 +58,7 @@ class VolumeTest(PyAPITestHarness): settings.inactive = 0 settings.source = openmc.Source(space=openmc.stats.Box( [-1., -1., -5.], [1., 1., 5.])) - settings.volume_calculations = vol_calc + settings.volume_calculations = vol_calcs settings.export_to_xml() def _get_results(self): @@ -65,15 +69,18 @@ class VolumeTest(PyAPITestHarness): # Write out k-combined. outstr = 'k-combined: {:12.6e} {:12.6e}\n'.format(*sp.k_combined) - # Read volume calculation results - vol = openmc.VolumeCalculation.from_hdf5( - os.path.join(os.getcwd(), 'volume_1.h5')) + for i, filename in enumerate(sorted(glob.glob(os.path.join( + os.getcwd(), 'volume_*.h5')))): + outstr += 'Volume calculation {}\n'.format(i) - # Write cell volumes and total # of atoms for each nuclide - for cell_id, results in sorted(vol.results.items()): - outstr += 'Cell {0}: {1[0]:.4f} +/- {1[1]:.4f} cm^3\n'.format( - cell_id, results['volume']) - outstr += str(vol.atoms_dataframe) + '\n' + # Read volume calculation results + vol = openmc.VolumeCalculation.from_hdf5(filename) + + # Write cell volumes and total # of atoms for each nuclide + for uid, results in sorted(vol.results.items()): + outstr += 'Domain {0}: {1[0]:.4f} +/- {1[1]:.4f} cm^3\n'.format( + uid, results['volume']) + outstr += str(vol.atoms_dataframe) + '\n' return outstr From f85bf914d9013b4109fc377da736a7ce134f3cba Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Tue, 9 Aug 2016 09:44:30 -0500 Subject: [PATCH 14/16] Refactor get_volume to not use VectorInt within !$omp parallel --- src/volume_calc.F90 | 163 ++++++++++++++++++++++---------------------- 1 file changed, 83 insertions(+), 80 deletions(-) diff --git a/src/volume_calc.F90 b/src/volume_calc.F90 index 03e241a66b..22647c4da9 100644 --- a/src/volume_calc.F90 +++ b/src/volume_calc.F90 @@ -112,9 +112,10 @@ contains integer :: i_domain ! index in domain_id array integer :: i_material ! index in materials array integer :: level ! local coordinate level + integer :: n_mat(size(this % domain_id)) ! Number of materials for each domain + integer, allocatable :: indices(:,:) ! List of material indices for each domain + integer, allocatable :: hits(:,:) ! Number of hits for each material in each domain logical :: found_cell - type(VectorInt) :: indices(size(this % domain_id)) ! List of material indices - type(VectorInt) :: hits(size(this % domain_id)) ! Number of hits for each material type(Particle) :: p ! Shared variables @@ -123,10 +124,10 @@ contains type(VectorInt) :: master_hits(size(this % domain_id)) ! Variables used outside of parallel region - integer :: i_nuclide ! index in nuclides array - integer :: total_hits ! total hits for a single domain (summed over materials) + integer :: i_nuclide ! index in nuclides array + integer :: total_hits ! total hits for a single domain (summed over materials) integer :: min_samples ! minimum number of samples per process - integer :: remainder ! leftover samples from uneven divide + integer :: remainder ! leftover samples from uneven divide #ifdef MPI integer :: m ! index over materials integer :: n ! number of materials @@ -151,15 +152,12 @@ contains call p % initialize() !$omp parallel private(i, j, k, i_domain, i_material, level, found_cell, & -!$omp& indices, hits) firstprivate(p) +!$omp& indices, hits, n_mat) firstprivate(p) - ! Reset vectors -- this is really to get around a gfortran 4.6 bug. Ideally, - ! indices and hits would just be firstprivate but 4.6 complains because they - ! have allocatable components... - do i_domain = 1, size(this % domain_id) - call indices(i_domain) % clear() - call hits(i_domain) % clear() - end do + ! Create space for material indices and number of hits for each + allocate(indices(size(this % domain_id), 8)) + allocate(hits(size(this % domain_id), 8)) + n_mat(:) = 0 call prn_set_stream(STREAM_VOLUME) @@ -185,83 +183,32 @@ contains if (.not. found_cell) cycle if (this % domain_type == FILTER_MATERIAL) then - ! ====================================================================== - ! MATERIAL VOLUME - i_material = p % material - MATERIAL_LOOP: do i_domain = 1, size(this % domain_id) + do i_domain = 1, size(this % domain_id) if (i_material == materials(i_domain) % id) then - ! Check if we've already had a hit in this material and if so, - ! simply add one - do j = 1, indices(i_domain) % size() - if (indices(i_domain) % data(j) == i_material) then - hits(i_domain) % data(j) = hits(i_domain) % data(j) + 1 - cycle MATERIAL_LOOP - end if - end do - - ! If we make it here, that means we haven't yet had a hit in this - ! material. Add an entry to both the indices list and the hits list - call indices(i_domain) % push_back(i_material) - call hits(i_domain) % push_back(1) + call check_hit(i_domain, i_material, indices, hits, n_mat) end if - end do MATERIAL_LOOP + end do elseif (this % domain_type == FILTER_CELL) THEN - ! ====================================================================== - ! CELL VOLUME - do level = 1, p % n_coord - CELL_LOOP: do i_domain = 1, size(this % domain_id) + do i_domain = 1, size(this % domain_id) if (cells(p % coord(level) % cell) % id == this % domain_id(i_domain)) then - - ! Determine what material this is i_material = p % material - - ! Check if we've already had a hit in this material and if so, - ! simply add one - do j = 1, indices(i_domain) % size() - if (indices(i_domain) % data(j) == i_material) then - hits(i_domain) % data(j) = hits(i_domain) % data(j) + 1 - cycle CELL_LOOP - end if - end do - - ! If we make it here, that means we haven't yet had a hit in this - ! material. Add an entry to both the indices list and the hits list - call indices(i_domain) % push_back(i_material) - call hits(i_domain) % push_back(1) + call check_hit(i_domain, i_material, indices, hits, n_mat) end if - end do CELL_LOOP + end do end do elseif (this % domain_type == FILTER_UNIVERSE) then - ! ====================================================================== - ! UNIVERSE VOLUME - do level = 1, p % n_coord - UNIVERSE_LOOP: do i_domain = 1, size(this % domain_id) + do i_domain = 1, size(this % domain_id) if (universes(p % coord(level) % universe) % id == & this % domain_id(i_domain)) then - - ! Determine what material this is i_material = p % material - - ! Check if we've already had a hit in this material and if so, - ! simply add one - do j = 1, indices(i_domain) % size() - if (indices(i_domain) % data(j) == i_material) then - hits(i_domain) % data(j) = hits(i_domain) % data(j) + 1 - cycle UNIVERSE_LOOP - end if - end do - - ! If we make it here, that means we haven't yet had a hit in this - ! material. Add an entry to both the indices list and the hits list - call indices(i_domain) % push_back(i_material) - call hits(i_domain) % push_back(1) + call check_hit(i_domain, i_material, indices, hits, n_mat) end if - end do UNIVERSE_LOOP + end do end do end if @@ -280,13 +227,13 @@ contains THREAD_LOOP: do i = 1, omp_get_num_threads() !$omp ordered do i_domain = 1, size(this % domain_id) - INDEX_LOOP: do j = 1, indices(i_domain) % size() + INDEX_LOOP: do j = 1, n_mat(i_domain) ! Check if this material has been added to the master list and if so, ! accumulate the number of hits do k = 1, master_indices(i_domain) % size() - if (indices(i_domain) % data(j) == master_indices(i_domain) % data(k)) then + if (indices(i_domain, j) == master_indices(i_domain) % data(k)) then master_hits(i_domain) % data(k) = & - master_hits(i_domain) % data(k) + hits(i_domain) % data(j) + master_hits(i_domain) % data(k) + hits(i_domain, j) cycle INDEX_LOOP end if end do @@ -294,16 +241,20 @@ contains ! If we made it here, this means the material hasn't yet been added to ! the master list, so add an entry to both the master indices and master ! hits lists - call master_indices(i_domain) % push_back(indices(i_domain) % data(j)) - call master_hits(i_domain) % push_back(hits(i_domain) % data(j)) + call master_indices(i_domain) % push_back(indices(i_domain, j)) + call master_hits(i_domain) % push_back(hits(i_domain, j)) end do INDEX_LOOP end do !$omp end ordered end do THREAD_LOOP !$omp end do #else - master_indices = indices - master_hits = hits + do i_domain = 1, size(this % domain_id) + do j = 1, n_mat(i_domain) + call master_indices(i_domain) % push_back(indices(i_domain, j)) + call master_hits(i_domain) % push_back(hits(i_domain, j)) + end do + end do #endif call prn_set_stream(STREAM_TRACKING) @@ -396,6 +347,58 @@ contains end if end do + contains + + !=========================================================================== + ! CHECK_HIT is an internal subroutine that checks for whether a material has + ! already been hit for a given domain. If not, it increases the list size by + ! one (taking care of re-allocation if needed). + !=========================================================================== + + subroutine check_hit(i_domain, i_material, indices, hits, n_mat) + integer :: i_domain + integer :: i_material + integer, allocatable :: indices(:,:) + integer, allocatable :: hits(:,:) + integer :: n_mat(:) + + integer, allocatable :: temp(:,:) + logical :: already_hit + integer :: j, k, nm + + ! Check if we've already had a hit in this material and if so, + ! simply add one + already_hit = .false. + nm = n_mat(i_domain) + do j = 1, nm + if (indices(i_domain, j) == i_material) then + hits(i_domain, j) = hits(i_domain, j) + 1 + already_hit = .true. + end if + end do + + if (.not. already_hit) then + ! If we make it here, that means we haven't yet had a hit in this + ! material. First check if the indices and hits arrays are large enough + ! and if not, double them. + if (nm == size(indices, 2)) then + k = 2*size(indices, 2) + allocate(temp(size(this % domain_id), k)) + temp(:, 1:nm) = indices(:, 1:nm) + call move_alloc(FROM=temp, TO=indices) + + allocate(temp(size(this % domain_id), k)) + temp(:, 1:nm) = hits(:, 1:nm) + call move_alloc(FROM=temp, TO=indices) + end if + + ! Add an entry to both the indices list and the hits list + n_mat(i_domain) = n_mat(i_domain) + 1 + indices(i_domain, n_mat(i_domain)) = i_material + hits(i_domain, n_mat(i_domain)) = 1 + end if + end subroutine check_hit + end subroutine get_volume !=============================================================================== From cec3df43d5000f98bbd6a1a49a909876ca73db13 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 11 Aug 2016 10:26:49 -0500 Subject: [PATCH 15/16] If OpenCG cell has no surfaces, don't assign region --- openmc/opencg_compatible.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/openmc/opencg_compatible.py b/openmc/opencg_compatible.py index 93a257f465..d301cf2b5e 100644 --- a/openmc/opencg_compatible.py +++ b/openmc/opencg_compatible.py @@ -689,13 +689,14 @@ def get_openmc_cell(opencg_cell): translation = np.asarray(opencg_cell.translation, dtype=np.float64) openmc_cell.translation = translation - surfaces = [] - operators = [] - for surface, halfspace in opencg_cell.surfaces.values(): - surfaces.append(get_openmc_surface(surface)) - operators.append(operator.neg if halfspace == -1 else operator.pos) - openmc_cell.region = openmc.Intersection( - *[op(s) for op, s in zip(operators, surfaces)]) + if opencg_cell.surfaces: + surfaces = [] + operators = [] + for surface, halfspace in opencg_cell.surfaces.values(): + surfaces.append(get_openmc_surface(surface)) + operators.append(operator.neg if halfspace == -1 else operator.pos) + openmc_cell.region = openmc.Intersection( + *[op(s) for op, s in zip(operators, surfaces)]) # Add the OpenMC Cell to the global collection of all OpenMC Cells OPENMC_CELLS[cell_id] = openmc_cell From 0bfa509b3c330e46bf07d12f3cc629d1c66eaaa5 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 11 Aug 2016 11:37:11 -0500 Subject: [PATCH 16/16] Remove extra line per PEP8 --- openmc/statepoint.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openmc/statepoint.py b/openmc/statepoint.py index 58a79fa219..b20ea25908 100644 --- a/openmc/statepoint.py +++ b/openmc/statepoint.py @@ -521,7 +521,6 @@ class StatePoint(object): if self.summary is not None: self.summary.add_volume_information(volume_calc) - def get_tally(self, scores=[], filters=[], nuclides=[], name=None, id=None, estimator=None, exact_filters=False, exact_nuclides=False, exact_scores=False):