From e372339eb4b40edbbdefc468d789443d559b5622 Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 15:21:41 -0500 Subject: [PATCH 01/16] add initial bright neighbor validation code --- src/too/validate.py | 71 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/too/validate.py diff --git a/src/too/validate.py b/src/too/validate.py new file mode 100644 index 0000000..fa54ddb --- /dev/null +++ b/src/too/validate.py @@ -0,0 +1,71 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# @Author: Ilija Medan (ilija.medan@vanderbilt.edu) +# @Date: 2024-04-02 +# @Filename: validate.py +# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) + +import os +import polars +import numpy as np +import pickle +from astropy_healpix import HEALPix +from astropy.coordinates import SkyCoord +import astropy.units as u + +# load enviornment variable with path to healpix maps +BN_HEALPIX = os.getenv('BN_HEALPIX') + + +def bn_validation(targets: polars.DataFrame, design_mode: str): + """ + Validate a ToO to see if it is too close + to a bright neighbor. This functionm relies on the + healpix map of bright neighbors for each designmode + created with this script: + https://github.com/sdss/mugatu/blob/master/bin/bright_neigh_healpix_map.py. + To use this function, the enviornment varriable BN_HEALPIX must be + set to the path to these healpix maps. + + Parameters + ---------- + targets: polars.DataFrame + DataFrame with the ToO target information + + design_mode: str + The design_mode to run the validation for + """ + # load the healpix indicies for the designmode + bn_maps_boss_file = '{BN_HEALPIX}/{design_mode}_{instrument}_bn_healpix.pkl'\ + .format(BN_HEALPIX=BN_HEALPIX, + instrument='boss', + design_mode=design_mode) + with open(bn_maps_boss_file, 'rb') as f: + bn_maps_boss = pickle.load(f) + + bn_maps_apogee_file = '{BN_HEALPIX}/{design_mode}_{instrument}_bn_healpix.pkl'\ + .format(BN_HEALPIX=BN_HEALPIX, + instrument='apogee', + design_mode=design_mode) + with open(bn_maps_apogee_file, 'rb') as f: + bn_maps_apogee = pickle.load(f) + + # create the correct nside healpix object + hp = HEALPix(nside=2 ** 18, order='ring', frame='icrs') + + # get the indicies for all targets + coord = SkyCoord(ra=targets['ra'].to_numpy() * u.deg, + dec=targets['dec'].to_numpy() * u.deg) + hp_inds = hp.skycoord_to_healpix(coord) + + # check if ToOs in bright neighbor healpixels + valid_too = np.zeros(len(targets), dtype=bool) + True + + # in future, is there faster way to do this? would using sets be better? + ev_boss = targets['fiber_type'] == 'BOSS' + valid_too[ev_boss] = ~np.isin(hp_inds[ev_boss], bn_maps_boss) # oppisite as True == valid target + + ev_apogee = targets['fiber_type'] == 'APOGEE' + valid_too[ev_apogee] = ~np.isin(hp_inds[ev_apogee], bn_maps_apogee) # oppisite as True == valid target + return valid_too From 4f7bee7209718136890da82210e217a332856ac2 Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 15:22:00 -0500 Subject: [PATCH 02/16] add dependencies for validation code --- poetry.lock | 121 +++++++++++++++++++++++++++++++++---------------- pyproject.toml | 2 + 2 files changed, 84 insertions(+), 39 deletions(-) diff --git a/poetry.lock b/poetry.lock index afee646..0384666 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "adbc-driver-manager" @@ -87,65 +87,94 @@ trio = ["trio (>=0.23)"] [[package]] name = "astropy" -version = "6.0.0" +version = "6.0.1" description = "Astronomy and astrophysics core library" optional = false python-versions = ">=3.9" files = [ - {file = "astropy-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eedd46d5c50b977ebb368f8df6cd34a720999cb4fdfd4d2d6b459262a8ac8ec2"}, - {file = "astropy-6.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5797f27b55d58ea122b076c3845dbd79445dc03020cea359ea949f619de1cdcf"}, - {file = "astropy-6.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5d6c39cb2ac064b63fa5fcb320eac8ef81e2118d9cb79e263ee859e68a6d380"}, - {file = "astropy-6.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa5a38aa93e989abd696f9dec6c99bd07f69fc7821132748ce1f45da6e3f482d"}, - {file = "astropy-6.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:697e471ceb3e33c734f9cde817743f0ac429c930f151a8f02a8c9d81237480dd"}, - {file = "astropy-6.0.0-cp310-cp310-win32.whl", hash = "sha256:9a585ca35df1a57d35c49a4d581bc60059511dbe2badf0da50f78b43956c6a4f"}, - {file = "astropy-6.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:e680e532a9eb7597c52c006afe52f79b3622fbc439362aa51f0da2e3d566d75f"}, - {file = "astropy-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6264acac941d98e2dc50a8b05b466497943972b3640a2de2e744e78a7ae51b4d"}, - {file = "astropy-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:77be4c661fe355a641dd4be7a2b4628b022d7998614117d03abb03b1b976368a"}, - {file = "astropy-6.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a57af1d7ac2457408e2b0c8e07a7c5b9029db510bcefced0bc7d6ce2231b28d"}, - {file = "astropy-6.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af67850f0476e04e78a1e5d96b767cd7f484c15fa9e684fed7f7c1277883bfbe"}, - {file = "astropy-6.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3003a651a3735290d522b9ee512ca23bf66ed06cadfef5fad2e0c6ac91cd5f0c"}, - {file = "astropy-6.0.0-cp311-cp311-win32.whl", hash = "sha256:689abb4449dac9255801c84b365adae4fce29eb0d330f9910567b00f0d8b58fa"}, - {file = "astropy-6.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:1fbc219fbf6c3d064b84442883ba8d7d8a41489fbdd506ac60d715807b5958c6"}, - {file = "astropy-6.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3048a9cc8b11167758c9ee3f5bc0daebbe3d79f266eaf754e192f2847250eca3"}, - {file = "astropy-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48a524ce4c2454c6f75a5ca6c81aeb7ea1d842defcf4885e2a62b4853942a7a6"}, - {file = "astropy-6.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa10e80bd3ff8b053c56e402246d4171c6e9658da37341fe28d99212d809ebe4"}, - {file = "astropy-6.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fa9f6115a8c8bf901ea66ba69b32b63acd5ccb2afc017b952326bce4250d1a8"}, - {file = "astropy-6.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6d7a3eb98e250f0f41c62ed998317e64f8947ea819e56054ea256cccf9588d48"}, - {file = "astropy-6.0.0-cp312-cp312-win32.whl", hash = "sha256:63fc8a8ffb1f676c6607aeb5eaf472df78d4e25303615ca6c271442b5b9978b4"}, - {file = "astropy-6.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:0b90a2424a9de69f202111851e336743c22875b21381687e47de62331c2fd642"}, - {file = "astropy-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fcf2da6f59d3c9636872c533ee358293c743800fff953da3d57deb0d2ee0481f"}, - {file = "astropy-6.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c5b6bebfc75f63ca232aaeca19e90414b53927eab0fe5ad413fb158649ee497f"}, - {file = "astropy-6.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e51c5c77f5853b436d64d33b95a2a3f0e33cf9bc5e465f74c3d80544800fffa4"}, - {file = "astropy-6.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c7ac75ccd9087a99e1f5cbc5b41154bdea6e52000a5e297bb32da8e8f16af33"}, - {file = "astropy-6.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e80f5b6c4c859ee241430cb1ee54b3c1d435e4b84b39122ab6e1cf745943e72"}, - {file = "astropy-6.0.0-cp39-cp39-win32.whl", hash = "sha256:84979ccb2306371ad6a1d3ed6ac9a5fadf73b34a2b2564cee114c878511ef9f1"}, - {file = "astropy-6.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:d1b9dc9a3321699e0a49c2171f35f3ef0cceecce1d6f07661c5d3f4aac13e920"}, - {file = "astropy-6.0.0.tar.gz", hash = "sha256:03cd801a55305da523cd8d780d76359f57255dcdc59fe0bdd71fd5154fc777d9"}, + {file = "astropy-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2b5ff962b0e586953f95b63ec047e1d7a3b6a12a13d11c6e909e0bcd3e05b445"}, + {file = "astropy-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:129ed1fb1d23e6fbf8b8e697c2e7340d99bc6271b8c59f9572f3f47063a42e6a"}, + {file = "astropy-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e998ee0ffa58342b4d44f2843b036015e3a6326b53185c5361fea4430658466"}, + {file = "astropy-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c33e3d746c3e7a324dbd76b236fe1e44304d5b6d941a1f724f419d01666d6d88"}, + {file = "astropy-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2f53caf9efebcc9040a92c977dcdae78dd0ff4de218fd316e4fcaffd9ace8dc1"}, + {file = "astropy-6.0.1-cp310-cp310-win32.whl", hash = "sha256:242b8f101301ab303366109d0dfe3cf0db745bf778f7b859fb486105197577d1"}, + {file = "astropy-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:1db9e95438472f6ed53fa2f4e2811c2d84f4085eeacc3cb8820d770d1ea61d1c"}, + {file = "astropy-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c682967736228cc4477e63db0e8854375dd31d755de55b30256de98f1f7b7c23"}, + {file = "astropy-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5208b6f10956ca92efb73375364c81a7df365b441b07f4941a24ee0f1bd9e292"}, + {file = "astropy-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f28facb5800c0617f233c1db0e622da83de1f74ca28d0ff8646e360d4fda74e"}, + {file = "astropy-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c00922548a666b026e2630a563090341d74c8222066e9c84c9673395bca7363"}, + {file = "astropy-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9b3bf27c51fb46bba993695eebd0c39a4e2a792b707e65b28ac4e8ae703f93d4"}, + {file = "astropy-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1f183ab42655ad09b064a4e8eb9cd1eaa138b90ca2f0cd82a200afda062063a5"}, + {file = "astropy-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:d934aff5fe81e84a45098e281f969976963cc16b3401176a8171affd84301a27"}, + {file = "astropy-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4fdd54fa57b85d50c4b83ab7ffd90ba2ffcc3d725e3f8d5ffa1ff5f500ef6b97"}, + {file = "astropy-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d1eb40fe68121753f43fc82d618a2eae53dd0731689e124ef9e002aa2c241c4f"}, + {file = "astropy-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8bc267738a85f633142c246dceefa722b653e7ba99f02e86dd9a7b980467eafc"}, + {file = "astropy-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e604898ca1790c9fd2e2dc83b38f9185556ea618a3a6e6be31c286fafbebd165"}, + {file = "astropy-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:034dff5994428fb89813f40a18600dd8804128c52edf3d1baa8936eca3738de4"}, + {file = "astropy-6.0.1-cp312-cp312-win32.whl", hash = "sha256:87ebbae7ba52f4de9b9f45029a3167d6515399138048d0b734c9033fda7fd723"}, + {file = "astropy-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:8fbd6d88935749ae892445691ac0dbd1923fc6d8094753a35150fc7756118fe3"}, + {file = "astropy-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f18536d6f97faa81ed6c9af7bb2e27b376b41b27399f862e3b13387538c966b9"}, + {file = "astropy-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:764992af1ee1cd6d6f26373d09ddb5ede639d025ce9ff658b3b6580dc2ba4ec6"}, + {file = "astropy-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34fd2bb39cbfa6a8815b5cc99008d59057b9d341db00c67dbb40a3784a8dfb08"}, + {file = "astropy-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca9da00bfa95fbf8475d22aba6d7d046f3821a107b733fc7c7c35c74fcfa2bbf"}, + {file = "astropy-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:15a5da8a0a84d75b55fafd56630578131c3c9186e4e486b4d2fb15c349b844d0"}, + {file = "astropy-6.0.1-cp39-cp39-win32.whl", hash = "sha256:46cbadf360bbadb6a106217e104b91f85dd618658caffdaab5d54a14d0d52563"}, + {file = "astropy-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:eaff9388a2fed0757bd0b4c41c9346d0edea9e7e938a4bfa8070eaabbb538a23"}, + {file = "astropy-6.0.1.tar.gz", hash = "sha256:89a975de356d0608e74f1f493442fb3acbbb7a85b739e074460bb0340014b39c"}, ] [package.dependencies] -astropy-iers-data = ">=0.2023.10.30.0.29.53" +astropy-iers-data = ">=0.2024.2.26.0.28.55" numpy = ">=1.22,<2" packaging = ">=19.0" -pyerfa = ">=2.0" +pyerfa = ">=2.0.1.1" PyYAML = ">=3.13" [package.extras] all = ["asdf-astropy (>=0.3)", "astropy[recommended]", "beautifulsoup4", "bleach", "bottleneck", "certifi", "dask[array]", "fsspec[http] (>=2023.4.0)", "h5py", "html5lib", "ipython (>=4.2)", "jplephem", "mpmath", "pandas", "pre-commit", "pyarrow (>=5.0.0)", "pytest (>=7.0)", "pytz", "s3fs (>=2023.4.0)", "sortedcontainers", "typing-extensions (>=3.10.0.1)"] -docs = ["Jinja2 (>=3.0)", "astropy[recommended]", "pytest (>=7.0)", "sphinx", "sphinx-astropy[confv2] (>=1.9.1)", "sphinx-changelog (>=1.2.0)", "sphinx-design", "tomli"] +docs = ["Jinja2 (>=3.1.3)", "astropy[recommended]", "pytest (>=7.0)", "sphinx", "sphinx-astropy[confv2] (>=1.9.1)", "sphinx-changelog (>=1.2.0)", "sphinx-design", "tomli"] recommended = ["matplotlib (>=3.3,!=3.4.0,!=3.5.2)", "scipy (>=1.5)"] -test = ["pytest (>=7.0)", "pytest-astropy (>=0.10)", "pytest-astropy-header (>=0.2.1)", "pytest-doctestplus (>=0.12)", "pytest-xdist"] +test = ["pytest (>=7.0)", "pytest-astropy (>=0.10)", "pytest-astropy-header (>=0.2.1)", "pytest-doctestplus (>=0.12)", "pytest-xdist", "threadpoolctl"] test-all = ["astropy[test]", "coverage[toml]", "ipython (>=4.2)", "objgraph", "sgp4 (>=2.3)", "skyfield (>=1.20)"] +[[package]] +name = "astropy-healpix" +version = "1.0.2" +description = "BSD-licensed HEALPix for Astropy" +optional = false +python-versions = ">=3.9" +files = [ + {file = "astropy_healpix-1.0.2-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3d71b6bf8466da6a3372bfd86c5f996038b9399b6740127dd40f4ddbcca6731e"}, + {file = "astropy_healpix-1.0.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:b5e9cbedf62d44a51b11fd7b31650901d0f417c25dd49528e5aeb21fe57934d3"}, + {file = "astropy_healpix-1.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c057fd7626f8d5784fe42f9ca22e507ada8d7f63ad4f144bdfaa376b99b45fa0"}, + {file = "astropy_healpix-1.0.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77e46811dda09d65a61c78b82c38d553fe75225999e2672ff5386535233632be"}, + {file = "astropy_healpix-1.0.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6baf5ea438da13485e32a46a45b2a129046fea29e6e417c40c4b8417a9ba128e"}, + {file = "astropy_healpix-1.0.2-cp39-abi3-win32.whl", hash = "sha256:5099be597c57a144e7c9b49f79adec1b76f9f6c0700bb37614f6a1e2c60990d2"}, + {file = "astropy_healpix-1.0.2-cp39-abi3-win_amd64.whl", hash = "sha256:97bb5f171ff2332097c7a8c429d20f229af25d9a42a9020dda77bba6edc5a096"}, + {file = "astropy_healpix-1.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0c99d8de0f672f45595e80ce501bcf740003f87d15cf867fdaca6e95d0eeb208"}, + {file = "astropy_healpix-1.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e024e2fabb60f3b316ebece3122e4fa1c6ed4b5753d137a585c9c510c6b7e01"}, + {file = "astropy_healpix-1.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff38612758eed6b3a6b0578b3af32da87050e89063db5ad3350d8e47c7a8cd4a"}, + {file = "astropy_healpix-1.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aae6ab488ca749cfeef96c79657d72b3a99fe25e0bf378b5f24f62905d9b61b4"}, + {file = "astropy_healpix-1.0.2.tar.gz", hash = "sha256:056fa6ed9396bedc771d374d877cde83d9460a3f62a78fe05dbf9ba03940323a"}, +] + +[package.dependencies] +astropy = ">=3" +numpy = ">=1.19" + +[package.extras] +docs = ["matplotlib", "sphinx-astropy"] +test = ["hypothesis", "pytest-astropy"] + [[package]] name = "astropy-iers-data" -version = "0.2024.2.12.0.31.0" +version = "0.2024.4.1.0.33.14" description = "IERS Earth Rotation and Leap Second tables for the astropy core package" optional = false python-versions = ">=3.8" files = [ - {file = "astropy-iers-data-0.2024.2.12.0.31.0.tar.gz", hash = "sha256:76f7149ac85adc8345ab9f8ab231aff29ce6fceab689f01059b42291aa75bf9b"}, - {file = "astropy_iers_data-0.2024.2.12.0.31.0-py3-none-any.whl", hash = "sha256:f137474f07361adbc9fd55a85bb48cbd6a073fc2a80be0830f069cdff84a0c68"}, + {file = "astropy-iers-data-0.2024.4.1.0.33.14.tar.gz", hash = "sha256:e09dc2c52e26b3fac604f29fb97de28fb2f691d6c7da65ac5fece6b56dc2ac2a"}, + {file = "astropy_iers_data-0.2024.4.1.0.33.14-py3-none-any.whl", hash = "sha256:b70b91dddc36454b385dcb4be8af5728fa869b8a725dc0a06b8757ee2ef617bd"}, ] [package.extras] @@ -1605,6 +1634,7 @@ files = [ {file = "numexpr-2.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7c77392aea53f0700d60eb270ad63174b4ff10b04f8de92861101ca2129fee51"}, {file = "numexpr-2.9.0-cp39-cp39-win32.whl", hash = "sha256:3b03a6cf37a72f5b52f2b962d7ac7f565bea8eaba83c3c4e5fcf8fbb6a938153"}, {file = "numexpr-2.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:d655b6eacc4e81006b662cba014e4615a9ddd96881b8b4db4ad0d7f6d38069af"}, + {file = "numexpr-2.9.0.tar.gz", hash = "sha256:f21d12f6c432ce349089eb95342babf6629aebb3fddf187a4492d3aadaadaaf0"}, ] [package.dependencies] @@ -2066,6 +2096,7 @@ files = [ {file = "psycopg2_binary-2.9.9-cp311-cp311-win32.whl", hash = "sha256:dc4926288b2a3e9fd7b50dc6a1909a13bbdadfc67d93f3374d984e56f885579d"}, {file = "psycopg2_binary-2.9.9-cp311-cp311-win_amd64.whl", hash = "sha256:b76bedd166805480ab069612119ea636f5ab8f8771e640ae103e05a4aae3e417"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:8532fd6e6e2dc57bcb3bc90b079c60de896d2128c5d9d6f24a63875a95a088cf"}, + {file = "psycopg2_binary-2.9.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0605eaed3eb239e87df0d5e3c6489daae3f7388d455d0c0b4df899519c6a38d"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f8544b092a29a6ddd72f3556a9fcf249ec412e10ad28be6a0c0d948924f2212"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2d423c8d8a3c82d08fe8af900ad5b613ce3632a1249fd6a223941d0735fce493"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e5afae772c00980525f6d6ecf7cbca55676296b580c0e6abb407f15f3706996"}, @@ -2074,6 +2105,8 @@ files = [ {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:cb16c65dcb648d0a43a2521f2f0a2300f40639f6f8c1ecbc662141e4e3e1ee07"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:911dda9c487075abd54e644ccdf5e5c16773470a6a5d3826fda76699410066fb"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:57fede879f08d23c85140a360c6a77709113efd1c993923c59fde17aa27599fe"}, + {file = "psycopg2_binary-2.9.9-cp312-cp312-win32.whl", hash = "sha256:64cf30263844fa208851ebb13b0732ce674d8ec6a0c86a4e160495d299ba3c93"}, + {file = "psycopg2_binary-2.9.9-cp312-cp312-win_amd64.whl", hash = "sha256:81ff62668af011f9a48787564ab7eded4e9fb17a4a6a74af5ffa6a457400d2ab"}, {file = "psycopg2_binary-2.9.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2293b001e319ab0d869d660a704942c9e2cce19745262a8aba2115ef41a0a42a"}, {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ef7df18daf2c4c07e2695e8cfd5ee7f748a1d54d802330985a78d2a5a6dca9"}, {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a602ea5aff39bb9fac6308e9c9d82b9a35c2bf288e184a816002c9fae930b77"}, @@ -2423,6 +2456,7 @@ files = [ {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, @@ -2430,8 +2464,15 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, @@ -2448,6 +2489,7 @@ files = [ {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, @@ -2455,6 +2497,7 @@ files = [ {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, @@ -2917,4 +2960,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12,<4.0" -content-hash = "89f77dc55ef2cfe3a935884bde94f9a3172d8ab950395d5661a644d4ec6266dd" +content-hash = "da4186b09a30db81b5db132409918f3fcd05ea94503d091c9b75bddae6ab3200" diff --git a/pyproject.toml b/pyproject.toml index ec56795..d2cca9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,8 @@ rich = "^13.7.0" sdssdb = { git = "https://github.com/sdss/sdssdb.git", branch = "albireox/too_target" } pyarrow = "^15.0.0" click-option-group = "^0.5.6" +astropy-healpix = "^1.0.2" +astropy = "^6.0.1" [tool.poetry.group.dev.dependencies] ipython = ">=8.21.0" From 68ea8fa6c8e5a93f74bbab49d64ffa9f42645aa4 Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 15:27:31 -0500 Subject: [PATCH 03/16] fix linter errors --- src/too/validate.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/too/validate.py b/src/too/validate.py index fa54ddb..3acb77f 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -10,6 +10,7 @@ import polars import numpy as np import pickle + from astropy_healpix import HEALPix from astropy.coordinates import SkyCoord import astropy.units as u @@ -62,10 +63,12 @@ def bn_validation(targets: polars.DataFrame, design_mode: str): # check if ToOs in bright neighbor healpixels valid_too = np.zeros(len(targets), dtype=bool) + True - # in future, is there faster way to do this? would using sets be better? ev_boss = targets['fiber_type'] == 'BOSS' - valid_too[ev_boss] = ~np.isin(hp_inds[ev_boss], bn_maps_boss) # oppisite as True == valid target + # oppisite as True == valid target + valid_too[ev_boss] = ~np.isin(hp_inds[ev_boss], bn_maps_boss) + # in future, is there faster way to do this? would using sets be better? ev_apogee = targets['fiber_type'] == 'APOGEE' - valid_too[ev_apogee] = ~np.isin(hp_inds[ev_apogee], bn_maps_apogee) # oppisite as True == valid target + # oppisite as True == valid target + valid_too[ev_apogee] = ~np.isin(hp_inds[ev_apogee], bn_maps_apogee) return valid_too From 4b3590846901cbf1ec4496722347cf95ffea9c0b Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 15:33:05 -0500 Subject: [PATCH 04/16] linter imports --- src/too/validate.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/too/validate.py b/src/too/validate.py index 3acb77f..8d43d27 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -6,14 +6,14 @@ # @Filename: validate.py # @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) -import os -import polars -import numpy as np -import pickle - -from astropy_healpix import HEALPix from astropy.coordinates import SkyCoord import astropy.units as u +from astropy_healpix import HEALPix + +import numpy as np +import os +import pickle +import polars # load enviornment variable with path to healpix maps BN_HEALPIX = os.getenv('BN_HEALPIX') From f6d577ffd6826ac6b85316b2773bb6f5cea3819b Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 15:34:35 -0500 Subject: [PATCH 05/16] linter imports --- src/too/validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/too/validate.py b/src/too/validate.py index 8d43d27..1af0400 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -6,9 +6,9 @@ # @Filename: validate.py # @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) +from astropy_healpix import HEALPix from astropy.coordinates import SkyCoord import astropy.units as u -from astropy_healpix import HEALPix import numpy as np import os From 662799ebbd05d2685b6ec5f0c29a28706242887b Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 15:46:23 -0500 Subject: [PATCH 06/16] add comment --- src/too/validate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/too/validate.py b/src/too/validate.py index 1af0400..6dd12b7 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -56,6 +56,7 @@ def bn_validation(targets: polars.DataFrame, design_mode: str): hp = HEALPix(nside=2 ** 18, order='ring', frame='icrs') # get the indicies for all targets + # do I need to account for offsets and proper motions here? coord = SkyCoord(ra=targets['ra'].to_numpy() * u.deg, dec=targets['dec'].to_numpy() * u.deg) hp_inds = hp.skycoord_to_healpix(coord) From 1fab038e27bef4a30e936226cfd0f3bccf094a2d Mon Sep 17 00:00:00 2001 From: imedan Date: Tue, 2 Apr 2024 16:21:32 -0500 Subject: [PATCH 07/16] add return --- src/too/validate.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/too/validate.py b/src/too/validate.py index 6dd12b7..8ad29d6 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -19,7 +19,8 @@ BN_HEALPIX = os.getenv('BN_HEALPIX') -def bn_validation(targets: polars.DataFrame, design_mode: str): +def bn_validation(targets: polars.DataFrame, + design_mode: str) -> np.ndarray: """ Validate a ToO to see if it is too close to a bright neighbor. This functionm relies on the @@ -36,6 +37,13 @@ def bn_validation(targets: polars.DataFrame, design_mode: str): design_mode: str The design_mode to run the validation for + + + Return + ------ + valid_too: np.array + bright neighbor validation for specified design_mode. + True means passes check. """ # load the healpix indicies for the designmode bn_maps_boss_file = '{BN_HEALPIX}/{design_mode}_{instrument}_bn_healpix.pkl'\ From cd7056abe2c33e35aa8ecfebff7b6ac31b07a87d Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 12:09:45 -0500 Subject: [PATCH 08/16] add coordio to dependencies --- poetry.lock | 338 +++++++++++++++++++++++++++++++++++++++++-------- pyproject.toml | 3 +- 2 files changed, 287 insertions(+), 54 deletions(-) diff --git a/poetry.lock b/poetry.lock index 0384666..a9ccda8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -87,55 +87,54 @@ trio = ["trio (>=0.23)"] [[package]] name = "astropy" -version = "6.0.1" +version = "5.3.4" description = "Astronomy and astrophysics core library" optional = false python-versions = ">=3.9" files = [ - {file = "astropy-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2b5ff962b0e586953f95b63ec047e1d7a3b6a12a13d11c6e909e0bcd3e05b445"}, - {file = "astropy-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:129ed1fb1d23e6fbf8b8e697c2e7340d99bc6271b8c59f9572f3f47063a42e6a"}, - {file = "astropy-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e998ee0ffa58342b4d44f2843b036015e3a6326b53185c5361fea4430658466"}, - {file = "astropy-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c33e3d746c3e7a324dbd76b236fe1e44304d5b6d941a1f724f419d01666d6d88"}, - {file = "astropy-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2f53caf9efebcc9040a92c977dcdae78dd0ff4de218fd316e4fcaffd9ace8dc1"}, - {file = "astropy-6.0.1-cp310-cp310-win32.whl", hash = "sha256:242b8f101301ab303366109d0dfe3cf0db745bf778f7b859fb486105197577d1"}, - {file = "astropy-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:1db9e95438472f6ed53fa2f4e2811c2d84f4085eeacc3cb8820d770d1ea61d1c"}, - {file = "astropy-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c682967736228cc4477e63db0e8854375dd31d755de55b30256de98f1f7b7c23"}, - {file = "astropy-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5208b6f10956ca92efb73375364c81a7df365b441b07f4941a24ee0f1bd9e292"}, - {file = "astropy-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f28facb5800c0617f233c1db0e622da83de1f74ca28d0ff8646e360d4fda74e"}, - {file = "astropy-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c00922548a666b026e2630a563090341d74c8222066e9c84c9673395bca7363"}, - {file = "astropy-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9b3bf27c51fb46bba993695eebd0c39a4e2a792b707e65b28ac4e8ae703f93d4"}, - {file = "astropy-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1f183ab42655ad09b064a4e8eb9cd1eaa138b90ca2f0cd82a200afda062063a5"}, - {file = "astropy-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:d934aff5fe81e84a45098e281f969976963cc16b3401176a8171affd84301a27"}, - {file = "astropy-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4fdd54fa57b85d50c4b83ab7ffd90ba2ffcc3d725e3f8d5ffa1ff5f500ef6b97"}, - {file = "astropy-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d1eb40fe68121753f43fc82d618a2eae53dd0731689e124ef9e002aa2c241c4f"}, - {file = "astropy-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8bc267738a85f633142c246dceefa722b653e7ba99f02e86dd9a7b980467eafc"}, - {file = "astropy-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e604898ca1790c9fd2e2dc83b38f9185556ea618a3a6e6be31c286fafbebd165"}, - {file = "astropy-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:034dff5994428fb89813f40a18600dd8804128c52edf3d1baa8936eca3738de4"}, - {file = "astropy-6.0.1-cp312-cp312-win32.whl", hash = "sha256:87ebbae7ba52f4de9b9f45029a3167d6515399138048d0b734c9033fda7fd723"}, - {file = "astropy-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:8fbd6d88935749ae892445691ac0dbd1923fc6d8094753a35150fc7756118fe3"}, - {file = "astropy-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f18536d6f97faa81ed6c9af7bb2e27b376b41b27399f862e3b13387538c966b9"}, - {file = "astropy-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:764992af1ee1cd6d6f26373d09ddb5ede639d025ce9ff658b3b6580dc2ba4ec6"}, - {file = "astropy-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34fd2bb39cbfa6a8815b5cc99008d59057b9d341db00c67dbb40a3784a8dfb08"}, - {file = "astropy-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca9da00bfa95fbf8475d22aba6d7d046f3821a107b733fc7c7c35c74fcfa2bbf"}, - {file = "astropy-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:15a5da8a0a84d75b55fafd56630578131c3c9186e4e486b4d2fb15c349b844d0"}, - {file = "astropy-6.0.1-cp39-cp39-win32.whl", hash = "sha256:46cbadf360bbadb6a106217e104b91f85dd618658caffdaab5d54a14d0d52563"}, - {file = "astropy-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:eaff9388a2fed0757bd0b4c41c9346d0edea9e7e938a4bfa8070eaabbb538a23"}, - {file = "astropy-6.0.1.tar.gz", hash = "sha256:89a975de356d0608e74f1f493442fb3acbbb7a85b739e074460bb0340014b39c"}, + {file = "astropy-5.3.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6c63abc95d094cd3062e32c1ebf80c07502e4f3094b1e276458db5ce6b6a2"}, + {file = "astropy-5.3.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e85871ec762fc7eab2f7e716c97dad1b3c546bb75941ea7fae6c8eadd51f0bf8"}, + {file = "astropy-5.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e82fdad3417b70af381945aa42fdae0f11bc9aaf94b95027b1e24379bf847d6"}, + {file = "astropy-5.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbce56f46ec1051fd67a5e2244e5f2e08599a176fe524c0bee2294c62be317b3"}, + {file = "astropy-5.3.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a489c2322136b76a43208e3e9b5a7947a7fd624a10e49d2909b94f12b624da06"}, + {file = "astropy-5.3.4-cp310-cp310-win32.whl", hash = "sha256:c713695e39f5a874705bc3bd262c5d218890e3e7c43f0b6c0b5e7d46bdff527c"}, + {file = "astropy-5.3.4-cp310-cp310-win_amd64.whl", hash = "sha256:2576579befb0674cdfd18f5cc138c919a109c6886a25aa3d8ed8ab4e4607c581"}, + {file = "astropy-5.3.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4ce096dde6b86a87aa84aec4198732ec379fbb7649af66a96f85b96d17214c2a"}, + {file = "astropy-5.3.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:830fb4b19c36bf8092fdd74ecf9df5b78c6435bf571c5e09b7f644875148a058"}, + {file = "astropy-5.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a707c534408d26d90014a1938af883f6cbf43a3dd78df8bb9a191d275c09f8d"}, + {file = "astropy-5.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0bb2b9b93bc879bcd032931e7fc07c3a3de6f9546fed17f0f12974e0ffc83e0"}, + {file = "astropy-5.3.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1fa4437fe8d1e103f14cb1cb4e8449c93ae4190b5e9fd97e9c61a5155de9af0d"}, + {file = "astropy-5.3.4-cp311-cp311-win32.whl", hash = "sha256:c656c7fd3d862bcb9d3c4a87b8e9488d0c351b4edf348410c09a26641b9d4731"}, + {file = "astropy-5.3.4-cp311-cp311-win_amd64.whl", hash = "sha256:4c4971abae8e3ddfb8f40447d78aaf24e6ce44b976b3874770ff533609050366"}, + {file = "astropy-5.3.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:887db411555692fb1858ae305f87fd2ff42a021b68c78abbf3fa1fc64641e895"}, + {file = "astropy-5.3.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e4033d7a6bd2da38b83ec65f7282dfeb2641f2b2d41b1cd392cdbe3d6f8abfff"}, + {file = "astropy-5.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2cc6503b79d4fb61ca80e1d37dd609fabca6d2e0124e17f831cc08c2e6ff75e"}, + {file = "astropy-5.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f3f9fe1d76d151428a8d2bc7d50f4a47ae6e7141c11880a3ad259ac7b906b03"}, + {file = "astropy-5.3.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6e0f7ecbb2a8acb3eace99bcaca30dd1ce001e6f4750a009fd9cc3b8d1b49c58"}, + {file = "astropy-5.3.4-cp312-cp312-win32.whl", hash = "sha256:d915e6370315a1a6a40c2576e77d0063f48cc3b5f8873087cad8ad19dd429d19"}, + {file = "astropy-5.3.4-cp312-cp312-win_amd64.whl", hash = "sha256:69f5a3789a8a4cb00815630b63f950be629a983896dc1aba92566ccc7937a77d"}, + {file = "astropy-5.3.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d5d1a1be788344f11a94a5356c1a25b4d45f1736b740edb4d8e3a272b872a8fa"}, + {file = "astropy-5.3.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ae59e4d41461ad96a2573bc51408000a7b4f90dce2bad07646fa6409a12a5a74"}, + {file = "astropy-5.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4c4d3a14e8e3a33208683331b16a721ab9f9493ed998d34533532fdaeaa3642"}, + {file = "astropy-5.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8f58f53294f07cd3f9173bb113ad60d2cd823501c99251891936202fed76681"}, + {file = "astropy-5.3.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f79400dc6641bb0202a8998cfb08ad1afe197818e27c946491a292e2ffd16a1b"}, + {file = "astropy-5.3.4-cp39-cp39-win32.whl", hash = "sha256:fd0baa7621d03aa74bb8ba673d7955381d15aed4f30dc2a56654560401fc3aca"}, + {file = "astropy-5.3.4-cp39-cp39-win_amd64.whl", hash = "sha256:9ed6116d07de02183d966e9a5dabc86f6fd3d86cc3e1e8b9feef89fd757be8a6"}, + {file = "astropy-5.3.4.tar.gz", hash = "sha256:d490f7e2faac2ccc01c9244202d629154259af8a979104ced89dc4ace4e6f1d8"}, ] [package.dependencies] -astropy-iers-data = ">=0.2024.2.26.0.28.55" -numpy = ">=1.22,<2" +numpy = ">=1.21,<2" packaging = ">=19.0" -pyerfa = ">=2.0.1.1" +pyerfa = ">=2.0" PyYAML = ">=3.13" [package.extras] -all = ["asdf-astropy (>=0.3)", "astropy[recommended]", "beautifulsoup4", "bleach", "bottleneck", "certifi", "dask[array]", "fsspec[http] (>=2023.4.0)", "h5py", "html5lib", "ipython (>=4.2)", "jplephem", "mpmath", "pandas", "pre-commit", "pyarrow (>=5.0.0)", "pytest (>=7.0)", "pytz", "s3fs (>=2023.4.0)", "sortedcontainers", "typing-extensions (>=3.10.0.1)"] -docs = ["Jinja2 (>=3.1.3)", "astropy[recommended]", "pytest (>=7.0)", "sphinx", "sphinx-astropy[confv2] (>=1.9.1)", "sphinx-changelog (>=1.2.0)", "sphinx-design", "tomli"] +all = ["asdf (>=2.10.0)", "beautifulsoup4", "bleach", "bottleneck", "certifi", "dask[array]", "fsspec[http] (>=2022.8.2)", "h5py", "html5lib", "ipython (>=4.2)", "jplephem", "matplotlib (>=3.3,!=3.4.0,!=3.5.2)", "mpmath", "pandas", "pre-commit", "pyarrow (>=5.0.0)", "pytest (>=7.0,<8)", "pytz", "s3fs (>=2022.8.2)", "scipy (>=1.5)", "sortedcontainers", "typing-extensions (>=3.10.0.1)"] +docs = ["Jinja2 (>=3.0)", "matplotlib (>=3.3,!=3.4.0,!=3.5.2)", "pytest (>=7.0,<8)", "scipy (>=1.3)", "sphinx", "sphinx-astropy (>=1.6)", "sphinx-changelog (>=1.2.0)"] recommended = ["matplotlib (>=3.3,!=3.4.0,!=3.5.2)", "scipy (>=1.5)"] -test = ["pytest (>=7.0)", "pytest-astropy (>=0.10)", "pytest-astropy-header (>=0.2.1)", "pytest-doctestplus (>=0.12)", "pytest-xdist", "threadpoolctl"] -test-all = ["astropy[test]", "coverage[toml]", "ipython (>=4.2)", "objgraph", "sgp4 (>=2.3)", "skyfield (>=1.20)"] +test = ["pytest (>=7.0,<8)", "pytest-astropy (>=0.10)", "pytest-astropy-header (>=0.2.1)", "pytest-doctestplus (>=0.12)", "pytest-xdist"] +test-all = ["coverage[toml]", "ipython (>=4.2)", "objgraph", "pytest (>=7.0,<8)", "pytest-astropy (>=0.10)", "pytest-astropy-header (>=0.2.1)", "pytest-doctestplus (>=0.12)", "pytest-xdist", "sgp4 (>=2.3)", "skyfield (>=1.20)"] [[package]] name = "astropy-healpix" @@ -166,21 +165,6 @@ numpy = ">=1.19" docs = ["matplotlib", "sphinx-astropy"] test = ["hypothesis", "pytest-astropy"] -[[package]] -name = "astropy-iers-data" -version = "0.2024.4.1.0.33.14" -description = "IERS Earth Rotation and Leap Second tables for the astropy core package" -optional = false -python-versions = ">=3.8" -files = [ - {file = "astropy-iers-data-0.2024.4.1.0.33.14.tar.gz", hash = "sha256:e09dc2c52e26b3fac604f29fb97de28fb2f691d6c7da65ac5fece6b56dc2ac2a"}, - {file = "astropy_iers_data-0.2024.4.1.0.33.14-py3-none-any.whl", hash = "sha256:b70b91dddc36454b385dcb4be8af5728fa869b8a725dc0a06b8757ee2ef617bd"}, -] - -[package.extras] -docs = ["pytest"] -test = ["hypothesis", "pytest", "pytest-remotedata"] - [[package]] name = "asttokens" version = "2.4.1" @@ -1109,6 +1093,38 @@ files = [ {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, ] +[[package]] +name = "imageio" +version = "2.34.0" +description = "Library for reading and writing a wide range of image, video, scientific, and volumetric data formats." +optional = false +python-versions = ">=3.8" +files = [ + {file = "imageio-2.34.0-py3-none-any.whl", hash = "sha256:08082bf47ccb54843d9c73fe9fc8f3a88c72452ab676b58aca74f36167e8ccba"}, + {file = "imageio-2.34.0.tar.gz", hash = "sha256:ae9732e10acf807a22c389aef193f42215718e16bd06eed0c5bb57e1034a4d53"}, +] + +[package.dependencies] +numpy = "*" +pillow = ">=8.3.2" + +[package.extras] +all-plugins = ["astropy", "av", "imageio-ffmpeg", "pillow-heif", "psutil", "tifffile"] +all-plugins-pypy = ["av", "imageio-ffmpeg", "pillow-heif", "psutil", "tifffile"] +build = ["wheel"] +dev = ["black", "flake8", "fsspec[github]", "pytest", "pytest-cov"] +docs = ["numpydoc", "pydata-sphinx-theme", "sphinx (<6)"] +ffmpeg = ["imageio-ffmpeg", "psutil"] +fits = ["astropy"] +full = ["astropy", "av", "black", "flake8", "fsspec[github]", "gdal", "imageio-ffmpeg", "itk", "numpydoc", "pillow-heif", "psutil", "pydata-sphinx-theme", "pytest", "pytest-cov", "sphinx (<6)", "tifffile", "wheel"] +gdal = ["gdal"] +itk = ["itk"] +linting = ["black", "flake8"] +pillow-heif = ["pillow-heif"] +pyav = ["av"] +test = ["fsspec[github]", "pytest", "pytest-cov"] +tifffile = ["tifffile"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -1327,6 +1343,21 @@ files = [ {file = "kiwisolver-1.4.5.tar.gz", hash = "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec"}, ] +[[package]] +name = "lazy-loader" +version = "0.3" +description = "lazy_loader" +optional = false +python-versions = ">=3.7" +files = [ + {file = "lazy_loader-0.3-py3-none-any.whl", hash = "sha256:1e9e76ee8631e264c62ce10006718e80b2cfc74340d17d1031e0f84af7478554"}, + {file = "lazy_loader-0.3.tar.gz", hash = "sha256:3b68898e34f5b2a29daaaac172c6555512d0f32074f147e2254e4a6d9d838f37"}, +] + +[package.extras] +lint = ["pre-commit (>=3.3)"] +test = ["pytest (>=7.4)", "pytest-cov (>=4.1)"] + [[package]] name = "markdown-it-py" version = "3.0.0" @@ -2228,6 +2259,20 @@ files = [ [package.dependencies] numpy = ">=1.16.6,<2" +[[package]] +name = "pybind11" +version = "2.12.0" +description = "Seamless operability between C++11 and Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pybind11-2.12.0-py3-none-any.whl", hash = "sha256:df8d60b94f9e714d81013db233393d430ebf9f3551642b82291cf1b14d1afdbd"}, + {file = "pybind11-2.12.0.tar.gz", hash = "sha256:5e3c557a84b06b969247630407fc4d985bed157b4253b13153b8e8e165e0c3dc"}, +] + +[package.extras] +global = ["pybind11-global (==2.12.0)"] + [[package]] name = "pydl" version = "1.0.0" @@ -2568,6 +2613,54 @@ files = [ {file = "ruff-0.2.1.tar.gz", hash = "sha256:3b42b5d8677cd0c72b99fcaf068ffc62abb5a19e71b4a3b9cfa50658a0af02f1"}, ] +[[package]] +name = "scikit-image" +version = "0.22.0" +description = "Image processing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "scikit_image-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74ec5c1d4693506842cc7c9487c89d8fc32aed064e9363def7af08b8f8cbb31d"}, + {file = "scikit_image-0.22.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:a05ae4fe03d802587ed8974e900b943275548cde6a6807b785039d63e9a7a5ff"}, + {file = "scikit_image-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a92dca3d95b1301442af055e196a54b5a5128c6768b79fc0a4098f1d662dee6"}, + {file = "scikit_image-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3663d063d8bf2fb9bdfb0ca967b9ee3b6593139c860c7abc2d2351a8a8863938"}, + {file = "scikit_image-0.22.0-cp310-cp310-win_amd64.whl", hash = "sha256:ebdbdc901bae14dab637f8d5c99f6d5cc7aaf4a3b6f4003194e003e9f688a6fc"}, + {file = "scikit_image-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:95d6da2d8a44a36ae04437c76d32deb4e3c993ffc846b394b9949fd8ded73cb2"}, + {file = "scikit_image-0.22.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:2c6ef454a85f569659b813ac2a93948022b0298516b757c9c6c904132be327e2"}, + {file = "scikit_image-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e87872f067444ee90a00dd49ca897208308645382e8a24bd3e76f301af2352cd"}, + {file = "scikit_image-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5c378db54e61b491b9edeefff87e49fcf7fdf729bb93c777d7a5f15d36f743e"}, + {file = "scikit_image-0.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:2bcb74adb0634258a67f66c2bb29978c9a3e222463e003b67ba12056c003971b"}, + {file = "scikit_image-0.22.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:003ca2274ac0fac252280e7179ff986ff783407001459ddea443fe7916e38cff"}, + {file = "scikit_image-0.22.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:cf3c0c15b60ae3e557a0c7575fbd352f0c3ce0afca562febfe3ab80efbeec0e9"}, + {file = "scikit_image-0.22.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5b23908dd4d120e6aecb1ed0277563e8cbc8d6c0565bdc4c4c6475d53608452"}, + {file = "scikit_image-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be79d7493f320a964f8fcf603121595ba82f84720de999db0fcca002266a549a"}, + {file = "scikit_image-0.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:722b970aa5da725dca55252c373b18bbea7858c1cdb406e19f9b01a4a73b30b2"}, + {file = "scikit_image-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22318b35044cfeeb63ee60c56fc62450e5fe516228138f1d06c7a26378248a86"}, + {file = "scikit_image-0.22.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:9e801c44a814afdadeabf4dffdffc23733e393767958b82319706f5fa3e1eaa9"}, + {file = "scikit_image-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c472a1fb3665ec5c00423684590631d95f9afcbc97f01407d348b821880b2cb3"}, + {file = "scikit_image-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b7a6c89e8d6252332121b58f50e1625c35f7d6a85489c0b6b7ee4f5155d547a"}, + {file = "scikit_image-0.22.0-cp39-cp39-win_amd64.whl", hash = "sha256:5071b8f6341bfb0737ab05c8ab4ac0261f9e25dbcc7b5d31e5ed230fd24a7929"}, + {file = "scikit_image-0.22.0.tar.gz", hash = "sha256:018d734df1d2da2719087d15f679d19285fce97cd37695103deadfaef2873236"}, +] + +[package.dependencies] +imageio = ">=2.27" +lazy_loader = ">=0.3" +networkx = ">=2.8" +numpy = ">=1.22" +packaging = ">=21" +pillow = ">=9.0.1" +scipy = ">=1.8" +tifffile = ">=2022.8.12" + +[package.extras] +build = ["Cython (>=0.29.32)", "build", "meson-python (>=0.14)", "ninja", "numpy (>=1.22)", "packaging (>=21)", "pythran", "setuptools (>=67)", "spin (==0.6)", "wheel"] +data = ["pooch (>=1.6.0)"] +developer = ["pre-commit", "tomli"] +docs = ["PyWavelets (>=1.1.1)", "dask[array] (>=2022.9.2)", "ipykernel", "ipywidgets", "kaleido", "matplotlib (>=3.5)", "myst-parser", "numpydoc (>=1.6)", "pandas (>=1.5)", "plotly (>=5.10)", "pooch (>=1.6)", "pydata-sphinx-theme (>=0.14.1)", "pytest-runner", "scikit-learn (>=1.1)", "seaborn (>=0.11)", "sphinx (>=7.2)", "sphinx-copybutton", "sphinx-gallery (>=0.14)", "sphinx_design (>=0.5)", "tifffile (>=2022.8.12)"] +optional = ["PyWavelets (>=1.1.1)", "SimpleITK", "astropy (>=5.0)", "cloudpickle (>=0.2.1)", "dask[array] (>=2021.1.0)", "matplotlib (>=3.5)", "pooch (>=1.6.0)", "pyamg", "scikit-learn (>=1.1)"] +test = ["asv", "matplotlib (>=3.5)", "numpydoc (>=1.5)", "pooch (>=1.6.0)", "pytest (>=7.0)", "pytest-cov (>=2.11.0)", "pytest-faulthandler", "pytest-localserver"] + [[package]] name = "scipy" version = "1.12.0" @@ -2610,6 +2703,107 @@ dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyl doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] test = ["asv", "gmpy2", "hypothesis", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] +[[package]] +name = "sdss-coordio" +version = "1.10.0" +description = "Coordinate conversion for SDSS-V" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sdss-coordio-1.10.0.tar.gz", hash = "sha256:5177d52ac77c0cb301ef62245ba7f581461e3e0791223e7ec867d0b64d2ffc6e"}, + {file = "sdss_coordio-1.10.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:b8429d090359fa79a35af17da8f84c00e05b7af8bbc44ba32b04fe8ca49e4dea"}, + {file = "sdss_coordio-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70e797d0cc0205498d74f32170db6410910f1b71a89a161dd6d6fb2ff67c5d3b"}, + {file = "sdss_coordio-1.10.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:180e6d0a6e413efa9ef418ce4be1b919d72fdd61e2b738f7412d0af4072f80a1"}, + {file = "sdss_coordio-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d0cb162be7c7da17193a0fdbafc383ea91f9d17fd4917d9998af6fbd815f398"}, + {file = "sdss_coordio-1.10.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:c57123d27b3c92dbca33ca4011db0df7d34e2fc432590921ea56d6c505320c11"}, + {file = "sdss_coordio-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10e9d81b984a2f56e9f1fd4822e7b4fdb2dad2b10608e2d1501711de9ea3f3e6"}, + {file = "sdss_coordio-1.10.0-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:c891704b6f0124dd1138264358e1e6cd94c5f5febcf44e812e55d599f3c7dd4d"}, + {file = "sdss_coordio-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92f12a396a0dc8d8a0104ef5ef033c301e3a8bc4d82ac7bc0eac4a57128d2368"}, + {file = "sdss_coordio-1.10.0-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:0e76322b6067aed424b05aa4de733f17a99a7e41c181fe66c32cd11d9273ffd7"}, + {file = "sdss_coordio-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54e572b73f2fedad646a3006cde7ee6af2bfbf71b9e200e99bb92f130c1f5ce4"}, +] + +[package.dependencies] +astropy = {version = ">=5.0.0", markers = "python_version > \"3.7\""} +matplotlib = ">=3.1.1" +numpy = {version = ">=1.23.0", markers = "python_version > \"3.7\""} +pandas = ">=1.2.1" +pyarrow = {version = ">=15.0.0", markers = "python_version > \"3.7\""} +pybind11 = ">=2.6.2" +scikit-image = ">=0.17.2" +scipy = ">=1.2.1" +sdss-sep = ">=1.2.3" +sdsstools = {version = ">=1.0.0", markers = "python_version > \"3.7\""} +seaborn = ">=0.12.1" + +[package.extras] +dev = ["coverage[toml] (>=5.0)", "doc8 (>=0.8.0)", "flake8 (>=3.7.9)", "ipdb (>=0.12.3)", "isort (>=4.3.21)", "pytest (>=5.2.2)", "pytest-cov (>=2.8.1)", "pytest-mock (>=1.13.0)", "pytest-sugar (>=0.9.2)", "rstcheck (>=3.3.1)", "sphinx (>=4.0)", "twine (>=3.4.2)", "wheel (>=0.36.2)"] + +[[package]] +name = "sdss-sep" +version = "1.2.3" +description = "Astronomical source extraction and photometry library" +optional = false +python-versions = ">=3.5" +files = [ + {file = "sdss-sep-1.2.3.tar.gz", hash = "sha256:ef03b67b2b8401419e63a470b092b9dde9ea3291d838c5a904c486f6cda33a9b"}, + {file = "sdss_sep-1.2.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4c6d0983df821a061405fda8e99631b756084b9ac0831f032e4d448a6ded5c84"}, + {file = "sdss_sep-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4f97312beba37f44d1d0335b304f1a0b12bf11a50a924b75d993b6c7ee6ace4e"}, + {file = "sdss_sep-1.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:864e33d2481ba4e2c8c0f2c52912f0a3833e3ea828da6f8a89a9577a4647d309"}, + {file = "sdss_sep-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e258607d95110517831563ad15733786b0ff920aebbd31a84be63dff3a722941"}, + {file = "sdss_sep-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab1088a9963a561ed03b95b821297cbaba2419a25093a3debd2ed7ab7938d3d2"}, + {file = "sdss_sep-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd8e5166cd97890f1f9bf8e29dd86c09e4ff913e972c370381d8031699b5fa3a"}, + {file = "sdss_sep-1.2.3-cp310-cp310-win32.whl", hash = "sha256:871930ea629dcf91ca11b88b3f14d325603e28d5265ecb473078ec69a87fe726"}, + {file = "sdss_sep-1.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:42e154270f4c44c83b60ff82c53e742df557c87de13b939232f024471eaf6b97"}, + {file = "sdss_sep-1.2.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:162ea5d6f3b3e1a3199ff9936bc817f2ebe09c9d2dd370fa607aeab6355294eb"}, + {file = "sdss_sep-1.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f13e346632306dcf62d54c22bb51a8ff05597f2a03618899fea50ddb62b96449"}, + {file = "sdss_sep-1.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49338b11cfa00815e001c1e49aafb6f0d22715aec8ebe02d06f3291fbe581601"}, + {file = "sdss_sep-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6570ed13d2604d545a28e40bb0bae69dc92840f3c7fd69fe19dc21f9fa826d2c"}, + {file = "sdss_sep-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0074870b64a23b1c3e6c20355975e7ec657bb3add59126ce1380021a9f6ad98b"}, + {file = "sdss_sep-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20ab0881d622dd74fc064c84093c1c9950ef3a521d04703395905a8d75908b57"}, + {file = "sdss_sep-1.2.3-cp311-cp311-win32.whl", hash = "sha256:1b2a95020d0aee6ed4c5cbfc70c19c62f70fca4478491c1d3ef1484327c7c97e"}, + {file = "sdss_sep-1.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3a0e26070fe47d84c589bc9851cdf78f3ac0e76990051b5ebe6b75c2f5c4117d"}, + {file = "sdss_sep-1.2.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:18005953328d56785ac180e4c21824d69f01ba316f92cfa7648c6cfe3230668b"}, + {file = "sdss_sep-1.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6f5fde7b10b3a83c4fac942c68fcef02d77909ef47580664b5bbbd8e4cbe5d98"}, + {file = "sdss_sep-1.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fda0586571e1ca8613bc2b47de128c0cf8a962f84ff053a3b46bec47b4eab89"}, + {file = "sdss_sep-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cb5b65fd5fe8f83b30b9bf8db67cacaafc29c69dd0ea1a112382ca24b168768"}, + {file = "sdss_sep-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a237c8dd8173bef7eb54519026e6b93e328c497c5026e0f312ab7539d655811"}, + {file = "sdss_sep-1.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7eb022e21e1ec9b528d79d4750b844c3b91bf551eb338bbbd91f9649d46c8640"}, + {file = "sdss_sep-1.2.3-cp312-cp312-win32.whl", hash = "sha256:376fb790604ba5041a6734e9234aa7fd5e163b481156978542c8b7771a68a9d8"}, + {file = "sdss_sep-1.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:a8f7880234cf1d69c8106220b8f4a509bdad34a571f1299887de984dbca2f949"}, + {file = "sdss_sep-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:5719bcd433125c80b904f4e0edd9ce7c4bf593f625621e42a8a6b55ebc511fa7"}, + {file = "sdss_sep-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de8bf1bb44f17f8636d546d61843476b65da8a5aee8b80dd8609da9abe0ec37e"}, + {file = "sdss_sep-1.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8bcdedb5d51536491f34aeabc73690c0d3fec26aeccaca2c340824c00e608d64"}, + {file = "sdss_sep-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:872406255ba2c55cfa3f20a37914372dfb17158b358e02169f51b88fadc8b6bb"}, + {file = "sdss_sep-1.2.3-cp36-cp36m-win32.whl", hash = "sha256:f4670ebec7b41ed58bed656dc1733246667f68455d62ceabc3d03ff39d1829a5"}, + {file = "sdss_sep-1.2.3-cp36-cp36m-win_amd64.whl", hash = "sha256:d055547d6235d68097fe98ec1c55d2a75af1e4a7496ab3e727d23bf652add092"}, + {file = "sdss_sep-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6320dbba5d3e6f5582f6cbd8c92ac18ad2a880c71146299d3f92ba9b61e55abf"}, + {file = "sdss_sep-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac45e58bc6209189ac3a5f7cd923ec754a78e0cef827e03eeb9c84e8b0b44af7"}, + {file = "sdss_sep-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7501e2075d96b43290b2ab3b5d0676d670c2f3f968e8105c930a0ec82e51574c"}, + {file = "sdss_sep-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b911db114e930496015181d2ba1a3d8a1eeb8a9cf757be73dcb05e02a26db35"}, + {file = "sdss_sep-1.2.3-cp37-cp37m-win32.whl", hash = "sha256:fa33c45e0d1f424b6f0c37f32887f961b9cc0312024b5f4b05a787c665c903c9"}, + {file = "sdss_sep-1.2.3-cp37-cp37m-win_amd64.whl", hash = "sha256:708121887f94a562ae317dbf7ac8357419299ae98f97010bc3793576c23619a8"}, + {file = "sdss_sep-1.2.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:22a201b58936842e07c20c308b53daf948d52c4a337e681673b77c5f34e63b4e"}, + {file = "sdss_sep-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:23222c56ceaf00269a8e7af7d3565cb13fcb57e4ee61bf2a65da2d151a52aa3b"}, + {file = "sdss_sep-1.2.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:42d94c9d5ced1fdc5da701c5aabf2029950cb853670fc69ad16c27060b02489e"}, + {file = "sdss_sep-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4eaa6e771acdf41287023e97bc822637902bcd831980b82aa44c6e287a29ab9e"}, + {file = "sdss_sep-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f112347a726bee74e96d0806dd03e04aa100a8eb84f106a9ea409573de796268"}, + {file = "sdss_sep-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:871be1f1fcb6f6863db5ccc878405615c457c0ebda8a43f3dd9d3dd2d590f148"}, + {file = "sdss_sep-1.2.3-cp38-cp38-win32.whl", hash = "sha256:00325a80820b92198d1cdaa32f0823a1cc63b634c7b5ac8f9a85df9ebc6cb0a8"}, + {file = "sdss_sep-1.2.3-cp38-cp38-win_amd64.whl", hash = "sha256:905a4d2368317463dbf502bce16fa05f081ec5d6fe1a1fd091b1105e8ea8e1b1"}, + {file = "sdss_sep-1.2.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fd138577d0d29833413df7ef5a7d8c1dcde3a86ad111ff250363535460463c2f"}, + {file = "sdss_sep-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:38ab41e72f7187d3b116d1949fb060afac60d4440f3f75a97dacc6041668460f"}, + {file = "sdss_sep-1.2.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:13fabe2a061b13a528b1b55702a31e12bd2287c520663f24e2cde36c70c18756"}, + {file = "sdss_sep-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc8f97a9f18313e8de7035794a76c7ac65d01bfb22ef4d67cc944bdf29b3a9bd"}, + {file = "sdss_sep-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6d173b1bf2a5434cce09cd04f24701918e1b9115bb46650c3ce16da21f227"}, + {file = "sdss_sep-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:843eb6227d94446378637226f7c8740ccf699394705a2d2aa138adf8e6eca8b5"}, + {file = "sdss_sep-1.2.3-cp39-cp39-win32.whl", hash = "sha256:09742e4abcd0d83d278b68175c7370dac6ef0e42164be1c3cf93bbab8ed6b148"}, + {file = "sdss_sep-1.2.3-cp39-cp39-win_amd64.whl", hash = "sha256:77e8e644b1fc65c84adb05cd72592186ed84cd64cc70a810846b9c2818c30f97"}, +] + +[package.dependencies] +numpy = "*" + [[package]] name = "sdss-target-selection" version = "1.1.2a0" @@ -2703,6 +2897,27 @@ pyyaml = ">=4.0" rich = ">=13.4.2,<14.0.0" typing-extensions = ">=4.6.3,<5.0.0" +[[package]] +name = "seaborn" +version = "0.13.2" +description = "Statistical data visualization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987"}, + {file = "seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7"}, +] + +[package.dependencies] +matplotlib = ">=3.4,<3.6.1 || >3.6.1" +numpy = ">=1.20,<1.24.0 || >1.24.0" +pandas = ">=1.2" + +[package.extras] +dev = ["flake8", "flit", "mypy", "pandas-stubs", "pre-commit", "pytest", "pytest-cov", "pytest-xdist"] +docs = ["ipykernel", "nbconvert", "numpydoc", "pydata_sphinx_theme (==0.10.0rc2)", "pyyaml", "sphinx (<6.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-issues"] +stats = ["scipy (>=1.7)", "statsmodels (>=0.12)"] + [[package]] name = "six" version = "1.16.0" @@ -2881,6 +3096,23 @@ files = [ [package.extras] tests = ["pytest", "pytest-cov"] +[[package]] +name = "tifffile" +version = "2024.2.12" +description = "Read and write TIFF files" +optional = false +python-versions = ">=3.9" +files = [ + {file = "tifffile-2024.2.12-py3-none-any.whl", hash = "sha256:870998f82fbc94ff7c3528884c1b0ae54863504ff51dbebea431ac3fa8fb7c21"}, + {file = "tifffile-2024.2.12.tar.gz", hash = "sha256:4920a3ec8e8e003e673d3c6531863c99eedd570d1b8b7e141c072ed78ff8030d"}, +] + +[package.dependencies] +numpy = "*" + +[package.extras] +all = ["defusedxml", "fsspec", "imagecodecs (>=2023.8.12)", "lxml", "matplotlib", "zarr"] + [[package]] name = "traitlets" version = "5.14.1" @@ -2960,4 +3192,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12,<4.0" -content-hash = "da4186b09a30db81b5db132409918f3fcd05ea94503d091c9b75bddae6ab3200" +content-hash = "e604d54041e9606cf4c4dd3c4c81717e1f1cec21506503e7946c8df671c96c90" diff --git a/pyproject.toml b/pyproject.toml index d2cca9a..6c2d684 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,8 @@ sdssdb = { git = "https://github.com/sdss/sdssdb.git", branch = "albireox/too_ta pyarrow = "^15.0.0" click-option-group = "^0.5.6" astropy-healpix = "^1.0.2" -astropy = "^6.0.1" +astropy = "^5.1" +sdss-coordio = "^1.10.0" [tool.poetry.group.dev.dependencies] ipython = ">=8.21.0" From 4f91c67e5afeab497d47f75f817a96fb335cf50c Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 12:35:46 -0500 Subject: [PATCH 09/16] add can_offset to the datamodel --- README.md | 69 ++++++++++++++++++++++---------------------- src/too/datamodel.py | 2 ++ 2 files changed, 37 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 19de3de..6bb4216 100644 --- a/README.md +++ b/README.md @@ -25,40 +25,41 @@ This package deals with all the aspects of loading and processing targets of opp Target of opportunity files must be CSV or [Parquet](https://parquet.apache.org) files with a table/dataframe that conforms to the following structure: -| Column | Type | Description | -|---------------------|---------|----------------------------------------------------------------------------------------------------------| -| too_id | int64 | Unique identifier for the ToO target. [required] | -| fiber_type | string | Type of fiber to be used to observe the target. [required. | -| catalogid | int64 | catalogid for this target. | -| sdss_id | int64 | sdss_id for this target. | -| gaia_dr3_source_id | int64 | Unique identifier of the target in the Gaia DR3 catalog (`source_id` column). | -| twomass_pts_key | int32 | Unique identifier of the target in the 2MASS catalog (`pts_key` column). | -| sky_brightness_mode | string | The sky brightness mode. Either `bright` or `dark`. | -| ra | float64 | The Right Ascension of the target in ICRS coordinates as decimal degrees. [required] | -| dec | float64 | The declination of the target in ICRS coordinates as decimal degrees. [required] | -| pmra | float32 | The proper motion in RA in mas/yr as a true angle (the cos(dec) factor must have been applied). | -| pmdec | float32 | The proper motion in Dec in mas/yr as a true angle. | -| epoch | float32 | The epoch of the ra/dec coordinates. Required but only relevant if pmra/pmdec are defined. | -| parallax | float32 | The parallax in arcsec. | -| lambda_eff | float32 | The effective wavelength to calculate the atmospheric refraction correction for the target. | -| u_mag | float32 | Sloan u' magnitude of the target. | -| g_mag | float32 | Sloan g' magnitude of the target. | -| r_mag | float32 | Sloan r' magnitude of the target. | -| i_mag | float32 | Sloan i' magnitude of the target. | -| z_mag | float32 | Sloan z' magnitude of the target. | -| optical_prov | string | Source of the optical magnitudes. | -| gaia_bp_mag | float32 | | -| gaia_rp_mag | float32 | | -| gaia_g_mag | float32 | Gaia G magnitude of the target. | -| h_mag | float32 | H-band magnitude of the target. | -| delta_ra | float32 | Fixed RA offset as a true angle, in arcsec. | -| delta_dec | float32 | Fixed Dec offset, in arcsec. | -| inertial | boolean | `true` if not offset correction should be applied based on target magnitude. `false` otherwise. | -| n_exposures | int16 | The minimum number of exposures required for the ToO to be complete and not assigned anymore. [required] | -| priority | int16 | | -| active | boolean | `true` if the target is active and should be assigned to configurations if possible. [required] | -| expiration_date | int32 | MJD at which the target should automatically be consider inactive. If empty, the target never expires. | -| observed | boolean | `true` if the target has been fully observed and should not be assigned again. [required] | +| Column | Type | Description | +|---------------------|---------|----------------------------------------------------------------------------------------------------------------------| +| too_id | int64 | Unique identifier for the ToO target. [required] | +| fiber_type | string | Type of fiber to be used to observe the target. [required. | +| catalogid | int64 | catalogid for this target. | +| sdss_id | int64 | sdss_id for this target. | +| gaia_dr3_source_id | int64 | Unique identifier of the target in the Gaia DR3 catalog (`source_id` column). | +| twomass_pts_key | int32 | Unique identifier of the target in the 2MASS catalog (`pts_key` column). | +| sky_brightness_mode | string | The sky brightness mode. Either `bright` or `dark`. | +| ra | float64 | The Right Ascension of the target in ICRS coordinates as decimal degrees. [required] | +| dec | float64 | The declination of the target in ICRS coordinates as decimal degrees. [required] | +| pmra | float32 | The proper motion in RA in mas/yr as a true angle (the cos(dec) factor must have been applied). | +| pmdec | float32 | The proper motion in Dec in mas/yr as a true angle. | +| epoch | float32 | The epoch of the ra/dec coordinates. Required but only relevant if pmra/pmdec are defined. | +| parallax | float32 | The parallax in arcsec. | +| lambda_eff | float32 | The effective wavelength to calculate the atmospheric refraction correction for the target. | +| u_mag | float32 | Sloan u' magnitude of the target. | +| g_mag | float32 | Sloan g' magnitude of the target. | +| r_mag | float32 | Sloan r' magnitude of the target. | +| i_mag | float32 | Sloan i' magnitude of the target. | +| z_mag | float32 | Sloan z' magnitude of the target. | +| optical_prov | string | Source of the optical magnitudes. | +| gaia_bp_mag | float32 | | +| gaia_rp_mag | float32 | | +| gaia_g_mag | float32 | Gaia G magnitude of the target. | +| h_mag | float32 | H-band magnitude of the target. | +| delta_ra | float32 | Fixed RA offset as a true angle, in arcsec. | +| delta_dec | float32 | Fixed Dec offset, in arcsec. | +| can_offset | boolean | `true` if the ToO is allowed to be offset. Offseting will only occur if target violates magnitude limits. [required] | +| inertial | boolean | `true` if not offset correction should be applied based on target magnitude. `false` otherwise. | +| n_exposures | int16 | The minimum number of exposures required for the ToO to be complete and not assigned anymore. [required] | +| priority | int16 | | +| active | boolean | `true` if the target is active and should be assigned to configurations if possible. [required] | +| expiration_date | int32 | MJD at which the target should automatically be consider inactive. If empty, the target never expires. | +| observed | boolean | `true` if the target has been fully observed and should not be assigned again. [required] At least one magnitude is required. If one of the Sloan magnitude is provided, *all* the ugriz values must be provided. A sample, valid ToO file can be found [here](docs/sample.csv). diff --git a/src/too/datamodel.py b/src/too/datamodel.py index 342b3f3..b767d13 100644 --- a/src/too/datamodel.py +++ b/src/too/datamodel.py @@ -48,6 +48,7 @@ "h_mag": polars.Float32, "delta_ra": polars.Float32, "delta_dec": polars.Float32, + "can_offset": polars.Boolean, "inertial": polars.Boolean, "n_exposures": polars.Int16, "priority": polars.Int16, @@ -107,6 +108,7 @@ "h_mag": "H-band magnitude of the target.", "delta_ra": "Fixed RA offset as a true angle, in arcsec.", "delta_dec": "Fixed Dec offset, in arcsec.", + "can_offset": "`true` if the ToO is allowed to be offset. Offseting will only occur if target violates magnitude limits. [required]", "inertial": "`true` if not offset correction should be applied based on target magnitude. `false` otherwise.", "n_exposures": "The minimum number of exposures required for the ToO to be complete and not assigned anymore. [required]", "active": "`true` if the target is active and should be assigned to configurations if possible. [required]", From b5de250430cc7bddbb2a654ed71f67ece41b4abe Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 12:39:54 -0500 Subject: [PATCH 10/16] add can_offset to sample --- docs/sample.csv | 2002 +++++++++++++++++++++++------------------------ 1 file changed, 1001 insertions(+), 1001 deletions(-) diff --git a/docs/sample.csv b/docs/sample.csv index d203afa..9ec8129 100644 --- a/docs/sample.csv +++ b/docs/sample.csv @@ -1,1001 +1,1001 @@ -too_id,fiber_type,catalogid,sdss_id,gaia_dr3_source_id,twomass_pts_key,sky_brightness_mode,ra,dec,pmra,pmdec,epoch,parallax,lambda_eff,u_mag,g_mag,r_mag,i_mag,z_mag,optical_prov,gaia_bp_mag,gaia_rp_mag,gaia_g_mag,h_mag,delta_ra,delta_dec,inertial,n_exposures,priority,active,expiration_date,observed -1,APOGEE,,,,,,322.0416986442334,23.24975582251605,,,,,,15.585603,15.585603,15.585603,15.585603,15.585603,,,,,,,,,3,5,true,,false -2,APOGEE,,,,,,23.68915557861328,63.30213928222656,-1.633114,-0.17489335,,0.36345074,,,,,,,,,,14.495427,,,,,3,5,true,,false -3,BOSS,,,,,,317.1805114746094,55.043983459472656,,,,,,24.184845,24.713322,21.989498,21.051416,20.573246,,,,,,,,,3,5,true,,false -4,APOGEE,,,,,,132.27410888671875,-9.865385055541992,-4.23959,1.3068857,,0.67415804,,,,,,,,,,15.891865,,,,,3,5,true,,false -5,APOGEE,63050395915414228,,5365231850064328448,,,155.5760498046875,-48.36075210571289,-2.0050094,-0.13202874,,0.08750413,,,,,,,,16.506353,15.171548,15.910943,,,,,3,5,true,,false -6,BOSS,,,,,,169.05540466308594,-52.835662841796875,-5.52803,3.9846888,,0.1719657,,,,,,,,,,15.479938,,,,,3,5,true,,false -7,BOSS,,,5965311383454731648,,,256.6919250488281,-43.815711975097656,-0.5424047,-8.906387,,0.2787155,,,,,,,,14.780168,11.542485,12.839776,,,,,3,5,true,,false -8,BOSS,,,,,,196.95848904939584,32.6941987312925,,,,,,,,,,,,,,19.130697,,,,,3,5,true,,false -9,APOGEE,,,,,,277.48980712890625,-27.69761848449707,-3.9706147,-4.874005,,0.29140338,,,,,,,,,,13.293058,,,,,3,5,true,,false -10,BOSS,,,,,,299.55755615234375,37.57545852661133,-3.8028247,-4.152495,,0.3261723,,,,,,,,,,15.098599,,,,,3,5,true,,false -11,BOSS,,,,,,93.15349578857422,-19.25577163696289,36.599873,-16.589447,,4.3919764,,,,,,,,,,10.35252,,,,,3,5,true,,false -12,APOGEE,,,,,,310.54254150390625,25.387367248535156,-0.3989932,-6.631391,,0.730015,,,,,,,,,,14.994102,,,,,3,5,true,,false -13,BOSS,,,,,,159.85731506347656,49.125877380371094,,,,,,22.56774,22.654528,22.303133,21.762018,22.578901,,,,,,,,,3,5,true,,false -14,BOSS,,,,,,153.8815460205078,-50.73725509643555,-4.761471,-1.8694482,,0.22456343,,,,,,,,,,10.851905,,,,,3,5,true,,false -15,BOSS,,,,,,256.1876220703125,-24.694541931152344,-3.4426248,-5.791844,,0.14846663,,,,,,,,,,15.639607,,,,,3,5,true,,false -16,APOGEE,,,,,,215.0206298828125,-76.02481842041016,-3.730372,0.39429158,,0.6409972,,,,,,,,,,15.404773,,,,,3,5,true,,false -17,APOGEE,,,5307277622951462016,,,142.23260498046875,-55.666786193847656,-6.8612022,4.6453967,,0.32230595,,,,,,,,15.309744,13.527912,14.52157,,,,,3,5,true,,false -18,BOSS,,,,,,308.67156982421875,15.523393630981445,,,,,,24.58621,22.972805,22.191853,21.758198,21.754278,,,,,,,,,3,5,true,,false -19,APOGEE,63050394989164473,66549526,2045042974273831296,,,291.6852111816406,31.77603530883789,0.904789,-2.865594,,0.52112687,,,,,,,,12.537917,11.1104555,11.885861,,,,,3,5,true,,false -20,APOGEE,,,,,,170.94858663689251,-34.57345706803891,,,,,,11.915108,11.915108,11.915108,11.915108,11.915108,,,,,,,,,3,5,true,,false -21,APOGEE,,,,,,78.14626757697934,-2.682986850917729,,,,,,16.554398,16.554398,16.554398,16.554398,16.554398,,,,,,,,,3,5,true,,false -22,BOSS,,,2001035197482775808,,,333.2771911621094,51.086021423339844,-2.0965788,-3.6020296,,0.35497344,,,,,,,,15.874175,15.128165,15.581831,,,,,3,5,true,,false -23,APOGEE,,,,,,56.588253021240234,38.966312408447266,,,,,,25.08159,24.84667,23.36787,21.744411,21.132257,,,,,,,,,3,5,true,,false -24,BOSS,,,1742053235068416768,,,321.2508544921875,9.103323936462402,-3.0529616,0.23803899,,0.7733791,,,,,,,,10.806388,9.53475,10.244381,,,,,3,5,true,,false -25,APOGEE,,,,,,69.86883583429254,20.846097305005415,,,,,,,,,,,,,,18.151804,,,,,3,5,true,,false -26,APOGEE,,,6716603796046091776,,,284.6644592285156,-40.994503021240234,-1.0301181,-2.8249109,,0.7815646,,,,,,,,15.663781,14.705363,15.268626,,,,,3,5,true,,false -27,APOGEE,,,,,,218.5586539257018,-61.00860413556453,,,,,,,,,,,,,,14.880216,,,,,3,5,true,,false -28,APOGEE,,,,,,276.3083570237236,38.030768178594315,,,,,,13.817177,13.817177,13.817177,13.817177,13.817177,,,,,,,,,3,5,true,,false -29,BOSS,,,,,,268.5023193359375,-46.51083755493164,-1.439177,-0.6827121,,0.808074,,,,,,,,,,14.737913,,,,,3,5,true,,false -30,APOGEE,,,,,,79.98721313476562,48.676029205322266,0.24466822,-0.33668113,,0.046332162,,,,,,,,,,15.952167,,,,,3,5,true,,false -31,APOGEE,,,3127786504271326976,,,104.34357452392578,2.7544913291931152,-5.8881636,-5.562531,,0.8718962,,,,,,,,14.502094,13.579643,14.128604,,,,,3,5,true,,false -32,BOSS,,,,,,238.6450229418189,50.81510726772382,,,,,,18.554823,18.554823,18.554823,18.554823,18.554823,,,,,,,,,3,5,true,,false -33,BOSS,,,,,,269.59552001953125,-38.65961456298828,0.2304149,-7.2610464,,0.068813905,,,,,,,,,,15.080259,,,,,3,5,true,,false -34,BOSS,,,,,,155.76306136118933,-8.817286691647809,,,,,,,,,,,,,,18.169863,,,,,3,5,true,,false -35,APOGEE,,,,,,41.74240226441114,-42.19454252047211,,,,,,14.061309,14.061309,14.061309,14.061309,14.061309,,,,,,,,,3,5,true,,false -36,APOGEE,,,4037234593687633152,,,269.6929626464844,-37.31075668334961,0.70930505,-5.7936177,,0.11424016,,,,,,,,15.717317,14.081268,14.95381,,,,,3,5,true,,false -37,APOGEE,,,5299473014559365888,,,141.96112060546875,-60.26277542114258,1.2105885,1.8648937,,0.6556,,,,,,,,16.275719,15.278423,15.861832,,,,,3,5,true,,false -38,BOSS,,,,,,105.81937408447266,-62.646419525146484,-3.6946084,11.30163,,0.5535068,,,,,,,,,,15.339528,,,,,3,5,true,,false -39,BOSS,,,5986876723494963456,,,233.5907440185547,-47.452857971191406,-1.7784321,-2.8776402,,0.9295717,,,,,,,,15.873177,14.653904,15.344839,,,,,3,5,true,,false -40,BOSS,,,,,,236.2151641845703,-20.069137573242188,-5.8280187,0.5509816,,1.7827637,,,,,,,,,,13.432687,,,,,3,5,true,,false -41,BOSS,,,,,,308.5747734159112,77.10158798805043,,,,,,,,,,,,,,18.773153,,,,,3,5,true,,false -42,BOSS,,,,,,302.7796630859375,9.683060646057129,,,,,,22.639591,20.251524,19.327724,18.93538,18.822897,,,,,,,,,3,5,true,,false -43,BOSS,,,,,,262.0460510253906,-31.909467697143555,-0.70829743,2.5190108,,0.56842405,,,,,,,,,,14.435419,,,,,3,5,true,,false -44,BOSS,,,,,,169.67616271972656,-10.868315696716309,,,,,,23.757376,23.018812,22.498236,22.013803,21.787107,,,,,,,,,3,5,true,,false -45,BOSS,,,,,,18.08656883239746,27.824718475341797,,,,,,23.850815,23.642157,22.641645,22.254175,21.973812,,,,,,,,,3,5,true,,false -46,BOSS,,,,,,189.599852605764,-51.12843654102542,,,,,,18.021381,18.021381,18.021381,18.021381,18.021381,,,,,,,,,3,5,true,,false -47,APOGEE,,,,,,291.181396484375,25.4865779876709,-2.1368947,-9.121573,,0.9166721,,,,,,,,,,13.975713,,,,,3,5,true,,false -48,APOGEE,,,,,,253.43643188476562,-34.824283599853516,-6.0795503,-6.874174,,0.12813249,,,,,,,,,,15.535668,,,,,3,5,true,,false -49,APOGEE,,,5404423804617714176,,,149.12953186035156,-53.28446578979492,-7.2144337,0.5768588,,0.85302585,,,,,,,,16.480652,15.13847,15.8875885,,,,,3,5,true,,false -50,BOSS,,,,1235344402,,283.71380615234375,12.371167182922363,,,,,,,,,,,,,,,14.457,,,,3,5,true,,false -51,APOGEE,,,6240994682646514816,,,234.66082763671875,-22.239194869995117,8.803073,-8.529166,,1.8465331,,,,,,,,15.579301,14.333661,15.03334,,,,,3,5,true,,false -52,APOGEE,,,5799990498730796288,,,222.24554443359375,-68.6947021484375,-9.333442,0.32404658,,0.9524031,,,,,,,,15.666204,14.528124,15.178019,,,,,3,5,true,,false -53,BOSS,,,,,,70.93364822766145,-15.686393738220247,,,,,,,,,,,,,,14.216855,,,,,3,5,true,,false -54,BOSS,,,,,,313.3588605988401,-64.90821688227864,,,,,,,,,,,,,,13.435437,,,,,3,5,true,,false -55,BOSS,,,,,,326.9616173610489,79.09138071896493,,,,,,14.31843,14.31843,14.31843,14.31843,14.31843,,,,,,,,,3,5,true,,false -56,APOGEE,,,,,,205.42795397141813,-39.490904126641965,,,,,,,,,,,,,,13.221332,,,,,3,5,true,,false -57,BOSS,,,1826398116403682688,,,299.416748046875,20.76044273376465,-1.5154749,-7.1681933,,1.4013343,,,,,,,,16.049578,14.941574,15.806762,,,,,3,5,true,,false -58,APOGEE,,,,,,266.9850158691406,-59.67505645751953,2.8675766,-10.243619,,0.78981423,,,,,,,,,,13.856769,,,,,3,5,true,,false -59,APOGEE,,,,,,342.15690257905,-1.970879794330898,,,,,,,,,,,,,,18.382395,,,,,3,5,true,,false -60,APOGEE,,,,,,84.32974155834334,-71.86153762607027,,,,,,,,,,,,,,15.590839,,,,,3,5,true,,false -61,BOSS,,,,,,190.79627990722656,64.75472259521484,,,,,,25.67888,24.772968,24.392704,23.133852,20.292099,,,,,,,,,3,5,true,,false -62,BOSS,,,,,,173.6854070297808,2.271468995779159,,,,,,15.273549,15.273549,15.273549,15.273549,15.273549,,,,,,,,,3,5,true,,false -63,BOSS,,,,,,52.46262741088867,40.507850646972656,,,,,,24.448252,24.801268,24.68017,24.578358,21.238506,,,,,,,,,3,5,true,,false -64,APOGEE,,,6803637082046987264,,,318.16033935546875,-24.320697784423828,-0.47882384,-4.6342425,,0.6224656,,,,,,,,16.321484,15.414918,15.947643,,,,,3,5,true,,false -65,BOSS,,,,,,238.2233428955078,42.6135139465332,,,,,,21.691912,21.406952,20.851591,20.511356,20.34639,,,,,,,,,3,5,true,,false -66,BOSS,,,,,,214.76776123046875,-20.05138397216797,,,,,,17.87514,16.314484,15.600426,15.377921,15.27553,,,,,,,,,3,5,true,,false -67,BOSS,,,4082759803798636416,,,290.40240478515625,-20.68270492553711,-7.3011193,-8.890116,,0.5668037,,,,,,,,16.179142,15.32184,15.846203,,,,,3,5,true,,false -68,APOGEE,,,,,,304.1143798828125,8.554203033447266,,,,,,20.532293,18.858007,18.105993,17.792877,17.604002,,,,,,,,,3,5,true,,false -69,APOGEE,63050396573102637,,,881141965,,60.59712600708008,47.69127655029297,,,,,,,,,,,,,,,15.367,,,,3,5,true,,false -70,APOGEE,,,,,,276.6059265136719,-13.9215669631958,-0.87135726,-4.060744,,0.3275647,,,,,,,,,,15.232843,,,,,3,5,true,,false -71,BOSS,,,1829969948631172992,,,301.3713073730469,22.256240844726562,-5.1121564,-4.497712,,0.7647907,,,,,,,,15.696336,14.445488,15.17279,,,,,3,5,true,,false -72,BOSS,,,2131947449919047424,,,285.9072265625,48.94021987915039,-0.025091171,0.53291553,,0.60776937,,,,,,,,15.642535,14.802854,15.306992,,,,,3,5,true,,false -73,APOGEE,,,,,,90.8867197383469,-27.277980890769726,,,,,,19.80138,19.80138,19.80138,19.80138,19.80138,,,,,,,,,3,5,true,,false -74,BOSS,,,,,,27.5931396484375,28.288711547851562,,,,,,24.926758,22.816109,22.242037,21.833595,21.430048,,,,,,,,,3,5,true,,false -75,APOGEE,,,,,,61.32428841847853,-51.61235829347126,,,,,,16.965103,16.965103,16.965103,16.965103,16.965103,,,,,,,,,3,5,true,,false -76,BOSS,,,,,,225.9148406982422,42.65070343017578,,,,,,23.71794,23.345898,22.717432,22.086817,22.033043,,,,,,,,,3,5,true,,false -77,APOGEE,,,6084172438692073856,,,202.0572967529297,-46.59177780151367,-0.43000337,-0.99476254,,0.8928374,,,,,,,,14.703981,13.881974,14.377015,,,,,3,5,true,,false -78,BOSS,,,,,,109.59927368164062,30.334585189819336,,,,,,23.39626,22.28673,21.509962,21.359001,20.277046,,,,,,,,,3,5,true,,false -79,BOSS,,,,1247237537,,183.05258178710938,-61.80580520629883,,,,,,,,,,,,,,,13.899,,,,3,5,true,,false -80,APOGEE,,,,,,332.8862052416298,-70.25785711710878,,,,,,,,,,,,,,18.625954,,,,,3,5,true,,false -81,APOGEE,,,,,,157.18920917502177,-81.68580768910428,,,,,,17.136791,17.136791,17.136791,17.136791,17.136791,,,,,,,,,3,5,true,,false -82,APOGEE,,,,,,324.36694662030385,18.853847795638956,,,,,,15.8132105,15.8132105,15.8132105,15.8132105,15.8132105,,,,,,,,,3,5,true,,false -83,APOGEE,,,,,,186.9317775249239,19.63538977732341,,,,,,,,,,,,,,18.928991,,,,,3,5,true,,false -84,BOSS,,,,,,121.06922149658203,23.145545959472656,,,,,,23.575663,22.807844,21.505783,21.21398,20.455107,,,,,,,,,3,5,true,,false -85,BOSS,,,,,,101.22248077392578,10.302441596984863,,,,,,17.084484,14.776092,14.332685,13.131848,12.773293,,,,,,,,,3,5,true,,false -86,APOGEE,,,,,,4.14513527157208,7.289044771729607,,,,,,,,,,,,,,10.2851715,,,,,3,5,true,,false -87,BOSS,,,4511268690924589184,,,282.35205078125,17.221071243286133,0.037170157,-2.4240265,,0.45267987,,,,,,,,13.277962,11.734461,12.553878,,,,,3,5,true,,false -88,APOGEE,,,,,,257.7920573015427,-13.660468567616547,,,,,,,,,,,,,,17.302023,,,,,3,5,true,,false -89,BOSS,,,,,,182.99066162109375,7.276773452758789,,,,,,25.286516,24.02073,22.77824,22.970306,22.66189,,,,,,,,,3,5,true,,false -90,APOGEE,,,,,,241.20236144839555,-73.64303169160968,,,,,,,,,,,,,,11.724846,,,,,3,5,true,,false -91,APOGEE,,,4067114268822744448,,,266.43731689453125,-25.929996490478516,-2.0346615,-6.8709016,,0.15432438,,,,,,,,20.052053,13.817839,15.52432,,,,,3,5,true,,false -92,BOSS,,,,,,36.787410736083984,-3.406038522720337,3.2144544,-16.144226,,0.13972853,,,,,,,,,,15.57395,,,,,3,5,true,,false -93,BOSS,,,,,,110.14348525798255,83.70086402803094,,,,,,16.740643,16.740643,16.740643,16.740643,16.740643,,,,,,,,,3,5,true,,false -94,APOGEE,,,,,,222.04954121471215,-82.64486523394436,,,,,,12.802641,12.802641,12.802641,12.802641,12.802641,,,,,,,,,3,5,true,,false -95,BOSS,,,,,,150.28236029286992,12.780074710132851,,,,,,,,,,,,,,11.058099,,,,,3,5,true,,false -96,APOGEE,,,,,,198.92550659179688,-7.818289279937744,-25.817423,-6.0447335,,2.0468123,,,,,,,,,,14.932469,,,,,3,5,true,,false -97,BOSS,,,3058004280829321216,,,109.91910552978516,-6.497790336608887,-0.77837294,-1.0646995,,0.47408396,,,,,,,,15.773341,14.885421,15.413329,,,,,3,5,true,,false -98,APOGEE,,,4124058250874645120,,,265.7625427246094,-16.574024200439453,-3.9413574,-9.323677,,0.36199063,,,,,,,,16.435127,14.9882965,15.787186,,,,,3,5,true,,false -99,APOGEE,,,5306000230983976064,,,146.57969665527344,-57.40896987915039,-4.738899,4.427131,,0.2660805,,,,,,,,15.356114,13.549028,14.477364,,,,,3,5,true,,false -100,BOSS,,,,,,30.66155433654785,-51.75399398803711,12.393519,9.495563,,1.5087881,,,,,,,,,,15.459929,,,,,3,5,true,,false -101,BOSS,,,,,,84.1273193359375,-33.31795883178711,-2.465497,9.190811,,1.2413044,,,,,,,,,,14.503324,,,,,3,5,true,,false -102,BOSS,,,,,,199.9457302488781,-23.11921598207138,,,,,,,,,,,,,,10.615183,,,,,3,5,true,,false -103,BOSS,,,,,,16.03748893737793,25.417741775512695,-4.400728,-1.5684812,,0.38166034,,,,,,,,,,15.913676,,,,,3,5,true,,false -104,BOSS,,,5589823077311081600,,,110.65379333496094,-36.065879821777344,-0.6404882,-9.988043,,1.0768558,,,,,,,,14.299001,13.129776,13.792185,,,,,3,5,true,,false -105,APOGEE,,,,,,310.1600341796875,38.229766845703125,,,,,,23.78788,23.197731,20.0639,18.372051,17.09461,,,,,,,,,3,5,true,,false -106,BOSS,,,,,,343.5453796386719,-19.09307098388672,,,,,,25.092176,23.355574,22.229536,20.977276,20.669867,,,,,,,,,3,5,true,,false -107,APOGEE,,,,,,113.55461883544922,41.74734115600586,,,,,,24.048195,22.009817,20.620548,18.931036,18.067003,,,,,,,,,3,5,true,,false -108,BOSS,,,,,,350.910641017735,-67.78304815592813,,,,,,17.513182,17.513182,17.513182,17.513182,17.513182,,,,,,,,,3,5,true,,false -109,BOSS,,,,,,206.13137577554156,28.26903834775473,,,,,,,,,,,,,,19.590464,,,,,3,5,true,,false -110,APOGEE,,,,,,19.159570091527762,40.29415799238788,,,,,,,,,,,,,,18.978848,,,,,3,5,true,,false -111,APOGEE,,,,,,5.744895756426773,84.49992168645656,,,,,,18.6805,18.6805,18.6805,18.6805,18.6805,,,,,,,,,3,5,true,,false -112,APOGEE,,,,,,324.01678466796875,48.811710357666016,,,,,,20.615799,18.285866,17.031355,16.33577,15.871981,,,,,,,,,3,5,true,,false -113,APOGEE,,,,,,348.05376435669257,52.62786375027122,,,,,,14.371797,14.371797,14.371797,14.371797,14.371797,,,,,,,,,3,5,true,,false -114,BOSS,,,,,,16.220903503109234,-74.46982285499953,,,,,,11.547842,11.547842,11.547842,11.547842,11.547842,,,,,,,,,3,5,true,,false -115,APOGEE,,,,,,25.63627815246582,-62.46719741821289,-4.2084947,-18.993227,,4.611167,,,,,,,,,,15.476997,,,,,3,5,true,,false -116,APOGEE,,,4052460905533561600,,,273.9763488769531,-27.05521583557129,0.2506152,-4.562319,,0.160919,,,,,,,,16.54537,14.640886,15.637927,,,,,3,5,true,,false -117,BOSS,,,,,,36.82796455854301,57.176237581995395,,,,,,11.174744,11.174744,11.174744,11.174744,11.174744,,,,,,,,,3,5,true,,false -118,APOGEE,,,5813619151497618944,,,263.2093505859375,-65.74384307861328,-0.71132976,-6.4848313,,0.52739924,,,,,,,,15.737965,14.6950245,15.295575,,,,,3,5,true,,false -119,APOGEE,,,1973288609228670848,,,329.1262512207031,44.53296661376953,-3.7957919,-3.6099284,,0.4904507,,,,,,,,13.195243,12.772501,13.036578,,,,,3,5,true,,false -120,APOGEE,,,5982926831058168448,,,238.59561157226562,-49.2790412902832,-4.0846753,-4.439897,,0.21793684,,,,,,,,16.915165,14.474542,15.59257,,,,,3,5,true,,false -121,BOSS,,,,,,73.240234375,0.20651757717132568,,,,,,25.413734,23.980934,22.300028,21.551477,20.887323,,,,,,,,,3,5,true,,false -122,BOSS,,,,,,150.27741102986474,77.20090774910165,,,,,,,,,,,,,,10.926746,,,,,3,5,true,,false -123,APOGEE,,,5799842270816092416,,,221.13246154785156,-69.37440490722656,-6.91154,-2.3268716,,0.29730365,,,,,,,,13.572745,11.61305,12.588465,,,,,3,5,true,,false -124,APOGEE,63050395704679924,,4351740892436039040,,,245.94744873046875,-7.326101779937744,-24.125172,-3.0970094,,2.0733871,,,,,,,,14.6790085,13.45233,14.144058,,,,,3,5,true,,false -125,BOSS,,,5777226897163399680,,,253.24673461914062,-78.29135131835938,4.278907,-12.102017,,0.9074496,,,,,,,,15.771187,14.797088,15.372929,,,,,3,5,true,,false -126,BOSS,,,,,,272.7005310058594,12.850948333740234,,,,,,21.956583,20.017773,19.116306,18.790098,18.518244,,,,,,,,,3,5,true,,false -127,APOGEE,,,,,,289.99920654296875,-52.46260070800781,-1.1395025,-6.6806574,,0.7417156,,,,,,,,,,15.423563,,,,,3,5,true,,false -128,BOSS,,,6736209870774856704,,,282.19036865234375,-32.093814849853516,-3.7470338,-4.7137465,,0.35697088,,,,,,,,16.08381,15.097567,15.680136,,,,,3,5,true,,false -129,BOSS,,,4044552496355608448,,,275.303955078125,-34.433719635009766,-2.9231193,-2.6897638,,0.059155453,,,,,,,,15.540074,13.938427,14.788319,,,,,3,5,true,,false -130,APOGEE,,,,,,337.88470458984375,-9.277961730957031,-10.20745,-8.581147,,1.3340018,,,,,,,,,,10.129284,,,,,3,5,true,,false -131,APOGEE,,,5846501146255352320,,,216.63258361816406,-69.09770202636719,-10.951105,-3.9519327,,0.291844,,,,,,,,14.559252,12.711482,13.651046,,,,,3,5,true,,false -132,BOSS,,,5829395665912461312,,,245.22824096679688,-62.70051956176758,0.079439804,-2.5510042,,0.8528777,,,,,,,,15.964369,14.974426,15.553575,,,,,3,5,true,,false -133,BOSS,,,4091674987752833536,,,279.2886962890625,-21.056564331054688,-5.0606675,-5.1329045,,0.12929237,,,,,,,,16.898922,14.99348,15.961774,,,,,3,5,true,,false -134,APOGEE,,,4208289775029901440,,,292.77899169921875,-5.9141340255737305,-3.5030572,-5.3154726,,0.13414995,,,,,,,,16.281534,14.531883,15.455056,,,,,3,5,true,,false -135,BOSS,,,,,,321.33233642578125,6.116003036499023,,,,,,25.340967,23.437473,21.727844,21.220165,20.50712,,,,,,,,,3,5,true,,false -136,APOGEE,,,4093920186116342016,,,273.5802917480469,-21.13858413696289,0.17464553,-2.4827335,,0.38706926,,,,,,,,15.126768,13.210412,14.183643,,,,,3,5,true,,false -137,APOGEE,,,3803202650234276864,,,163.36988830566406,-0.6739730834960938,-22.243174,-1.1306834,,0.7834535,,,,,,,,15.132674,14.330049,14.81713,,,,,3,5,true,,false -138,APOGEE,,,,,,329.3421325683594,9.689582824707031,,,,,,26.28364,24.478987,25.07241,23.684786,23.036987,,,,,,,,,3,5,true,,false -139,BOSS,,,,,,76.61762618185622,38.05534123623943,,,,,,,,,,,,,,13.107362,,,,,3,5,true,,false -140,BOSS,,,,,,117.11239247983283,-81.61079918761881,,,,,,,,,,,,,,17.614613,,,,,3,5,true,,false -141,APOGEE,,,,,,304.31831036085003,-21.93536919191851,,,,,,,,,,,,,,15.602236,,,,,3,5,true,,false -142,BOSS,,,,,,232.6004638671875,-48.3448600769043,-0.37001857,-4.192707,,0.48872235,,,,,,,,,,14.275659,,,,,3,5,true,,false -143,APOGEE,,,,,,352.7692882193108,54.63055845376087,,,,,,,,,,,,,,12.165727,,,,,3,5,true,,false -144,BOSS,,,,,,330.56168144756754,33.227117872909545,,,,,,,,,,,,,,11.4708605,,,,,3,5,true,,false -145,BOSS,,,,518786054,,273.4162902832031,-39.37337112426758,,,,,,,,,,,,,,,15.308,,,,3,5,true,,false -146,APOGEE,,,,,,244.77034105626115,-62.00604905732744,,,,,,15.824518,15.824518,15.824518,15.824518,15.824518,,,,,,,,,3,5,true,,false -147,APOGEE,,,,,,119.1860580444336,7.504703044891357,,,,,,22.174936,21.152554,20.427776,20.135475,19.98465,,,,,,,,,3,5,true,,false -148,BOSS,,,,,,241.91470336914062,3.4725563526153564,-0.9759687,-0.2543052,,0.4012155,,,,,,,,,,12.836271,,,,,3,5,true,,false -149,BOSS,,,,,,259.3881726936776,20.330626549793024,,,,,,18.320234,18.320234,18.320234,18.320234,18.320234,,,,,,,,,3,5,true,,false -150,APOGEE,,,,,,252.63873354145738,-63.907491673318205,,,,,,,,,,,,,,15.032701,,,,,3,5,true,,false -151,APOGEE,,,,,,251.79672241210938,-34.487831115722656,-1.1890903,-4.456173,,0.13108417,,,,,,,,,,15.533691,,,,,3,5,true,,false -152,APOGEE,,,5574429536560352128,,,93.9720687866211,-39.32368469238281,-3.2150314,7.0135956,,1.1870171,,,,,,,,13.803843,13.041596,13.501831,,,,,3,5,true,,false -153,BOSS,,,345932029120490880,,,29.950702667236328,42.5236930847168,-0.18458901,-1.2360835,,0.3114197,,,,,,,,16.490679,15.304227,15.97084,,,,,3,5,true,,false -154,APOGEE,,,,,,145.91067504882812,-58.43167495727539,-8.396666,5.791583,,0.3190049,,,,,,,,,,15.541846,,,,,3,5,true,,false -155,APOGEE,,,6018566018671555584,,,247.77407836914062,-37.66640853881836,-4.105602,-2.7435436,,0.16217516,,,,,,,,14.716791,11.829579,13.055666,,,,,3,5,true,,false -156,APOGEE,,,,,,214.8201141357422,33.11469650268555,-8.600596,-3.814931,,0.6835482,,,,,,,,,,15.426093,,,,,3,5,true,,false -157,APOGEE,63050396027204925,,5822881300039026304,,,239.84234619140625,-65.36935424804688,-4.051063,-3.715188,,0.08855469,,,,,,,,16.171309,14.861448,15.589646,,,,,3,5,true,,false -158,APOGEE,,,,,,187.54679114944915,-70.00783909708312,,,,,,,,,,,,,,14.369969,,,,,3,5,true,,false -159,APOGEE,,,,,,241.82476806640625,-25.309345245361328,-6.559978,1.9578153,,0.8349027,,,,,,,,,,14.403549,,,,,3,5,true,,false -160,APOGEE,,,,,,59.60449981689453,21.155357360839844,41.740623,-31.136133,,3.9915352,,,,,,,,,,13.705391,,,,,3,5,true,,false -161,APOGEE,63050395576809794,,4203563691802320640,,,284.2885437011719,-9.196439743041992,-1.7588122,-5.255824,,0.15524632,,,,,,,,16.20432,14.46274,15.405895,,,,,3,5,true,,false -162,BOSS,,,,,,12.843499183654785,61.68128967285156,-2.8507812,-0.8932814,,0.24784175,,,,,,,,,,15.94241,,,,,3,5,true,,false -163,APOGEE,,,,,,327.9395446777344,22.576263427734375,,,,,,23.38508,21.230928,19.675802,18.738052,18.181986,,,,,,,,,3,5,true,,false -164,APOGEE,,,5447475285453629568,,,156.2827911376953,-34.25658416748047,-8.509782,-0.83389175,,1.3120991,,,,,,,,15.0399685,14.113494,14.662061,,,,,3,5,true,,false -165,APOGEE,63050396571191797,,,801897472,,64.29582977294922,46.18185806274414,,,,,,,,,,,,,,,14.082,,,,3,5,true,,false -166,BOSS,,,,,,251.24901026995926,20.761072247801053,,,,,,,,,,,,,,12.419063,,,,,3,5,true,,false -167,APOGEE,,,,,,158.69978100147583,28.011140166951037,,,,,,11.282053,11.282053,11.282053,11.282053,11.282053,,,,,,,,,3,5,true,,false -168,BOSS,,,,,,208.52880859375,56.69211196899414,,,,,,22.887766,22.028564,20.931177,20.35667,19.90541,,,,,,,,,3,5,true,,false -169,BOSS,,,,,,294.158577680196,30.838738743737466,,,,,,19.05826,19.05826,19.05826,19.05826,19.05826,,,,,,,,,3,5,true,,false -170,APOGEE,,,,,,55.19068908691406,49.30854034423828,,,,,,20.112598,18.448915,17.632612,17.253395,17.066784,,,,,,,,,3,5,true,,false -171,BOSS,,,,,,208.2292798918539,-45.10495812656049,,,,,,,,,,,,,,19.879662,,,,,3,5,true,,false -172,APOGEE,,,4472814268166346496,,,269.6982421875,4.56907320022583,0.8074396,-5.3014293,,0.1342601,,,,,,,,15.217981,13.774918,14.558535,,,,,3,5,true,,false -173,BOSS,,,5984982780373103232,,,241.364501953125,-46.1402473449707,-3.2645855,-4.710714,,0.55543506,,,,,,,,15.941187,14.714792,15.411075,,,,,3,5,true,,false -174,BOSS,,,,,,193.87478637695312,13.071717262268066,,,,,,24.209127,23.345558,21.67536,21.011944,20.569208,,,,,,,,,3,5,true,,false -175,BOSS,,,,,,82.84574890136719,2.6591269969940186,,,,,,24.490797,24.329973,22.519716,21.054262,20.071192,,,,,,,,,3,5,true,,false -176,BOSS,,,,,,258.9907531738281,-30.3322811126709,-3.9985204,-9.540714,,0.89164203,,,,,,,,,,15.450352,,,,,3,5,true,,false -177,BOSS,,,2023925689559897088,,,289.785888671875,25.650304794311523,12.421347,10.415708,,2.62943,,,,,,,,14.714386,13.548961,14.210527,,,,,3,5,true,,false -178,APOGEE,,,,,,168.18912667385493,30.92086427852159,,,,,,,,,,,,,,17.119446,,,,,3,5,true,,false -179,BOSS,,,,800904386,,94.24214935302734,36.041690826416016,,,,,,,,,,,,,,,14.591,,,,3,5,true,,false -180,BOSS,,,,,,294.4983825683594,-7.600120544433594,,,,,,24.201746,23.44475,21.78171,21.078547,20.620617,,,,,,,,,3,5,true,,false -181,BOSS,,,4057802126813382016,,,261.6661071777344,-32.06982421875,-3.181779,-2.1856582,,1.9901395,,,,,,,,14.366076,13.229444,13.891513,,,,,3,5,true,,false -182,APOGEE,,,5844009652906745344,,,200.8880615234375,-70.40213775634766,-8.01176,-5.2102246,,0.05271804,,,,,,,,16.114222,14.795244,15.553161,,,,,3,5,true,,false -183,BOSS,,,,,,261.1799011230469,-38.811805725097656,-0.50103647,-2.0754387,,0.16245322,,,,,,,,,,14.955585,,,,,3,5,true,,false -184,BOSS,63050395054009209,,,757824287,,317.6270751953125,66.22753143310547,,,,,,,,,,,,,,,13.604,,,,3,5,true,,false -185,BOSS,63050396148003068,,5887450841951034240,,,226.91937255859375,-54.71531677246094,-2.488071,-3.678781,,0.6365667,,,,,,,,16.183224,14.9205065,15.634026,,,,,3,5,true,,false -186,BOSS,63050394922122699,,1954457445378886272,,,326.6565856933594,40.71246337890625,-1.7632521,-1.5674198,,0.68275404,,,,,,,,15.516054,14.383638,15.033053,,,,,3,5,true,,false -187,APOGEE,,,,,,243.71475219726562,8.353689193725586,,,,,,20.809269,18.614685,17.764248,17.451372,17.281826,,,,,,,,,3,5,true,,false -188,APOGEE,63050396529839439,113555911,6757538098559982720,,,286.82989501953125,-30.961130142211914,-2.8509324,-1.7290916,,0.041487724,,,,,,,,16.370113,14.623442,15.520707,,,,,3,5,true,,false -189,BOSS,,,,,,5.926082304739078,33.742694797812774,,,,,,,,,,,,,,13.502087,,,,,3,5,true,,false -190,APOGEE,,,,161294968,,236.55580139160156,-32.28580856323242,,,,,,,,,,,,,,,15.925,,,,3,5,true,,false -191,APOGEE,,,,,,138.98394775390625,26.898181915283203,-8.336913,-3.9110324,,0.68013984,,,,,,,,,,11.610072,,,,,3,5,true,,false -192,BOSS,,,,,,292.3936863445692,-82.87058336295867,,,,,,15.882666,15.882666,15.882666,15.882666,15.882666,,,,,,,,,3,5,true,,false -193,BOSS,63050396286834582,105638663,5967165194405248640,,,256.26776123046875,-39.74424362182617,0.5756708,-1.0651655,,0.41620448,,,,,,,,17.247837,13.611119,14.978188,,,,,3,5,true,,false -194,BOSS,,,,,,190.98094177246094,-10.151766777038574,0.94922966,-13.742431,,2.043193,,,,,,,,,,13.179207,,,,,3,5,true,,false -195,APOGEE,63050394946410938,65788188,2006594534430399872,,,339.1441650390625,56.04572677612305,8.904543,13.167531,,0.5812226,,,,,,,,16.422789,15.377684,15.990764,,,,,3,5,true,,false -196,BOSS,,,,,,189.61007690429688,34.30216598510742,,,,,,25.20778,23.033634,21.289375,20.658276,20.114435,,,,,,,,,3,5,true,,false -197,BOSS,,,,,,166.730123863813,-50.11071707857858,,,,,,,,,,,,,,16.583065,,,,,3,5,true,,false -198,APOGEE,,,,,,324.63651171276115,76.65835282842761,,,,,,15.860367,15.860367,15.860367,15.860367,15.860367,,,,,,,,,3,5,true,,false -199,APOGEE,,,,,,341.74710531311894,-51.436099973622355,,,,,,17.86398,17.86398,17.86398,17.86398,17.86398,,,,,,,,,3,5,true,,false -200,BOSS,,,2004163617304059904,,,333.11962890625,52.08082962036133,1.2852561,-0.30176,,0.36579403,,,,,,,,15.443185,14.5720625,15.096612,,,,,3,5,true,,false -201,APOGEE,,,,,,332.74690208160763,26.06552149320406,,,,,,,,,,,,,,13.253478,,,,,3,5,true,,false -202,APOGEE,,,,,,52.104434967041016,-6.528459548950195,,,,,,24.822882,23.89836,24.840467,24.233374,23.311459,,,,,,,,,3,5,true,,false -203,BOSS,,,,,,76.74251095825286,26.50233146903051,,,,,,18.069836,18.069836,18.069836,18.069836,18.069836,,,,,,,,,3,5,true,,false -204,BOSS,,,1496888912606063104,,,208.09271240234375,38.84844970703125,1.3851037,-8.001816,,1.068554,,,,,,,,14.8604555,13.967966,14.495973,,,,,3,5,true,,false -205,BOSS,,,,,,84.16385168502775,-13.444682533110878,,,,,,,,,,,,,,14.463943,,,,,3,5,true,,false -206,BOSS,,,21729755674531712,,,40.287235260009766,9.5845308303833,16.563494,-9.90541,,1.6310456,,,,,,,,15.053781,13.881147,14.547879,,,,,3,5,true,,false -207,APOGEE,,,,,,293.7564221811903,-9.16218150711532,,,,,,15.046597,15.046597,15.046597,15.046597,15.046597,,,,,,,,,3,5,true,,false -208,BOSS,,,,,,290.9150532810235,-39.566865172075836,,,,,,,,,,,,,,11.556087,,,,,3,5,true,,false -209,BOSS,,,,,,284.5955505371094,11.410357475280762,3.617569,-3.642101,,1.8233423,,,,,,,,,,15.330822,,,,,3,5,true,,false -210,BOSS,,,,,,262.373779296875,31.639211654663086,,,,,,23.608046,25.114317,24.501036,24.647106,20.60317,,,,,,,,,3,5,true,,false -211,APOGEE,,,,,,113.01869201660156,28.357545852661133,,,,,,24.997692,23.011667,22.536375,22.610422,23.476704,,,,,,,,,3,5,true,,false -212,BOSS,,,,,,196.5323486328125,62.5030403137207,,,,,,22.68929,23.519281,22.371004,21.82737,21.125847,,,,,,,,,3,5,true,,false -213,BOSS,,,,,,176.4287567138672,4.783514976501465,,,,,,22.978958,23.252066,24.233232,23.15292,22.470022,,,,,,,,,3,5,true,,false -214,BOSS,,,,,,278.4013366699219,-18.8186092376709,2.1777713,-2.770039,,1.9763951,,,,,,,,,,15.284637,,,,,3,5,true,,false -215,BOSS,,,,,,62.69222640991211,44.075008392333984,-1.1885136,-1.2036417,,0.36271265,,,,,,,,,,15.648644,,,,,3,5,true,,false -216,BOSS,,,,,,79.19980681370927,73.22619696856933,,,,,,,,,,,,,,14.983305,,,,,3,5,true,,false -217,APOGEE,,,5391354287828213504,,,160.44200134277344,-42.3575553894043,-9.177196,6.5275445,,0.37144372,,,,,,,,15.648958,14.5100355,15.159582,,,,,3,5,true,,false -218,BOSS,,,,608693941,,228.3907012939453,-53.26818084716797,,,,,,,,,,,,,,,15.121,,,,3,5,true,,false -219,APOGEE,,,4045209901225874944,,,276.3653259277344,-32.32202911376953,-2.4883888,-2.7885587,,0.11899914,,,,,,,,15.775698,14.264627,15.090936,,,,,3,5,true,,false -220,BOSS,,,,,,287.1069641113281,48.14677810668945,6.4676185,-3.543613,,1.7724363,,,,,,,,,,14.426527,,,,,3,5,true,,false -221,APOGEE,,,,,,337.6748352050781,22.750871658325195,,,,,,22.271988,25.241003,25.384706,24.261948,22.888098,,,,,,,,,3,5,true,,false -222,APOGEE,,,5936905088302842368,,,251.52174377441406,-52.06861877441406,-3.6866062,-10.862063,,1.3344207,,,,,,,,11.116587,9.74369,10.499817,,,,,3,5,true,,false -223,BOSS,,,5358012491083432960,,,156.39268493652344,-50.586605072021484,-5.565849,8.165027,,0.8573523,,,,,,,,15.883036,14.8255,15.439669,,,,,3,5,true,,false -224,BOSS,,,,,,10.849310431738326,17.507725466275957,,,,,,11.822677,11.822677,11.822677,11.822677,11.822677,,,,,,,,,3,5,true,,false -225,BOSS,,,,,,268.2889404296875,23.54013442993164,5.2176805,7.7810826,,0.9422425,,,,,,,,,,15.434048,,,,,3,5,true,,false -226,BOSS,,,1800450604019178752,,,324.7470703125,27.07453727722168,2.8251352,0.106735095,,0.87769127,,,,,,,,15.935665,14.940728,15.533101,,,,,3,5,true,,false -227,APOGEE,63050394911985003,64398328,1872812453553619072,,,313.376708984375,38.9326057434082,-1.9979454,-1.9001839,,0.29784358,,,,,,,,15.093804,13.285848,14.409677,,,,,3,5,true,,false -228,BOSS,63050396368506471,,6027923279277168640,,,252.3264923095703,-30.913015365600586,-0.47721133,-2.7165391,,0.14906284,,,,,,,,16.506794,14.617592,15.571203,,,,,3,5,true,,false -229,APOGEE,63050395922353978,,5398390784287715456,,,173.8163604736328,-35.18009948730469,-8.203925,2.146045,,1.0643536,,,,,,,,16.111086,15.023605,15.647184,,,,,3,5,true,,false -230,APOGEE,,,,,,62.45156145554627,-81.97347349285054,,,,,,17.740475,17.740475,17.740475,17.740475,17.740475,,,,,,,,,3,5,true,,false -231,BOSS,,,,,,22.743648529052734,51.266571044921875,,,,,,23.526623,21.051273,19.441263,18.791553,18.241438,,,,,,,,,3,5,true,,false -232,BOSS,,,,,,103.47381591796875,2.426119089126587,2.0629268,-4.952248,,0.9015486,,,,,,,,,,11.830829,,,,,3,5,true,,false -233,APOGEE,,,4068417842934354432,,,265.8702697753906,-23.64971923828125,-0.622478,-0.5309592,,0.3277213,,,,,,,,15.496595,13.230395,14.306583,,,,,3,5,true,,false -234,BOSS,,,,,,260.7912110731504,-69.09527088746088,,,,,,,,,,,,,,12.68287,,,,,3,5,true,,false -235,APOGEE,,,,476368393,,224.1922607421875,-52.68593978881836,,,,,,,,,,,,,,,15.393,,,,3,5,true,,false -236,BOSS,,,,,,306.4517222679042,-68.98874700736816,,,,,,17.970772,17.970772,17.970772,17.970772,17.970772,,,,,,,,,3,5,true,,false -237,APOGEE,63050396434380401,,6096032389584133504,,,211.62118530273438,-46.1772346496582,-12.430888,-5.1364303,,1.2661645,,,,,,,,15.6298685,14.606727,15.251596,,,,,3,5,true,,false -238,APOGEE,,,,,,6.04311466217041,-12.90087604522705,,,,,,24.843203,24.544159,25.352024,23.834915,20.635614,,,,,,,,,3,5,true,,false -239,BOSS,,,,,,353.0296325683594,66.0597915649414,,,,,,24.636906,25.144846,19.409851,24.33128,20.0094,,,,,,,,,3,5,true,,false -240,BOSS,,,4435614903577731840,,,250.29515075683594,5.708816051483154,-6.114963,2.0305336,,1.4258776,,,,,,,,14.518869,13.6278105,14.15838,,,,,3,5,true,,false -241,BOSS,,,1624737341544648064,,,245.5135955810547,59.780487060546875,5.295288,-3.5337133,,3.736557,,,,,,,,12.863421,11.980861,12.509692,,,,,3,5,true,,false -242,APOGEE,,,,,,242.25900268554688,46.28569793701172,,,,,,23.587397,23.045275,22.622324,22.627691,22.049667,,,,,,,,,3,5,true,,false -243,BOSS,,,,,,106.73589324951172,-46.37025451660156,0.6417522,-6.8648586,,1.0575451,,,,,,,,,,14.8115835,,,,,3,5,true,,false -244,APOGEE,,,,,,122.9651107788086,11.55028247833252,,,,,,22.40554,25.997234,25.13293,24.897606,22.9654,,,,,,,,,3,5,true,,false -245,BOSS,,,,,,318.9789123535156,12.714149475097656,,,,,,24.74784,23.363575,21.680227,20.295362,19.469025,,,,,,,,,3,5,true,,false -246,APOGEE,,,,,,175.4866485595703,-38.20977020263672,6.7345915,-15.349574,,8.683908,,,,,,,,,,15.511074,,,,,3,5,true,,false -247,APOGEE,,,,,,100.90907287597656,-68.87063598632812,-0.764064,-3.603482,,0.80584013,,,,,,,,,,15.98586,,,,,3,5,true,,false -248,BOSS,,,4107385565797288576,,,258.2789611816406,-29.12483787536621,-1.6209584,-7.324894,,0.08772065,,,,,,,,16.683155,14.260551,15.383914,,,,,3,5,true,,false -249,APOGEE,,,,,,126.48829526160355,-65.65629569317929,,,,,,,,,,,,,,19.788662,,,,,3,5,true,,false -250,BOSS,,,,,,245.93031311035156,43.8314094543457,,,,,,24.747637,23.495625,22.353651,21.190956,20.514248,,,,,,,,,3,5,true,,false -251,BOSS,,,5348776421604505472,,,172.87168884277344,-51.20564651489258,-4.918563,3.613761,,0.14817892,,,,,,,,15.28884,13.912846,14.678274,,,,,3,5,true,,false -252,APOGEE,,,,,,177.4503936767578,16.558692932128906,,,,,,20.845938,19.554436,18.946703,18.690798,18.581352,,,,,,,,,3,5,true,,false -253,APOGEE,63050394786389543,,429477801692859392,,,0.6187518239021301,61.337989807128906,-1.7693046,-2.299481,,0.34271026,,,,,,,,16.84633,15.060775,15.983837,,,,,3,5,true,,false -254,APOGEE,,,,,,224.397216796875,8.635515213012695,,,,,,24.062578,21.389425,20.068743,19.395025,19.030811,,,,,,,,,3,5,true,,false -255,APOGEE,,,,,,57.30942891717964,76.67025877904055,,,,,,14.734452,14.734452,14.734452,14.734452,14.734452,,,,,,,,,3,5,true,,false -256,APOGEE,,,4486999789227958016,,,262.3189697265625,6.788151264190674,8.045208,-13.936562,,1.2926903,,,,,,,,16.499552,15.239317,15.941331,,,,,3,5,true,,false -257,APOGEE,,,,,,253.7900848388672,-34.88337707519531,-3.5851352,-3.582744,,0.25028688,,,,,,,,,,15.574355,,,,,3,5,true,,false -258,APOGEE,,,,,,21.139650559740314,72.63876023232206,,,,,,,,,,,,,,10.675391,,,,,3,5,true,,false -259,BOSS,,,3112217965076955264,,,104.21683502197266,-1.2382922172546387,-2.6515872,2.8242805,,0.36784115,,,,,,,,12.873659,11.156877,12.046217,,,,,3,5,true,,false -260,APOGEE,,,,,,206.4253387451172,4.169458389282227,,,,,,22.84527,23.28901,22.411133,21.800308,21.518261,,,,,,,,,3,5,true,,false -261,APOGEE,,,,,,204.8253936767578,17.989782333374023,,,,,,23.078787,26.333214,25.19199,22.51887,22.664995,,,,,,,,,3,5,true,,false -262,BOSS,,,,,,173.6584014892578,39.58012771606445,,,,,,25.771442,21.916836,20.394693,19.798885,19.584654,,,,,,,,,3,5,true,,false -263,APOGEE,,,,,,272.01531982421875,1.0695526599884033,,,,,,23.846851,20.82615,19.711617,19.372805,19.114819,,,,,,,,,3,5,true,,false -264,APOGEE,,,,,,94.865405913386,-26.41618992949263,,,,,,,,,,,,,,14.063766,,,,,3,5,true,,false -265,BOSS,,,,,,335.88158963792586,-72.18900064717188,,,,,,17.158436,17.158436,17.158436,17.158436,17.158436,,,,,,,,,3,5,true,,false -266,BOSS,,,,,,214.8327499060461,28.238015523680104,,,,,,16.53069,16.53069,16.53069,16.53069,16.53069,,,,,,,,,3,5,true,,false -267,BOSS,,,4091697424653620096,,,279.46258544921875,-20.990009307861328,-0.90645206,-3.9386024,,0.20236279,,,,,,,,15.705693,13.849323,14.791713,,,,,3,5,true,,false -268,APOGEE,,,,,,187.96363830566406,-58.326568603515625,-13.91975,0.6554736,,0.8078138,,,,,,,,,,15.344174,,,,,3,5,true,,false -269,BOSS,63050395284807041,,4056261569267138048,,,269.57135009765625,-29.858844757080078,3.5069675,-0.34670052,,-0.03125914,,,,,,,,16.890783,14.553944,15.901896,,,,,3,5,true,,false -270,BOSS,63050395762065514,,4537316052660289024,,,278.31866455078125,26.545969009399414,-5.0673804,-11.858378,,1.121656,,,,,,,,14.900728,13.96087,14.519752,,,,,3,5,true,,false -271,APOGEE,63050396390793034,,6039497666350778496,,,239.82540893554688,-31.575450897216797,-6.443315,-5.7685194,,0.87194496,,,,,,,,14.540613,13.154329,13.911458,,,,,3,5,true,,false -272,APOGEE,,,5831490063783773440,,,244.6187744140625,-59.870113372802734,-6.093896,-3.9982002,,0.29309118,,,,,,,,13.469457,11.734672,12.629369,,,,,3,5,true,,false -273,APOGEE,,,,,,203.5801531336464,63.29292514657524,,,,,,,,,,,,,,17.917465,,,,,3,5,true,,false -274,APOGEE,,,,,,171.2684392072577,10.297480704819321,,,,,,14.154331,14.154331,14.154331,14.154331,14.154331,,,,,,,,,3,5,true,,false -275,BOSS,,,,,,277.9467468261719,-39.49164581298828,0.12923425,-3.3333886,,0.16742904,,,,,,,,,,14.430116,,,,,3,5,true,,false -276,BOSS,,,,,,120.57569885253906,-44.79671859741211,-3.833829,5.500197,,0.74139214,,,,,,,,,,15.915638,,,,,3,5,true,,false -277,APOGEE,,,,,,304.8626533388269,-41.90018817977072,,,,,,,,,,,,,,15.144285,,,,,3,5,true,,false -278,BOSS,63050396027610459,,5823212493545253760,,,231.50494384765625,-68.65945434570312,-12.6663065,-4.3131213,,0.60134935,,,,,,,,14.816352,14.112899,14.571983,,,,,3,5,true,,false -279,APOGEE,,,,,,90.27867146393328,22.794226001129104,,,,,,18.705862,18.705862,18.705862,18.705862,18.705862,,,,,,,,,3,5,true,,false -280,BOSS,,,5386574264107635456,,,166.27969360351562,-46.182918548583984,-3.431316,-1.6262811,,0.36407766,,,,,,,,15.702174,14.866103,15.369634,,,,,3,5,true,,false -281,APOGEE,,,,,,61.12736450284257,16.759570603115137,,,,,,12.857866,12.857866,12.857866,12.857866,12.857866,,,,,,,,,3,5,true,,false -282,APOGEE,63050396557766242,115485326,161118516924130304,,,71.87994384765625,32.33192443847656,3.562251,-6.4233055,,0.75918716,,,,,,,,13.540638,11.615866,12.584587,,,,,3,5,true,,false -283,APOGEE,,,,,,113.55242156982422,-30.173608779907227,-0.8978819,2.403713,,0.1563706,,,,,,,,,,15.34702,,,,,3,5,true,,false -284,BOSS,,,,,,199.89642507710212,-6.480972485877032,,,,,,15.024271,15.024271,15.024271,15.024271,15.024271,,,,,,,,,3,5,true,,false -285,BOSS,,,,,,22.326122657046138,-62.46450828823648,,,,,,14.021726,14.021726,14.021726,14.021726,14.021726,,,,,,,,,3,5,true,,false -286,APOGEE,,,3382706522822637824,,,98.2979965209961,23.931608200073242,0.31670055,-3.0029032,,0.2424566,,,,,,,,14.381247,13.11786,13.825673,,,,,3,5,true,,false -287,APOGEE,,,,,,249.25001525878906,-8.738912582397461,,,,,,23.859966,24.619247,23.825565,22.858402,21.004652,,,,,,,,,3,5,true,,false -288,APOGEE,,,4074564280338103040,,,285.2690734863281,-24.145166397094727,-1.1830951,-2.0888999,,0.2850656,,,,,,,,14.804027,13.3257675,14.122156,,,,,3,5,true,,false -289,BOSS,,,,,,316.58685568350063,11.665228818436546,,,,,,15.73669,15.73669,15.73669,15.73669,15.73669,,,,,,,,,3,5,true,,false -290,APOGEE,,,,,,157.60336303710938,21.31033706665039,,,,,,22.89609,21.903906,21.545723,21.389353,20.904123,,,,,,,,,3,5,true,,false -291,BOSS,,,,,,38.057708740234375,55.54185485839844,0.45565102,-0.7535167,,0.2970587,,,,,,,,,,13.239313,,,,,3,5,true,,false -292,BOSS,,,,,,135.17893981933594,40.339019775390625,,,,,,25.279095,23.249424,24.734251,24.76783,22.532553,,,,,,,,,3,5,true,,false -293,APOGEE,63050396553113421,,66432565569225088,,,57.558013916015625,23.42411994934082,3.793769,-7.1988444,,0.50439936,,,,,,,,15.776256,14.744985,15.347315,,,,,3,5,true,,false -294,BOSS,,,5357801625365142144,,,158.624267578125,-51.115020751953125,-14.50671,5.113889,,0.48633903,,,,,,,,16.130934,14.971136,15.630656,,,,,3,5,true,,false -295,APOGEE,,,,1007557219,,240.68992614746094,-49.098846435546875,,,,,,,,,,,,,,,15.071,,,,3,5,true,,false -296,APOGEE,63050396577881663,,267419374115099008,,,78.80326080322266,54.58869171142578,-1.7796593,-0.3553971,,0.5525906,,,,,,,,16.44462,15.047129,15.821611,,,,,3,5,true,,false -297,APOGEE,,,,,,272.85418701171875,-25.256351470947266,-0.6261248,-8.990599,,0.32644805,,,,,,,,,,15.679528,,,,,3,5,true,,false -298,APOGEE,,,,,,213.80850026124952,8.292458664944874,,,,,,,,,,,,,,14.8571615,,,,,3,5,true,,false -299,BOSS,,,,,,339.4684143066406,8.354248046875,,,,,,26.27487,22.78128,21.248137,20.169998,19.593122,,,,,,,,,3,5,true,,false -300,APOGEE,,,4139691244569450752,,,257.01605224609375,-14.644281387329102,-2.85011,-4.782603,,0.44464493,,,,,,,,15.917721,14.162873,15.068505,,,,,3,5,true,,false -301,BOSS,,,,,,255.8694729648279,82.20284171966875,,,,,,,,,,,,,,16.654812,,,,,3,5,true,,false -302,BOSS,,,,,,196.24755859375,-52.01388168334961,-10.449237,-1.8116314,,0.95379496,,,,,,,,,,10.566422,,,,,3,5,true,,false -303,APOGEE,,,,,,3.4762230928518623,-46.21451468572104,,,,,,,,,,,,,,16.690163,,,,,3,5,true,,false -304,BOSS,,,5605875534761190144,,,108.19120025634766,-31.08579444885254,-6.8084106,14.931234,,0.8932869,,,,,,,,15.754414,14.727019,15.322794,,,,,3,5,true,,false -305,BOSS,,,,,,322.52260058377294,-19.05090351935108,,,,,,18.041834,18.041834,18.041834,18.041834,18.041834,,,,,,,,,3,5,true,,false -306,APOGEE,63050394919427711,,1942871238520759936,,,351.13299560546875,49.39647674560547,-4.6026883,-4.6394935,,0.67156786,,,,,,,,14.8507,14.016653,14.521241,,,,,3,5,true,,false -307,BOSS,,,,,,183.86997985839844,29.93075180053711,,,,,,24.099918,24.064215,23.398298,22.21522,22.669205,,,,,,,,,3,5,true,,false -308,APOGEE,,,,,,19.380457904898982,47.13923132685275,,,,,,,,,,,,,,17.578691,,,,,3,5,true,,false -309,BOSS,,,,,,145.62500686207454,11.219255621765711,,,,,,14.065916,14.065916,14.065916,14.065916,14.065916,,,,,,,,,3,5,true,,false -310,APOGEE,,,,,,247.46183031610875,1.507463912559814,,,,,,16.759418,16.759418,16.759418,16.759418,16.759418,,,,,,,,,3,5,true,,false -311,APOGEE,,,,,,112.68246459960938,14.82758617401123,-1.6418208,-91.23109,,1.545224,,,,,,,,,,15.270176,,,,,3,5,true,,false -312,APOGEE,,,,,,285.49566650390625,-0.517584502696991,1.6087799,3.65031,,3.5654547,,,,,,,,,,14.814065,,,,,3,5,true,,false -313,BOSS,,,,,,271.23760986328125,-26.978004455566406,-0.88377047,-4.5355177,,0.46722072,,,,,,,,,,13.39879,,,,,3,5,true,,false -314,APOGEE,,,,,,141.81892228010466,-34.61016139241419,,,,,,,,,,,,,,14.383531,,,,,3,5,true,,false -315,APOGEE,,,5241579947808617344,,,160.64385986328125,-62.70717239379883,-8.599338,4.63491,,0.26211706,,,,,,,,15.229936,13.450268,14.3621435,,,,,3,5,true,,false -316,APOGEE,63050395718892336,,4468248168182707072,,,271.5931091308594,1.9585689306259155,-0.34786654,-2.877038,,0.71554106,,,,,,,,15.290248,14.227938,14.845512,,,,,3,5,true,,false -317,APOGEE,,,,,,47.48423385620117,6.409243583679199,,,,,,23.183796,22.001513,20.553835,19.506739,18.94921,,,,,,,,,3,5,true,,false -318,APOGEE,63050396081318453,,5854687972384947456,,,180.82119750976562,-72.06514739990234,-5.639454,0.9690935,,0.19212803,,,,,,,,15.933684,14.309703,15.168872,,,,,3,5,true,,false -319,BOSS,,,,,,74.9557705353894,17.256115551410943,,,,,,,,,,,,,,10.958212,,,,,3,5,true,,false -320,APOGEE,63050395989740420,,5655001714283749632,,,137.19056701660156,-22.236434936523438,-14.377401,-4.266612,,0.572578,,,,,,,,16.027575,15.160055,15.681556,,,,,3,5,true,,false -321,BOSS,,,1239205924410302080,,,218.91331481933594,19.159832000732422,-2.6336377,3.7526374,,1.3347762,,,,,,,,12.492836,11.419887,12.039087,,,,,3,5,true,,false -322,APOGEE,,,,,,274.3512862810719,-56.32172969652237,,,,,,,,,,,,,,13.862485,,,,,3,5,true,,false -323,BOSS,,,,,,90.62757873535156,62.50789260864258,1.4373567,-1.1645263,,0.3864974,,,,,,,,,,15.013068,,,,,3,5,true,,false -324,APOGEE,,,,,,73.38604045221513,-30.931341163709916,,,,,,,,,,,,,,12.39384,,,,,3,5,true,,false -325,APOGEE,,,,,,355.7539752511332,-21.333503906132876,,,,,,,,,,,,,,13.481429,,,,,3,5,true,,false -326,APOGEE,,,6033102666231541504,,,253.2592010498047,-27.763389587402344,0.56902146,-4.588193,,0.60549676,,,,,,,,16.210457,15.170535,15.795382,,,,,3,5,true,,false -327,BOSS,,,,,,276.81802926511074,69.80295364975748,,,,,,,,,,,,,,16.821177,,,,,3,5,true,,false -328,APOGEE,,,,,,248.33183633819283,8.383162110762996,,,,,,12.19843,12.19843,12.19843,12.19843,12.19843,,,,,,,,,3,5,true,,false -329,APOGEE,,,4154275952778659328,,,276.244873046875,-10.433540344238281,2.2091186,0.10405406,,0.47819528,,,,,,,,16.592756,14.540666,15.554633,,,,,3,5,true,,false -330,BOSS,63050396461987817,109326758,6282446580248808320,,,222.6241912841797,-17.37419891357422,-4.3076997,-8.831916,,0.2692711,,,,,,,,15.690981,15.18588,15.50574,,,,,3,5,true,,false -331,APOGEE,,,,,,238.09207153320312,51.558677673339844,,,,,,22.909134,23.483892,22.305105,21.769423,21.167656,,,,,,,,,3,5,true,,false -332,APOGEE,,,3111886088663907968,,,110.14352416992188,1.6963738203048706,-2.5187104,-0.65135366,,0.42197448,,,,,,,,15.747803,14.896778,15.411277,,,,,3,5,true,,false -333,BOSS,,,,,,256.8235986361501,-5.89809988077063,,,,,,19.721457,19.721457,19.721457,19.721457,19.721457,,,,,,,,,3,5,true,,false -334,BOSS,,,,,,213.62586922970323,-7.700841415675114,,,,,,,,,,,,,,19.177898,,,,,3,5,true,,false -335,BOSS,,,,,,326.4298070617809,19.41967727692564,,,,,,,,,,,,,,11.758517,,,,,3,5,true,,false -336,BOSS,,,,,,345.6827392578125,-3.59094500541687,,,,,,23.93318,22.734827,22.170446,21.90203,22.647518,,,,,,,,,3,5,true,,false -337,APOGEE,,,,,,302.76239013671875,30.619321823120117,,,,,,24.858387,22.670965,20.588276,19.41119,18.581202,,,,,,,,,3,5,true,,false -338,APOGEE,,,,,,146.46792602539062,-62.81245040893555,-3.5063326,3.3436139,,0.51065737,,,,,,,,,,15.092734,,,,,3,5,true,,false -339,APOGEE,,,4750259156799646720,,,46.44874572753906,-48.80378341674805,8.085212,-0.61807835,,0.30553108,,,,,,,,15.833857,14.759364,15.37914,,,,,3,5,true,,false -340,APOGEE,,,,,,102.01593780517578,27.853824615478516,-0.5623944,-6.4581013,,0.7809886,,,,,,,,,,14.114419,,,,,3,5,true,,false -341,APOGEE,,,3434065398149961344,,,98.07112884521484,27.65948486328125,-1.071301,-18.329903,,1.9256781,,,,,,,,16.597858,15.062904,15.881707,,,,,3,5,true,,false -342,BOSS,,,87920974142002560,,,39.14982604980469,20.302978515625,10.929401,-8.358176,,0.40420455,,,,,,,,15.646815,14.491757,15.156663,,,,,3,5,true,,false -343,APOGEE,,,,,,323.35308837890625,-16.615543365478516,12.100038,-16.353989,,4.095662,,,,,,,,,,11.628042,,,,,3,5,true,,false -344,APOGEE,,,,,,9.392899387534705,-36.27319274030236,,,,,,,,,,,,,,19.840899,,,,,3,5,true,,false -345,APOGEE,,,,,,50.76715971859668,47.46348609071529,,,,,,,,,,,,,,18.508158,,,,,3,5,true,,false -346,APOGEE,,,,,,190.7328338623047,-0.6704139709472656,,,,,,22.999598,22.885208,22.001408,21.61313,21.216791,,,,,,,,,3,5,true,,false -347,BOSS,,,5588349731732350464,,,113.72810363769531,-34.873504638671875,-1.5261728,7.6164412,,0.54156244,,,,,,,,15.914534,14.893491,15.4905205,,,,,3,5,true,,false -348,APOGEE,,,,,,121.5251235961914,-30.15754508972168,-2.1666052,2.1710746,,0.030252786,,,,,,,,,,14.360721,,,,,3,5,true,,false -349,BOSS,63050395934466948,,5429960237024983552,,,141.31747436523438,-39.04939651489258,-4.022697,2.263812,,0.7283598,,,,,,,,15.934863,14.969467,15.539667,,,,,3,5,true,,false -350,BOSS,,,,,,171.05276489257812,-11.397574424743652,,,,,,24.874617,21.794987,20.342665,19.78375,19.4361,,,,,,,,,3,5,true,,false -351,BOSS,63050396000673146,,5719382655583805312,,,116.82365417480469,-15.747088432312012,-4.072693,2.9307632,,0.32057515,,,,,,,,16.029339,15.115657,15.65647,,,,,3,5,true,,false -352,BOSS,,,,,,335.0503845214844,13.342512130737305,,,,,,23.537666,24.995821,24.00141,21.61261,22.503119,,,,,,,,,3,5,true,,false -353,APOGEE,,,2004898640825905792,,,335.81903076171875,54.349918365478516,-2.6362,-5.107851,,0.3678613,,,,,,,,13.794047,12.36924,13.145841,,,,,3,5,true,,false -354,BOSS,,,4504417118605096192,,,283.35894775390625,12.26593017578125,1.811513,-7.4086685,,1.1857543,,,,,,,,16.198013,14.841307,15.585546,,,,,3,5,true,,false -355,APOGEE,,,4185047503669742080,,,287.9762268066406,-15.192276000976562,-3.0487027,-4.5651093,,0.20880888,,,,,,,,14.209098,12.7589035,13.547967,,,,,3,5,true,,false -356,BOSS,,,,952138551,,197.7841796875,-62.75466537475586,,,,,,,,,,,,,,,12.357,,,,3,5,true,,false -357,BOSS,,,,,,121.26750946044922,33.70030212402344,,,,,,23.129293,23.103611,22.281048,21.59885,20.984114,,,,,,,,,3,5,true,,false -358,BOSS,,,,,,84.95551960119067,72.8020267890652,,,,,,11.60984,11.60984,11.60984,11.60984,11.60984,,,,,,,,,3,5,true,,false -359,APOGEE,,,,,,153.48228454589844,-61.74525451660156,-8.206086,2.9888012,,0.8264185,,,,,,,,,,14.561772,,,,,3,5,true,,false -360,BOSS,,,,,,260.8817263752377,-21.966161874202896,,,,,,19.147873,19.147873,19.147873,19.147873,19.147873,,,,,,,,,3,5,true,,false -361,APOGEE,,,,1053774256,,283.5673828125,25.661691665649414,,,,,,,,,,,,,,,13.813,,,,3,5,true,,false -362,BOSS,,,,,,273.0733771786869,72.17176097035221,,,,,,,,,,,,,,11.351375,,,,,3,5,true,,false -363,APOGEE,63050396248065399,105192989,5951738286052701440,,,262.5308837890625,-46.59006881713867,0.97500414,1.7774001,,0.3895575,,,,,,,,14.3129425,12.897282,13.668084,,,,,3,5,true,,false -364,BOSS,,,5696424646636987008,,,124.72760009765625,-24.188932418823242,-4.326405,3.6894386,,0.80112106,,,,,,,,13.59751,12.965911,13.356296,,,,,3,5,true,,false -365,APOGEE,,,,,,108.49375915527344,38.515010833740234,,,,,,22.571835,21.996529,21.036383,20.461472,20.165129,,,,,,,,,3,5,true,,false -366,BOSS,,,,,,61.77870559692383,-0.9225878119468689,,,,,,25.424257,23.467241,21.770433,20.383831,19.514921,,,,,,,,,3,5,true,,false -367,BOSS,63050396131516790,,5877236688205298304,,,220.91796875,-62.85441207885742,-4.2525477,-2.545133,,0.24593624,,,,,,,,17.398678,14.781101,15.944885,,,,,3,5,true,,false -368,APOGEE,,,,,,90.55750274658203,31.995189666748047,,,,,,23.384329,21.148413,19.771376,19.183846,18.811361,,,,,,,,,3,5,true,,false -369,APOGEE,63050395063628541,,2368658181524061312,,,5.524478912353516,-15.771190643310547,10.1245365,-6.5783367,,1.8334643,,,,,,,,16.247599,14.850008,15.612547,,,,,3,5,true,,false -370,APOGEE,,,,,,111.5455551147461,44.194374084472656,-0.3043992,-7.6063266,,0.70804614,,,,,,,,,,15.6847925,,,,,3,5,true,,false -371,BOSS,,,,,,191.8635292788548,-72.6899732201226,,,,,,11.783735,11.783735,11.783735,11.783735,11.783735,,,,,,,,,3,5,true,,false -372,BOSS,,,,590147288,,241.69764709472656,-43.746726989746094,,,,,,,,,,,,,,,15.449,,,,3,5,true,,false -373,APOGEE,,,,,,23.8210543343014,58.76926130218331,,,,,,,,,,,,,,19.468203,,,,,3,5,true,,false -374,BOSS,,,,,,248.08383178710938,-8.89812183380127,-1.4435717,0.10919098,,3.3272586,,,,,,,,,,10.979209,,,,,3,5,true,,false -375,APOGEE,,,,,,270.3764953613281,-1.618571400642395,-3.6191587,1.370966,,0.30749905,,,,,,,,,,14.463103,,,,,3,5,true,,false -376,APOGEE,,,1963349608231960192,,,333.2350158691406,46.60401153564453,-4.33009,-3.0242238,,0.17279005,,,,,,,,16.562141,15.204494,15.955939,,,,,3,5,true,,false -377,BOSS,,,,,,187.30799748986072,-59.380701850274804,,,,,,,,,,,,,,18.820301,,,,,3,5,true,,false -378,APOGEE,,,,,,209.2765350341797,-9.837945938110352,,,,,,22.015062,22.985518,22.039286,21.592236,20.787157,,,,,,,,,3,5,true,,false -379,APOGEE,,,,979186291,,63.508148193359375,64.17413330078125,,,,,,,,,,,,,,,16.351,,,,3,5,true,,false -380,APOGEE,,,3317257028026509696,,,91.850341796875,3.4736931324005127,0.33583894,0.6456253,,0.41969883,,,,,,,,15.492894,14.216338,14.935561,,,,,3,5,true,,false -381,APOGEE,,,,,,245.28451538085938,-50.057010650634766,2.355074,-4.9659495,,0.52695024,,,,,,,,,,15.894541,,,,,3,5,true,,false -382,BOSS,,,,,,289.5540809755508,-80.01018890893272,,,,,,,,,,,,,,12.655298,,,,,3,5,true,,false -383,BOSS,,,,,,133.83770751953125,-49.405330657958984,-3.7913196,4.2820964,,1.4607426,,,,,,,,,,14.951678,,,,,3,5,true,,false -384,BOSS,,,,,,46.480029730051164,58.49371794832203,,,,,,,,,,,,,,16.219131,,,,,3,5,true,,false -385,BOSS,,,,,,283.50431268495385,9.73793100763821,,,,,,,,,,,,,,14.38017,,,,,3,5,true,,false -386,BOSS,,,,,,79.7576675415039,-65.45455932617188,1.4873829,0.2675279,,-0.057196513,,,,,,,,,,15.990143,,,,,3,5,true,,false -387,APOGEE,,,,,,165.5263193829449,-70.38366478908631,,,,,,10.521661,10.521661,10.521661,10.521661,10.521661,,,,,,,,,3,5,true,,false -388,APOGEE,,,4044208864624592384,,,270.317626953125,-30.368005752563477,1.7311352,1.8624274,,0.80753875,,,,,,,,14.683975,13.698873,14.290009,,,,,3,5,true,,false -389,BOSS,,,,,,263.37799072265625,-32.922943115234375,-0.17990057,-2.0229042,,0.29229972,,,,,,,,,,15.897639,,,,,3,5,true,,false -390,APOGEE,,,,,,280.35158560734106,-33.549190305308855,,,,,,,,,,,,,,14.901437,,,,,3,5,true,,false -391,APOGEE,,,,,,102.32522205599136,46.655322901522396,,,,,,10.366301,10.366301,10.366301,10.366301,10.366301,,,,,,,,,3,5,true,,false -392,APOGEE,,,4050114238496889856,,,271.9659118652344,-29.80384063720703,-1.525468,-6.0036526,,0.04538482,,,,,,,,16.197578,12.906226,14.241316,,,,,3,5,true,,false -393,BOSS,,,1809053350497275136,,,304.5271301269531,16.62353515625,-5.4788117,-3.6995006,,0.33318242,,,,,,,,12.273199,10.755296,11.567069,,,,,3,5,true,,false -394,APOGEE,,,,,,41.114920133861105,-67.37261514132716,,,,,,11.319076,11.319076,11.319076,11.319076,11.319076,,,,,,,,,3,5,true,,false -395,BOSS,,,,,,49.662322717165715,28.042686756034655,,,,,,,,,,,,,,17.074808,,,,,3,5,true,,false -396,APOGEE,,,,,,93.63078165858886,-78.66112354784117,,,,,,,,,,,,,,15.051751,,,,,3,5,true,,false -397,BOSS,,,3032874633341177856,,,110.53865051269531,-12.840989112854004,-0.74049854,-0.52692276,,0.24223706,,,,,,,,15.308669,14.699602,15.081545,,,,,3,5,true,,false -398,BOSS,63050395593594802,,4237037468610852608,,,300.2938232421875,0.44119417667388916,-6.2919707,-0.69298756,,0.87065995,,,,,,,,14.954726,13.905159,14.51665,,,,,3,5,true,,false -399,BOSS,,,,,,247.80653381347656,14.629353523254395,,,,,,24.920174,23.141794,23.939354,23.853264,23.270372,,,,,,,,,3,5,true,,false -400,BOSS,,,6031635780265645312,,,250.08680725097656,-30.00025177001953,-3.3214576,-1.9272777,,0.12450659,,,,,,,,16.053246,14.49891,15.333137,,,,,3,5,true,,false -401,APOGEE,,,5341773906948329472,,,176.66346740722656,-58.17378616333008,-7.359181,1.3160751,,0.45009926,,,,,,,,13.352261,12.9249525,13.207072,,,,,3,5,true,,false -402,BOSS,,,5919154606862669568,,,263.34576416015625,-57.64451599121094,1.8092415,3.6454601,,0.87961286,,,,,,,,13.992725,13.151111,13.656467,,,,,3,5,true,,false -403,APOGEE,,,1135773422478118272,,,119.33052825927734,75.04370880126953,-11.077475,-8.933944,,1.3462143,,,,,,,,12.1649685,11.068497,11.69883,,,,,3,5,true,,false -404,BOSS,,,,,,280.6139325018585,31.106128434122198,,,,,,17.224066,17.224066,17.224066,17.224066,17.224066,,,,,,,,,3,5,true,,false -405,BOSS,,,,,,318.01631950431766,-44.411746089002115,,,,,,14.057388,14.057388,14.057388,14.057388,14.057388,,,,,,,,,3,5,true,,false -406,APOGEE,,,,,,334.1224771849238,-86.780063221158,,,,,,,,,,,,,,19.66509,,,,,3,5,true,,false -407,APOGEE,63050394857474244,,1748239980839482368,,,311.4403991699219,7.676003456115723,-0.4342905,-3.5963159,,0.30318138,,,,,,,,14.757024,13.442669,14.169228,,,,,3,5,true,,false -408,BOSS,,,,,,328.01648077080637,-38.17142951540381,,,,,,10.654339,10.654339,10.654339,10.654339,10.654339,,,,,,,,,3,5,true,,false -409,BOSS,,,5952530041868174208,,,262.58013916015625,-44.42927169799805,-0.4406635,0.26955724,,0.44494462,,,,,,,,15.605582,14.650015,15.21535,,,,,3,5,true,,false -410,APOGEE,63050395814002142,,5196699532383501568,,,135.718017578125,-80.30479431152344,-6.703588,5.624849,,0.5352583,,,,,,,,16.41963,15.329366,15.956409,,,,,3,5,true,,false -411,BOSS,,,,,,5.161852605344204,89.7474086986496,,,,,,,,,,,,,,16.24896,,,,,3,5,true,,false -412,APOGEE,,,,,,22.670887726346265,-71.3760710875475,,,,,,17.439081,17.439081,17.439081,17.439081,17.439081,,,,,,,,,3,5,true,,false -413,BOSS,,,,,,112.32024383544922,23.338708877563477,,,,,,22.908152,21.232225,20.762075,20.587696,20.449867,,,,,,,,,3,5,true,,false -414,BOSS,,,,,,126.7456419362615,-74.30921786863041,,,,,,,,,,,,,,15.827661,,,,,3,5,true,,false -415,BOSS,,,,,,243.72622377971794,85.18336367416228,,,,,,,,,,,,,,19.322287,,,,,3,5,true,,false -416,APOGEE,,,,,,130.1280975341797,-47.62461853027344,-3.6169267,3.7727883,,0.10810649,,,,,,,,,,15.474914,,,,,3,5,true,,false -417,APOGEE,,,,,,82.90458679199219,-8.463197708129883,0.25507995,-3.3431995,,0.6063415,,,,,,,,,,15.670346,,,,,3,5,true,,false -418,APOGEE,,,,,,349.64537819276956,-53.29420002167768,,,,,,10.789656,10.789656,10.789656,10.789656,10.789656,,,,,,,,,3,5,true,,false -419,APOGEE,,,5337425269747357184,,,169.02552795410156,-61.17183303833008,-5.1563363,1.9308856,,0.08651072,,,,,,,,18.50918,12.54399,14.148178,,,,,3,5,true,,false -420,BOSS,,,,,,101.31139609582473,41.37964235414148,,,,,,,,,,,,,,12.144341,,,,,3,5,true,,false -421,APOGEE,63050394807636064,,518059303144735616,,,30.631330490112305,64.33978271484375,-0.67285967,-0.108683795,,0.20724578,,,,,,,,16.389925,14.292176,15.315882,,,,,3,5,true,,false -422,BOSS,,,,,,146.8807729847386,33.72318948801188,,,,,,,,,,,,,,14.013764,,,,,3,5,true,,false -423,BOSS,,,,,,47.25010169901816,54.94170596770289,,,,,,15.370076,15.370076,15.370076,15.370076,15.370076,,,,,,,,,3,5,true,,false -424,BOSS,,,5256590171300645760,,,150.5889129638672,-60.50811767578125,-3.420351,0.17310613,,0.21370761,,,,,,,,15.034916,13.5649395,14.361195,,,,,3,5,true,,false -425,APOGEE,,,,,,242.9103822496102,-33.30078308042413,,,,,,,,,,,,,,17.498768,,,,,3,5,true,,false -426,APOGEE,,,,,,342.2573547363281,64.55258178710938,,,,,,23.562025,24.600319,23.126251,20.955397,19.71036,,,,,,,,,3,5,true,,false -427,BOSS,,,,,,203.51564025878906,-55.3315544128418,-22.983206,3.4202046,,1.0892464,,,,,,,,,,15.545646,,,,,3,5,true,,false -428,BOSS,,,,,,115.77200317382812,20.621469497680664,,,,,,23.542658,25.793892,24.333727,22.292213,20.41367,,,,,,,,,3,5,true,,false -429,APOGEE,,,,,,276.9360537933442,-84.62833649949432,,,,,,,,,,,,,,15.108389,,,,,3,5,true,,false -430,APOGEE,,,5608731275693338496,,,104.19329071044922,-29.222681045532227,-0.1214479,4.6623945,,0.673103,,,,,,,,15.600853,14.822427,15.292921,,,,,3,5,true,,false -431,BOSS,,,,,,108.37801361083984,-14.831907272338867,,,,,,20.998796,19.219343,18.472977,18.11028,17.932262,,,,,,,,,3,5,true,,false -432,BOSS,63050395852165967,,5270598258642595840,,,120.9011001586914,-69.05821228027344,-4.111269,7.313748,,0.6337655,,,,,,,,14.498236,13.797024,14.226707,,,,,3,5,true,,false -433,BOSS,,,,,,152.30859465159332,47.63121814216865,,,,,,19.303774,19.303774,19.303774,19.303774,19.303774,,,,,,,,,3,5,true,,false -434,BOSS,,,,,,230.21185302734375,52.9775390625,,,,,,23.046698,23.68321,22.461466,22.431992,21.790535,,,,,,,,,3,5,true,,false -435,APOGEE,,,,,,4.450130957976879,79.64879404627422,,,,,,11.893364,11.893364,11.893364,11.893364,11.893364,,,,,,,,,3,5,true,,false -436,APOGEE,,,,,,356.83651722032585,9.778099434474157,,,,,,16.719353,16.719353,16.719353,16.719353,16.719353,,,,,,,,,3,5,true,,false -437,APOGEE,,,,,,301.5992126464844,8.575030326843262,-3.6165621,-9.068182,,0.4690419,,,,,,,,,,15.44834,,,,,3,5,true,,false -438,APOGEE,,,,633896357,,270.25018310546875,-27.829856872558594,,,,,,,,,,,,,,,13.059,,,,3,5,true,,false -439,APOGEE,,,5528162155991606784,,,126.66361999511719,-38.927650451660156,-7.7388654,-5.475267,,2.1901166,,,,,,,,15.073684,13.92172,14.576618,,,,,3,5,true,,false -440,BOSS,63050395385605993,,4090856671839859584,,,274.4754333496094,-21.550376892089844,-1.5635316,-4.0271473,,0.2499878,,,,,,,,16.321796,14.212082,15.239828,,,,,3,5,true,,false -441,BOSS,,,,,,285.6783142089844,16.013452529907227,-2.26164,-4.3229446,,0.18660606,,,,,,,,,,14.890517,,,,,3,5,true,,false -442,APOGEE,,,3808919247410481792,,,164.5400848388672,3.554823398590088,-11.891517,-3.0602934,,0.5013773,,,,,,,,16.306662,15.515771,15.996194,,,,,3,5,true,,false -443,APOGEE,63050396156212746,,5891440179379865856,,,219.89207458496094,-57.649085998535156,-0.92216265,-2.228004,,0.4685509,,,,,,,,14.5904045,13.582278,14.17604,,,,,3,5,true,,false -444,APOGEE,,,2154545574964355968,,,280.9845275878906,58.782596588134766,-9.221912,2.1159868,,1.9292787,,,,,,,,15.629158,14.380419,15.075761,,,,,3,5,true,,false -445,BOSS,,,,,,280.8703918457031,-8.460271835327148,-0.32922095,-0.43821537,,0.32482007,,,,,,,,,,14.100223,,,,,3,5,true,,false -446,APOGEE,,,,,,28.411960312803792,65.91616177407172,,,,,,14.718841,14.718841,14.718841,14.718841,14.718841,,,,,,,,,3,5,true,,false -447,APOGEE,63050395077830753,72208102,2887744458586423040,,,87.26921844482422,-35.72962188720703,1.2497166,1.5040443,,0.11513953,,,,,,,,16.17308,15.030487,15.682566,,,,,3,5,true,,false -448,APOGEE,,,1812734760241161600,,,312.6208801269531,17.348440170288086,-4.09583,-5.1857867,,0.67810434,,,,,,,,15.949253,15.083168,15.600728,,,,,3,5,true,,false -449,APOGEE,,,4345180175273199232,,,243.08352661132812,-9.550031661987305,-3.9855082,-0.1442319,,0.24726771,,,,,,,,15.65536,14.219376,15.001842,,,,,3,5,true,,false -450,APOGEE,,,4049109280488528000,,,271.60791015625,-31.369667053222656,4.976375,-4.646424,,2.8843672,,,,,,,,12.049998,11.244013,11.729532,,,,,3,5,true,,false -451,APOGEE,,,,,,275.7818711576812,40.416418995123564,,,,,,,,,,,,,,14.990516,,,,,3,5,true,,false -452,BOSS,,,,,,8.067514419555664,59.453521728515625,-1.2530131,0.09434621,,0.24649014,,,,,,,,,,14.8595,,,,,3,5,true,,false -453,BOSS,63050395977971177,,,255312470,,114.31839752197266,-24.277572631835938,,,,,,,,,,,,,,,14.423,,,,3,5,true,,false -454,APOGEE,,,6120877744594519296,,,211.2926025390625,-36.27659225463867,6.4086876,-8.878188,,1.8799226,,,,,,,,15.432252,14.182332,14.881709,,,,,3,5,true,,false -455,BOSS,,,,,,150.4075469970703,-1.6542301177978516,,,,,,24.207088,23.079874,22.287527,22.453857,21.653755,,,,,,,,,3,5,true,,false -456,APOGEE,,,,,,82.04621887207031,-6.841846466064453,-5.8667264,-3.8152413,,2.891221,,,,,,,,,,15.413581,,,,,3,5,true,,false -457,BOSS,,,,,,222.02175903320312,-62.107810974121094,-5.4309077,-2.314992,,0.25169802,,,,,,,,,,14.918212,,,,,3,5,true,,false -458,BOSS,,,,,,125.97203063964844,7.541876792907715,3.9331033,-5.804282,,0.70235205,,,,,,,,,,14.818821,,,,,3,5,true,,false -459,BOSS,,,,,,32.61758804321289,28.15776824951172,,,,,,23.969034,25.232449,23.13529,21.867043,21.238775,,,,,,,,,3,5,true,,false -460,APOGEE,,,,,,105.30199432373047,-17.735294342041016,,,,,,24.59284,22.841167,21.417097,21.036207,20.517189,,,,,,,,,3,5,true,,false -461,APOGEE,,,,,,273.485595703125,2.6372904777526855,,,,,,19.726717,17.726105,16.885101,16.487762,16.268087,,,,,,,,,3,5,true,,false -462,APOGEE,,,4369167735121779584,,,265.8389587402344,-2.7440552711486816,-4.6846805,-1.6842042,,1.2452623,,,,,,,,15.99917,14.560691,15.363743,,,,,3,5,true,,false -463,BOSS,,,5646449644132831744,,,128.32675170898438,-27.932861328125,2.7899938,0.7734809,,0.96464086,,,,,,,,16.307806,15.219769,15.844103,,,,,3,5,true,,false -464,APOGEE,,,,135745522,,81.26732635498047,27.89073944091797,,,,,,,,,,,,,,,16.907,,,,3,5,true,,false -465,BOSS,,,3253310428186591360,,,61.66284942626953,-2.099471092224121,1.338665,-6.0964465,,1.7611884,,,,,,,,14.496506,13.482664,14.071737,,,,,3,5,true,,false -466,APOGEE,,,,,,171.03175354003906,-53.151668548583984,-9.558513,4.463718,,0.8028863,,,,,,,,,,14.16969,,,,,3,5,true,,false -467,BOSS,,,,,,56.09106633373874,9.182482839739095,,,,,,,,,,,,,,11.425054,,,,,3,5,true,,false -468,APOGEE,,,,,,130.0986496808401,59.87444782978534,,,,,,12.985482,12.985482,12.985482,12.985482,12.985482,,,,,,,,,3,5,true,,false -469,APOGEE,,,,,,331.3029479980469,48.691036224365234,-7.166265,-3.7276094,,1.1966796,,,,,,,,,,14.348793,,,,,3,5,true,,false -470,BOSS,,,,,,160.7335205078125,14.717142105102539,,,,,,24.479671,23.95208,22.359156,21.699821,21.041908,,,,,,,,,3,5,true,,false -471,BOSS,,,,,,337.6871032714844,46.60219955444336,1.2574878,-0.54577273,,0.97318727,,,,,,,,,,15.459759,,,,,3,5,true,,false -472,APOGEE,,,,,,162.74935913085938,-20.383056640625,-6.7779098,-7.3813815,,0.80060923,,,,,,,,,,14.772149,,,,,3,5,true,,false -473,BOSS,,,,,,273.293212890625,14.279129981994629,-2.0851877,-2.8273616,,0.4880365,,,,,,,,,,15.650797,,,,,3,5,true,,false -474,BOSS,,,,,,246.59141540527344,-39.7213134765625,-6.5919886,0.09717616,,0.35207003,,,,,,,,,,14.444545,,,,,3,5,true,,false -475,BOSS,,,5625128739280751232,,,132.2197723388672,-37.45576477050781,-3.1850655,2.47363,,0.20774052,,,,,,,,16.056936,15.213589,15.731041,,,,,3,5,true,,false -476,APOGEE,,,5196042677264942464,,,126.61569213867188,-82.31497192382812,-0.9025651,-8.914667,,1.9092584,,,,,,,,16.187511,14.700386,15.501316,,,,,3,5,true,,false -477,BOSS,,,6269205402233818496,,,214.58941650390625,-28.72555923461914,-13.289969,-5.135757,,0.32337138,,,,,,,,15.774589,14.771223,15.357773,,,,,3,5,true,,false -478,APOGEE,,,4095305540738015232,,,270.67266845703125,-19.15880584716797,-9.672557,16.821596,,4.130032,,,,,,,,15.036289,13.380875,14.253332,,,,,3,5,true,,false -479,BOSS,,,3474340165476099968,,,181.4940643310547,-28.56378173828125,-37.793873,-2.2311952,,5.057372,,,,,,,,11.462166,10.637719,11.132817,,,,,3,5,true,,false -480,APOGEE,,,5980812504542141184,,,239.59019470214844,-53.76139831542969,-3.7573721,-4.999202,,0.34261143,,,,,,,,16.835018,14.954118,15.91313,,,,,3,5,true,,false -481,BOSS,,,2137060728746353024,,,296.65374755859375,52.25337219238281,-2.2536843,-5.080354,,0.40150976,,,,,,,,16.081152,15.1121,15.678666,,,,,3,5,true,,false -482,APOGEE,,,,,,271.4241638183594,-31.4460506439209,-2.7251065,-4.5502086,,2.6519842,,,,,,,,,,15.108744,,,,,3,5,true,,false -483,BOSS,,,6059684493721359616,,,189.2760772705078,-59.65699768066406,-4.2305007,-0.017408386,,0.4561232,,,,,,,,16.10303,15.1405115,15.70882,,,,,3,5,true,,false -484,APOGEE,,,3255832707861178752,,,64.28480529785156,0.8881714940071106,10.862982,-18.745565,,1.952361,,,,,,,,14.984694,13.8578205,14.50046,,,,,3,5,true,,false -485,APOGEE,,,,,,247.861028832085,48.864167346575925,,,,,,,,,,,,,,19.718094,,,,,3,5,true,,false -486,APOGEE,,,,,,281.61077880859375,-24.47903060913086,-2.4868326,-7.334808,,0.634817,,,,,,,,,,15.443133,,,,,3,5,true,,false -487,APOGEE,,,,,,329.90631103515625,43.24858093261719,,,,,,24.03646,24.721462,23.329077,21.10755,19.95097,,,,,,,,,3,5,true,,false -488,BOSS,,,,,,281.07513427734375,-2.932081699371338,-5.008492,-5.1915402,,2.7878942,,,,,,,,,,15.850998,,,,,3,5,true,,false -489,BOSS,,,5355820923901831296,,,155.58447265625,-53.58008575439453,-6.377437,3.7743454,,0.120621696,,,,,,,,16.53025,14.661373,15.6086645,,,,,3,5,true,,false -490,APOGEE,63050396493083867,112362753,6697929037721663360,,,301.95281982421875,-34.915016174316406,-2.563158,-1.9183165,,-0.056342643,,,,,,,,16.423912,14.969755,15.784888,,,,,3,5,true,,false -491,APOGEE,,,,,,50.45360800623463,-50.9978487471259,,,,,,15.082906,15.082906,15.082906,15.082906,15.082906,,,,,,,,,3,5,true,,false -492,APOGEE,,,,,,180.03366088867188,14.96243667602539,,,,,,23.931654,21.009706,19.920351,19.461891,19.232035,,,,,,,,,3,5,true,,false -493,BOSS,,,,259323453,,135.89649963378906,-23.2462158203125,,,,,,,,,,,,,,,16.456,,,,3,5,true,,false -494,BOSS,,,,,,306.4676513671875,4.220664024353027,-2.9850934,-6.533568,,-0.0008219105,,,,,,,,,,15.134507,,,,,3,5,true,,false -495,BOSS,,,,,,303.6621279360973,-42.599162906791875,,,,,,,,,,,,,,15.0562935,,,,,3,5,true,,false -496,APOGEE,,,,,,235.26895141601562,25.69287872314453,,,,,,25.651394,23.73533,22.247644,21.042074,20.37564,,,,,,,,,3,5,true,,false -497,BOSS,,,5305426938743815680,,,145.4871063232422,-58.97439956665039,-4.798502,2.9471464,,0.3263461,,,,,,,,14.6178,12.953673,13.825532,,,,,3,5,true,,false -498,BOSS,,,,,,235.0601806640625,-55.37739562988281,-1.9166795,-4.8623257,,0.86623085,,,,,,,,,,14.266909,,,,,3,5,true,,false -499,BOSS,,,,,,37.12534713745117,26.966304779052734,,,,,,23.728996,23.577183,22.267443,21.542755,21.414995,,,,,,,,,3,5,true,,false -500,APOGEE,,,5875557252897213312,,,232.67327880859375,-61.23598098754883,-6.7210364,-7.841287,,0.7076458,,,,,,,,16.300095,14.947197,15.697027,,,,,3,5,true,,false -501,BOSS,,,,,,24.17914266558879,67.99466481638859,,,,,,10.452161,10.452161,10.452161,10.452161,10.452161,,,,,,,,,3,5,true,,false -502,BOSS,63050394963590317,66114451,2024865462780447360,,,292.0614318847656,26.421756744384766,-2.3887353,-4.4299817,,0.18199961,,,,,,,,13.832073,11.703137,12.729208,,,,,3,5,true,,false -503,APOGEE,,,,,,76.15621075671531,-0.47473003739506225,,,,,,,,,,,,,,19.988836,,,,,3,5,true,,false -504,BOSS,,,,,,291.058837890625,-4.825262069702148,-3.7641177,-7.9671497,,0.83418494,,,,,,,,,,15.456917,,,,,3,5,true,,false -505,APOGEE,,,,,,286.97710611738137,-41.10995623122797,,,,,,,,,,,,,,14.957476,,,,,3,5,true,,false -506,APOGEE,,,2174795280628205056,,,326.77569580078125,55.487247467041016,-1.2431009,-4.292938,,1.1545998,,,,,,,,15.659126,14.077881,14.9254465,,,,,3,5,true,,false -507,APOGEE,,,,,,200.07322692871094,-77.70184326171875,-3.062209,-2.9008565,,0.37769482,,,,,,,,,,14.907646,,,,,3,5,true,,false -508,BOSS,,,,,,283.8681335449219,-5.272192001342773,-2.6303709,-6.0103383,,0.14643216,,,,,,,,,,15.875382,,,,,3,5,true,,false -509,BOSS,,,5835384838861017984,,,242.05807495117188,-56.98258972167969,-4.6217175,-3.3055344,,0.36575574,,,,,,,,16.160326,14.267073,15.454029,,,,,3,5,true,,false -510,BOSS,63050395590279731,,4221732988304434048,,,301.721923828125,-3.696438789367676,-7.896888,-46.90195,,1.9875027,,,,,,,,14.425155,13.263394,13.925076,,,,,3,5,true,,false -511,APOGEE,,,5956993092642113792,,,267.8360595703125,-41.15690994262695,1.3202887,-7.785451,,0.18020284,,,,,,,,16.671228,15.189217,15.986541,,,,,3,5,true,,false -512,APOGEE,,,,,,276.75482177734375,-24.017772674560547,-7.1308546,-11.13923,,-0.040651146,,,,,,,,,,15.765028,,,,,3,5,true,,false -513,BOSS,,,,,,199.07489304209898,-26.453638380825318,,,,,,11.51871,11.51871,11.51871,11.51871,11.51871,,,,,,,,,3,5,true,,false -514,APOGEE,,,,,,288.964912536471,-72.17450180864972,,,,,,,,,,,,,,12.480112,,,,,3,5,true,,false -515,APOGEE,,,,,,152.98635864257812,5.360319137573242,,,,,,25.155415,24.589241,22.677738,22.031914,21.347176,,,,,,,,,3,5,true,,false -516,BOSS,,,,,,272.7123172408438,8.922306903973308,,,,,,18.609257,18.609257,18.609257,18.609257,18.609257,,,,,,,,,3,5,true,,false -517,APOGEE,,,,,,13.387800216674805,33.886024475097656,,,,,,22.697067,22.513002,21.699343,21.90101,21.035086,,,,,,,,,3,5,true,,false -518,APOGEE,63050395379142320,83944345,4089688131503378176,,,274.8431701660156,-22.787019729614258,-4.088193,-4.0948114,,0.99501383,,,,,,,,13.030375,11.725279,12.4483385,,,,,3,5,true,,false -519,APOGEE,,,,,,230.93202209472656,22.289823532104492,-8.129888,-10.917553,,0.7477393,,,,,,,,,,15.462765,,,,,3,5,true,,false -520,BOSS,,,,,,326.55348731536316,-75.02917568804503,,,,,,,,,,,,,,18.992537,,,,,3,5,true,,false -521,BOSS,,,,,,290.6926574707031,36.802520751953125,,,,,,24.729181,25.24113,24.80252,21.164886,21.453245,,,,,,,,,3,5,true,,false -522,BOSS,,,,,,68.80485537759499,89.41294264019348,,,,,,,,,,,,,,15.863707,,,,,3,5,true,,false -523,BOSS,,,,,,117.70038604736328,-16.121673583984375,-4.9214206,0.48959145,,0.87472403,,,,,,,,,,14.399064,,,,,3,5,true,,false -524,BOSS,,,1917837626495842048,,,347.3399353027344,38.97124099731445,2.977965,5.791308,,0.93771327,,,,,,,,15.869839,14.81288,15.423519,,,,,3,5,true,,false -525,APOGEE,,,,,,241.26425548181237,-87.45372456533289,,,,,,,,,,,,,,16.213453,,,,,3,5,true,,false -526,APOGEE,,,,1186933352,,326.0679626464844,53.33169937133789,,,,,,,,,,,,,,,14.615,,,,3,5,true,,false -527,BOSS,,,,,,130.5913901054565,-89.40005640729593,,,,,,19.043726,19.043726,19.043726,19.043726,19.043726,,,,,,,,,3,5,true,,false -528,BOSS,,,,,,78.6493371268513,-89.24819728578586,,,,,,19.553968,19.553968,19.553968,19.553968,19.553968,,,,,,,,,3,5,true,,false -529,APOGEE,,,,,,19.31688690185547,3.8409690856933594,,,,,,22.167538,22.199493,21.709389,21.205427,20.609585,,,,,,,,,3,5,true,,false -530,BOSS,,,,,,233.9136505126953,36.49856948852539,,,,,,24.454786,25.281012,22.717567,22.047422,21.839544,,,,,,,,,3,5,true,,false -531,APOGEE,,,,,,152.88081923437773,-16.295709412887874,,,,,,10.26141,10.26141,10.26141,10.26141,10.26141,,,,,,,,,3,5,true,,false -532,BOSS,,,,,,55.34962445088841,25.929375765929933,,,,,,17.767626,17.767626,17.767626,17.767626,17.767626,,,,,,,,,3,5,true,,false -533,BOSS,,,3031788625090542848,,,110.31365966796875,-14.74105453491211,-0.35964996,-0.75572896,,0.8322476,,,,,,,,11.233078,11.137306,11.203665,,,,,3,5,true,,false -534,APOGEE,,,,,,198.251281522114,-4.18249449341225,,,,,,15.568952,15.568952,15.568952,15.568952,15.568952,,,,,,,,,3,5,true,,false -535,APOGEE,63050395974104158,,5605926936931077632,,,107.95504760742188,-30.937541961669922,-14.97679,7.9418287,,1.7350882,,,,,,,,13.522416,12.681095,13.184684,,,,,3,5,true,,false -536,BOSS,,,,,,315.3011779785156,0.3091956377029419,,,,,,20.833963,19.322245,18.656046,18.407879,18.261242,,,,,,,,,3,5,true,,false -537,BOSS,,,6631449231812781696,,,278.64935302734375,-61.297645568847656,-2.5523403,-15.397907,,0.61966777,,,,,,,,15.344467,14.2870865,14.898588,,,,,3,5,true,,false -538,APOGEE,,,5852945487048425600,,,213.89830017089844,-64.08432006835938,-5.0950212,-2.4251885,,0.3292515,,,,,,,,14.779611,13.683362,14.320599,,,,,3,5,true,,false -539,BOSS,,,5863684176542180096,,,197.74075317382812,-60.579776763916016,-6.8498607,-4.3040404,,0.8435856,,,,,,,,16.728683,14.82622,15.948668,,,,,3,5,true,,false -540,APOGEE,,,,,,174.40718012529496,-86.50359566236284,,,,,,10.426009,10.426009,10.426009,10.426009,10.426009,,,,,,,,,3,5,true,,false -541,BOSS,,,,,,4.785295009613037,-13.597515106201172,,,,,,24.677778,23.401913,22.13766,21.771025,21.51497,,,,,,,,,3,5,true,,false -542,BOSS,,,5770235102721962368,,,215.6446533203125,-82.83051300048828,-1.4193362,-1.4139295,,0.80704606,,,,,,,,14.0590515,13.297694,13.761603,,,,,3,5,true,,false -543,BOSS,,,,,,269.3148193359375,-17.253149032592773,-6.220263,-16.147335,,0.6435918,,,,,,,,,,15.706298,,,,,3,5,true,,false -544,APOGEE,63050394949732153,65890884,2013218129912627328,,,344.5714111328125,58.358428955078125,-3.974082,-2.868381,,0.21979427,,,,,,,,13.222598,11.732962,12.553071,,,,,3,5,true,,false -545,BOSS,,,,,,319.20294189453125,0.635414719581604,,,,,,23.170242,22.04446,20.68755,19.973001,19.46918,,,,,,,,,3,5,true,,false -546,APOGEE,,,,,,267.75921630859375,-8.483067512512207,7.0046334,-0.5546064,,0.5190887,,,,,,,,,,15.651495,,,,,3,5,true,,false -547,APOGEE,,,4302029532226690048,,,296.6654968261719,10.260411262512207,-3.5828784,-6.208854,,0.39463502,,,,,,,,15.263587,13.743317,14.556156,,,,,3,5,true,,false -548,BOSS,,,,,,309.478483155577,87.62158296567299,,,,,,13.764205,13.764205,13.764205,13.764205,13.764205,,,,,,,,,3,5,true,,false -549,APOGEE,,,,,,314.4443359375,24.823572158813477,,,,,,22.37607,20.27526,19.38519,19.023441,18.818027,,,,,,,,,3,5,true,,false -550,BOSS,,,6029976686029878144,,,256.2670593261719,-28.66666603088379,-0.8356436,0.5651767,,0.2966127,,,,,,,,15.110459,13.545997,14.386333,,,,,3,5,true,,false -551,BOSS,,,,,,233.1489715576172,31.23639678955078,,,,,,25.173529,25.13264,22.18733,24.624088,23.507086,,,,,,,,,3,5,true,,false -552,BOSS,,,,,,331.5333846418616,-24.41556241259771,,,,,,,,,,,,,,19.588415,,,,,3,5,true,,false -553,APOGEE,,,,,,121.72666796925276,-27.865323846080706,,,,,,,,,,,,,,10.290678,,,,,3,5,true,,false -554,APOGEE,,,,,,125.25306701660156,-60.53755187988281,-4.2501116,6.4274645,,0.073270604,,,,,,,,,,15.734622,,,,,3,5,true,,false -555,APOGEE,,,5933867653083600384,,,244.86862182617188,-52.8018684387207,-3.1339045,-4.289576,,0.27909666,,,,,,,,14.035689,12.774894,13.484082,,,,,3,5,true,,false -556,APOGEE,,,,,,251.01174324737386,-85.21149374181826,,,,,,17.286907,17.286907,17.286907,17.286907,17.286907,,,,,,,,,3,5,true,,false -557,BOSS,63050394811558558,55493781,530081603797876608,,,8.784536361694336,69.58279418945312,0.8685957,-0.90123606,,0.18967819,,,,,,,,15.108059,12.717012,13.820855,,,,,3,5,true,,false -558,BOSS,,,4062970411291967232,,,272.0029296875,-27.677349090576172,-8.12038,-6.0993276,,0.13031842,,,,,,,,16.481976,13.5139675,14.785666,,,,,3,5,true,,false -559,APOGEE,,,,770376751,,143.2060546875,-57.962467193603516,,,,,,,,,,,,,,,13.825,,,,3,5,true,,false -560,BOSS,,,,,,168.95203917305992,38.43449450849809,,,,,,,,,,,,,,10.911693,,,,,3,5,true,,false -561,APOGEE,,,4107057597722760832,,,280.7860412597656,-10.81229305267334,-3.333848,-7.771619,,0.19315441,,,,,,,,17.139044,14.80908,15.903949,,,,,3,5,true,,false -562,BOSS,,,3455520924456866944,,,85.77598571777344,35.4852180480957,0.85453194,-2.6924748,,0.5877023,,,,,,,,13.328345,12.51157,13.010914,,,,,3,5,true,,false -563,BOSS,,,5309794886120370176,,,139.69664001464844,-56.57923889160156,-12.860635,12.314681,,0.8513798,,,,,,,,12.363344,10.786598,11.623018,,,,,3,5,true,,false -564,BOSS,,,,,,103.51087951660156,4.877716064453125,1.3137242,-3.9762192,,0.5659215,,,,,,,,,,15.381278,,,,,3,5,true,,false -565,APOGEE,,,,,,227.64533978846762,74.82086658717174,,,,,,,,,,,,,,16.562538,,,,,3,5,true,,false -566,APOGEE,,,,,,220.60969320562373,-40.0570724086592,,,,,,,,,,,,,,15.753344,,,,,3,5,true,,false -567,BOSS,63050396571544420,,236599788313754112,,,54.041419982910156,39.77754211425781,8.9519415,0.87800485,,0.662342,,,,,,,,15.848696,14.925826,15.474125,,,,,3,5,true,,false -568,APOGEE,,,,,,112.24533081054688,15.194509506225586,,,,,,22.686354,21.004202,19.556688,18.913458,18.494501,,,,,,,,,3,5,true,,false -569,BOSS,,,2383257870579385216,,,346.8323059082031,-25.05037498474121,14.200295,2.310131,,1.0971197,,,,,,,,16.3503,15.196056,15.866995,,,,,3,5,true,,false -570,APOGEE,,,,,,247.85317993164062,39.047157287597656,19.758434,-55.5428,,6.6597204,,,,,,,,,,11.842003,,,,,3,5,true,,false -571,BOSS,,,2075246253766199680,,,299.843017578125,41.54568862915039,2.0759406,-4.51753,,1.4243963,,,,,,,,12.09932,11.361675,11.813303,,,,,3,5,true,,false -572,BOSS,,,,,,245.12057495117188,-3.0917158126831055,,,,,,21.497875,19.840092,19.13041,18.803808,18.705406,,,,,,,,,3,5,true,,false -573,APOGEE,,,,,,36.93370516368004,-8.25379098654605,,,,,,,,,,,,,,14.631443,,,,,3,5,true,,false -574,APOGEE,,,6215548169650169344,,,220.62399291992188,-34.012020111083984,-1.1564118,0.4245386,,1.2166282,,,,,,,,15.860356,14.822079,15.42686,,,,,3,5,true,,false -575,BOSS,,,,,,33.664634704589844,25.290821075439453,-13.622049,-14.674427,,1.2587081,,,,,,,,,,14.355535,,,,,3,5,true,,false -576,BOSS,,,,124420649,,40.56668472290039,-3.540287971496582,,,,,,,,,,,,,,,15.044,,,,3,5,true,,false -577,BOSS,63050395519921871,85336433,4144811562840957696,,,267.3031311035156,-16.994586944580078,2.2234828,-1.99253,,0.16016898,,,,,,,,15.809598,11.007014,12.51068,,,,,3,5,true,,false -578,APOGEE,,,,,,321.22935698974266,83.43601602214935,,,,,,13.373706,13.373706,13.373706,13.373706,13.373706,,,,,,,,,3,5,true,,false -579,APOGEE,,,,,,273.5729064941406,-10.87293815612793,-2.4129505,-10.491037,,0.2066054,,,,,,,,,,14.710543,,,,,3,5,true,,false -580,APOGEE,,,,,,164.8592987060547,50.72809982299805,,,,,,24.738962,23.453281,22.202969,21.55306,22.139952,,,,,,,,,3,5,true,,false -581,BOSS,,,4036192183521383808,,,270.8544006347656,-38.18399429321289,-0.3278942,0.9190745,,0.2732692,,,,,,,,13.150856,11.502315,12.366805,,,,,3,5,true,,false -582,BOSS,,,,,,234.1052703857422,35.12257766723633,,,,,,24.34594,24.196688,22.7647,22.807348,21.44058,,,,,,,,,3,5,true,,false -583,BOSS,,,,,,286.48321533203125,12.61663818359375,-12.691244,14.02439,,1.0253853,,,,,,,,,,15.725237,,,,,3,5,true,,false -584,BOSS,,,,,,243.77059936523438,-51.70484161376953,-3.078706,-4.977445,,1.3642068,,,,,,,,,,12.276511,,,,,3,5,true,,false -585,APOGEE,,,,19163831,,255.1195068359375,-34.6591682434082,,,,,,,,,,,,,,,14.858,,,,3,5,true,,false -586,APOGEE,,,4304058539179354752,,,298.6429748535156,11.783635139465332,-8.157393,-11.150521,,0.45382655,,,,,,,,16.396643,15.309932,15.956625,,,,,3,5,true,,false -587,BOSS,,,,,,227.064453125,49.10395050048828,,,,,,23.638107,23.931614,23.060629,22.392725,22.023705,,,,,,,,,3,5,true,,false -588,BOSS,,,,,,277.0101623535156,15.756054878234863,,,,,,22.579525,20.902927,19.831696,19.278772,19.013058,,,,,,,,,3,5,true,,false -589,APOGEE,,,,,,299.2218933105469,9.587837219238281,1.6732532,-4.823099,,1.3187172,,,,,,,,,,14.314518,,,,,3,5,true,,false -590,BOSS,,,,,,199.70242309570312,-21.506412506103516,,,,,,22.470417,23.785404,23.345318,22.064705,22.21405,,,,,,,,,3,5,true,,false -591,BOSS,,,,,,106.49585723876953,38.6652946472168,,,,,,24.655643,25.694834,23.794178,23.430641,21.030912,,,,,,,,,3,5,true,,false -592,BOSS,,,,,,191.12155151367188,-58.74043273925781,-14.054205,-1.8982073,,0.5953409,,,,,,,,,,15.946905,,,,,3,5,true,,false -593,BOSS,,,,,,230.97974873799265,81.9189032751407,,,,,,,,,,,,,,16.022886,,,,,3,5,true,,false -594,BOSS,,,,,,333.0979438193703,43.34826432743651,,,,,,16.536528,16.536528,16.536528,16.536528,16.536528,,,,,,,,,3,5,true,,false -595,APOGEE,,,,,,36.92597198486328,-9.481547355651855,,,,,,21.51008,25.525845,24.066328,24.874651,23.628117,,,,,,,,,3,5,true,,false -596,APOGEE,,,,,,136.3432159423828,11.85999584197998,-3.3056214,-20.785198,,2.4267426,,,,,,,,,,15.015554,,,,,3,5,true,,false -597,APOGEE,,,6072269606866109568,,,180.5696563720703,-57.89603805541992,-8.258524,-2.108727,,0.6256141,,,,,,,,16.425415,15.313402,15.961051,,,,,3,5,true,,false -598,BOSS,,,,,,172.10556796678347,52.213691080823196,,,,,,,,,,,,,,17.292759,,,,,3,5,true,,false -599,BOSS,,,,,,308.5118575971303,-88.15452267850378,,,,,,,,,,,,,,11.506551,,,,,3,5,true,,false -600,APOGEE,,,3600777130722863872,,,180.72576904296875,-3.9016637802124023,0.87073725,-6.369217,,0.056507546,,,,,,,,16.155737,15.129116,15.734906,,,,,3,5,true,,false -601,BOSS,,,4588828378578064512,,,279.00982666015625,31.381546020507812,-3.7257905,-0.43531606,,0.72062147,,,,,,,,14.855146,13.886403,14.455603,,,,,3,5,true,,false -602,APOGEE,,,,,,228.26356506347656,12.836915016174316,,,,,,25.191187,24.143372,23.14978,22.287895,22.215757,,,,,,,,,3,5,true,,false -603,BOSS,,,,,,307.9385681152344,40.515167236328125,,,,,,25.457565,24.434338,23.711103,21.556734,20.596796,,,,,,,,,3,5,true,,false -604,BOSS,,,1134127006894244864,,,156.71664428710938,81.37867736816406,-22.739155,-15.370893,,1.4457008,,,,,,,,16.510887,14.83679,15.711702,,,,,3,5,true,,false -605,APOGEE,,,4051104314375722624,,,275.806640625,-28.998394012451172,-25.137615,-38.71895,,3.1232026,,,,,,,,15.635555,13.988061,14.903377,,,,,3,5,true,,false -606,BOSS,,,6397403922546834560,,,334.4548645019531,-68.83404541015625,7.30069,-3.5894535,,0.65371484,,,,,,,,15.498588,14.68272,15.171135,,,,,3,5,true,,false -607,APOGEE,,,,,,207.62131716682893,83.04333570364008,,,,,,13.409409,13.409409,13.409409,13.409409,13.409409,,,,,,,,,3,5,true,,false -608,BOSS,,,,,,217.67165868597732,-4.757929229615428,,,,,,,,,,,,,,16.463583,,,,,3,5,true,,false -609,APOGEE,,,5970284096599739264,,,255.2919158935547,-38.644100189208984,-4.2219257,-0.86019576,,0.6511395,,,,,,,,14.497218,13.260371,13.964248,,,,,3,5,true,,false -610,APOGEE,,,,,,279.1627197265625,8.361335754394531,0.20971021,-0.09347485,,0.28397104,,,,,,,,,,13.373921,,,,,3,5,true,,false -611,BOSS,,,,,,277.77508544921875,-39.73245620727539,1.2394111,-1.7869297,,0.44159433,,,,,,,,,,15.682914,,,,,3,5,true,,false -612,APOGEE,,,,,,315.05214221173446,-62.659262358063074,,,,,,,,,,,,,,15.141437,,,,,3,5,true,,false -613,BOSS,,,,,,22.481986231797944,-8.800868508470273,,,,,,13.176018,13.176018,13.176018,13.176018,13.176018,,,,,,,,,3,5,true,,false -614,APOGEE,63050395369812012,,4084132372272683904,,,287.9451599121094,-19.08610725402832,-1.6798651,-3.0819092,,0.075133964,,,,,,,,16.37009,15.227784,15.883465,,,,,3,5,true,,false -615,APOGEE,,,,,,62.548475874922,-55.45812367872183,,,,,,14.650881,14.650881,14.650881,14.650881,14.650881,,,,,,,,,3,5,true,,false -616,APOGEE,,,2173631069614006144,,,327.6081237792969,53.543739318847656,5.3605022,1.1588656,,0.30402076,,,,,,,,16.50248,14.142976,15.24269,,,,,3,5,true,,false -617,BOSS,,,5992688810695153152,,,246.26866149902344,-42.50436782836914,-2.7679923,-3.4089236,,0.19945455,,,,,,,,16.90359,14.514334,15.623055,,,,,3,5,true,,false -618,BOSS,,,,,,148.62391969873076,-15.249158915556237,,,,,,,,,,,,,,15.668767,,,,,3,5,true,,false -619,APOGEE,,,,,,240.5555228370686,-64.4499948288964,,,,,,15.338513,15.338513,15.338513,15.338513,15.338513,,,,,,,,,3,5,true,,false -620,APOGEE,,,,,,207.4317169189453,-63.18018341064453,2.5988085,-4.0306993,,0.5574236,,,,,,,,,,15.711347,,,,,3,5,true,,false -621,BOSS,,,,,,351.3095397949219,-4.9500017166137695,,,,,,22.788647,21.134224,20.1476,19.721521,19.440414,,,,,,,,,3,5,true,,false -622,APOGEE,,,,,,237.81698608398438,-47.19733428955078,-2.2073853,-3.5437603,,0.17941312,,,,,,,,,,15.982281,,,,,3,5,true,,false -623,APOGEE,,,,,,313.03530178726766,-84.54701263288916,,,,,,16.22595,16.22595,16.22595,16.22595,16.22595,,,,,,,,,3,5,true,,false -624,BOSS,,,,,,237.94847106933594,59.448421478271484,,,,,,22.91465,22.957521,22.674917,22.394033,21.743563,,,,,,,,,3,5,true,,false -625,APOGEE,,,,,,109.1257985355177,53.63878926585443,,,,,,18.140932,18.140932,18.140932,18.140932,18.140932,,,,,,,,,3,5,true,,false -626,APOGEE,,,,,,47.022446822343824,74.93967657730437,,,,,,12.593231,12.593231,12.593231,12.593231,12.593231,,,,,,,,,3,5,true,,false -627,BOSS,,,6717068820745728896,,,283.67120361328125,-39.48267364501953,-11.293724,-15.585056,,0.31332073,,,,,,,,15.808131,14.679681,15.325939,,,,,3,5,true,,false -628,APOGEE,,,5239910820428681600,,,160.40521240234375,-63.925193786621094,-18.086557,10.412901,,0.65690804,,,,,,,,15.47039,14.305795,14.979796,,,,,3,5,true,,false -629,BOSS,,,,,,180.7693634033203,1.5889219045639038,,,,,,22.264975,20.518604,19.548244,19.115389,18.742502,,,,,,,,,3,5,true,,false -630,BOSS,,,,,,292.8914794921875,-34.98809051513672,-5.2540927,-6.1297646,,0.30386332,,,,,,,,,,13.269703,,,,,3,5,true,,false -631,APOGEE,,,1828067621730994176,,,298.7998352050781,23.10990333557129,-4.361742,-4.4423203,,0.3628621,,,,,,,,15.180392,13.0500555,14.08248,,,,,3,5,true,,false -632,BOSS,,,1437513429279909888,,,257.1270751953125,60.06772232055664,-1.443397,-28.834328,,2.7050111,,,,,,,,14.673526,13.450518,14.134826,,,,,3,5,true,,false -633,APOGEE,,,1624140581608443136,,,249.01657104492188,59.466522216796875,-3.55073,15.570146,,6.0966334,,,,,,,,14.151682,12.556417,13.398576,,,,,3,5,true,,false -634,BOSS,63050396580706445,,280788061119781248,,,76.26654052734375,57.86122131347656,-1.7969649,-5.7395463,,1.4884235,,,,,,,,15.631335,14.377442,15.083575,,,,,3,5,true,,false -635,BOSS,,,,,,222.75927734375,-59.186126708984375,-4.2488303,-2.3025928,,0.38976878,,,,,,,,,,12.312154,,,,,3,5,true,,false -636,APOGEE,,,,,,322.54848873268315,-57.47709268327706,,,,,,,,,,,,,,15.082321,,,,,3,5,true,,false -637,BOSS,,,,,,271.96917724609375,-33.23094177246094,0.75122035,-3.8097816,,0.5921568,,,,,,,,,,14.068474,,,,,3,5,true,,false -638,APOGEE,,,,,,95.54370880126953,4.876046180725098,-9.378868,-29.56437,,3.2606373,,,,,,,,,,12.708214,,,,,3,5,true,,false -639,APOGEE,,,3818265272340159488,,,166.7407684326172,7.130058288574219,-1.3629947,-6.9724464,,0.22826472,,,,,,,,15.51967,14.326375,14.997889,,,,,3,5,true,,false -640,BOSS,,,4240706779431051136,,,299.4292297363281,1.31708824634552,-14.469922,-3.223084,,2.9701314,,,,,,,,16.710316,14.714756,15.709409,,,,,3,5,true,,false -641,APOGEE,,,1109255194880907904,,,106.37728881835938,69.6710205078125,0.51022106,-3.6206582,,0.54947853,,,,,,,,14.378126,13.609616,14.075171,,,,,3,5,true,,false -642,BOSS,,,,,,110.0755526273399,44.07568803915038,,,,,,,,,,,,,,12.781383,,,,,3,5,true,,false -643,APOGEE,,,,,,246.60586547851562,77.92977905273438,,,,,,21.171444,25.668007,25.896032,25.68073,23.355572,,,,,,,,,3,5,true,,false -644,BOSS,,,,,,53.16736448742243,-0.3598601539545001,,,,,,,,,,,,,,13.013135,,,,,3,5,true,,false -645,APOGEE,,,,,,196.5104522705078,-54.849327087402344,-7.368508,-0.9708531,,0.45204172,,,,,,,,,,15.622104,,,,,3,5,true,,false -646,APOGEE,63050395395142672,84081936,4093215369178648576,,,278.3622741699219,-19.27349090576172,-4.96884,-6.458835,,0.10351104,,,,,,,,15.780024,13.405675,14.505188,,,,,3,5,true,,false -647,APOGEE,,,4531169542151985920,,,281.2217712402344,21.701467514038086,-1.0566115,-11.775431,,-2.5769944,,,,,,,,15.853795,14.943877,15.9167385,,,,,3,5,true,,false -648,BOSS,63050396348720310,,6008871732037501824,,,237.3400421142578,-37.95759963989258,-4.0620246,-1.6649269,,0.28386253,,,,,,,,15.759646,14.176156,15.023356,,,,,3,5,true,,false -649,APOGEE,,,,,,264.8172607421875,-43.667694091796875,2.2217822,-3.4967396,,0.36767536,,,,,,,,,,12.472592,,,,,3,5,true,,false -650,BOSS,,,,,,163.0165557861328,33.80036926269531,,,,,,22.978676,21.43995,20.62619,20.35532,20.020502,,,,,,,,,3,5,true,,false -651,BOSS,,,,,,97.71913146972656,-11.463735580444336,-2.1852167,0.2869014,,0.38194057,,,,,,,,,,14.568674,,,,,3,5,true,,false -652,BOSS,63050396311293802,,,186118489,,260.1236572265625,-33.236541748046875,,,,,,,,,,,,,,,13.381,,,,3,5,true,,false -653,APOGEE,,,,1130285009,,269.9403076171875,4.37737512588501,,,,,,,,,,,,,,,13.256,,,,3,5,true,,false -654,APOGEE,,,,,,245.4011688232422,-49.870399475097656,-1.9234682,-5.8600526,,1.1432875,,,,,,,,,,15.273315,,,,,3,5,true,,false -655,APOGEE,,,,,,47.969597179348916,59.55456899311369,,,,,,,,,,,,,,14.545984,,,,,3,5,true,,false -656,BOSS,,,,,,153.13397216796875,23.541107177734375,,,,,,24.72344,23.822668,23.088736,22.425251,22.091562,,,,,,,,,3,5,true,,false -657,APOGEE,,,4323322502614346240,,,292.5484313964844,18.4671630859375,1.8744264,-4.1307507,,1.2584507,,,,,,,,15.888413,14.439618,15.231233,,,,,3,5,true,,false -658,BOSS,,,,,,288.3132019042969,49.30097198486328,-0.24305704,-4.982285,,0.40894723,,,,,,,,,,15.271489,,,,,3,5,true,,false -659,BOSS,,,1929844052953481856,,,346.4954833984375,39.57917404174805,-0.14140293,-3.681939,,0.34070587,,,,,,,,16.119486,15.188096,15.736088,,,,,3,5,true,,false -660,APOGEE,,,,,,106.47402954101562,-30.838171005249023,-1.729902,6.425692,,0.3843502,,,,,,,,,,12.659388,,,,,3,5,true,,false -661,BOSS,,,1766165838597968512,,,328.8971252441406,12.091068267822266,-0.65562296,-6.398968,,0.44918057,,,,,,,,15.6873665,14.757081,15.307294,,,,,3,5,true,,false -662,APOGEE,,,,,,73.14367958262281,-40.140455287935985,,,,,,16.987528,16.987528,16.987528,16.987528,16.987528,,,,,,,,,3,5,true,,false -663,BOSS,,,,,,84.07003021240234,19.79519271850586,,,,,,21.463827,19.828781,18.931585,18.528864,18.322441,,,,,,,,,3,5,true,,false -664,APOGEE,,,,,,50.91654586791992,-6.819466590881348,,,,,,23.06522,23.622742,22.36015,21.311632,20.6874,,,,,,,,,3,5,true,,false -665,APOGEE,,,,,,165.99316070380303,-6.453546362305687,,,,,,,,,,,,,,12.16694,,,,,3,5,true,,false -666,BOSS,,,,,,318.1880187988281,53.715415954589844,,,,,,25.535301,24.789057,22.254484,20.68076,19.682112,,,,,,,,,3,5,true,,false -667,APOGEE,,,,,,255.06405639648438,-31.321584701538086,-0.24710181,-1.2864136,,0.15464613,,,,,,,,,,14.468799,,,,,3,5,true,,false -668,APOGEE,,,5882457890962812544,,,236.52565002441406,-57.54207229614258,-6.6589403,-7.1031914,,0.74118584,,,,,,,,16.555948,15.239271,15.972748,,,,,3,5,true,,false -669,BOSS,,,,,,122.61570773706015,-28.940826153233765,,,,,,,,,,,,,,17.066856,,,,,3,5,true,,false -670,BOSS,,,3132997124234483584,,,103.61636352539062,6.994454860687256,-0.059630644,-1.2991401,,0.345966,,,,,,,,15.865173,15.143417,15.593595,,,,,3,5,true,,false -671,BOSS,,,,,,126.40337938693514,-72.3830531896794,,,,,,,,,,,,,,16.297142,,,,,3,5,true,,false -672,BOSS,,,,,,261.15211040498104,-60.27667737994839,,,,,,11.887927,11.887927,11.887927,11.887927,11.887927,,,,,,,,,3,5,true,,false -673,BOSS,63050394814635134,55602755,545050904852218752,,,38.80365753173828,70.46918487548828,-1.1128917,0.74980956,,0.6162754,,,,,,,,13.592728,11.697813,12.6525755,,,,,3,5,true,,false -674,APOGEE,,,5249032059625742080,,,145.55194091796875,-65.58695983886719,-1.0743951,4.856339,,0.27172175,,,,,,,,14.70392,13.293571,14.116903,,,,,3,5,true,,false -675,APOGEE,,,,,,275.9591064453125,49.99051284790039,-3.2505305,8.570398,,1.2883335,,,,,,,,,,12.525419,,,,,3,5,true,,false -676,BOSS,,,,,,226.7289581298828,-71.52174377441406,-5.265412,-4.791294,,0.02509018,,,,,,,,,,15.974443,,,,,3,5,true,,false -677,APOGEE,,,,,,11.762564659118652,34.70375442504883,,,,,,22.03019,21.416128,20.94479,20.539503,20.456787,,,,,,,,,3,5,true,,false -678,APOGEE,,,,,,240.90713899274846,-56.66832304184991,,,,,,16.380571,16.380571,16.380571,16.380571,16.380571,,,,,,,,,3,5,true,,false -679,APOGEE,,,,,,288.5784714648988,-78.72000493827622,,,,,,16.639513,16.639513,16.639513,16.639513,16.639513,,,,,,,,,3,5,true,,false -680,BOSS,63050396284544512,105570651,5964965105999673984,,,253.16136169433594,-42.75876235961914,-0.72600865,-2.210445,,0.55161256,,,,,,,,16.241434,14.476761,15.389992,,,,,3,5,true,,false -681,BOSS,,,1830889346490600960,,,307.6405944824219,23.03294563293457,-4.6288095,-6.200954,,0.36149803,,,,,,,,15.521128,14.753385,15.218862,,,,,3,5,true,,false -682,APOGEE,,,,,,268.88909912109375,38.70267868041992,-0.090308264,-2.4719143,,0.092193425,,,,,,,,,,14.748493,,,,,3,5,true,,false -683,APOGEE,,,,,,281.0074462890625,36.27869415283203,-3.0290263,-3.2106783,,0.15975347,,,,,,,,,,15.70615,,,,,3,5,true,,false -684,BOSS,,,,,,143.25886563099223,23.64804358821003,,,,,,18.342402,18.342402,18.342402,18.342402,18.342402,,,,,,,,,3,5,true,,false -685,BOSS,,,,,,126.008056640625,56.96689987182617,,,,,,23.543585,23.344305,21.947147,21.15077,20.555872,,,,,,,,,3,5,true,,false -686,APOGEE,,,5373515982979209344,,,172.9967803955078,-48.67851257324219,-4.2144256,3.8864522,,0.5731298,,,,,,,,15.40565,14.378716,14.978219,,,,,3,5,true,,false -687,APOGEE,,,6716103174659184512,,,282.1134338378906,-42.47077560424805,7.0793095,-6.7159753,,0.7386296,,,,,,,,11.950217,10.31549,11.172389,,,,,3,5,true,,false -688,BOSS,63050395947352095,,,336987893,,122.17324829101562,-44.22309494018555,,,,,,,,,,,,,,,14.591,,,,3,5,true,,false -689,BOSS,,,3121901260906583936,,,93.93719482421875,0.07281547784805298,-2.132785,-5.7796674,,0.8108896,,,,,,,,16.400904,15.308849,15.938829,,,,,3,5,true,,false -690,APOGEE,,,,,,137.59443235027825,-23.89913837112151,,,,,,,,,,,,,,18.569742,,,,,3,5,true,,false -691,BOSS,,,,,,65.65604456280583,-62.26898482504789,,,,,,,,,,,,,,10.814568,,,,,3,5,true,,false -692,APOGEE,,,,,,179.89828491210938,18.013010025024414,,,,,,22.589579,22.722742,22.34042,23.097742,22.631636,,,,,,,,,3,5,true,,false -693,BOSS,63050395172847232,,3931733497937010304,,,188.03741455078125,12.633756637573242,-16.343481,-19.970377,,0.34295577,,,,,,,,15.611786,14.874605,15.328423,,,,,3,5,true,,false -694,BOSS,,,,,,167.84895602297226,-15.73880850353153,,,,,,16.320738,16.320738,16.320738,16.320738,16.320738,,,,,,,,,3,5,true,,false -695,APOGEE,,,,,,138.51329040527344,13.971419334411621,,,,,,25.634636,25.051765,25.311922,22.630032,24.02609,,,,,,,,,3,5,true,,false -696,BOSS,,,,,,299.9789123535156,-0.04615604132413864,,,,,,20.656265,19.206242,18.452616,18.158573,18.06457,,,,,,,,,3,5,true,,false -697,BOSS,,,,,,25.855222702026367,61.590553283691406,1.3871891,0.07404502,,0.34814754,,,,,,,,,,14.339257,,,,,3,5,true,,false -698,BOSS,,,,,,168.72567001446882,-0.6194656409570882,,,,,,,,,,,,,,18.394283,,,,,3,5,true,,false -699,BOSS,,,,,,268.70269775390625,-30.150503158569336,-6.437551,-9.275833,,-0.10276061,,,,,,,,,,15.5457735,,,,,3,5,true,,false -700,APOGEE,,,,,,34.926255052624015,-36.19858422233302,,,,,,,,,,,,,,16.466764,,,,,3,5,true,,false -701,BOSS,,,,,,25.606897354125977,49.938133239746094,,,,,,23.928705,22.335455,21.270618,20.89132,20.500801,,,,,,,,,3,5,true,,false -702,BOSS,63050395066828946,70316989,2539074546729616384,,,16.27984046936035,2.2418770790100098,-1.5687217,-47.84853,,7.1026936,,,,,,,,16.288002,13.908887,15.021954,,,,,3,5,true,,false -703,BOSS,,,,,,193.01904296875,19.056764602661133,,,,,,22.776123,23.021446,22.67031,22.255188,21.997519,,,,,,,,,3,5,true,,false -704,BOSS,,,,,,329.76963715425313,40.133929462273755,,,,,,,,,,,,,,13.3590145,,,,,3,5,true,,false -705,BOSS,,,,,,306.0335792212571,28.636935964376093,,,,,,11.069528,11.069528,11.069528,11.069528,11.069528,,,,,,,,,3,5,true,,false -706,BOSS,,,,,,332.153829588575,-44.85023130393332,,,,,,17.29722,17.29722,17.29722,17.29722,17.29722,,,,,,,,,3,5,true,,false -707,APOGEE,,,,,,212.5724078595871,38.80531474751638,,,,,,,,,,,,,,18.252222,,,,,3,5,true,,false -708,BOSS,,,,,,254.51085625541538,17.986795420590113,,,,,,11.880822,11.880822,11.880822,11.880822,11.880822,,,,,,,,,3,5,true,,false -709,APOGEE,63050396004544868,,5759658586838123904,,,138.12020874023438,-3.8541159629821777,-0.5739141,6.2576075,,1.0293179,,,,,,,,16.40944,15.327415,15.949825,,,,,3,5,true,,false -710,BOSS,,,,,,273.72955322265625,13.53879451751709,,,,,,23.495577,24.596123,23.687021,21.852497,20.699657,,,,,,,,,3,5,true,,false -711,APOGEE,,,,,,71.64082336425781,25.99337387084961,,,,,,23.749523,23.775595,22.014788,21.51998,20.929379,,,,,,,,,3,5,true,,false -712,APOGEE,,,,,,186.08087660510873,-36.65259809825417,,,,,,16.571892,16.571892,16.571892,16.571892,16.571892,,,,,,,,,3,5,true,,false -713,APOGEE,,,6025706320208414464,,,247.59063720703125,-30.79616355895996,4.3588715,-2.420482,,0.69343734,,,,,,,,15.471722,14.216216,14.925211,,,,,3,5,true,,false -714,BOSS,,,3241144430807626624,,,80.60289001464844,7.36791467666626,-0.8969869,-7.7346926,,1.382505,,,,,,,,16.009401,14.566895,15.355196,,,,,3,5,true,,false -715,BOSS,,,,,,271.39300082543144,46.55634094368199,,,,,,,,,,,,,,10.244609,,,,,3,5,true,,false -716,BOSS,,,,,,23.66095733642578,15.261680603027344,,,,,,23.644846,22.435852,20.862713,19.294363,18.41552,,,,,,,,,3,5,true,,false -717,APOGEE,,,,,,322.2274169921875,-0.590832531452179,,,,,,23.805775,24.429989,22.949827,21.126722,20.545622,,,,,,,,,3,5,true,,false -718,APOGEE,,,,,,304.1852359948902,34.06479406598626,,,,,,13.64525,13.64525,13.64525,13.64525,13.64525,,,,,,,,,3,5,true,,false -719,BOSS,,,,,,251.86422729492188,-51.39594650268555,-5.093829,-8.169218,,0.2131737,,,,,,,,,,15.3645,,,,,3,5,true,,false -720,BOSS,,,2835488484847979392,,,343.54437255859375,21.41486167907715,-5.741491,-7.258939,,0.47317186,,,,,,,,16.050394,15.072262,15.64481,,,,,3,5,true,,false -721,APOGEE,,,,,,116.81072998046875,11.095338821411133,,,,,,23.387857,21.081778,19.675722,18.33133,17.594755,,,,,,,,,3,5,true,,false -722,BOSS,,,,,,246.3214111328125,11.24138069152832,,,,,,23.751179,23.2066,21.43003,20.974337,20.259226,,,,,,,,,3,5,true,,false -723,BOSS,,,2010512609746444800,,,349.7590026855469,58.8014030456543,4.0483913,5.9489098,,1.707869,,,,,,,,13.616804,12.218917,12.989533,,,,,3,5,true,,false -724,APOGEE,63050395915842861,,,364298133,,158.62567138671875,-46.50204086303711,,,,,,,,,,,,,,,13.845,,,,3,5,true,,false -725,APOGEE,,,,,,50.450740814208984,-10.055072784423828,7.3589134,3.1742864,,1.4537246,,,,,,,,,,13.9649515,,,,,3,5,true,,false -726,APOGEE,63050396257446878,,,509542949,,265.712158203125,-42.94263458251953,,,,,,,,,,,,,,,15.605,,,,3,5,true,,false -727,APOGEE,,,,,,213.36016729262968,66.36469028116284,,,,,,,,,,,,,,13.7149935,,,,,3,5,true,,false -728,BOSS,63050395310110525,82846404,4062650251620456320,,,269.51629638671875,-28.18788719177246,-3.4247487,-3.192317,,0.12746431,,,,,,,,16.594908,13.877666,15.1447935,,,,,3,5,true,,false -729,BOSS,,,6850123368518983296,,,301.7012634277344,-26.342784881591797,-12.844619,-8.975983,,1.8555686,,,,,,,,14.2311325,13.245338,13.821969,,,,,3,5,true,,false -730,APOGEE,,,,,,136.85687255859375,-78.54324340820312,-4.0846767,5.270097,,0.9188102,,,,,,,,,,14.022322,,,,,3,5,true,,false -731,APOGEE,,,,,,23.797475795686076,40.64391002155443,,,,,,,,,,,,,,18.911325,,,,,3,5,true,,false -732,APOGEE,,,,,,282.5932312011719,-43.28892517089844,-0.66710424,-4.556592,,0.6196578,,,,,,,,,,15.696882,,,,,3,5,true,,false -733,BOSS,,,,,,225.7871993265267,-32.32782520801067,,,,,,,,,,,,,,17.2334,,,,,3,5,true,,false -734,BOSS,,,5353313728148466560,,,163.94558715820312,-54.34112548828125,-12.664168,3.5706484,,0.90668046,,,,,,,,15.208982,14.314089,14.859728,,,,,3,5,true,,false -735,APOGEE,,,3106999103078443392,,,100.87773132324219,-1.8599121570587158,-2.5714169,-4.888764,,0.59306073,,,,,,,,15.75083,14.598829,15.258438,,,,,3,5,true,,false -736,BOSS,,,,,,340.4651794433594,7.045726299285889,,,,,,24.19283,24.443758,23.48346,21.964752,20.670155,,,,,,,,,3,5,true,,false -737,APOGEE,,,5642574239297432960,,,132.06312561035156,-28.959054946899414,-5.906987,10.43581,,0.57630783,,,,,,,,15.203885,14.449873,14.916971,,,,,3,5,true,,false -738,APOGEE,,,,,,99.78807067871094,6.5213704109191895,-0.74904996,-1.4589043,,0.47667935,,,,,,,,,,15.317928,,,,,3,5,true,,false -739,BOSS,,,,,,149.8709716796875,-60.6295166015625,-6.522493,3.663718,,0.5783178,,,,,,,,,,13.791664,,,,,3,5,true,,false -740,APOGEE,,,3329569290516933760,,,90.73058319091797,9.094842910766602,-0.2895797,-0.57927567,,0.25136864,,,,,,,,16.27239,15.3428545,15.898054,,,,,3,5,true,,false -741,APOGEE,,,6650671443847691136,,,284.35382080078125,-53.11709213256836,-1.9808316,-46.54312,,2.1789443,,,,,,,,13.494103,12.559968,13.111522,,,,,3,5,true,,false -742,BOSS,,,4050325787194680704,,,271.6543884277344,-29.430389404296875,-3.6120505,-2.06348,,0.08820779,,,,,,,,16.695887,14.519068,15.693476,,,,,3,5,true,,false -743,BOSS,,,,,,268.9346898086833,12.454465266752877,,,,,,17.274124,17.274124,17.274124,17.274124,17.274124,,,,,,,,,3,5,true,,false -744,APOGEE,,,,,,55.946238333998224,-41.70299554196842,,,,,,,,,,,,,,13.916159,,,,,3,5,true,,false -745,APOGEE,,,4366621442288269440,,,257.72357177734375,-3.4523630142211914,2.5626132,-5.779537,,0.710851,,,,,,,,16.010384,14.618831,15.388045,,,,,3,5,true,,false -746,BOSS,,,,,,8.895346481236501,-78.97528163967363,,,,,,,,,,,,,,11.143398,,,,,3,5,true,,false -747,BOSS,,,6005670538289801728,,,230.7232666015625,-40.6025505065918,-7.1774054,-3.5817986,,0.24272409,,,,,,,,13.762442,12.181204,13.018794,,,,,3,5,true,,false -748,APOGEE,,,,,,193.96628059546197,-35.803175855008554,,,,,,13.671679,13.671679,13.671679,13.671679,13.671679,,,,,,,,,3,5,true,,false -749,APOGEE,,,5800415803577100544,,,223.76812744140625,-67.81883239746094,-0.9367328,-2.0261197,,0.522676,,,,,,,,16.297068,15.160863,15.819065,,,,,3,5,true,,false -750,APOGEE,,,,,,165.55442810058594,4.76507043838501,,,,,,24.99194,22.64101,22.191637,21.646763,21.101414,,,,,,,,,3,5,true,,false -751,APOGEE,,,,,,75.59630352722719,-73.01058809036051,,,,,,12.21661,12.21661,12.21661,12.21661,12.21661,,,,,,,,,3,5,true,,false -752,BOSS,,,,,,304.6621510869511,9.333332280652385,,,,,,13.373174,13.373174,13.373174,13.373174,13.373174,,,,,,,,,3,5,true,,false -753,BOSS,,,,,,301.1188659667969,56.6285285949707,-1.8412336,-4.444554,,0.8093027,,,,,,,,,,15.050184,,,,,3,5,true,,false -754,APOGEE,,,4103933477262374144,,,277.0104064941406,-15.299516677856445,-2.4243894,-0.16768308,,0.5393106,,,,,,,,16.309261,13.985131,15.139687,,,,,3,5,true,,false -755,BOSS,,,,,,244.52293395996094,-56.94312286376953,-1.0634936,-2.0093563,,0.71365845,,,,,,,,,,15.908218,,,,,3,5,true,,false -756,BOSS,,,,,,354.30453161244,-71.65132399136635,,,,,,16.974426,16.974426,16.974426,16.974426,16.974426,,,,,,,,,3,5,true,,false -757,APOGEE,,,,,,233.6106719970703,-0.5755586624145508,,,,,,24.291021,24.859365,23.096926,21.948692,21.210947,,,,,,,,,3,5,true,,false -758,APOGEE,63050395167347742,,3692529314475852800,,,196.85980224609375,3.5517666339874268,-7.696554,-8.360602,,0.5476423,,,,,,,,16.189621,15.3672285,15.860579,,,,,3,5,true,,false -759,APOGEE,,,,,,52.352375529282156,-32.16997465487844,,,,,,,,,,,,,,10.239092,,,,,3,5,true,,false -760,APOGEE,,,,,,126.1578140258789,4.68593692779541,,,,,,21.436756,20.520584,20.100576,19.975004,19.89709,,,,,,,,,3,5,true,,false -761,APOGEE,,,,,,258.6173793527478,-26.713594593693102,,,,,,,,,,,,,,13.605102,,,,,3,5,true,,false -762,APOGEE,,,,,,301.83258056640625,-56.92250061035156,1.4338254,-7.74661,,1.2888033,,,,,,,,,,15.930237,,,,,3,5,true,,false -763,APOGEE,,,,256080257,,112.41814422607422,-31.363704681396484,,,,,,,,,,,,,,,13.681,,,,3,5,true,,false -764,BOSS,,,,,,234.03001403808594,-44.81321334838867,-5.3285155,-8.016707,,0.15444714,,,,,,,,,,15.243349,,,,,3,5,true,,false -765,APOGEE,,,,,,246.27325439453125,38.879390716552734,,,,,,21.77627,24.869308,24.273453,23.471102,23.201963,,,,,,,,,3,5,true,,false -766,BOSS,63050395298059403,82542340,4059839624986299776,,,260.8334655761719,-28.301977157592773,-8.155158,-4.8619094,,0.33258292,,,,,,,,17.670832,13.963033,15.50557,,,,,3,5,true,,false -767,APOGEE,,,2222177222384352000,,,321.9098205566406,67.72821044921875,-8.73959,-10.185197,,0.73321354,,,,,,,,16.572014,14.993909,15.838233,,,,,3,5,true,,false -768,APOGEE,,,,,,100.13993072509766,5.776090145111084,-1.2480513,-0.25820345,,0.3522603,,,,,,,,,,13.700542,,,,,3,5,true,,false -769,APOGEE,,,,,,80.8961822490406,-1.5304494651679192,,,,,,15.530667,15.530667,15.530667,15.530667,15.530667,,,,,,,,,3,5,true,,false -770,BOSS,,,5253794491193589632,,,158.1056671142578,-61.823509216308594,-10.507338,5.430892,,0.32742828,,,,,,,,16.36453,14.898926,15.708527,,,,,3,5,true,,false -771,BOSS,63050395108801371,,3089013944703201920,,,118.09583282470703,3.1013076305389404,0.8932194,-4.4493136,,0.41042665,,,,,,,,16.108273,15.160632,15.715683,,,,,3,5,true,,false -772,BOSS,63050394836852432,,1106931170899675648,,,95.13321685791016,69.16665649414062,-3.4835591,2.615431,,0.8466822,,,,,,,,13.999116,13.255476,13.708236,,,,,3,5,true,,false -773,APOGEE,,,532415420307585408,,,22.01511573791504,69.5723648071289,-5.973365,0.9934996,,1.8994496,,,,,,,,14.764286,13.474416,14.207004,,,,,3,5,true,,false -774,BOSS,,,,,,254.4734569735469,-66.75162716610782,,,,,,,,,,,,,,16.042562,,,,,3,5,true,,false -775,APOGEE,,,5957751175917593984,,,267.6961669921875,-40.93287658691406,-3.610069,-2.5184033,,0.18943155,,,,,,,,16.68221,15.043168,15.968863,,,,,3,5,true,,false -776,BOSS,,,5950577137393019520,,,259.8725280761719,-48.17714309692383,0.5076111,0.080944814,,1.146699,,,,,,,,16.27199,15.054531,15.740855,,,,,3,5,true,,false -777,APOGEE,,,,,,13.569993019104004,44.72898864746094,,,,,,23.05872,20.15581,18.638502,17.778656,17.30898,,,,,,,,,3,5,true,,false -778,APOGEE,,,,,,255.78040235274045,-79.52085636855378,,,,,,,,,,,,,,16.433317,,,,,3,5,true,,false -779,BOSS,,,5317412371389704960,,,132.66943359375,-54.08842849731445,-5.328707,6.5619383,,0.4005361,,,,,,,,15.3143,14.568138,15.026148,,,,,3,5,true,,false -780,APOGEE,,,,,,205.52264404296875,-56.497928619384766,-6.700245,-2.529205,,0.3872656,,,,,,,,,,15.862718,,,,,3,5,true,,false -781,APOGEE,,,3399759428485256192,,,86.80228424072266,20.352781295776367,3.9532323,-3.7368124,,1.2150983,,,,,,,,15.201894,14.061503,14.766629,,,,,3,5,true,,false -782,BOSS,,,,,,24.0354152721915,-52.91961792894567,,,,,,,,,,,,,,16.652773,,,,,3,5,true,,false -783,BOSS,,,,,,132.52371215820312,15.946521759033203,,,,,,23.84147,24.764883,24.269144,22.293911,22.202833,,,,,,,,,3,5,true,,false -784,APOGEE,,,,,,153.758544921875,47.547340393066406,,,,,,23.834654,23.156162,22.704203,23.131952,22.117332,,,,,,,,,3,5,true,,false -785,APOGEE,,,2024553201487183488,,,293.7408752441406,25.84939956665039,-1.9128126,-5.9064736,,0.21269822,,,,,,,,16.574862,15.043033,15.877583,,,,,3,5,true,,false -786,BOSS,,,4533811496793607552,,,284.1548767089844,24.64291763305664,-6.30955,-7.516169,,0.7343395,,,,,,,,16.031225,14.924446,15.559327,,,,,3,5,true,,false -787,APOGEE,,,,,,196.10600096823717,30.42774756996988,,,,,,,,,,,,,,12.401994,,,,,3,5,true,,false -788,BOSS,,,,,,155.43150329589844,7.982448577880859,,,,,,22.887093,20.663868,18.86156,17.914333,17.460485,,,,,,,,,3,5,true,,false -789,APOGEE,,,801525078792717440,,,146.08404541015625,40.71202850341797,1.7396067,-6.3567643,,2.3426385,,,,,,,,16.283178,14.694183,15.534995,,,,,3,5,true,,false -790,APOGEE,,,,,,270.89501953125,42.47181701660156,,,,,,23.028482,22.906828,22.497776,22.145445,21.882572,,,,,,,,,3,5,true,,false -791,BOSS,,,,,,113.57111358642578,52.438392639160156,-10.084149,-13.398781,,1.6448087,,,,,,,,,,11.23024,,,,,3,5,true,,false -792,APOGEE,,,,,,48.75842521777839,2.208194653606057,,,,,,,,,,,,,,15.592444,,,,,3,5,true,,false -793,BOSS,,,,,,233.41962876296577,-63.85614067420591,,,,,,,,,,,,,,12.812766,,,,,3,5,true,,false -794,BOSS,,,,,,325.08162304432614,-17.66507095712275,,,,,,,,,,,,,,10.472257,,,,,3,5,true,,false -795,APOGEE,,,4309360251111698560,,,288.3396301269531,10.467550277709961,1.2449459,-5.590638,,0.3985687,,,,,,,,15.572867,12.687796,13.911891,,,,,3,5,true,,false -796,APOGEE,,,,,,120.92656707763672,40.75513458251953,,,,,,25.000875,22.744751,22.13908,21.245354,20.707298,,,,,,,,,3,5,true,,false -797,APOGEE,,,5957069100745047680,,,268.3627624511719,-41.219852447509766,-3.1028187,-6.8580713,,0.83811677,,,,,,,,16.098347,15.018975,15.646892,,,,,3,5,true,,false -798,APOGEE,,,3121894152735989632,,,93.79180145263672,-0.03293785825371742,2.7673404,-11.718679,,1.3626878,,,,,,,,14.6131,13.709219,14.259199,,,,,3,5,true,,false -799,APOGEE,,,,,,271.35870361328125,-29.748796463012695,-0.7567753,-6.453576,,-0.19243439,,,,,,,,,,15.31647,,,,,3,5,true,,false -800,BOSS,,,3028374332251762176,,,113.12367248535156,-15.42679214477539,-1.3960686,1.4897659,,0.11068156,,,,,,,,15.846987,15.064188,15.544374,,,,,3,5,true,,false -801,APOGEE,,,,,,239.6676720639459,46.77160738291735,,,,,,17.055542,17.055542,17.055542,17.055542,17.055542,,,,,,,,,3,5,true,,false -802,BOSS,,,,,,287.3391522792582,-20.673603845933542,,,,,,15.956153,15.956153,15.956153,15.956153,15.956153,,,,,,,,,3,5,true,,false -803,BOSS,,,,,,130.95111083984375,33.23208999633789,,,,,,22.452312,22.315716,21.21974,20.973742,20.652742,,,,,,,,,3,5,true,,false -804,BOSS,,,,,,281.83184814453125,-12.606928825378418,1.1073191,1.3469371,,0.44919375,,,,,,,,,,15.485104,,,,,3,5,true,,false -805,BOSS,,,,,,258.3380432128906,-18.887104034423828,-3.421522,-13.380658,,1.7412304,,,,,,,,,,13.196708,,,,,3,5,true,,false -806,APOGEE,,,,,,192.64864024569766,-9.872282117444215,,,,,,10.142276,10.142276,10.142276,10.142276,10.142276,,,,,,,,,3,5,true,,false -807,APOGEE,,,,,,169.92286682128906,-77.38050079345703,-7.513756,-0.40849134,,0.84274817,,,,,,,,,,14.766368,,,,,3,5,true,,false -808,APOGEE,,,538655320592056192,,,11.629175186157227,74.46846771240234,16.907072,-6.954044,,2.4310358,,,,,,,,14.285413,13.070892,13.752793,,,,,3,5,true,,false -809,APOGEE,,,,,,166.42210292975085,11.742627028804222,,,,,,17.542307,17.542307,17.542307,17.542307,17.542307,,,,,,,,,3,5,true,,false -810,BOSS,,,4185343551488047488,,,287.1260986328125,-14.435307502746582,9.3459835,-10.295002,,1.4185852,,,,,,,,14.975418,13.87078,14.504778,,,,,3,5,true,,false -811,APOGEE,,,,,,150.14651143170548,-40.06652248883065,,,,,,,,,,,,,,18.607433,,,,,3,5,true,,false -812,BOSS,,,,1090352196,,276.33624267578125,-14.784797668457031,,,,,,,,,,,,,,,13.966,,,,3,5,true,,false -813,APOGEE,,,4479512561747137152,,,279.9573669433594,9.31257438659668,-1.3640226,-4.6221285,,0.2340585,,,,,,,,15.375045,13.7733755,14.693845,,,,,3,5,true,,false -814,BOSS,,,4325998473372822912,,,249.8457489013672,-16.098674774169922,-2.8365448,-5.4691405,,0.150293,,,,,,,,16.376457,14.950775,15.73552,,,,,3,5,true,,false -815,APOGEE,,,,,,292.6046162451381,-20.164517392095533,,,,,,,,,,,,,,16.693607,,,,,3,5,true,,false -816,APOGEE,63050395795501141,91786315,,225025134,,61.384639739990234,-63.11683654785156,,,,,,,,,,,,,,,12.582,,,,3,5,true,,false -817,BOSS,,,1824139891332943104,,,296.2657775878906,18.069467544555664,1.1000558,-3.6570144,,0.20892118,,,,,,,,16.252104,14.1906185,15.209786,,,,,3,5,true,,false -818,BOSS,,,5834787877105379072,,,240.25296020507812,-58.92823028564453,,,,,,,,,,,,15.387312,14.314261,15.477927,,,,,3,5,true,,false -819,BOSS,,,,,,331.8670349121094,-3.5501492023468018,,,,,,23.840542,22.81143,21.585352,21.020584,20.408998,,,,,,,,,3,5,true,,false -820,BOSS,,,,,,240.17209582878849,-7.077866833637913,,,,,,14.142173,14.142173,14.142173,14.142173,14.142173,,,,,,,,,3,5,true,,false -821,BOSS,,,,,,310.98699951171875,8.595468521118164,,,,,,24.744999,25.306381,24.72135,24.352837,20.84755,,,,,,,,,3,5,true,,false -822,APOGEE,,,,,,289.7470019308899,-5.513556583541117,,,,,,,,,,,,,,16.010817,,,,,3,5,true,,false -823,BOSS,,,6631902295027281152,,,279.63006591796875,-62.30256271362305,-17.26827,6.0385456,,1.8873161,,,,,,,,13.776419,12.713684,13.327854,,,,,3,5,true,,false -824,APOGEE,63050396578112355,116412220,269263323833677824,,,84.54377746582031,57.22608947753906,-2.710385,-3.539322,,2.0058625,,,,,,,,11.79949,10.958752,11.463433,,,,,3,5,true,,false -825,BOSS,,,,,,242.25550842285156,0.6621702313423157,,,,,,23.165731,22.948185,22.099463,21.607983,21.264668,,,,,,,,,3,5,true,,false -826,BOSS,,,5835160164903055488,,,244.90847778320312,-57.503536224365234,-4.5852513,-4.28177,,1.4302354,,,,,,,,14.76296,13.686371,14.305989,,,,,3,5,true,,false -827,BOSS,,,,,,289.2111511230469,12.924077987670898,18.876566,41.345543,,3.1928048,,,,,,,,,,12.914953,,,,,3,5,true,,false -828,APOGEE,,,,,,93.91448211669922,5.896914958953857,,,,,,23.884748,24.253302,23.630447,21.100746,20.161945,,,,,,,,,3,5,true,,false -829,BOSS,,,,,,241.7146453857422,-44.99506759643555,-4.076332,-2.5806413,,0.5298474,,,,,,,,,,15.867353,,,,,3,5,true,,false -830,APOGEE,,,4090629420896152960,,,274.2969970703125,-21.984182357788086,-0.1920034,0.4303768,,0.745865,,,,,,,,16.304123,15.048969,15.834902,,,,,3,5,true,,false -831,BOSS,,,4038388015698296448,,,273.82037353515625,-35.54051208496094,-1.0901982,-8.841643,,0.08712596,,,,,,,,16.208761,15.015092,15.693535,,,,,3,5,true,,false -832,APOGEE,,,4230703177821347840,,,306.6768798828125,0.9977842569351196,0.67360157,0.8641425,,1.1450562,,,,,,,,14.524802,13.650281,14.171318,,,,,3,5,true,,false -833,APOGEE,,,,,,273.24041099700867,48.86412739576511,,,,,,,,,,,,,,16.497862,,,,,3,5,true,,false -834,BOSS,,,2127566961236195584,,,291.56817626953125,46.394805908203125,-0.8416701,-6.0715327,,1.105096,,,,,,,,13.416513,12.657302,13.114871,,,,,3,5,true,,false -835,APOGEE,,,,,,199.37965393066406,-63.021636962890625,-6.9534864,-0.09298336,,0.2799558,,,,,,,,,,14.961357,,,,,3,5,true,,false -836,APOGEE,,,,,,105.27275990650804,31.473969461005623,,,,,,17.536287,17.536287,17.536287,17.536287,17.536287,,,,,,,,,3,5,true,,false -837,APOGEE,,,,,,126.63403320449271,-47.60348862280021,,,,,,,,,,,,,,11.311796,,,,,3,5,true,,false -838,APOGEE,,,,,,267.65069580078125,-35.846195220947266,0.92872685,-1.7227448,,0.27681127,,,,,,,,,,15.736281,,,,,3,5,true,,false -839,BOSS,,,4070623699390394880,,,268.39337158203125,-21.54141616821289,1.9520178,-2.941673,,0.81353617,,,,,,,,14.806136,13.58757,14.282885,,,,,3,5,true,,false -840,BOSS,,,,,,251.5992889404297,-51.335792541503906,-2.3177342,-3.568394,,0.19257905,,,,,,,,,,15.272731,,,,,3,5,true,,false -841,BOSS,,,,,,286.14437903018757,-24.99798439897934,,,,,,,,,,,,,,11.184234,,,,,3,5,true,,false -842,APOGEE,,,858959103757656320,,,179.2848663330078,60.9882698059082,4.113509,6.264822,,3.4246259,,,,,,,,10.751525,9.914839,10.414737,,,,,3,5,true,,false -843,APOGEE,,,,,,232.5943784882169,45.80142967610081,,,,,,,,,,,,,,11.633426,,,,,3,5,true,,false -844,BOSS,,,,,,42.7653513927546,-19.768754976334577,,,,,,19.864174,19.864174,19.864174,19.864174,19.864174,,,,,,,,,3,5,true,,false -845,APOGEE,,,,,,101.7719557075585,41.5003123401128,,,,,,,,,,,,,,16.182959,,,,,3,5,true,,false -846,BOSS,,,,,,206.38156127929688,-58.957008361816406,-8.336351,-2.372365,,0.3966283,,,,,,,,,,15.693983,,,,,3,5,true,,false -847,BOSS,,,,,,216.42003656015012,-67.7686219017929,,,,,,,,,,,,,,14.6776705,,,,,3,5,true,,false -848,BOSS,,,,,,129.3360320065731,-13.708164201442699,,,,,,17.933521,17.933521,17.933521,17.933521,17.933521,,,,,,,,,3,5,true,,false -849,BOSS,,,,,,12.950535774230957,-24.602672576904297,-2.8400078,1.120561,,1.4010972,,,,,,,,,,15.049036,,,,,3,5,true,,false -850,BOSS,,,4112596185734946816,,,258.0343322753906,-24.554880142211914,-4.4423676,-2.6517355,,0.2631433,,,,,,,,14.720979,12.111779,13.280781,,,,,3,5,true,,false -851,BOSS,,,,,,109.89338684082031,-14.166596412658691,,,,,,24.618567,22.422737,21.86813,21.455025,22.074617,,,,,,,,,3,5,true,,false -852,APOGEE,,,,,,257.7170104980469,-59.21847152709961,1.5426306,-8.476257,,0.8560386,,,,,,,,,,15.4671955,,,,,3,5,true,,false -853,BOSS,,,4103857095536393344,,,279.2171325683594,-13.903095245361328,-4.3481903,-5.739468,,0.120621294,,,,,,,,16.955921,14.338213,15.541387,,,,,3,5,true,,false -854,APOGEE,,,,,,178.95907592773438,0.348806232213974,,,,,,24.287344,23.179579,22.773827,22.78833,21.859497,,,,,,,,,3,5,true,,false -855,APOGEE,,,,,,239.3433654636356,-79.85042787447766,,,,,,,,,,,,,,17.473711,,,,,3,5,true,,false -856,APOGEE,,,,1235192115,,283.1319580078125,17.298070907592773,,,,,,,,,,,,,,,15.88,,,,3,5,true,,false -857,APOGEE,,,,,,254.16176228921006,50.62956157553981,,,,,,14.421979,14.421979,14.421979,14.421979,14.421979,,,,,,,,,3,5,true,,false -858,APOGEE,,,,,,47.66599494912272,-14.097776268623932,,,,,,,,,,,,,,17.247301,,,,,3,5,true,,false -859,BOSS,,,,,,128.84603881835938,4.458049297332764,,,,,,24.01289,22.734953,21.41248,20.979431,20.518864,,,,,,,,,3,5,true,,false -860,BOSS,,,,,,235.550148049872,-7.037564424078212,,,,,,,,,,,,,,16.876478,,,,,3,5,true,,false -861,APOGEE,,,5904922597083990400,,,223.34385681152344,-48.189674377441406,-3.97462,-1.4591044,,0.07536201,,,,,,,,14.780618,11.396391,12.7208605,,,,,3,5,true,,false -862,APOGEE,63050395262517558,,4050953956144255232,,,272.7914123535156,-27.86912727355957,0.42760798,-6.5873666,,0.1333057,,,,,,,,16.689833,15.001422,15.926193,,,,,3,5,true,,false -863,BOSS,,,,,,104.90880075151009,-84.79717805404823,,,,,,,,,,,,,,10.292146,,,,,3,5,true,,false -864,BOSS,,,,,,332.5770568847656,0.3497856855392456,,,,,,22.63277,23.477345,22.441896,22.286156,22.000551,,,,,,,,,3,5,true,,false -865,APOGEE,,,170206740741624064,,,61.45916748046875,32.74042510986328,-0.47325984,-1.2710149,,0.45788494,,,,,,,,16.297436,15.199878,15.83653,,,,,3,5,true,,false -866,APOGEE,,,,,,357.12236988732064,29.574373893731178,,,,,,,,,,,,,,16.331451,,,,,3,5,true,,false -867,BOSS,63050395111395708,,,129375170,,96.77893829345703,-4.479106903076172,,,,,,,,,,,,,,,13.783,,,,3,5,true,,false -868,APOGEE,,,,,,17.61603546142578,6.484511852264404,,,,,,22.928564,23.156717,22.375666,21.779774,21.0714,,,,,,,,,3,5,true,,false -869,APOGEE,,,,,,344.9284973144531,35.06570053100586,-9.143999,-24.117666,,4.896954,,,,,,,,,,15.85635,,,,,3,5,true,,false -870,APOGEE,,,,,,213.28352343423714,-77.03669431562389,,,,,,,,,,,,,,16.771076,,,,,3,5,true,,false -871,BOSS,,,,,,150.4371337890625,39.67680740356445,,,,,,25.711784,23.43227,22.232285,22.192497,22.805454,,,,,,,,,3,5,true,,false -872,APOGEE,,,6760286912002334464,,,282.8978576660156,-31.22160530090332,-4.813286,-5.5857024,,0.3182749,,,,,,,,16.319586,15.029354,15.745424,,,,,3,5,true,,false -873,APOGEE,,,,,,350.0603884490101,30.60254284165589,,,,,,,,,,,,,,13.089112,,,,,3,5,true,,false -874,BOSS,,,,,,168.63392639160156,0.28046420216560364,,,,,,24.629711,22.848324,22.557253,21.866255,22.415123,,,,,,,,,3,5,true,,false -875,APOGEE,,,,,,341.8027648925781,2.4120230674743652,24.182482,-2.7091172,,1.1305094,,,,,,,,,,15.290855,,,,,3,5,true,,false -876,BOSS,,,,,,338.56253429170334,-47.809544174214246,,,,,,17.804657,17.804657,17.804657,17.804657,17.804657,,,,,,,,,3,5,true,,false -877,BOSS,,,,,,266.1629943847656,-70.47168731689453,-0.3700021,-7.442837,,0.19168074,,,,,,,,,,14.006102,,,,,3,5,true,,false -878,APOGEE,,,,,,275.0453186035156,17.53877830505371,-3.109776,-7.403608,,0.7228079,,,,,,,,,,14.434531,,,,,3,5,true,,false -879,APOGEE,,,,,,143.20983322689278,5.535992198960386,,,,,,13.134068,13.134068,13.134068,13.134068,13.134068,,,,,,,,,3,5,true,,false -880,BOSS,,,5929354913707653632,,,251.09344482421875,-55.86211013793945,-3.490731,-4.488674,,0.47799397,,,,,,,,15.480678,14.193657,14.918941,,,,,3,5,true,,false -881,APOGEE,63050396552585018,,52888265939905024,,,63.19460678100586,22.863086700439453,5.8576875,-4.1161404,,1.1472226,,,,,,,,16.07513,14.632395,15.429842,,,,,3,5,true,,false -882,APOGEE,,,,,,185.3742218017578,-61.1168327331543,-6.962159,0.1386338,,0.20793065,,,,,,,,,,15.527899,,,,,3,5,true,,false -883,APOGEE,,,,,,351.6130897658644,68.46384810966384,,,,,,13.850211,13.850211,13.850211,13.850211,13.850211,,,,,,,,,3,5,true,,false -884,BOSS,,,2188983653541511424,,,315.0875549316406,55.84925079345703,-3.6966698,-4.25695,,0.25859675,,,,,,,,16.162766,13.89645,14.965179,,,,,3,5,true,,false -885,BOSS,,,4112897108318417152,,,257.2795104980469,-23.688308715820312,-0.71550995,-6.1061873,,0.26978156,,,,,,,,14.960374,13.333724,14.189638,,,,,3,5,true,,false -886,APOGEE,,,3061904626528077824,,,112.4217300415039,-2.1388323307037354,18.38133,-25.75958,,2.6865485,,,,,,,,13.15904,12.26785,12.794762,,,,,3,5,true,,false -887,BOSS,,,,,,315.0568874357906,88.56266917515495,,,,,,18.00937,18.00937,18.00937,18.00937,18.00937,,,,,,,,,3,5,true,,false -888,APOGEE,,,4353773099161717888,,,251.80307006835938,-4.159920692443848,-11.092981,-2.5124733,,1.3597438,,,,,,,,14.45369,13.247324,13.932805,,,,,3,5,true,,false -889,APOGEE,,,,,,297.1035461425781,-47.09278869628906,-0.3156617,-6.292669,,0.14056955,,,,,,,,,,14.129204,,,,,3,5,true,,false -890,BOSS,,,,,,191.39051475831613,-28.893675080853832,,,,,,,,,,,,,,18.24594,,,,,3,5,true,,false -891,APOGEE,,,,,,344.7470703125,23.877243041992188,,,,,,23.982058,23.185135,21.935707,20.619392,19.89212,,,,,,,,,3,5,true,,false -892,APOGEE,,,3833360158239884800,,,150.57752990722656,-0.00758738536387682,-21.563665,-0.9384771,,1.6161392,,,,,,,,15.633874,14.492047,15.142449,,,,,3,5,true,,false -893,APOGEE,,,6038958390254564096,,,245.63526916503906,-28.7164363861084,-4.1403327,-3.2592616,,0.655538,,,,,,,,16.060799,14.4560995,15.34438,,,,,3,5,true,,false -894,BOSS,,,,,,69.04888814270753,-78.7009140028477,,,,,,11.75486,11.75486,11.75486,11.75486,11.75486,,,,,,,,,3,5,true,,false -895,APOGEE,,,4256218208469095936,,,277.74908447265625,-5.9939446449279785,-0.37536165,-1.744794,,0.3882203,,,,,,,,17.41702,14.307373,15.571431,,,,,3,5,true,,false -896,BOSS,,,5598611469451823488,,,116.4054183959961,-30.83440589904785,-2.4098809,3.3117878,,0.31596464,,,,,,,,16.097937,15.418643,15.84276,,,,,3,5,true,,false -897,APOGEE,63050395194903446,,4039287622406474624,,,273.04193115234375,-34.49690628051758,-3.9136634,-5.8426304,,0.14426517,,,,,,,,16.210026,14.658854,15.486781,,,,,3,5,true,,false -898,APOGEE,,,,,,241.0905114511767,-9.524710887254926,,,,,,10.078729,10.078729,10.078729,10.078729,10.078729,,,,,,,,,3,5,true,,false -899,APOGEE,,,4529701591041885056,,,275.36492919921875,22.216169357299805,2.3423257,-14.382083,,0.69129163,,,,,,,,15.260972,14.278021,14.8558035,,,,,3,5,true,,false -900,APOGEE,,,,,,239.46617126464844,11.823068618774414,,,,,,24.363153,23.99309,23.789478,22.47952,21.79503,,,,,,,,,3,5,true,,false -901,APOGEE,,,5605213731842192000,,,110.05709838867188,-30.651704788208008,-1.1348412,6.1828103,,0.6718026,,,,,,,,13.781239,13.280834,13.601935,,,,,3,5,true,,false -902,APOGEE,63050394878125098,,,1099136457,,299.4357604980469,19.292179107666016,,,,,,,,,,,,,,,14.85,,,,3,5,true,,false -903,APOGEE,,,,,,106.02689361572266,-5.807257652282715,-2.0236325,0.17150497,,0.35845667,,,,,,,,,,15.9829,,,,,3,5,true,,false -904,APOGEE,63050395120062964,75122958,3137179975704781696,,,115.3438491821289,3.639747381210327,-5.2738905,-2.3318956,,0.99217075,,,,,,,,14.209567,13.433655,13.904402,,,,,3,5,true,,false -905,BOSS,,,,,,104.47174072265625,6.656782150268555,-6.0917935,-8.244963,,0.43486342,,,,,,,,,,15.933841,,,,,3,5,true,,false -906,APOGEE,,,,,,315.8370548817254,-50.940350193376545,,,,,,14.461813,14.461813,14.461813,14.461813,14.461813,,,,,,,,,3,5,true,,false -907,BOSS,,,5241911106919893888,,,162.96871948242188,-62.54104995727539,-7.210754,2.6756608,,0.3440247,,,,,,,,14.869354,14.271011,14.669558,,,,,3,5,true,,false -908,APOGEE,,,,,,128.02798461914062,13.603619575500488,,,,,,22.423151,21.871357,21.12993,20.88642,20.442284,,,,,,,,,3,5,true,,false -909,BOSS,,,,,,25.179156638713923,-30.912578286787188,,,,,,12.923904,12.923904,12.923904,12.923904,12.923904,,,,,,,,,3,5,true,,false -910,BOSS,,,,,,267.2798156738281,-79.41946411132812,3.1277423,-9.363432,,0.58969927,,,,,,,,,,15.621861,,,,,3,5,true,,false -911,BOSS,,,,,,69.75717006818138,79.5854302820807,,,,,,13.416117,13.416117,13.416117,13.416117,13.416117,,,,,,,,,3,5,true,,false -912,BOSS,,,,,,181.27206420898438,-62.095130920410156,-7.752234,0.81886333,,0.27622315,,,,,,,,,,15.829043,,,,,3,5,true,,false -913,APOGEE,,,5970035641357152512,,,252.67510986328125,-39.406951904296875,10.419095,-11.482424,,1.4367099,,,,,,,,15.709904,14.284756,15.067823,,,,,3,5,true,,false -914,APOGEE,,,,,,258.3322448730469,-71.53631591796875,-1.1245981,-1.6338904,,0.14228217,,,,,,,,,,12.377637,,,,,3,5,true,,false -915,APOGEE,,,,,,279.24625786286634,-43.6304430047816,,,,,,11.148791,11.148791,11.148791,11.148791,11.148791,,,,,,,,,3,5,true,,false -916,BOSS,,,5259754359580504704,,,150.9435272216797,-56.34089660644531,3.5148335,-1.9878436,,1.2405018,,,,,,,,14.731065,13.858827,14.380158,,,,,3,5,true,,false -917,BOSS,,,,,,19.20097245499865,-24.055006172918567,,,,,,10.391047,10.391047,10.391047,10.391047,10.391047,,,,,,,,,3,5,true,,false -918,BOSS,,,,,,33.01911889309294,18.097420352029758,,,,,,,,,,,,,,18.975893,,,,,3,5,true,,false -919,APOGEE,,,,,,308.254761132515,80.16363110332537,,,,,,19.393427,19.393427,19.393427,19.393427,19.393427,,,,,,,,,3,5,true,,false -920,APOGEE,,,,,,169.7850173533284,37.33708615116301,,,,,,,,,,,,,,15.074795,,,,,3,5,true,,false -921,BOSS,,,,,,269.27978515625,-32.46685791015625,-7.7620144,-1.8232079,,0.15793274,,,,,,,,,,15.871359,,,,,3,5,true,,false -922,APOGEE,,,,,,96.2308034015042,87.78098440633926,,,,,,,,,,,,,,17.175756,,,,,3,5,true,,false -923,BOSS,63050395044487649,,,738612456,,310.9505310058594,61.74651336669922,,,,,,,,,,,,,,,14.645,,,,3,5,true,,false -924,APOGEE,,,,,,39.64012908935547,-8.561651229858398,,,,,,24.010778,22.607023,21.522726,21.076353,20.891064,,,,,,,,,3,5,true,,false -925,APOGEE,,,,,,200.0910262488222,-52.68056450615861,,,,,,,,,,,,,,17.603024,,,,,3,5,true,,false -926,APOGEE,,,,,,131.1952667236328,27.386764526367188,,,,,,21.7776,20.653898,20.132408,19.625088,19.664072,,,,,,,,,3,5,true,,false -927,BOSS,,,4478829146535620224,,,275.58074951171875,9.528278350830078,3.0217552,-11.03084,,1.1537447,,,,,,,,14.636052,13.602466,14.204163,,,,,3,5,true,,false -928,BOSS,,,,,,339.3148498535156,24.71223258972168,,,,,,19.519648,17.915838,17.363842,17.126333,17.042051,,,,,,,,,3,5,true,,false -929,APOGEE,,,,,,274.7460021972656,-35.33782196044922,-3.604351,-5.2971497,,0.09439389,,,,,,,,,,13.343664,,,,,3,5,true,,false -930,APOGEE,,,,,,195.18368530273438,35.73964309692383,,,,,,22.659458,23.038898,22.015358,21.626303,22.335,,,,,,,,,3,5,true,,false -931,APOGEE,,,,,,331.031982421875,-48.13788604736328,37.891155,-2.5633848,,3.4679208,,,,,,,,,,15.991901,,,,,3,5,true,,false -932,APOGEE,,,,,,81.90642555411596,-38.56802330147542,,,,,,15.352032,15.352032,15.352032,15.352032,15.352032,,,,,,,,,3,5,true,,false -933,APOGEE,,,,,,326.9231872558594,9.166776657104492,,,,,,25.242296,23.046564,21.765423,20.521229,19.76796,,,,,,,,,3,5,true,,false -934,APOGEE,63050395086439106,72883834,2939915426332706304,,,98.17352294921875,-19.455991744995117,-0.673839,-1.3961484,,2.218705,,,,,,,,11.573012,10.951271,11.339647,,,,,3,5,true,,false -935,APOGEE,,,,590244304,,241.90451049804688,-43.3481330871582,,,,,,,,,,,,,,,15.338,,,,3,5,true,,false -936,APOGEE,63050394813953528,,540109905754475904,,,5.90078592300415,76.98787689208984,-7.003332,3.7822993,,0.044018105,,,,,,,,15.581039,14.216597,15.586018,,,,,3,5,true,,false -937,BOSS,,,,,,267.52972412109375,53.33525085449219,11.539139,-57.049255,,5.0973244,,,,,,,,,,14.586147,,,,,3,5,true,,false -938,APOGEE,,,,,,116.85189056396484,13.385916709899902,,,,,,22.640453,20.577484,19.838839,19.52869,19.284267,,,,,,,,,3,5,true,,false -939,BOSS,,,,,,218.2891905492362,11.695768966341944,,,,,,,,,,,,,,18.280252,,,,,3,5,true,,false -940,BOSS,,,5315803133032880640,,,124.89336395263672,-57.11537551879883,-2.5791333,4.7820325,,0.72399664,,,,,,,,14.7885275,13.750988,14.357203,,,,,3,5,true,,false -941,BOSS,,,220229400203620224,,,59.18840789794922,36.73500061035156,2.2846332,0.80692226,,0.5813353,,,,,,,,15.547011,14.0614195,14.866968,,,,,3,5,true,,false -942,BOSS,,,,489625952,,237.98291015625,-52.94974899291992,,,,,,,,,,,,,,,14.512,,,,3,5,true,,false -943,BOSS,,,4021534529587585664,,,176.02943420410156,31.526151657104492,-14.19122,-10.607481,,1.1380758,,,,,,,,15.935618,14.901812,15.500678,,,,,3,5,true,,false -944,APOGEE,63050395729149852,,4483872984324173696,,,275.9568176269531,11.725010871887207,-1.6634729,-1.5949261,,0.18337691,,,,,,,,15.910221,14.5252,15.283721,,,,,3,5,true,,false -945,APOGEE,,,,,,276.6789855957031,48.93211364746094,-6.888229,11.975583,,0.99248666,,,,,,,,,,15.774844,,,,,3,5,true,,false -946,APOGEE,,,,,,232.9378028332862,-29.926731703047558,,,,,,,,,,,,,,10.585612,,,,,3,5,true,,false -947,BOSS,,,,,,147.76600646972656,0.8712112903594971,,,,,,23.374975,24.59667,22.401163,21.721073,21.621645,,,,,,,,,3,5,true,,false -948,APOGEE,,,,,,111.11753295482876,-59.45835247855871,,,,,,,,,,,,,,17.956556,,,,,3,5,true,,false -949,APOGEE,63050396068822504,,,945906288,,218.8966064453125,-65.0897445678711,,,,,,,,,,,,,,,14.917,,,,3,5,true,,false -950,APOGEE,,,,,,261.42599538638444,48.16675916317527,,,,,,11.751232,11.751232,11.751232,11.751232,11.751232,,,,,,,,,3,5,true,,false -951,APOGEE,,,,,,357.9269104003906,-5.918411731719971,,,,,,22.744791,23.428076,21.993385,21.2826,21.085152,,,,,,,,,3,5,true,,false -952,APOGEE,,,,,,351.62188720703125,65.50370025634766,45.005985,-0.734764,,1.8225596,,,,,,,,,,15.964727,,,,,3,5,true,,false -953,BOSS,,,5310843992024958080,,,140.7042236328125,-53.3012809753418,-6.4459105,4.784749,,0.4393334,,,,,,,,15.481124,14.470877,15.068039,,,,,3,5,true,,false -954,BOSS,,,,,,214.1499481201172,-38.82124710083008,-18.454441,-9.63907,,1.9700277,,,,,,,,,,13.150431,,,,,3,5,true,,false -955,APOGEE,63050395325735904,83124557,4065905076512966656,,,272.096923828125,-24.061670303344727,10.503358,-1.3700593,,1.0766963,,,,,,,,13.085819,11.683794,12.459914,,,,,3,5,true,,false -956,BOSS,,,930651694294719104,,,126.53436279296875,47.44715881347656,-3.7982104,-6.5683365,,0.49439967,,,,,,,,15.846878,15.005006,15.511344,,,,,3,5,true,,false -957,BOSS,,,,,,229.81707364998886,-8.664139631247664,,,,,,16.042799,16.042799,16.042799,16.042799,16.042799,,,,,,,,,3,5,true,,false -958,APOGEE,,,,,,290.27798522614677,14.461860722736773,,,,,,14.7008,14.7008,14.7008,14.7008,14.7008,,,,,,,,,3,5,true,,false -959,APOGEE,63050396030983619,,5825496247929907328,,,234.89596557617188,-65.70996856689453,-4.9341226,-2.4333732,,0.35306183,,,,,,,,15.338764,14.455578,14.983033,,,,,3,5,true,,false -960,BOSS,,,,,,250.54931640625,17.48832893371582,,,,,,23.17105,23.680649,22.359728,22.35243,22.831812,,,,,,,,,3,5,true,,false -961,APOGEE,63050396209519974,,5932712925328241152,,,241.48829650878906,-54.11332702636719,-3.0678728,-6.0684285,,0.6473175,,,,,,,,14.483506,13.050811,13.836803,,,,,3,5,true,,false -962,APOGEE,,,,,,283.8191223144531,-13.480613708496094,-1.869061,-0.634658,,0.21127893,,,,,,,,,,15.580607,,,,,3,5,true,,false -963,BOSS,,,2935237691555318784,,,105.61466217041016,-17.8254337310791,-2.177266,-3.1439455,,0.4822651,,,,,,,,15.9318695,14.736865,15.419585,,,,,3,5,true,,false -964,APOGEE,,,4507506883696913536,,,282.6756896972656,15.200173377990723,-0.25196442,-5.3741407,,0.5400792,,,,,,,,15.965502,14.905372,15.521168,,,,,3,5,true,,false -965,APOGEE,,,,,,276.5800827613549,-87.56539757909934,,,,,,17.267292,17.267292,17.267292,17.267292,17.267292,,,,,,,,,3,5,true,,false -966,APOGEE,,,,,,8.12495231628418,15.009519577026367,,,,,,24.285433,23.97733,22.56597,21.467615,20.344866,,,,,,,,,3,5,true,,false -967,BOSS,,,,,,344.0227993984977,21.72764511343388,,,,,,,,,,,,,,14.40221,,,,,3,5,true,,false -968,BOSS,,,,,,80.43190424713535,-19.222464667207916,,,,,,,,,,,,,,11.478988,,,,,3,5,true,,false -969,BOSS,,,,,,246.81004333496094,-25.986413955688477,1.1111625,-8.138172,,0.7857863,,,,,,,,,,15.716153,,,,,3,5,true,,false -970,APOGEE,,,,,,273.687213182337,-29.841708094538212,,,,,,,,,,,,,,15.762213,,,,,3,5,true,,false -971,BOSS,,,,,,78.76181539731226,-30.9757368496741,,,,,,,,,,,,,,18.901337,,,,,3,5,true,,false -972,BOSS,,,5616544027373107840,,,109.65764617919922,-24.898441314697266,-2.9394205,3.1703668,,0.7258741,,,,,,,,15.586793,14.404826,15.078097,,,,,3,5,true,,false -973,APOGEE,,,2123071229985348224,,,273.30670166015625,49.635005950927734,18.896616,9.749008,,4.166161,,,,,,,,15.015386,13.518826,14.322646,,,,,3,5,true,,false -974,APOGEE,,,,,,302.2156982421875,46.80413818359375,-2.9726932,-3.6378117,,0.16334681,,,,,,,,,,15.982075,,,,,3,5,true,,false -975,APOGEE,,,4120327878431219328,,,266.8277587890625,-18.78831672668457,-3.1928937,-5.007303,,0.16952704,,,,,,,,17.10169,14.23565,15.473866,,,,,3,5,true,,false -976,BOSS,,,,,,109.86047505334886,2.400742350814312,,,,,,,,,,,,,,12.822466,,,,,3,5,true,,false -977,APOGEE,,,,,,151.67854094632628,-14.194954773856693,,,,,,,,,,,,,,12.861285,,,,,3,5,true,,false -978,BOSS,,,,,,223.48760986328125,-52.715030670166016,-4.1167645,-3.1320472,,0.024767304,,,,,,,,,,15.784547,,,,,3,5,true,,false -979,APOGEE,,,5959319865404667520,,,262.6002197265625,-41.2545280456543,-2.952774,-0.60279495,,0.2327445,,,,,,,,14.559116,11.403349,12.686344,,,,,3,5,true,,false -980,BOSS,,,6127250651435196416,,,187.41477966308594,-50.263763427734375,-2.895175,10.019287,,1.1706499,,,,,,,,15.268555,14.296057,14.869961,,,,,3,5,true,,false -981,BOSS,,,,,,123.83009078808513,-50.3936431112894,,,,,,11.47214,11.47214,11.47214,11.47214,11.47214,,,,,,,,,3,5,true,,false -982,APOGEE,,,,,,232.3089599609375,-59.57844543457031,-7.108618,-4.284143,,0.5077867,,,,,,,,,,15.386257,,,,,3,5,true,,false -983,BOSS,,,,,,161.2154083251953,49.994773864746094,,,,,,25.606544,23.80732,22.06862,20.767447,19.834185,,,,,,,,,3,5,true,,false -984,APOGEE,,,,,,232.0019989013672,-23.513111114501953,1.0240436,-9.517354,,1.2165018,,,,,,,,,,15.068976,,,,,3,5,true,,false -985,APOGEE,,,,,,198.06077266430475,-21.667101333074186,,,,,,,,,,,,,,19.310125,,,,,3,5,true,,false -986,BOSS,,,,,,95.14650148531813,31.55930326972893,,,,,,13.440146,13.440146,13.440146,13.440146,13.440146,,,,,,,,,3,5,true,,false -987,APOGEE,,,,,,135.548828125,-36.97105407714844,-5.7079997,2.01366,,0.8640847,,,,,,,,,,14.303811,,,,,3,5,true,,false -988,BOSS,,,,799237458,,357.1575622558594,61.12431335449219,,,,,,,,,,,,,,,16.255,,,,3,5,true,,false -989,BOSS,,,,,,59.28349685668945,12.678717613220215,,,,,,25.763632,25.15737,24.801907,24.204172,18.3594,,,,,,,,,3,5,true,,false -990,BOSS,,,,,,159.37468660356677,-89.12071019583128,,,,,,,,,,,,,,10.986762,,,,,3,5,true,,false -991,BOSS,,,,,,85.62360910313627,-30.691912476527044,,,,,,,,,,,,,,11.84522,,,,,3,5,true,,false -992,BOSS,,,,945371526,,217.427978515625,-61.13077163696289,,,,,,,,,,,,,,,14.693,,,,3,5,true,,false -993,APOGEE,,,,,,180.28981434651655,46.104693512913286,,,,,,19.63566,19.63566,19.63566,19.63566,19.63566,,,,,,,,,3,5,true,,false -994,APOGEE,,,,,,236.95313147145586,11.754803041201313,,,,,,16.987535,16.987535,16.987535,16.987535,16.987535,,,,,,,,,3,5,true,,false -995,BOSS,,,,512394860,,227.46453857421875,-58.14958953857422,,,,,,,,,,,,,,,14.903,,,,3,5,true,,false -996,APOGEE,,,,,,204.24234229114955,62.787785797964546,,,,,,,,,,,,,,16.939175,,,,,3,5,true,,false -997,BOSS,,,,,,46.127068416738105,-1.0639778159329296,,,,,,15.935718,15.935718,15.935718,15.935718,15.935718,,,,,,,,,3,5,true,,false -998,APOGEE,,,,,,336.0591125488281,57.78157424926758,6.129362,2.1856046,,1.0745684,,,,,,,,,,15.988846,,,,,3,5,true,,false -999,BOSS,63050395806899015,,4878514748638974976,,,71.46774291992188,-28.87862205505371,9.606046,-3.6115289,,1.7186465,,,,,,,,15.019477,13.924454,14.603652,,,,,3,5,true,,false -1000,APOGEE,,,5373979770729287680,,,169.55859375,-48.889652252197266,-16.181047,0.35555366,,1.3835307,,,,,,,,15.382621,14.314879,14.92956,,,,,3,5,true,,false +too_id,fiber_type,catalogid,sdss_id,gaia_dr3_source_id,twomass_pts_key,sky_brightness_mode,ra,dec,pmra,pmdec,epoch,parallax,lambda_eff,u_mag,g_mag,r_mag,i_mag,z_mag,optical_prov,gaia_bp_mag,gaia_rp_mag,gaia_g_mag,h_mag,delta_ra,delta_dec,can_offset,inertial,n_exposures,priority,active,expiration_date,observed +1,APOGEE,,,,,,322.0416986442334,23.24975582251605,,,,,,15.585603,15.585603,15.585603,15.585603,15.585603,,,,,,,,TRUE,,3,5,TRUE,,FALSE +2,APOGEE,,,,,,23.68915557861328,63.30213928222656,-1.633114,-0.17489335,,0.36345074,,,,,,,,,,14.495427,,,,TRUE,,3,5,TRUE,,FALSE +3,BOSS,,,,,,317.1805114746094,55.043983459472656,,,,,,24.184845,24.713322,21.989498,21.051416,20.573246,,,,,,,,TRUE,,3,5,TRUE,,FALSE +4,APOGEE,,,,,,132.27410888671875,-9.865385056,-4.23959,1.3068857,,0.67415804,,,,,,,,,,15.891865,,,,TRUE,,3,5,TRUE,,FALSE +5,APOGEE,63050395915414228,,5365231850064328448,,,155.5760498046875,-48.36075211,-2.0050094,-0.13202874,,0.08750413,,,,,,,,16.506353,15.171548,15.910943,,,,TRUE,,3,5,TRUE,,FALSE +6,BOSS,,,,,,169.05540466308594,-52.83566284,-5.52803,3.9846888,,0.1719657,,,,,,,,,,15.479938,,,,TRUE,,3,5,TRUE,,FALSE +7,BOSS,,,5965311383454731648,,,256.6919250488281,-43.81571198,-0.5424047,-8.906387,,0.2787155,,,,,,,,14.780168,11.542485,12.839776,,,,TRUE,,3,5,TRUE,,FALSE +8,BOSS,,,,,,196.95848904939584,32.69419873,,,,,,,,,,,,,,19.130697,,,,TRUE,,3,5,TRUE,,FALSE +9,APOGEE,,,,,,277.48980712890625,-27.69761848,-3.9706147,-4.874005,,0.29140338,,,,,,,,,,13.293058,,,,TRUE,,3,5,TRUE,,FALSE +10,BOSS,,,,,,299.55755615234375,37.57545852661133,-3.8028247,-4.152495,,0.3261723,,,,,,,,,,15.098599,,,,TRUE,,3,5,TRUE,,FALSE +11,BOSS,,,,,,93.15349578857422,-19.25577164,36.599873,-16.589447,,4.3919764,,,,,,,,,,10.35252,,,,TRUE,,3,5,TRUE,,FALSE +12,APOGEE,,,,,,310.54254150390625,25.387367248535156,-0.3989932,-6.631391,,0.730015,,,,,,,,,,14.994102,,,,TRUE,,3,5,TRUE,,FALSE +13,BOSS,,,,,,159.85731506347656,49.125877380371094,,,,,,22.56774,22.654528,22.303133,21.762018,22.578901,,,,,,,,TRUE,,3,5,TRUE,,FALSE +14,BOSS,,,,,,153.8815460205078,-50.7372551,-4.761471,-1.8694482,,0.22456343,,,,,,,,,,10.851905,,,,TRUE,,3,5,TRUE,,FALSE +15,BOSS,,,,,,256.1876220703125,-24.69454193,-3.4426248,-5.791844,,0.14846663,,,,,,,,,,15.639607,,,,TRUE,,3,5,TRUE,,FALSE +16,APOGEE,,,,,,215.0206298828125,-76.02481842,-3.730372,0.39429158,,0.6409972,,,,,,,,,,15.404773,,,,TRUE,,3,5,TRUE,,FALSE +17,APOGEE,,,5307277622951462016,,,142.23260498046875,-55.66678619,-6.8612022,4.6453967,,0.32230595,,,,,,,,15.309744,13.527912,14.52157,,,,TRUE,,3,5,TRUE,,FALSE +18,BOSS,,,,,,308.67156982421875,15.523393630981445,,,,,,24.58621,22.972805,22.191853,21.758198,21.754278,,,,,,,,TRUE,,3,5,TRUE,,FALSE +19,APOGEE,63050394989164473,66549526,2045042974273831296,,,291.6852111816406,31.77603530883789,0.904789,-2.865594,,0.52112687,,,,,,,,12.537917,11.1104555,11.885861,,,,TRUE,,3,5,TRUE,,FALSE +20,APOGEE,,,,,,170.94858663689251,-34.57345707,,,,,,11.915108,11.915108,11.915108,11.915108,11.915108,,,,,,,,TRUE,,3,5,TRUE,,FALSE +21,APOGEE,,,,,,78.14626757697934,-2.682986851,,,,,,16.554398,16.554398,16.554398,16.554398,16.554398,,,,,,,,TRUE,,3,5,TRUE,,FALSE +22,BOSS,,,2001035197482775808,,,333.2771911621094,51.086021423339844,-2.0965788,-3.6020296,,0.35497344,,,,,,,,15.874175,15.128165,15.581831,,,,TRUE,,3,5,TRUE,,FALSE +23,APOGEE,,,,,,56.588253021240234,38.966312408447266,,,,,,25.08159,24.84667,23.36787,21.744411,21.132257,,,,,,,,TRUE,,3,5,TRUE,,FALSE +24,BOSS,,,1742053235068416768,,,321.2508544921875,9.103323936462402,-3.0529616,0.23803899,,0.7733791,,,,,,,,10.806388,9.53475,10.244381,,,,TRUE,,3,5,TRUE,,FALSE +25,APOGEE,,,,,,69.86883583429254,20.846097305005415,,,,,,,,,,,,,,18.151804,,,,TRUE,,3,5,TRUE,,FALSE +26,APOGEE,,,6716603796046091776,,,284.6644592285156,-40.99450302,-1.0301181,-2.8249109,,0.7815646,,,,,,,,15.663781,14.705363,15.268626,,,,TRUE,,3,5,TRUE,,FALSE +27,APOGEE,,,,,,218.5586539257018,-61.00860414,,,,,,,,,,,,,,14.880216,,,,TRUE,,3,5,TRUE,,FALSE +28,APOGEE,,,,,,276.3083570237236,38.030768178594315,,,,,,13.817177,13.817177,13.817177,13.817177,13.817177,,,,,,,,TRUE,,3,5,TRUE,,FALSE +29,BOSS,,,,,,268.5023193359375,-46.51083755,-1.439177,-0.6827121,,0.808074,,,,,,,,,,14.737913,,,,TRUE,,3,5,TRUE,,FALSE +30,APOGEE,,,,,,79.98721313476562,48.676029205322266,0.24466822,-0.33668113,,0.046332162,,,,,,,,,,15.952167,,,,TRUE,,3,5,TRUE,,FALSE +31,APOGEE,,,3127786504271326976,,,104.34357452392578,2.7544913291931152,-5.8881636,-5.562531,,0.8718962,,,,,,,,14.502094,13.579643,14.128604,,,,TRUE,,3,5,TRUE,,FALSE +32,BOSS,,,,,,238.6450229418189,50.81510726772382,,,,,,18.554823,18.554823,18.554823,18.554823,18.554823,,,,,,,,TRUE,,3,5,TRUE,,FALSE +33,BOSS,,,,,,269.59552001953125,-38.65961456,0.2304149,-7.2610464,,0.068813905,,,,,,,,,,15.080259,,,,TRUE,,3,5,TRUE,,FALSE +34,BOSS,,,,,,155.76306136118933,-8.817286692,,,,,,,,,,,,,,18.169863,,,,TRUE,,3,5,TRUE,,FALSE +35,APOGEE,,,,,,41.74240226441114,-42.19454252,,,,,,14.061309,14.061309,14.061309,14.061309,14.061309,,,,,,,,TRUE,,3,5,TRUE,,FALSE +36,APOGEE,,,4037234593687633152,,,269.6929626464844,-37.31075668,0.70930505,-5.7936177,,0.11424016,,,,,,,,15.717317,14.081268,14.95381,,,,TRUE,,3,5,TRUE,,FALSE +37,APOGEE,,,5299473014559365888,,,141.96112060546875,-60.26277542,1.2105885,1.8648937,,0.6556,,,,,,,,16.275719,15.278423,15.861832,,,,TRUE,,3,5,TRUE,,FALSE +38,BOSS,,,,,,105.81937408447266,-62.64641953,-3.6946084,11.30163,,0.5535068,,,,,,,,,,15.339528,,,,TRUE,,3,5,TRUE,,FALSE +39,BOSS,,,5986876723494963456,,,233.5907440185547,-47.45285797,-1.7784321,-2.8776402,,0.9295717,,,,,,,,15.873177,14.653904,15.344839,,,,TRUE,,3,5,TRUE,,FALSE +40,BOSS,,,,,,236.2151641845703,-20.06913757,-5.8280187,0.5509816,,1.7827637,,,,,,,,,,13.432687,,,,TRUE,,3,5,TRUE,,FALSE +41,BOSS,,,,,,308.5747734159112,77.10158798805043,,,,,,,,,,,,,,18.773153,,,,TRUE,,3,5,TRUE,,FALSE +42,BOSS,,,,,,302.7796630859375,9.683060646057129,,,,,,22.639591,20.251524,19.327724,18.93538,18.822897,,,,,,,,TRUE,,3,5,TRUE,,FALSE +43,BOSS,,,,,,262.0460510253906,-31.9094677,-0.70829743,2.5190108,,0.56842405,,,,,,,,,,14.435419,,,,TRUE,,3,5,TRUE,,FALSE +44,BOSS,,,,,,169.67616271972656,-10.8683157,,,,,,23.757376,23.018812,22.498236,22.013803,21.787107,,,,,,,,TRUE,,3,5,TRUE,,FALSE +45,BOSS,,,,,,18.08656883239746,27.824718475341797,,,,,,23.850815,23.642157,22.641645,22.254175,21.973812,,,,,,,,TRUE,,3,5,TRUE,,FALSE +46,BOSS,,,,,,189.5998526,-51.12843654,,,,,,18.021381,18.021381,18.021381,18.021381,18.021381,,,,,,,,TRUE,,3,5,TRUE,,FALSE +47,APOGEE,,,,,,291.1813965,25.48657799,-2.1368947,-9.121573,,0.9166721,,,,,,,,,,13.975713,,,,TRUE,,3,5,TRUE,,FALSE +48,APOGEE,,,,,,253.43643188476562,-34.8242836,-6.0795503,-6.874174,,0.12813249,,,,,,,,,,15.535668,,,,TRUE,,3,5,TRUE,,FALSE +49,APOGEE,,,5404423804617714176,,,149.12953186035156,-53.28446579,-7.2144337,0.5768588,,0.85302585,,,,,,,,16.480652,15.13847,15.8875885,,,,TRUE,,3,5,TRUE,,FALSE +50,BOSS,,,,1235344402,,283.71380615234375,12.371167182922363,,,,,,,,,,,,,,,14.457,,,TRUE,,3,5,TRUE,,FALSE +51,APOGEE,,,6240994682646514816,,,234.66082763671875,-22.23919487,8.803073,-8.529166,,1.8465331,,,,,,,,15.579301,14.333661,15.03334,,,,TRUE,,3,5,TRUE,,FALSE +52,APOGEE,,,5799990498730796288,,,222.24554443359375,-68.69470215,-9.333442,0.32404658,,0.9524031,,,,,,,,15.666204,14.528124,15.178019,,,,TRUE,,3,5,TRUE,,FALSE +53,BOSS,,,,,,70.93364822766145,-15.68639374,,,,,,,,,,,,,,14.216855,,,,TRUE,,3,5,TRUE,,FALSE +54,BOSS,,,,,,313.3588605988401,-64.90821688,,,,,,,,,,,,,,13.435437,,,,TRUE,,3,5,TRUE,,FALSE +55,BOSS,,,,,,326.9616173610489,79.09138071896493,,,,,,14.31843,14.31843,14.31843,14.31843,14.31843,,,,,,,,TRUE,,3,5,TRUE,,FALSE +56,APOGEE,,,,,,205.42795397141813,-39.49090413,,,,,,,,,,,,,,13.221332,,,,TRUE,,3,5,TRUE,,FALSE +57,BOSS,,,1826398116403682688,,,299.416748,20.76044273376465,-1.5154749,-7.1681933,,1.4013343,,,,,,,,16.049578,14.941574,15.806762,,,,TRUE,,3,5,TRUE,,FALSE +58,APOGEE,,,,,,266.9850158691406,-59.67505646,2.8675766,-10.243619,,0.78981423,,,,,,,,,,13.856769,,,,TRUE,,3,5,TRUE,,FALSE +59,APOGEE,,,,,,342.1569026,-1.970879794,,,,,,,,,,,,,,18.382395,,,,TRUE,,3,5,TRUE,,FALSE +60,APOGEE,,,,,,84.32974155834334,-71.86153763,,,,,,,,,,,,,,15.590839,,,,TRUE,,3,5,TRUE,,FALSE +61,BOSS,,,,,,190.79627990722656,64.75472259521484,,,,,,25.67888,24.772968,24.392704,23.133852,20.292099,,,,,,,,TRUE,,3,5,TRUE,,FALSE +62,BOSS,,,,,,173.6854070297808,2.271468995779159,,,,,,15.273549,15.273549,15.273549,15.273549,15.273549,,,,,,,,TRUE,,3,5,TRUE,,FALSE +63,BOSS,,,,,,52.46262741088867,40.507850646972656,,,,,,24.448252,24.801268,24.68017,24.578358,21.238506,,,,,,,,TRUE,,3,5,TRUE,,FALSE +64,APOGEE,,,6803637082046987264,,,318.16033935546875,-24.32069778,-0.47882384,-4.6342425,,0.6224656,,,,,,,,16.321484,15.414918,15.947643,,,,TRUE,,3,5,TRUE,,FALSE +65,BOSS,,,,,,238.2233428955078,42.61351395,,,,,,21.691912,21.406952,20.851591,20.511356,20.34639,,,,,,,,TRUE,,3,5,TRUE,,FALSE +66,BOSS,,,,,,214.76776123046875,-20.05138397,,,,,,17.87514,16.314484,15.600426,15.377921,15.27553,,,,,,,,TRUE,,3,5,TRUE,,FALSE +67,BOSS,,,4082759803798636416,,,290.40240478515625,-20.68270493,-7.3011193,-8.890116,,0.5668037,,,,,,,,16.179142,15.32184,15.846203,,,,TRUE,,3,5,TRUE,,FALSE +68,APOGEE,,,,,,304.1143798828125,8.554203033447266,,,,,,20.532293,18.858007,18.105993,17.792877,17.604002,,,,,,,,TRUE,,3,5,TRUE,,FALSE +69,APOGEE,63050396573102637,,,881141965,,60.59712600708008,47.69127655029297,,,,,,,,,,,,,,,15.367,,,TRUE,,3,5,TRUE,,FALSE +70,APOGEE,,,,,,276.6059265136719,-13.92156696,-0.87135726,-4.060744,,0.3275647,,,,,,,,,,15.232843,,,,TRUE,,3,5,TRUE,,FALSE +71,BOSS,,,1829969948631172992,,,301.3713073730469,22.256240844726562,-5.1121564,-4.497712,,0.7647907,,,,,,,,15.696336,14.445488,15.17279,,,,TRUE,,3,5,TRUE,,FALSE +72,BOSS,,,2131947449919047424,,,285.9072266,48.94021987915039,-0.025091171,0.53291553,,0.60776937,,,,,,,,15.642535,14.802854,15.306992,,,,TRUE,,3,5,TRUE,,FALSE +73,APOGEE,,,,,,90.88671974,-27.27798089,,,,,,19.80138,19.80138,19.80138,19.80138,19.80138,,,,,,,,TRUE,,3,5,TRUE,,FALSE +74,BOSS,,,,,,27.59313965,28.288711547851562,,,,,,24.926758,22.816109,22.242037,21.833595,21.430048,,,,,,,,TRUE,,3,5,TRUE,,FALSE +75,APOGEE,,,,,,61.32428841847853,-51.61235829,,,,,,16.965103,16.965103,16.965103,16.965103,16.965103,,,,,,,,TRUE,,3,5,TRUE,,FALSE +76,BOSS,,,,,,225.9148406982422,42.65070343017578,,,,,,23.71794,23.345898,22.717432,22.086817,22.033043,,,,,,,,TRUE,,3,5,TRUE,,FALSE +77,APOGEE,,,6084172438692073856,,,202.0572967529297,-46.5917778,-0.43000337,-0.99476254,,0.8928374,,,,,,,,14.703981,13.881974,14.377015,,,,TRUE,,3,5,TRUE,,FALSE +78,BOSS,,,,,,109.59927368164062,30.334585189819336,,,,,,23.39626,22.28673,21.509962,21.359001,20.277046,,,,,,,,TRUE,,3,5,TRUE,,FALSE +79,BOSS,,,,1247237537,,183.05258178710938,-61.80580521,,,,,,,,,,,,,,,13.899,,,TRUE,,3,5,TRUE,,FALSE +80,APOGEE,,,,,,332.8862052416298,-70.25785712,,,,,,,,,,,,,,18.625954,,,,TRUE,,3,5,TRUE,,FALSE +81,APOGEE,,,,,,157.18920917502177,-81.68580769,,,,,,17.136791,17.136791,17.136791,17.136791,17.136791,,,,,,,,TRUE,,3,5,TRUE,,FALSE +82,APOGEE,,,,,,324.36694662030385,18.853847795638956,,,,,,15.8132105,15.8132105,15.8132105,15.8132105,15.8132105,,,,,,,,TRUE,,3,5,TRUE,,FALSE +83,APOGEE,,,,,,186.9317775249239,19.63538977732341,,,,,,,,,,,,,,18.928991,,,,TRUE,,3,5,TRUE,,FALSE +84,BOSS,,,,,,121.06922149658203,23.145545959472656,,,,,,23.575663,22.807844,21.505783,21.21398,20.455107,,,,,,,,TRUE,,3,5,TRUE,,FALSE +85,BOSS,,,,,,101.22248077392578,10.302441596984863,,,,,,17.084484,14.776092,14.332685,13.131848,12.773293,,,,,,,,TRUE,,3,5,TRUE,,FALSE +86,APOGEE,,,,,,4.145135272,7.289044771729607,,,,,,,,,,,,,,10.2851715,,,,TRUE,,3,5,TRUE,,FALSE +87,BOSS,,,4511268690924589184,,,282.3520508,17.221071243286133,0.037170157,-2.4240265,,0.45267987,,,,,,,,13.277962,11.734461,12.553878,,,,TRUE,,3,5,TRUE,,FALSE +88,APOGEE,,,,,,257.7920573015427,-13.66046857,,,,,,,,,,,,,,17.302023,,,,TRUE,,3,5,TRUE,,FALSE +89,BOSS,,,,,,182.99066162109375,7.276773452758789,,,,,,25.286516,24.02073,22.77824,22.970306,22.66189,,,,,,,,TRUE,,3,5,TRUE,,FALSE +90,APOGEE,,,,,,241.20236144839555,-73.64303169,,,,,,,,,,,,,,11.724846,,,,TRUE,,3,5,TRUE,,FALSE +91,APOGEE,,,4067114268822744448,,,266.43731689453125,-25.92999649,-2.0346615,-6.8709016,,0.15432438,,,,,,,,20.052053,13.817839,15.52432,,,,TRUE,,3,5,TRUE,,FALSE +92,BOSS,,,,,,36.787410736083984,-3.406038523,3.2144544,-16.144226,,0.13972853,,,,,,,,,,15.57395,,,,TRUE,,3,5,TRUE,,FALSE +93,BOSS,,,,,,110.14348525798255,83.70086402803094,,,,,,16.740643,16.740643,16.740643,16.740643,16.740643,,,,,,,,TRUE,,3,5,TRUE,,FALSE +94,APOGEE,,,,,,222.04954121471215,-82.64486523,,,,,,12.802641,12.802641,12.802641,12.802641,12.802641,,,,,,,,TRUE,,3,5,TRUE,,FALSE +95,BOSS,,,,,,150.28236029286992,12.780074710132851,,,,,,,,,,,,,,11.058099,,,,TRUE,,3,5,TRUE,,FALSE +96,APOGEE,,,,,,198.92550659179688,-7.81828928,-25.817423,-6.0447335,,2.0468123,,,,,,,,,,14.932469,,,,TRUE,,3,5,TRUE,,FALSE +97,BOSS,,,3058004280829321216,,,109.91910552978516,-6.497790337,-0.77837294,-1.0646995,,0.47408396,,,,,,,,15.773341,14.885421,15.413329,,,,TRUE,,3,5,TRUE,,FALSE +98,APOGEE,,,4124058250874645120,,,265.7625427246094,-16.5740242,-3.9413574,-9.323677,,0.36199063,,,,,,,,16.435127,14.9882965,15.787186,,,,TRUE,,3,5,TRUE,,FALSE +99,APOGEE,,,5306000230983976064,,,146.57969665527344,-57.40896988,-4.738899,4.427131,,0.2660805,,,,,,,,15.356114,13.549028,14.477364,,,,TRUE,,3,5,TRUE,,FALSE +100,BOSS,,,,,,30.66155433654785,-51.75399399,12.393519,9.495563,,1.5087881,,,,,,,,,,15.459929,,,,TRUE,,3,5,TRUE,,FALSE +101,BOSS,,,,,,84.12731934,-33.31795883,-2.465497,9.190811,,1.2413044,,,,,,,,,,14.503324,,,,TRUE,,3,5,TRUE,,FALSE +102,BOSS,,,,,,199.9457302488781,-23.11921598,,,,,,,,,,,,,,10.615183,,,,TRUE,,3,5,TRUE,,FALSE +103,BOSS,,,,,,16.03748893737793,25.417741775512695,-4.400728,-1.5684812,,0.38166034,,,,,,,,,,15.913676,,,,TRUE,,3,5,TRUE,,FALSE +104,BOSS,,,5589823077311081600,,,110.65379333496094,-36.06587982,-0.6404882,-9.988043,,1.0768558,,,,,,,,14.299001,13.129776,13.792185,,,,TRUE,,3,5,TRUE,,FALSE +105,APOGEE,,,,,,310.1600341796875,38.229766845703125,,,,,,23.78788,23.197731,20.0639,18.372051,17.09461,,,,,,,,TRUE,,3,5,TRUE,,FALSE +106,BOSS,,,,,,343.5453796386719,-19.09307098,,,,,,25.092176,23.355574,22.229536,20.977276,20.669867,,,,,,,,TRUE,,3,5,TRUE,,FALSE +107,APOGEE,,,,,,113.55461883544922,41.74734115600586,,,,,,24.048195,22.009817,20.620548,18.931036,18.067003,,,,,,,,TRUE,,3,5,TRUE,,FALSE +108,BOSS,,,,,,350.910641,-67.78304816,,,,,,17.513182,17.513182,17.513182,17.513182,17.513182,,,,,,,,TRUE,,3,5,TRUE,,FALSE +109,BOSS,,,,,,206.13137577554156,28.26903834775473,,,,,,,,,,,,,,19.590464,,,,TRUE,,3,5,TRUE,,FALSE +110,APOGEE,,,,,,19.159570091527762,40.29415799238788,,,,,,,,,,,,,,18.978848,,,,TRUE,,3,5,TRUE,,FALSE +111,APOGEE,,,,,,5.744895756426773,84.49992168645656,,,,,,18.6805,18.6805,18.6805,18.6805,18.6805,,,,,,,,TRUE,,3,5,TRUE,,FALSE +112,APOGEE,,,,,,324.01678466796875,48.811710357666016,,,,,,20.615799,18.285866,17.031355,16.33577,15.871981,,,,,,,,TRUE,,3,5,TRUE,,FALSE +113,APOGEE,,,,,,348.05376435669257,52.62786375027122,,,,,,14.371797,14.371797,14.371797,14.371797,14.371797,,,,,,,,TRUE,,3,5,TRUE,,FALSE +114,BOSS,,,,,,16.220903503109234,-74.46982285,,,,,,11.547842,11.547842,11.547842,11.547842,11.547842,,,,,,,,TRUE,,3,5,TRUE,,FALSE +115,APOGEE,,,,,,25.63627815246582,-62.46719742,-4.2084947,-18.993227,,4.611167,,,,,,,,,,15.476997,,,,TRUE,,3,5,TRUE,,FALSE +116,APOGEE,,,4052460905533561600,,,273.9763488769531,-27.05521584,0.2506152,-4.562319,,0.160919,,,,,,,,16.54537,14.640886,15.637927,,,,TRUE,,3,5,TRUE,,FALSE +117,BOSS,,,,,,36.82796455854301,57.176237581995395,,,,,,11.174744,11.174744,11.174744,11.174744,11.174744,,,,,,,,TRUE,,3,5,TRUE,,FALSE +118,APOGEE,,,5813619151497618944,,,263.2093505859375,-65.74384308,-0.71132976,-6.4848313,,0.52739924,,,,,,,,15.737965,14.6950245,15.295575,,,,TRUE,,3,5,TRUE,,FALSE +119,APOGEE,,,1973288609228670848,,,329.1262512207031,44.53296661376953,-3.7957919,-3.6099284,,0.4904507,,,,,,,,13.195243,12.772501,13.036578,,,,TRUE,,3,5,TRUE,,FALSE +120,APOGEE,,,5982926831058168448,,,238.59561157226562,-49.27904129,-4.0846753,-4.439897,,0.21793684,,,,,,,,16.915165,14.474542,15.59257,,,,TRUE,,3,5,TRUE,,FALSE +121,BOSS,,,,,,73.24023438,0.20651757717132568,,,,,,25.413734,23.980934,22.300028,21.551477,20.887323,,,,,,,,TRUE,,3,5,TRUE,,FALSE +122,BOSS,,,,,,150.27741102986474,77.20090774910165,,,,,,,,,,,,,,10.926746,,,,TRUE,,3,5,TRUE,,FALSE +123,APOGEE,,,5799842270816092416,,,221.13246154785156,-69.37440491,-6.91154,-2.3268716,,0.29730365,,,,,,,,13.572745,11.61305,12.588465,,,,TRUE,,3,5,TRUE,,FALSE +124,APOGEE,63050395704679924,,4351740892436039040,,,245.94744873046875,-7.32610178,-24.125172,-3.0970094,,2.0733871,,,,,,,,14.6790085,13.45233,14.144058,,,,TRUE,,3,5,TRUE,,FALSE +125,BOSS,,,5777226897163399680,,,253.24673461914062,-78.29135132,4.278907,-12.102017,,0.9074496,,,,,,,,15.771187,14.797088,15.372929,,,,TRUE,,3,5,TRUE,,FALSE +126,BOSS,,,,,,272.7005310058594,12.850948333740234,,,,,,21.956583,20.017773,19.116306,18.790098,18.518244,,,,,,,,TRUE,,3,5,TRUE,,FALSE +127,APOGEE,,,,,,289.99920654296875,-52.46260071,-1.1395025,-6.6806574,,0.7417156,,,,,,,,,,15.423563,,,,TRUE,,3,5,TRUE,,FALSE +128,BOSS,,,6736209870774856704,,,282.19036865234375,-32.09381485,-3.7470338,-4.7137465,,0.35697088,,,,,,,,16.08381,15.097567,15.680136,,,,TRUE,,3,5,TRUE,,FALSE +129,BOSS,,,4044552496355608448,,,275.3039551,-34.43371964,-2.9231193,-2.6897638,,0.059155453,,,,,,,,15.540074,13.938427,14.788319,,,,TRUE,,3,5,TRUE,,FALSE +130,APOGEE,,,,,,337.88470458984375,-9.277961731,-10.20745,-8.581147,,1.3340018,,,,,,,,,,10.129284,,,,TRUE,,3,5,TRUE,,FALSE +131,APOGEE,,,5846501146255352320,,,216.63258361816406,-69.09770203,-10.951105,-3.9519327,,0.291844,,,,,,,,14.559252,12.711482,13.651046,,,,TRUE,,3,5,TRUE,,FALSE +132,BOSS,,,5829395665912461312,,,245.22824096679688,-62.70051956,0.079439804,-2.5510042,,0.8528777,,,,,,,,15.964369,14.974426,15.553575,,,,TRUE,,3,5,TRUE,,FALSE +133,BOSS,,,4091674987752833536,,,279.2886962890625,-21.05656433,-5.0606675,-5.1329045,,0.12929237,,,,,,,,16.898922,14.99348,15.961774,,,,TRUE,,3,5,TRUE,,FALSE +134,APOGEE,,,4208289775029901440,,,292.77899169921875,-5.914134026,-3.5030572,-5.3154726,,0.13414995,,,,,,,,16.281534,14.531883,15.455056,,,,TRUE,,3,5,TRUE,,FALSE +135,BOSS,,,,,,321.33233642578125,6.116003036499023,,,,,,25.340967,23.437473,21.727844,21.220165,20.50712,,,,,,,,TRUE,,3,5,TRUE,,FALSE +136,APOGEE,,,4093920186116342016,,,273.5802917480469,-21.13858414,0.17464553,-2.4827335,,0.38706926,,,,,,,,15.126768,13.210412,14.183643,,,,TRUE,,3,5,TRUE,,FALSE +137,APOGEE,,,3803202650234276864,,,163.36988830566406,-0.673973083,-22.243174,-1.1306834,,0.7834535,,,,,,,,15.132674,14.330049,14.81713,,,,TRUE,,3,5,TRUE,,FALSE +138,APOGEE,,,,,,329.3421325683594,9.689582824707031,,,,,,26.28364,24.478987,25.07241,23.684786,23.036987,,,,,,,,TRUE,,3,5,TRUE,,FALSE +139,BOSS,,,,,,76.61762618185622,38.05534123623943,,,,,,,,,,,,,,13.107362,,,,TRUE,,3,5,TRUE,,FALSE +140,BOSS,,,,,,117.11239247983283,-81.61079919,,,,,,,,,,,,,,17.614613,,,,TRUE,,3,5,TRUE,,FALSE +141,APOGEE,,,,,,304.31831036085003,-21.93536919,,,,,,,,,,,,,,15.602236,,,,TRUE,,3,5,TRUE,,FALSE +142,BOSS,,,,,,232.6004638671875,-48.34486008,-0.37001857,-4.192707,,0.48872235,,,,,,,,,,14.275659,,,,TRUE,,3,5,TRUE,,FALSE +143,APOGEE,,,,,,352.7692882193108,54.63055845376087,,,,,,,,,,,,,,12.165727,,,,TRUE,,3,5,TRUE,,FALSE +144,BOSS,,,,,,330.56168144756754,33.227117872909545,,,,,,,,,,,,,,11.4708605,,,,TRUE,,3,5,TRUE,,FALSE +145,BOSS,,,,518786054,,273.4162902832031,-39.37337112,,,,,,,,,,,,,,,15.308,,,TRUE,,3,5,TRUE,,FALSE +146,APOGEE,,,,,,244.77034105626115,-62.00604906,,,,,,15.824518,15.824518,15.824518,15.824518,15.824518,,,,,,,,TRUE,,3,5,TRUE,,FALSE +147,APOGEE,,,,,,119.1860580444336,7.504703044891357,,,,,,22.174936,21.152554,20.427776,20.135475,19.98465,,,,,,,,TRUE,,3,5,TRUE,,FALSE +148,BOSS,,,,,,241.91470336914062,3.4725563526153564,-0.9759687,-0.2543052,,0.4012155,,,,,,,,,,12.836271,,,,TRUE,,3,5,TRUE,,FALSE +149,BOSS,,,,,,259.3881726936776,20.330626549793024,,,,,,18.320234,18.320234,18.320234,18.320234,18.320234,,,,,,,,TRUE,,3,5,TRUE,,FALSE +150,APOGEE,,,,,,252.63873354145738,-63.90749167,,,,,,,,,,,,,,15.032701,,,,TRUE,,3,5,TRUE,,FALSE +151,APOGEE,,,,,,251.79672241210938,-34.48783112,-1.1890903,-4.456173,,0.13108417,,,,,,,,,,15.533691,,,,TRUE,,3,5,TRUE,,FALSE +152,APOGEE,,,5574429536560352128,,,93.97206879,-39.32368469,-3.2150314,7.0135956,,1.1870171,,,,,,,,13.803843,13.041596,13.501831,,,,TRUE,,3,5,TRUE,,FALSE +153,BOSS,,,345932029120490880,,,29.950702667236328,42.52369308,-0.18458901,-1.2360835,,0.3114197,,,,,,,,16.490679,15.304227,15.97084,,,,TRUE,,3,5,TRUE,,FALSE +154,APOGEE,,,,,,145.91067504882812,-58.43167496,-8.396666,5.791583,,0.3190049,,,,,,,,,,15.541846,,,,TRUE,,3,5,TRUE,,FALSE +155,APOGEE,,,6018566018671555584,,,247.77407836914062,-37.66640854,-4.105602,-2.7435436,,0.16217516,,,,,,,,14.716791,11.829579,13.055666,,,,TRUE,,3,5,TRUE,,FALSE +156,APOGEE,,,,,,214.8201141357422,33.11469650268555,-8.600596,-3.814931,,0.6835482,,,,,,,,,,15.426093,,,,TRUE,,3,5,TRUE,,FALSE +157,APOGEE,63050396027204925,,5822881300039026304,,,239.84234619140625,-65.36935425,-4.051063,-3.715188,,0.08855469,,,,,,,,16.171309,14.861448,15.589646,,,,TRUE,,3,5,TRUE,,FALSE +158,APOGEE,,,,,,187.54679114944915,-70.0078391,,,,,,,,,,,,,,14.369969,,,,TRUE,,3,5,TRUE,,FALSE +159,APOGEE,,,,,,241.82476806640625,-25.30934525,-6.559978,1.9578153,,0.8349027,,,,,,,,,,14.403549,,,,TRUE,,3,5,TRUE,,FALSE +160,APOGEE,,,,,,59.60449981689453,21.155357360839844,41.740623,-31.136133,,3.9915352,,,,,,,,,,13.705391,,,,TRUE,,3,5,TRUE,,FALSE +161,APOGEE,63050395576809794,,4203563691802320640,,,284.2885437011719,-9.196439743,-1.7588122,-5.255824,,0.15524632,,,,,,,,16.20432,14.46274,15.405895,,,,TRUE,,3,5,TRUE,,FALSE +162,BOSS,,,,,,12.843499183654785,61.68128967285156,-2.8507812,-0.8932814,,0.24784175,,,,,,,,,,15.94241,,,,TRUE,,3,5,TRUE,,FALSE +163,APOGEE,,,,,,327.9395446777344,22.576263427734375,,,,,,23.38508,21.230928,19.675802,18.738052,18.181986,,,,,,,,TRUE,,3,5,TRUE,,FALSE +164,APOGEE,,,5447475285453629568,,,156.2827911376953,-34.25658417,-8.509782,-0.83389175,,1.3120991,,,,,,,,15.0399685,14.113494,14.662061,,,,TRUE,,3,5,TRUE,,FALSE +165,APOGEE,63050396571191797,,,801897472,,64.29582977294922,46.18185806274414,,,,,,,,,,,,,,,14.082,,,TRUE,,3,5,TRUE,,FALSE +166,BOSS,,,,,,251.24901026995926,20.761072247801053,,,,,,,,,,,,,,12.419063,,,,TRUE,,3,5,TRUE,,FALSE +167,APOGEE,,,,,,158.69978100147583,28.011140166951037,,,,,,11.282053,11.282053,11.282053,11.282053,11.282053,,,,,,,,TRUE,,3,5,TRUE,,FALSE +168,BOSS,,,,,,208.5288086,56.69211196899414,,,,,,22.887766,22.028564,20.931177,20.35667,19.90541,,,,,,,,TRUE,,3,5,TRUE,,FALSE +169,BOSS,,,,,,294.1585777,30.838738743737466,,,,,,19.05826,19.05826,19.05826,19.05826,19.05826,,,,,,,,TRUE,,3,5,TRUE,,FALSE +170,APOGEE,,,,,,55.19068908691406,49.30854034423828,,,,,,20.112598,18.448915,17.632612,17.253395,17.066784,,,,,,,,TRUE,,3,5,TRUE,,FALSE +171,BOSS,,,,,,208.2292798918539,-45.10495813,,,,,,,,,,,,,,19.879662,,,,TRUE,,3,5,TRUE,,FALSE +172,APOGEE,,,4472814268166346496,,,269.6982422,4.5690732,0.8074396,-5.3014293,,0.1342601,,,,,,,,15.217981,13.774918,14.558535,,,,TRUE,,3,5,TRUE,,FALSE +173,BOSS,,,5984982780373103232,,,241.364502,-46.14024734,-3.2645855,-4.710714,,0.55543506,,,,,,,,15.941187,14.714792,15.411075,,,,TRUE,,3,5,TRUE,,FALSE +174,BOSS,,,,,,193.87478637695312,13.071717262268066,,,,,,24.209127,23.345558,21.67536,21.011944,20.569208,,,,,,,,TRUE,,3,5,TRUE,,FALSE +175,BOSS,,,,,,82.84574890136719,2.6591269969940186,,,,,,24.490797,24.329973,22.519716,21.054262,20.071192,,,,,,,,TRUE,,3,5,TRUE,,FALSE +176,BOSS,,,,,,258.9907531738281,-30.33228111,-3.9985204,-9.540714,,0.89164203,,,,,,,,,,15.450352,,,,TRUE,,3,5,TRUE,,FALSE +177,BOSS,,,2023925689559897088,,,289.7858887,25.650304794311523,12.421347,10.415708,,2.62943,,,,,,,,14.714386,13.548961,14.210527,,,,TRUE,,3,5,TRUE,,FALSE +178,APOGEE,,,,,,168.18912667385493,30.92086427852159,,,,,,,,,,,,,,17.119446,,,,TRUE,,3,5,TRUE,,FALSE +179,BOSS,,,,800904386,,94.24214935302734,36.041690826416016,,,,,,,,,,,,,,,14.591,,,TRUE,,3,5,TRUE,,FALSE +180,BOSS,,,,,,294.4983825683594,-7.600120544,,,,,,24.201746,23.44475,21.78171,21.078547,20.620617,,,,,,,,TRUE,,3,5,TRUE,,FALSE +181,BOSS,,,4057802126813382016,,,261.6661071777344,-32.06982422,-3.181779,-2.1856582,,1.9901395,,,,,,,,14.366076,13.229444,13.891513,,,,TRUE,,3,5,TRUE,,FALSE +182,APOGEE,,,5844009652906745344,,,200.8880615234375,-70.40213776,-8.01176,-5.2102246,,0.05271804,,,,,,,,16.114222,14.795244,15.553161,,,,TRUE,,3,5,TRUE,,FALSE +183,BOSS,,,,,,261.1799011230469,-38.81180573,-0.50103647,-2.0754387,,0.16245322,,,,,,,,,,14.955585,,,,TRUE,,3,5,TRUE,,FALSE +184,BOSS,63050395054009209,,,757824287,,317.6270751953125,66.22753143310547,,,,,,,,,,,,,,,13.604,,,TRUE,,3,5,TRUE,,FALSE +185,BOSS,63050396148003068,,5887450841951034240,,,226.91937255859375,-54.71531677,-2.488071,-3.678781,,0.6365667,,,,,,,,16.183224,14.9205065,15.634026,,,,TRUE,,3,5,TRUE,,FALSE +186,BOSS,63050394922122699,,1954457445378886272,,,326.6565856933594,40.71246337890625,-1.7632521,-1.5674198,,0.68275404,,,,,,,,15.516054,14.383638,15.033053,,,,TRUE,,3,5,TRUE,,FALSE +187,APOGEE,,,,,,243.71475219726562,8.353689193725586,,,,,,20.809269,18.614685,17.764248,17.451372,17.281826,,,,,,,,TRUE,,3,5,TRUE,,FALSE +188,APOGEE,63050396529839439,113555911,6757538098559982720,,,286.82989501953125,-30.96113014,-2.8509324,-1.7290916,,0.041487724,,,,,,,,16.370113,14.623442,15.520707,,,,TRUE,,3,5,TRUE,,FALSE +189,BOSS,,,,,,5.926082304739078,33.742694797812774,,,,,,,,,,,,,,13.502087,,,,TRUE,,3,5,TRUE,,FALSE +190,APOGEE,,,,161294968,,236.55580139160156,-32.28580856,,,,,,,,,,,,,,,15.925,,,TRUE,,3,5,TRUE,,FALSE +191,APOGEE,,,,,,138.98394775390625,26.898181915283203,-8.336913,-3.9110324,,0.68013984,,,,,,,,,,11.610072,,,,TRUE,,3,5,TRUE,,FALSE +192,BOSS,,,,,,292.3936863445692,-82.87058336,,,,,,15.882666,15.882666,15.882666,15.882666,15.882666,,,,,,,,TRUE,,3,5,TRUE,,FALSE +193,BOSS,63050396286834582,105638663,5967165194405248640,,,256.26776123046875,-39.74424362,0.5756708,-1.0651655,,0.41620448,,,,,,,,17.247837,13.611119,14.978188,,,,TRUE,,3,5,TRUE,,FALSE +194,BOSS,,,,,,190.98094177246094,-10.15176678,0.94922966,-13.742431,,2.043193,,,,,,,,,,13.179207,,,,TRUE,,3,5,TRUE,,FALSE +195,APOGEE,63050394946410938,65788188,2006594534430399872,,,339.1441650390625,56.04572677612305,8.904543,13.167531,,0.5812226,,,,,,,,16.422789,15.377684,15.990764,,,,TRUE,,3,5,TRUE,,FALSE +196,BOSS,,,,,,189.61007690429688,34.30216598510742,,,,,,25.20778,23.033634,21.289375,20.658276,20.114435,,,,,,,,TRUE,,3,5,TRUE,,FALSE +197,BOSS,,,,,,166.7301239,-50.11071708,,,,,,,,,,,,,,16.583065,,,,TRUE,,3,5,TRUE,,FALSE +198,APOGEE,,,,,,324.63651171276115,76.65835282842761,,,,,,15.860367,15.860367,15.860367,15.860367,15.860367,,,,,,,,TRUE,,3,5,TRUE,,FALSE +199,APOGEE,,,,,,341.74710531311894,-51.43609997,,,,,,17.86398,17.86398,17.86398,17.86398,17.86398,,,,,,,,TRUE,,3,5,TRUE,,FALSE +200,BOSS,,,2004163617304059904,,,333.1196289,52.08082962036133,1.2852561,-0.30176,,0.36579403,,,,,,,,15.443185,14.5720625,15.096612,,,,TRUE,,3,5,TRUE,,FALSE +201,APOGEE,,,,,,332.74690208160763,26.06552149320406,,,,,,,,,,,,,,13.253478,,,,TRUE,,3,5,TRUE,,FALSE +202,APOGEE,,,,,,52.104434967041016,-6.528459549,,,,,,24.822882,23.89836,24.840467,24.233374,23.311459,,,,,,,,TRUE,,3,5,TRUE,,FALSE +203,BOSS,,,,,,76.74251095825286,26.50233146903051,,,,,,18.069836,18.069836,18.069836,18.069836,18.069836,,,,,,,,TRUE,,3,5,TRUE,,FALSE +204,BOSS,,,1496888912606063104,,,208.09271240234375,38.84844970703125,1.3851037,-8.001816,,1.068554,,,,,,,,14.8604555,13.967966,14.495973,,,,TRUE,,3,5,TRUE,,FALSE +205,BOSS,,,,,,84.16385168502775,-13.44468253,,,,,,,,,,,,,,14.463943,,,,TRUE,,3,5,TRUE,,FALSE +206,BOSS,,,21729755674531712,,,40.287235260009766,9.58453083,16.563494,-9.90541,,1.6310456,,,,,,,,15.053781,13.881147,14.547879,,,,TRUE,,3,5,TRUE,,FALSE +207,APOGEE,,,,,,293.7564221811903,-9.162181507,,,,,,15.046597,15.046597,15.046597,15.046597,15.046597,,,,,,,,TRUE,,3,5,TRUE,,FALSE +208,BOSS,,,,,,290.9150532810235,-39.56686517,,,,,,,,,,,,,,11.556087,,,,TRUE,,3,5,TRUE,,FALSE +209,BOSS,,,,,,284.5955505371094,11.410357475280762,3.617569,-3.642101,,1.8233423,,,,,,,,,,15.330822,,,,TRUE,,3,5,TRUE,,FALSE +210,BOSS,,,,,,262.3737793,31.639211654663086,,,,,,23.608046,25.114317,24.501036,24.647106,20.60317,,,,,,,,TRUE,,3,5,TRUE,,FALSE +211,APOGEE,,,,,,113.01869201660156,28.357545852661133,,,,,,24.997692,23.011667,22.536375,22.610422,23.476704,,,,,,,,TRUE,,3,5,TRUE,,FALSE +212,BOSS,,,,,,196.5323486328125,62.50304031,,,,,,22.68929,23.519281,22.371004,21.82737,21.125847,,,,,,,,TRUE,,3,5,TRUE,,FALSE +213,BOSS,,,,,,176.4287567138672,4.783514976501465,,,,,,22.978958,23.252066,24.233232,23.15292,22.470022,,,,,,,,TRUE,,3,5,TRUE,,FALSE +214,BOSS,,,,,,278.4013366699219,-18.81860924,2.1777713,-2.770039,,1.9763951,,,,,,,,,,15.284637,,,,TRUE,,3,5,TRUE,,FALSE +215,BOSS,,,,,,62.69222640991211,44.075008392333984,-1.1885136,-1.2036417,,0.36271265,,,,,,,,,,15.648644,,,,TRUE,,3,5,TRUE,,FALSE +216,BOSS,,,,,,79.19980681370927,73.22619696856933,,,,,,,,,,,,,,14.983305,,,,TRUE,,3,5,TRUE,,FALSE +217,APOGEE,,,5391354287828213504,,,160.44200134277344,-42.35755539,-9.177196,6.5275445,,0.37144372,,,,,,,,15.648958,14.5100355,15.159582,,,,TRUE,,3,5,TRUE,,FALSE +218,BOSS,,,,608693941,,228.3907012939453,-53.26818085,,,,,,,,,,,,,,,15.121,,,TRUE,,3,5,TRUE,,FALSE +219,APOGEE,,,4045209901225874944,,,276.3653259277344,-32.32202911,-2.4883888,-2.7885587,,0.11899914,,,,,,,,15.775698,14.264627,15.090936,,,,TRUE,,3,5,TRUE,,FALSE +220,BOSS,,,,,,287.1069641113281,48.14677810668945,6.4676185,-3.543613,,1.7724363,,,,,,,,,,14.426527,,,,TRUE,,3,5,TRUE,,FALSE +221,APOGEE,,,,,,337.6748352050781,22.750871658325195,,,,,,22.271988,25.241003,25.384706,24.261948,22.888098,,,,,,,,TRUE,,3,5,TRUE,,FALSE +222,APOGEE,,,5936905088302842368,,,251.52174377441406,-52.06861877,-3.6866062,-10.862063,,1.3344207,,,,,,,,11.116587,9.74369,10.499817,,,,TRUE,,3,5,TRUE,,FALSE +223,BOSS,,,5358012491083432960,,,156.39268493652344,-50.58660507,-5.565849,8.165027,,0.8573523,,,,,,,,15.883036,14.8255,15.439669,,,,TRUE,,3,5,TRUE,,FALSE +224,BOSS,,,,,,10.849310431738326,17.507725466275957,,,,,,11.822677,11.822677,11.822677,11.822677,11.822677,,,,,,,,TRUE,,3,5,TRUE,,FALSE +225,BOSS,,,,,,268.2889404296875,23.54013442993164,5.2176805,7.7810826,,0.9422425,,,,,,,,,,15.434048,,,,TRUE,,3,5,TRUE,,FALSE +226,BOSS,,,1800450604019178752,,,324.7470703,27.07453727722168,2.8251352,0.106735095,,0.87769127,,,,,,,,15.935665,14.940728,15.533101,,,,TRUE,,3,5,TRUE,,FALSE +227,APOGEE,63050394911985003,64398328,1872812453553619072,,,313.376709,38.93260574,-1.9979454,-1.9001839,,0.29784358,,,,,,,,15.093804,13.285848,14.409677,,,,TRUE,,3,5,TRUE,,FALSE +228,BOSS,63050396368506471,,6027923279277168640,,,252.3264923095703,-30.91301537,-0.47721133,-2.7165391,,0.14906284,,,,,,,,16.506794,14.617592,15.571203,,,,TRUE,,3,5,TRUE,,FALSE +229,APOGEE,63050395922353978,,5398390784287715456,,,173.8163604736328,-35.18009949,-8.203925,2.146045,,1.0643536,,,,,,,,16.111086,15.023605,15.647184,,,,TRUE,,3,5,TRUE,,FALSE +230,APOGEE,,,,,,62.45156145554627,-81.97347349,,,,,,17.740475,17.740475,17.740475,17.740475,17.740475,,,,,,,,TRUE,,3,5,TRUE,,FALSE +231,BOSS,,,,,,22.743648529052734,51.266571044921875,,,,,,23.526623,21.051273,19.441263,18.791553,18.241438,,,,,,,,TRUE,,3,5,TRUE,,FALSE +232,BOSS,,,,,,103.47381591796875,2.426119089126587,2.0629268,-4.952248,,0.9015486,,,,,,,,,,11.830829,,,,TRUE,,3,5,TRUE,,FALSE +233,APOGEE,,,4068417842934354432,,,265.8702697753906,-23.64971924,-0.622478,-0.5309592,,0.3277213,,,,,,,,15.496595,13.230395,14.306583,,,,TRUE,,3,5,TRUE,,FALSE +234,BOSS,,,,,,260.7912110731504,-69.09527089,,,,,,,,,,,,,,12.68287,,,,TRUE,,3,5,TRUE,,FALSE +235,APOGEE,,,,476368393,,224.1922607421875,-52.68593979,,,,,,,,,,,,,,,15.393,,,TRUE,,3,5,TRUE,,FALSE +236,BOSS,,,,,,306.4517222679042,-68.98874701,,,,,,17.970772,17.970772,17.970772,17.970772,17.970772,,,,,,,,TRUE,,3,5,TRUE,,FALSE +237,APOGEE,63050396434380401,,6096032389584133504,,,211.62118530273438,-46.17723465,-12.430888,-5.1364303,,1.2661645,,,,,,,,15.6298685,14.606727,15.251596,,,,TRUE,,3,5,TRUE,,FALSE +238,APOGEE,,,,,,6.043114662,-12.90087605,,,,,,24.843203,24.544159,25.352024,23.834915,20.635614,,,,,,,,TRUE,,3,5,TRUE,,FALSE +239,BOSS,,,,,,353.0296325683594,66.05979156,,,,,,24.636906,25.144846,19.409851,24.33128,20.0094,,,,,,,,TRUE,,3,5,TRUE,,FALSE +240,BOSS,,,4435614903577731840,,,250.29515075683594,5.708816051483154,-6.114963,2.0305336,,1.4258776,,,,,,,,14.518869,13.6278105,14.15838,,,,TRUE,,3,5,TRUE,,FALSE +241,BOSS,,,1624737341544648064,,,245.5135955810547,59.780487060546875,5.295288,-3.5337133,,3.736557,,,,,,,,12.863421,11.980861,12.509692,,,,TRUE,,3,5,TRUE,,FALSE +242,APOGEE,,,,,,242.25900268554688,46.28569793701172,,,,,,23.587397,23.045275,22.622324,22.627691,22.049667,,,,,,,,TRUE,,3,5,TRUE,,FALSE +243,BOSS,,,,,,106.73589324951172,-46.37025452,0.6417522,-6.8648586,,1.0575451,,,,,,,,,,14.8115835,,,,TRUE,,3,5,TRUE,,FALSE +244,APOGEE,,,,,,122.9651107788086,11.55028247833252,,,,,,22.40554,25.997234,25.13293,24.897606,22.9654,,,,,,,,TRUE,,3,5,TRUE,,FALSE +245,BOSS,,,,,,318.9789123535156,12.714149475097656,,,,,,24.74784,23.363575,21.680227,20.295362,19.469025,,,,,,,,TRUE,,3,5,TRUE,,FALSE +246,APOGEE,,,,,,175.4866485595703,-38.2097702,6.7345915,-15.349574,,8.683908,,,,,,,,,,15.511074,,,,TRUE,,3,5,TRUE,,FALSE +247,APOGEE,,,,,,100.90907287597656,-68.87063599,-0.764064,-3.603482,,0.80584013,,,,,,,,,,15.98586,,,,TRUE,,3,5,TRUE,,FALSE +248,BOSS,,,4107385565797288576,,,258.2789611816406,-29.12483788,-1.6209584,-7.324894,,0.08772065,,,,,,,,16.683155,14.260551,15.383914,,,,TRUE,,3,5,TRUE,,FALSE +249,APOGEE,,,,,,126.48829526160355,-65.65629569,,,,,,,,,,,,,,19.788662,,,,TRUE,,3,5,TRUE,,FALSE +250,BOSS,,,,,,245.93031311035156,43.83140945,,,,,,24.747637,23.495625,22.353651,21.190956,20.514248,,,,,,,,TRUE,,3,5,TRUE,,FALSE +251,BOSS,,,5348776421604505472,,,172.87168884277344,-51.20564651,-4.918563,3.613761,,0.14817892,,,,,,,,15.28884,13.912846,14.678274,,,,TRUE,,3,5,TRUE,,FALSE +252,APOGEE,,,,,,177.4503936767578,16.558692932128906,,,,,,20.845938,19.554436,18.946703,18.690798,18.581352,,,,,,,,TRUE,,3,5,TRUE,,FALSE +253,APOGEE,63050394786389543,,429477801692859392,,,0.6187518239021301,61.337989807128906,-1.7693046,-2.299481,,0.34271026,,,,,,,,16.84633,15.060775,15.983837,,,,TRUE,,3,5,TRUE,,FALSE +254,APOGEE,,,,,,224.3972168,8.635515213012695,,,,,,24.062578,21.389425,20.068743,19.395025,19.030811,,,,,,,,TRUE,,3,5,TRUE,,FALSE +255,APOGEE,,,,,,57.30942891717964,76.67025877904055,,,,,,14.734452,14.734452,14.734452,14.734452,14.734452,,,,,,,,TRUE,,3,5,TRUE,,FALSE +256,APOGEE,,,4486999789227958016,,,262.3189697265625,6.788151264190674,8.045208,-13.936562,,1.2926903,,,,,,,,16.499552,15.239317,15.941331,,,,TRUE,,3,5,TRUE,,FALSE +257,APOGEE,,,,,,253.7900848388672,-34.88337708,-3.5851352,-3.582744,,0.25028688,,,,,,,,,,15.574355,,,,TRUE,,3,5,TRUE,,FALSE +258,APOGEE,,,,,,21.139650559740314,72.63876023232206,,,,,,,,,,,,,,10.675391,,,,TRUE,,3,5,TRUE,,FALSE +259,BOSS,,,3112217965076955264,,,104.21683502197266,-1.238292217,-2.6515872,2.8242805,,0.36784115,,,,,,,,12.873659,11.156877,12.046217,,,,TRUE,,3,5,TRUE,,FALSE +260,APOGEE,,,,,,206.4253387451172,4.169458389282227,,,,,,22.84527,23.28901,22.411133,21.800308,21.518261,,,,,,,,TRUE,,3,5,TRUE,,FALSE +261,APOGEE,,,,,,204.8253936767578,17.989782333374023,,,,,,23.078787,26.333214,25.19199,22.51887,22.664995,,,,,,,,TRUE,,3,5,TRUE,,FALSE +262,BOSS,,,,,,173.6584014892578,39.58012771606445,,,,,,25.771442,21.916836,20.394693,19.798885,19.584654,,,,,,,,TRUE,,3,5,TRUE,,FALSE +263,APOGEE,,,,,,272.01531982421875,1.0695526599884033,,,,,,23.846851,20.82615,19.711617,19.372805,19.114819,,,,,,,,TRUE,,3,5,TRUE,,FALSE +264,APOGEE,,,,,,94.86540591,-26.41618993,,,,,,,,,,,,,,14.063766,,,,TRUE,,3,5,TRUE,,FALSE +265,BOSS,,,,,,335.88158963792586,-72.18900065,,,,,,17.158436,17.158436,17.158436,17.158436,17.158436,,,,,,,,TRUE,,3,5,TRUE,,FALSE +266,BOSS,,,,,,214.8327499060461,28.238015523680104,,,,,,16.53069,16.53069,16.53069,16.53069,16.53069,,,,,,,,TRUE,,3,5,TRUE,,FALSE +267,BOSS,,,4091697424653620096,,,279.46258544921875,-20.99000931,-0.90645206,-3.9386024,,0.20236279,,,,,,,,15.705693,13.849323,14.791713,,,,TRUE,,3,5,TRUE,,FALSE +268,APOGEE,,,,,,187.96363830566406,-58.3265686,-13.91975,0.6554736,,0.8078138,,,,,,,,,,15.344174,,,,TRUE,,3,5,TRUE,,FALSE +269,BOSS,63050395284807041,,4056261569267138048,,,269.57135009765625,-29.85884476,3.5069675,-0.34670052,,-0.03125914,,,,,,,,16.890783,14.553944,15.901896,,,,TRUE,,3,5,TRUE,,FALSE +270,BOSS,63050395762065514,,4537316052660289024,,,278.31866455078125,26.545969009399414,-5.0673804,-11.858378,,1.121656,,,,,,,,14.900728,13.96087,14.519752,,,,TRUE,,3,5,TRUE,,FALSE +271,APOGEE,63050396390793034,,6039497666350778496,,,239.82540893554688,-31.5754509,-6.443315,-5.7685194,,0.87194496,,,,,,,,14.540613,13.154329,13.911458,,,,TRUE,,3,5,TRUE,,FALSE +272,APOGEE,,,5831490063783773440,,,244.6187744140625,-59.87011337,-6.093896,-3.9982002,,0.29309118,,,,,,,,13.469457,11.734672,12.629369,,,,TRUE,,3,5,TRUE,,FALSE +273,APOGEE,,,,,,203.5801531336464,63.29292514657524,,,,,,,,,,,,,,17.917465,,,,TRUE,,3,5,TRUE,,FALSE +274,APOGEE,,,,,,171.2684392072577,10.297480704819321,,,,,,14.154331,14.154331,14.154331,14.154331,14.154331,,,,,,,,TRUE,,3,5,TRUE,,FALSE +275,BOSS,,,,,,277.9467468261719,-39.49164581,0.12923425,-3.3333886,,0.16742904,,,,,,,,,,14.430116,,,,TRUE,,3,5,TRUE,,FALSE +276,BOSS,,,,,,120.57569885253906,-44.7967186,-3.833829,5.500197,,0.74139214,,,,,,,,,,15.915638,,,,TRUE,,3,5,TRUE,,FALSE +277,APOGEE,,,,,,304.8626533388269,-41.90018818,,,,,,,,,,,,,,15.144285,,,,TRUE,,3,5,TRUE,,FALSE +278,BOSS,63050396027610459,,5823212493545253760,,,231.50494384765625,-68.65945435,-12.6663065,-4.3131213,,0.60134935,,,,,,,,14.816352,14.112899,14.571983,,,,TRUE,,3,5,TRUE,,FALSE +279,APOGEE,,,,,,90.27867146393328,22.794226001129104,,,,,,18.705862,18.705862,18.705862,18.705862,18.705862,,,,,,,,TRUE,,3,5,TRUE,,FALSE +280,BOSS,,,5386574264107635456,,,166.27969360351562,-46.18291855,-3.431316,-1.6262811,,0.36407766,,,,,,,,15.702174,14.866103,15.369634,,,,TRUE,,3,5,TRUE,,FALSE +281,APOGEE,,,,,,61.12736450284257,16.759570603115137,,,,,,12.857866,12.857866,12.857866,12.857866,12.857866,,,,,,,,TRUE,,3,5,TRUE,,FALSE +282,APOGEE,63050396557766242,115485326,161118516924130304,,,71.87994384765625,32.33192443847656,3.562251,-6.4233055,,0.75918716,,,,,,,,13.540638,11.615866,12.584587,,,,TRUE,,3,5,TRUE,,FALSE +283,APOGEE,,,,,,113.55242156982422,-30.17360878,-0.8978819,2.403713,,0.1563706,,,,,,,,,,15.34702,,,,TRUE,,3,5,TRUE,,FALSE +284,BOSS,,,,,,199.89642507710212,-6.480972486,,,,,,15.024271,15.024271,15.024271,15.024271,15.024271,,,,,,,,TRUE,,3,5,TRUE,,FALSE +285,BOSS,,,,,,22.326122657046138,-62.46450829,,,,,,14.021726,14.021726,14.021726,14.021726,14.021726,,,,,,,,TRUE,,3,5,TRUE,,FALSE +286,APOGEE,,,3382706522822637824,,,98.29799652,23.931608200073242,0.31670055,-3.0029032,,0.2424566,,,,,,,,14.381247,13.11786,13.825673,,,,TRUE,,3,5,TRUE,,FALSE +287,APOGEE,,,,,,249.25001525878906,-8.738912582,,,,,,23.859966,24.619247,23.825565,22.858402,21.004652,,,,,,,,TRUE,,3,5,TRUE,,FALSE +288,APOGEE,,,4074564280338103040,,,285.2690734863281,-24.1451664,-1.1830951,-2.0888999,,0.2850656,,,,,,,,14.804027,13.3257675,14.122156,,,,TRUE,,3,5,TRUE,,FALSE +289,BOSS,,,,,,316.58685568350063,11.665228818436546,,,,,,15.73669,15.73669,15.73669,15.73669,15.73669,,,,,,,,TRUE,,3,5,TRUE,,FALSE +290,APOGEE,,,,,,157.60336303710938,21.31033706665039,,,,,,22.89609,21.903906,21.545723,21.389353,20.904123,,,,,,,,TRUE,,3,5,TRUE,,FALSE +291,BOSS,,,,,,38.057708740234375,55.54185485839844,0.45565102,-0.7535167,,0.2970587,,,,,,,,,,13.239313,,,,TRUE,,3,5,TRUE,,FALSE +292,BOSS,,,,,,135.17893981933594,40.339019775390625,,,,,,25.279095,23.249424,24.734251,24.76783,22.532553,,,,,,,,TRUE,,3,5,TRUE,,FALSE +293,APOGEE,63050396553113421,,66432565569225088,,,57.558013916015625,23.42411994934082,3.793769,-7.1988444,,0.50439936,,,,,,,,15.776256,14.744985,15.347315,,,,TRUE,,3,5,TRUE,,FALSE +294,BOSS,,,5357801625365142144,,,158.6242676,-51.11502075,-14.50671,5.113889,,0.48633903,,,,,,,,16.130934,14.971136,15.630656,,,,TRUE,,3,5,TRUE,,FALSE +295,APOGEE,,,,1007557219,,240.68992614746094,-49.09884644,,,,,,,,,,,,,,,15.071,,,TRUE,,3,5,TRUE,,FALSE +296,APOGEE,63050396577881663,,267419374115099008,,,78.80326080322266,54.58869171142578,-1.7796593,-0.3553971,,0.5525906,,,,,,,,16.44462,15.047129,15.821611,,,,TRUE,,3,5,TRUE,,FALSE +297,APOGEE,,,,,,272.85418701171875,-25.25635147,-0.6261248,-8.990599,,0.32644805,,,,,,,,,,15.679528,,,,TRUE,,3,5,TRUE,,FALSE +298,APOGEE,,,,,,213.80850026124952,8.292458664944874,,,,,,,,,,,,,,14.8571615,,,,TRUE,,3,5,TRUE,,FALSE +299,BOSS,,,,,,339.4684143066406,8.354248047,,,,,,26.27487,22.78128,21.248137,20.169998,19.593122,,,,,,,,TRUE,,3,5,TRUE,,FALSE +300,APOGEE,,,4139691244569450752,,,257.01605224609375,-14.64428139,-2.85011,-4.782603,,0.44464493,,,,,,,,15.917721,14.162873,15.068505,,,,TRUE,,3,5,TRUE,,FALSE +301,BOSS,,,,,,255.8694729648279,82.20284171966875,,,,,,,,,,,,,,16.654812,,,,TRUE,,3,5,TRUE,,FALSE +302,BOSS,,,,,,196.2475586,-52.01388168,-10.449237,-1.8116314,,0.95379496,,,,,,,,,,10.566422,,,,TRUE,,3,5,TRUE,,FALSE +303,APOGEE,,,,,,3.4762230928518623,-46.21451469,,,,,,,,,,,,,,16.690163,,,,TRUE,,3,5,TRUE,,FALSE +304,BOSS,,,5605875534761190144,,,108.19120025634766,-31.08579445,-6.8084106,14.931234,,0.8932869,,,,,,,,15.754414,14.727019,15.322794,,,,TRUE,,3,5,TRUE,,FALSE +305,BOSS,,,,,,322.52260058377294,-19.05090352,,,,,,18.041834,18.041834,18.041834,18.041834,18.041834,,,,,,,,TRUE,,3,5,TRUE,,FALSE +306,APOGEE,63050394919427711,,1942871238520759936,,,351.13299560546875,49.39647674560547,-4.6026883,-4.6394935,,0.67156786,,,,,,,,14.8507,14.016653,14.521241,,,,TRUE,,3,5,TRUE,,FALSE +307,BOSS,,,,,,183.86997985839844,29.93075180053711,,,,,,24.099918,24.064215,23.398298,22.21522,22.669205,,,,,,,,TRUE,,3,5,TRUE,,FALSE +308,APOGEE,,,,,,19.380457904898982,47.13923132685275,,,,,,,,,,,,,,17.578691,,,,TRUE,,3,5,TRUE,,FALSE +309,BOSS,,,,,,145.62500686207454,11.219255621765711,,,,,,14.065916,14.065916,14.065916,14.065916,14.065916,,,,,,,,TRUE,,3,5,TRUE,,FALSE +310,APOGEE,,,,,,247.46183031610875,1.507463912559814,,,,,,16.759418,16.759418,16.759418,16.759418,16.759418,,,,,,,,TRUE,,3,5,TRUE,,FALSE +311,APOGEE,,,,,,112.68246459960938,14.82758617401123,-1.6418208,-91.23109,,1.545224,,,,,,,,,,15.270176,,,,TRUE,,3,5,TRUE,,FALSE +312,APOGEE,,,,,,285.49566650390625,-0.517584503,1.6087799,3.65031,,3.5654547,,,,,,,,,,14.814065,,,,TRUE,,3,5,TRUE,,FALSE +313,BOSS,,,,,,271.23760986328125,-26.97800446,-0.88377047,-4.5355177,,0.46722072,,,,,,,,,,13.39879,,,,TRUE,,3,5,TRUE,,FALSE +314,APOGEE,,,,,,141.81892228010466,-34.61016139,,,,,,,,,,,,,,14.383531,,,,TRUE,,3,5,TRUE,,FALSE +315,APOGEE,,,5241579947808617344,,,160.64385986328125,-62.70717239,-8.599338,4.63491,,0.26211706,,,,,,,,15.229936,13.450268,14.3621435,,,,TRUE,,3,5,TRUE,,FALSE +316,APOGEE,63050395718892336,,4468248168182707072,,,271.5931091308594,1.9585689306259155,-0.34786654,-2.877038,,0.71554106,,,,,,,,15.290248,14.227938,14.845512,,,,TRUE,,3,5,TRUE,,FALSE +317,APOGEE,,,,,,47.48423385620117,6.409243583679199,,,,,,23.183796,22.001513,20.553835,19.506739,18.94921,,,,,,,,TRUE,,3,5,TRUE,,FALSE +318,APOGEE,63050396081318453,,5854687972384947456,,,180.82119750976562,-72.0651474,-5.639454,0.9690935,,0.19212803,,,,,,,,15.933684,14.309703,15.168872,,,,TRUE,,3,5,TRUE,,FALSE +319,BOSS,,,,,,74.95577054,17.256115551410943,,,,,,,,,,,,,,10.958212,,,,TRUE,,3,5,TRUE,,FALSE +320,APOGEE,63050395989740420,,5655001714283749632,,,137.19056701660156,-22.23643494,-14.377401,-4.266612,,0.572578,,,,,,,,16.027575,15.160055,15.681556,,,,TRUE,,3,5,TRUE,,FALSE +321,BOSS,,,1239205924410302080,,,218.91331481933594,19.159832000732422,-2.6336377,3.7526374,,1.3347762,,,,,,,,12.492836,11.419887,12.039087,,,,TRUE,,3,5,TRUE,,FALSE +322,APOGEE,,,,,,274.3512862810719,-56.3217297,,,,,,,,,,,,,,13.862485,,,,TRUE,,3,5,TRUE,,FALSE +323,BOSS,,,,,,90.62757873535156,62.50789260864258,1.4373567,-1.1645263,,0.3864974,,,,,,,,,,15.013068,,,,TRUE,,3,5,TRUE,,FALSE +324,APOGEE,,,,,,73.38604045221513,-30.93134116,,,,,,,,,,,,,,12.39384,,,,TRUE,,3,5,TRUE,,FALSE +325,APOGEE,,,,,,355.7539752511332,-21.33350391,,,,,,,,,,,,,,13.481429,,,,TRUE,,3,5,TRUE,,FALSE +326,APOGEE,,,6033102666231541504,,,253.2592010498047,-27.76338959,0.56902146,-4.588193,,0.60549676,,,,,,,,16.210457,15.170535,15.795382,,,,TRUE,,3,5,TRUE,,FALSE +327,BOSS,,,,,,276.81802926511074,69.80295364975748,,,,,,,,,,,,,,16.821177,,,,TRUE,,3,5,TRUE,,FALSE +328,APOGEE,,,,,,248.33183633819283,8.383162110762996,,,,,,12.19843,12.19843,12.19843,12.19843,12.19843,,,,,,,,TRUE,,3,5,TRUE,,FALSE +329,APOGEE,,,4154275952778659328,,,276.244873,-10.43354034,2.2091186,0.10405406,,0.47819528,,,,,,,,16.592756,14.540666,15.554633,,,,TRUE,,3,5,TRUE,,FALSE +330,BOSS,63050396461987817,109326758,6282446580248808320,,,222.6241912841797,-17.37419891,-4.3076997,-8.831916,,0.2692711,,,,,,,,15.690981,15.18588,15.50574,,,,TRUE,,3,5,TRUE,,FALSE +331,APOGEE,,,,,,238.09207153320312,51.558677673339844,,,,,,22.909134,23.483892,22.305105,21.769423,21.167656,,,,,,,,TRUE,,3,5,TRUE,,FALSE +332,APOGEE,,,3111886088663907968,,,110.14352416992188,1.6963738203048706,-2.5187104,-0.65135366,,0.42197448,,,,,,,,15.747803,14.896778,15.411277,,,,TRUE,,3,5,TRUE,,FALSE +333,BOSS,,,,,,256.8235986361501,-5.898099881,,,,,,19.721457,19.721457,19.721457,19.721457,19.721457,,,,,,,,TRUE,,3,5,TRUE,,FALSE +334,BOSS,,,,,,213.62586922970323,-7.700841416,,,,,,,,,,,,,,19.177898,,,,TRUE,,3,5,TRUE,,FALSE +335,BOSS,,,,,,326.4298070617809,19.41967727692564,,,,,,,,,,,,,,11.758517,,,,TRUE,,3,5,TRUE,,FALSE +336,BOSS,,,,,,345.6827392578125,-3.590945005,,,,,,23.93318,22.734827,22.170446,21.90203,22.647518,,,,,,,,TRUE,,3,5,TRUE,,FALSE +337,APOGEE,,,,,,302.76239013671875,30.619321823120117,,,,,,24.858387,22.670965,20.588276,19.41119,18.581202,,,,,,,,TRUE,,3,5,TRUE,,FALSE +338,APOGEE,,,,,,146.46792602539062,-62.81245041,-3.5063326,3.3436139,,0.51065737,,,,,,,,,,15.092734,,,,TRUE,,3,5,TRUE,,FALSE +339,APOGEE,,,4750259156799646720,,,46.44874572753906,-48.80378342,8.085212,-0.61807835,,0.30553108,,,,,,,,15.833857,14.759364,15.37914,,,,TRUE,,3,5,TRUE,,FALSE +340,APOGEE,,,,,,102.01593780517578,27.853824615478516,-0.5623944,-6.4581013,,0.7809886,,,,,,,,,,14.114419,,,,TRUE,,3,5,TRUE,,FALSE +341,APOGEE,,,3434065398149961344,,,98.07112884521484,27.65948486328125,-1.071301,-18.329903,,1.9256781,,,,,,,,16.597858,15.062904,15.881707,,,,TRUE,,3,5,TRUE,,FALSE +342,BOSS,,,87920974142002560,,,39.14982604980469,20.30297852,10.929401,-8.358176,,0.40420455,,,,,,,,15.646815,14.491757,15.156663,,,,TRUE,,3,5,TRUE,,FALSE +343,APOGEE,,,,,,323.35308837890625,-16.61554337,12.100038,-16.353989,,4.095662,,,,,,,,,,11.628042,,,,TRUE,,3,5,TRUE,,FALSE +344,APOGEE,,,,,,9.392899387534705,-36.27319274,,,,,,,,,,,,,,19.840899,,,,TRUE,,3,5,TRUE,,FALSE +345,APOGEE,,,,,,50.76715971859668,47.46348609071529,,,,,,,,,,,,,,18.508158,,,,TRUE,,3,5,TRUE,,FALSE +346,APOGEE,,,,,,190.7328338623047,-0.670413971,,,,,,22.999598,22.885208,22.001408,21.61313,21.216791,,,,,,,,TRUE,,3,5,TRUE,,FALSE +347,BOSS,,,5588349731732350464,,,113.72810363769531,-34.87350464,-1.5261728,7.6164412,,0.54156244,,,,,,,,15.914534,14.893491,15.4905205,,,,TRUE,,3,5,TRUE,,FALSE +348,APOGEE,,,,,,121.5251235961914,-30.15754509,-2.1666052,2.1710746,,0.030252786,,,,,,,,,,14.360721,,,,TRUE,,3,5,TRUE,,FALSE +349,BOSS,63050395934466948,,5429960237024983552,,,141.31747436523438,-39.04939651,-4.022697,2.263812,,0.7283598,,,,,,,,15.934863,14.969467,15.539667,,,,TRUE,,3,5,TRUE,,FALSE +350,BOSS,,,,,,171.05276489257812,-11.39757442,,,,,,24.874617,21.794987,20.342665,19.78375,19.4361,,,,,,,,TRUE,,3,5,TRUE,,FALSE +351,BOSS,63050396000673146,,5719382655583805312,,,116.82365417480469,-15.74708843,-4.072693,2.9307632,,0.32057515,,,,,,,,16.029339,15.115657,15.65647,,,,TRUE,,3,5,TRUE,,FALSE +352,BOSS,,,,,,335.0503845214844,13.342512130737305,,,,,,23.537666,24.995821,24.00141,21.61261,22.503119,,,,,,,,TRUE,,3,5,TRUE,,FALSE +353,APOGEE,,,2004898640825905792,,,335.81903076171875,54.349918365478516,-2.6362,-5.107851,,0.3678613,,,,,,,,13.794047,12.36924,13.145841,,,,TRUE,,3,5,TRUE,,FALSE +354,BOSS,,,4504417118605096192,,,283.35894775390625,12.26593017578125,1.811513,-7.4086685,,1.1857543,,,,,,,,16.198013,14.841307,15.585546,,,,TRUE,,3,5,TRUE,,FALSE +355,APOGEE,,,4185047503669742080,,,287.9762268066406,-15.192276,-3.0487027,-4.5651093,,0.20880888,,,,,,,,14.209098,12.7589035,13.547967,,,,TRUE,,3,5,TRUE,,FALSE +356,BOSS,,,,952138551,,197.7841797,-62.75466537,,,,,,,,,,,,,,,12.357,,,TRUE,,3,5,TRUE,,FALSE +357,BOSS,,,,,,121.26750946044922,33.70030212402344,,,,,,23.129293,23.103611,22.281048,21.59885,20.984114,,,,,,,,TRUE,,3,5,TRUE,,FALSE +358,BOSS,,,,,,84.95551960119067,72.80202679,,,,,,11.60984,11.60984,11.60984,11.60984,11.60984,,,,,,,,TRUE,,3,5,TRUE,,FALSE +359,APOGEE,,,,,,153.48228454589844,-61.74525452,-8.206086,2.9888012,,0.8264185,,,,,,,,,,14.561772,,,,TRUE,,3,5,TRUE,,FALSE +360,BOSS,,,,,,260.8817263752377,-21.96616187,,,,,,19.147873,19.147873,19.147873,19.147873,19.147873,,,,,,,,TRUE,,3,5,TRUE,,FALSE +361,APOGEE,,,,1053774256,,283.5673828,25.661691665649414,,,,,,,,,,,,,,,13.813,,,TRUE,,3,5,TRUE,,FALSE +362,BOSS,,,,,,273.0733771786869,72.17176097035221,,,,,,,,,,,,,,11.351375,,,,TRUE,,3,5,TRUE,,FALSE +363,APOGEE,63050396248065399,105192989,5951738286052701440,,,262.5308837890625,-46.59006882,0.97500414,1.7774001,,0.3895575,,,,,,,,14.3129425,12.897282,13.668084,,,,TRUE,,3,5,TRUE,,FALSE +364,BOSS,,,5696424646636987008,,,124.72760009765625,-24.18893242,-4.326405,3.6894386,,0.80112106,,,,,,,,13.59751,12.965911,13.356296,,,,TRUE,,3,5,TRUE,,FALSE +365,APOGEE,,,,,,108.49375915527344,38.515010833740234,,,,,,22.571835,21.996529,21.036383,20.461472,20.165129,,,,,,,,TRUE,,3,5,TRUE,,FALSE +366,BOSS,,,,,,61.77870559692383,-0.922587812,,,,,,25.424257,23.467241,21.770433,20.383831,19.514921,,,,,,,,TRUE,,3,5,TRUE,,FALSE +367,BOSS,63050396131516790,,5877236688205298304,,,220.9179688,-62.85441208,-4.2525477,-2.545133,,0.24593624,,,,,,,,17.398678,14.781101,15.944885,,,,TRUE,,3,5,TRUE,,FALSE +368,APOGEE,,,,,,90.55750274658203,31.995189666748047,,,,,,23.384329,21.148413,19.771376,19.183846,18.811361,,,,,,,,TRUE,,3,5,TRUE,,FALSE +369,APOGEE,63050395063628541,,2368658181524061312,,,5.524478912353516,-15.77119064,10.1245365,-6.5783367,,1.8334643,,,,,,,,16.247599,14.850008,15.612547,,,,TRUE,,3,5,TRUE,,FALSE +370,APOGEE,,,,,,111.5455551147461,44.194374084472656,-0.3043992,-7.6063266,,0.70804614,,,,,,,,,,15.6847925,,,,TRUE,,3,5,TRUE,,FALSE +371,BOSS,,,,,,191.8635292788548,-72.68997322,,,,,,11.783735,11.783735,11.783735,11.783735,11.783735,,,,,,,,TRUE,,3,5,TRUE,,FALSE +372,BOSS,,,,590147288,,241.69764709472656,-43.74672699,,,,,,,,,,,,,,,15.449,,,TRUE,,3,5,TRUE,,FALSE +373,APOGEE,,,,,,23.82105433,58.76926130218331,,,,,,,,,,,,,,19.468203,,,,TRUE,,3,5,TRUE,,FALSE +374,BOSS,,,,,,248.08383178710938,-8.898121834,-1.4435717,0.10919098,,3.3272586,,,,,,,,,,10.979209,,,,TRUE,,3,5,TRUE,,FALSE +375,APOGEE,,,,,,270.3764953613281,-1.618571401,-3.6191587,1.370966,,0.30749905,,,,,,,,,,14.463103,,,,TRUE,,3,5,TRUE,,FALSE +376,APOGEE,,,1963349608231960192,,,333.2350158691406,46.60401153564453,-4.33009,-3.0242238,,0.17279005,,,,,,,,16.562141,15.204494,15.955939,,,,TRUE,,3,5,TRUE,,FALSE +377,BOSS,,,,,,187.30799748986072,-59.38070185,,,,,,,,,,,,,,18.820301,,,,TRUE,,3,5,TRUE,,FALSE +378,APOGEE,,,,,,209.2765350341797,-9.837945938,,,,,,22.015062,22.985518,22.039286,21.592236,20.787157,,,,,,,,TRUE,,3,5,TRUE,,FALSE +379,APOGEE,,,,979186291,,63.508148193359375,64.17413330078125,,,,,,,,,,,,,,,16.351,,,TRUE,,3,5,TRUE,,FALSE +380,APOGEE,,,3317257028026509696,,,91.8503418,3.4736931324005127,0.33583894,0.6456253,,0.41969883,,,,,,,,15.492894,14.216338,14.935561,,,,TRUE,,3,5,TRUE,,FALSE +381,APOGEE,,,,,,245.28451538085938,-50.05701065,2.355074,-4.9659495,,0.52695024,,,,,,,,,,15.894541,,,,TRUE,,3,5,TRUE,,FALSE +382,BOSS,,,,,,289.5540809755508,-80.01018891,,,,,,,,,,,,,,12.655298,,,,TRUE,,3,5,TRUE,,FALSE +383,BOSS,,,,,,133.83770751953125,-49.40533066,-3.7913196,4.2820964,,1.4607426,,,,,,,,,,14.951678,,,,TRUE,,3,5,TRUE,,FALSE +384,BOSS,,,,,,46.480029730051164,58.49371794832203,,,,,,,,,,,,,,16.219131,,,,TRUE,,3,5,TRUE,,FALSE +385,BOSS,,,,,,283.50431268495385,9.737931008,,,,,,,,,,,,,,14.38017,,,,TRUE,,3,5,TRUE,,FALSE +386,BOSS,,,,,,79.75766754,-65.45455933,1.4873829,0.2675279,,-0.057196513,,,,,,,,,,15.990143,,,,TRUE,,3,5,TRUE,,FALSE +387,APOGEE,,,,,,165.5263193829449,-70.38366479,,,,,,10.521661,10.521661,10.521661,10.521661,10.521661,,,,,,,,TRUE,,3,5,TRUE,,FALSE +388,APOGEE,,,4044208864624592384,,,270.317627,-30.36800575,1.7311352,1.8624274,,0.80753875,,,,,,,,14.683975,13.698873,14.290009,,,,TRUE,,3,5,TRUE,,FALSE +389,BOSS,,,,,,263.37799072265625,-32.92294312,-0.17990057,-2.0229042,,0.29229972,,,,,,,,,,15.897639,,,,TRUE,,3,5,TRUE,,FALSE +390,APOGEE,,,,,,280.35158560734106,-33.54919031,,,,,,,,,,,,,,14.901437,,,,TRUE,,3,5,TRUE,,FALSE +391,APOGEE,,,,,,102.32522205599136,46.655322901522396,,,,,,10.366301,10.366301,10.366301,10.366301,10.366301,,,,,,,,TRUE,,3,5,TRUE,,FALSE +392,APOGEE,,,4050114238496889856,,,271.9659118652344,-29.80384064,-1.525468,-6.0036526,,0.04538482,,,,,,,,16.197578,12.906226,14.241316,,,,TRUE,,3,5,TRUE,,FALSE +393,BOSS,,,1809053350497275136,,,304.5271301269531,16.62353516,-5.4788117,-3.6995006,,0.33318242,,,,,,,,12.273199,10.755296,11.567069,,,,TRUE,,3,5,TRUE,,FALSE +394,APOGEE,,,,,,41.114920133861105,-67.37261514,,,,,,11.319076,11.319076,11.319076,11.319076,11.319076,,,,,,,,TRUE,,3,5,TRUE,,FALSE +395,BOSS,,,,,,49.662322717165715,28.042686756034655,,,,,,,,,,,,,,17.074808,,,,TRUE,,3,5,TRUE,,FALSE +396,APOGEE,,,,,,93.63078165858886,-78.66112355,,,,,,,,,,,,,,15.051751,,,,TRUE,,3,5,TRUE,,FALSE +397,BOSS,,,3032874633341177856,,,110.53865051269531,-12.84098911,-0.74049854,-0.52692276,,0.24223706,,,,,,,,15.308669,14.699602,15.081545,,,,TRUE,,3,5,TRUE,,FALSE +398,BOSS,63050395593594802,,4237037468610852608,,,300.2938232421875,0.44119417667388916,-6.2919707,-0.69298756,,0.87065995,,,,,,,,14.954726,13.905159,14.51665,,,,TRUE,,3,5,TRUE,,FALSE +399,BOSS,,,,,,247.80653381347656,14.629353523254395,,,,,,24.920174,23.141794,23.939354,23.853264,23.270372,,,,,,,,TRUE,,3,5,TRUE,,FALSE +400,BOSS,,,6031635780265645312,,,250.08680725097656,-30.00025177,-3.3214576,-1.9272777,,0.12450659,,,,,,,,16.053246,14.49891,15.333137,,,,TRUE,,3,5,TRUE,,FALSE +401,APOGEE,,,5341773906948329472,,,176.66346740722656,-58.17378616,-7.359181,1.3160751,,0.45009926,,,,,,,,13.352261,12.9249525,13.207072,,,,TRUE,,3,5,TRUE,,FALSE +402,BOSS,,,5919154606862669568,,,263.34576416015625,-57.64451599,1.8092415,3.6454601,,0.87961286,,,,,,,,13.992725,13.151111,13.656467,,,,TRUE,,3,5,TRUE,,FALSE +403,APOGEE,,,1135773422478118272,,,119.33052825927734,75.04370880126953,-11.077475,-8.933944,,1.3462143,,,,,,,,12.1649685,11.068497,11.69883,,,,TRUE,,3,5,TRUE,,FALSE +404,BOSS,,,,,,280.6139325018585,31.106128434122198,,,,,,17.224066,17.224066,17.224066,17.224066,17.224066,,,,,,,,TRUE,,3,5,TRUE,,FALSE +405,BOSS,,,,,,318.01631950431766,-44.41174609,,,,,,14.057388,14.057388,14.057388,14.057388,14.057388,,,,,,,,TRUE,,3,5,TRUE,,FALSE +406,APOGEE,,,,,,334.1224771849238,-86.78006322,,,,,,,,,,,,,,19.66509,,,,TRUE,,3,5,TRUE,,FALSE +407,APOGEE,63050394857474244,,1748239980839482368,,,311.4403991699219,7.676003456115723,-0.4342905,-3.5963159,,0.30318138,,,,,,,,14.757024,13.442669,14.169228,,,,TRUE,,3,5,TRUE,,FALSE +408,BOSS,,,,,,328.01648077080637,-38.17142952,,,,,,10.654339,10.654339,10.654339,10.654339,10.654339,,,,,,,,TRUE,,3,5,TRUE,,FALSE +409,BOSS,,,5952530041868174208,,,262.58013916015625,-44.4292717,-0.4406635,0.26955724,,0.44494462,,,,,,,,15.605582,14.650015,15.21535,,,,TRUE,,3,5,TRUE,,FALSE +410,APOGEE,63050395814002142,,5196699532383501568,,,135.7180176,-80.30479431,-6.703588,5.624849,,0.5352583,,,,,,,,16.41963,15.329366,15.956409,,,,TRUE,,3,5,TRUE,,FALSE +411,BOSS,,,,,,5.161852605344204,89.7474087,,,,,,,,,,,,,,16.24896,,,,TRUE,,3,5,TRUE,,FALSE +412,APOGEE,,,,,,22.670887726346265,-71.37607109,,,,,,17.439081,17.439081,17.439081,17.439081,17.439081,,,,,,,,TRUE,,3,5,TRUE,,FALSE +413,BOSS,,,,,,112.32024383544922,23.338708877563477,,,,,,22.908152,21.232225,20.762075,20.587696,20.449867,,,,,,,,TRUE,,3,5,TRUE,,FALSE +414,BOSS,,,,,,126.7456419362615,-74.30921787,,,,,,,,,,,,,,15.827661,,,,TRUE,,3,5,TRUE,,FALSE +415,BOSS,,,,,,243.72622377971794,85.18336367416228,,,,,,,,,,,,,,19.322287,,,,TRUE,,3,5,TRUE,,FALSE +416,APOGEE,,,,,,130.1280975341797,-47.62461853,-3.6169267,3.7727883,,0.10810649,,,,,,,,,,15.474914,,,,TRUE,,3,5,TRUE,,FALSE +417,APOGEE,,,,,,82.90458679199219,-8.463197708,0.25507995,-3.3431995,,0.6063415,,,,,,,,,,15.670346,,,,TRUE,,3,5,TRUE,,FALSE +418,APOGEE,,,,,,349.64537819276956,-53.29420002,,,,,,10.789656,10.789656,10.789656,10.789656,10.789656,,,,,,,,TRUE,,3,5,TRUE,,FALSE +419,APOGEE,,,5337425269747357184,,,169.02552795410156,-61.17183304,-5.1563363,1.9308856,,0.08651072,,,,,,,,18.50918,12.54399,14.148178,,,,TRUE,,3,5,TRUE,,FALSE +420,BOSS,,,,,,101.31139609582473,41.37964235414148,,,,,,,,,,,,,,12.144341,,,,TRUE,,3,5,TRUE,,FALSE +421,APOGEE,63050394807636064,,518059303144735616,,,30.631330490112305,64.33978271484375,-0.67285967,-0.108683795,,0.20724578,,,,,,,,16.389925,14.292176,15.315882,,,,TRUE,,3,5,TRUE,,FALSE +422,BOSS,,,,,,146.8807729847386,33.72318948801188,,,,,,,,,,,,,,14.013764,,,,TRUE,,3,5,TRUE,,FALSE +423,BOSS,,,,,,47.25010169901816,54.94170596770289,,,,,,15.370076,15.370076,15.370076,15.370076,15.370076,,,,,,,,TRUE,,3,5,TRUE,,FALSE +424,BOSS,,,5256590171300645760,,,150.5889129638672,-60.50811768,-3.420351,0.17310613,,0.21370761,,,,,,,,15.034916,13.5649395,14.361195,,,,TRUE,,3,5,TRUE,,FALSE +425,APOGEE,,,,,,242.9103822496102,-33.30078308,,,,,,,,,,,,,,17.498768,,,,TRUE,,3,5,TRUE,,FALSE +426,APOGEE,,,,,,342.2573547363281,64.55258178710938,,,,,,23.562025,24.600319,23.126251,20.955397,19.71036,,,,,,,,TRUE,,3,5,TRUE,,FALSE +427,BOSS,,,,,,203.51564025878906,-55.33155441,-22.983206,3.4202046,,1.0892464,,,,,,,,,,15.545646,,,,TRUE,,3,5,TRUE,,FALSE +428,BOSS,,,,,,115.77200317382812,20.621469497680664,,,,,,23.542658,25.793892,24.333727,22.292213,20.41367,,,,,,,,TRUE,,3,5,TRUE,,FALSE +429,APOGEE,,,,,,276.9360537933442,-84.6283365,,,,,,,,,,,,,,15.108389,,,,TRUE,,3,5,TRUE,,FALSE +430,APOGEE,,,5608731275693338496,,,104.19329071044922,-29.22268105,-0.1214479,4.6623945,,0.673103,,,,,,,,15.600853,14.822427,15.292921,,,,TRUE,,3,5,TRUE,,FALSE +431,BOSS,,,,,,108.37801361083984,-14.83190727,,,,,,20.998796,19.219343,18.472977,18.11028,17.932262,,,,,,,,TRUE,,3,5,TRUE,,FALSE +432,BOSS,63050395852165967,,5270598258642595840,,,120.9011001586914,-69.05821228,-4.111269,7.313748,,0.6337655,,,,,,,,14.498236,13.797024,14.226707,,,,TRUE,,3,5,TRUE,,FALSE +433,BOSS,,,,,,152.30859465159332,47.63121814216865,,,,,,19.303774,19.303774,19.303774,19.303774,19.303774,,,,,,,,TRUE,,3,5,TRUE,,FALSE +434,BOSS,,,,,,230.21185302734375,52.97753906,,,,,,23.046698,23.68321,22.461466,22.431992,21.790535,,,,,,,,TRUE,,3,5,TRUE,,FALSE +435,APOGEE,,,,,,4.450130957976879,79.64879404627422,,,,,,11.893364,11.893364,11.893364,11.893364,11.893364,,,,,,,,TRUE,,3,5,TRUE,,FALSE +436,APOGEE,,,,,,356.83651722032585,9.778099434474157,,,,,,16.719353,16.719353,16.719353,16.719353,16.719353,,,,,,,,TRUE,,3,5,TRUE,,FALSE +437,APOGEE,,,,,,301.5992126464844,8.575030326843262,-3.6165621,-9.068182,,0.4690419,,,,,,,,,,15.44834,,,,TRUE,,3,5,TRUE,,FALSE +438,APOGEE,,,,633896357,,270.25018310546875,-27.82985687,,,,,,,,,,,,,,,13.059,,,TRUE,,3,5,TRUE,,FALSE +439,APOGEE,,,5528162155991606784,,,126.66361999511719,-38.92765045,-7.7388654,-5.475267,,2.1901166,,,,,,,,15.073684,13.92172,14.576618,,,,TRUE,,3,5,TRUE,,FALSE +440,BOSS,63050395385605993,,4090856671839859584,,,274.4754333496094,-21.55037689,-1.5635316,-4.0271473,,0.2499878,,,,,,,,16.321796,14.212082,15.239828,,,,TRUE,,3,5,TRUE,,FALSE +441,BOSS,,,,,,285.6783142089844,16.013452529907227,-2.26164,-4.3229446,,0.18660606,,,,,,,,,,14.890517,,,,TRUE,,3,5,TRUE,,FALSE +442,APOGEE,,,3808919247410481792,,,164.5400848388672,3.554823398590088,-11.891517,-3.0602934,,0.5013773,,,,,,,,16.306662,15.515771,15.996194,,,,TRUE,,3,5,TRUE,,FALSE +443,APOGEE,63050396156212746,,5891440179379865856,,,219.89207458496094,-57.649086,-0.92216265,-2.228004,,0.4685509,,,,,,,,14.5904045,13.582278,14.17604,,,,TRUE,,3,5,TRUE,,FALSE +444,APOGEE,,,2154545574964355968,,,280.9845275878906,58.782596588134766,-9.221912,2.1159868,,1.9292787,,,,,,,,15.629158,14.380419,15.075761,,,,TRUE,,3,5,TRUE,,FALSE +445,BOSS,,,,,,280.8703918457031,-8.460271835,-0.32922095,-0.43821537,,0.32482007,,,,,,,,,,14.100223,,,,TRUE,,3,5,TRUE,,FALSE +446,APOGEE,,,,,,28.411960312803792,65.91616177407172,,,,,,14.718841,14.718841,14.718841,14.718841,14.718841,,,,,,,,TRUE,,3,5,TRUE,,FALSE +447,APOGEE,63050395077830753,72208102,2887744458586423040,,,87.26921844482422,-35.72962189,1.2497166,1.5040443,,0.11513953,,,,,,,,16.17308,15.030487,15.682566,,,,TRUE,,3,5,TRUE,,FALSE +448,APOGEE,,,1812734760241161600,,,312.6208801269531,17.348440170288086,-4.09583,-5.1857867,,0.67810434,,,,,,,,15.949253,15.083168,15.600728,,,,TRUE,,3,5,TRUE,,FALSE +449,APOGEE,,,4345180175273199232,,,243.08352661132812,-9.550031662,-3.9855082,-0.1442319,,0.24726771,,,,,,,,15.65536,14.219376,15.001842,,,,TRUE,,3,5,TRUE,,FALSE +450,APOGEE,,,4049109280488528000,,,271.6079102,-31.36966705,4.976375,-4.646424,,2.8843672,,,,,,,,12.049998,11.244013,11.729532,,,,TRUE,,3,5,TRUE,,FALSE +451,APOGEE,,,,,,275.7818711576812,40.416418995123564,,,,,,,,,,,,,,14.990516,,,,TRUE,,3,5,TRUE,,FALSE +452,BOSS,,,,,,8.067514419555664,59.453521728515625,-1.2530131,0.09434621,,0.24649014,,,,,,,,,,14.8595,,,,TRUE,,3,5,TRUE,,FALSE +453,BOSS,63050395977971177,,,255312470,,114.31839752197266,-24.27757263,,,,,,,,,,,,,,,14.423,,,TRUE,,3,5,TRUE,,FALSE +454,APOGEE,,,6120877744594519296,,,211.2926025390625,-36.27659225,6.4086876,-8.878188,,1.8799226,,,,,,,,15.432252,14.182332,14.881709,,,,TRUE,,3,5,TRUE,,FALSE +455,BOSS,,,,,,150.4075469970703,-1.654230118,,,,,,24.207088,23.079874,22.287527,22.453857,21.653755,,,,,,,,TRUE,,3,5,TRUE,,FALSE +456,APOGEE,,,,,,82.04621887207031,-6.841846466,-5.8667264,-3.8152413,,2.891221,,,,,,,,,,15.413581,,,,TRUE,,3,5,TRUE,,FALSE +457,BOSS,,,,,,222.02175903320312,-62.10781097,-5.4309077,-2.314992,,0.25169802,,,,,,,,,,14.918212,,,,TRUE,,3,5,TRUE,,FALSE +458,BOSS,,,,,,125.97203063964844,7.541876792907715,3.9331033,-5.804282,,0.70235205,,,,,,,,,,14.818821,,,,TRUE,,3,5,TRUE,,FALSE +459,BOSS,,,,,,32.61758804321289,28.15776824951172,,,,,,23.969034,25.232449,23.13529,21.867043,21.238775,,,,,,,,TRUE,,3,5,TRUE,,FALSE +460,APOGEE,,,,,,105.30199432373047,-17.73529434,,,,,,24.59284,22.841167,21.417097,21.036207,20.517189,,,,,,,,TRUE,,3,5,TRUE,,FALSE +461,APOGEE,,,,,,273.4855957,2.6372904777526855,,,,,,19.726717,17.726105,16.885101,16.487762,16.268087,,,,,,,,TRUE,,3,5,TRUE,,FALSE +462,APOGEE,,,4369167735121779584,,,265.8389587402344,-2.744055271,-4.6846805,-1.6842042,,1.2452623,,,,,,,,15.99917,14.560691,15.363743,,,,TRUE,,3,5,TRUE,,FALSE +463,BOSS,,,5646449644132831744,,,128.32675170898438,-27.93286133,2.7899938,0.7734809,,0.96464086,,,,,,,,16.307806,15.219769,15.844103,,,,TRUE,,3,5,TRUE,,FALSE +464,APOGEE,,,,135745522,,81.26732635498047,27.89073944091797,,,,,,,,,,,,,,,16.907,,,TRUE,,3,5,TRUE,,FALSE +465,BOSS,,,3253310428186591360,,,61.66284942626953,-2.099471092,1.338665,-6.0964465,,1.7611884,,,,,,,,14.496506,13.482664,14.071737,,,,TRUE,,3,5,TRUE,,FALSE +466,APOGEE,,,,,,171.03175354003906,-53.15166855,-9.558513,4.463718,,0.8028863,,,,,,,,,,14.16969,,,,TRUE,,3,5,TRUE,,FALSE +467,BOSS,,,,,,56.09106633373874,9.182482839739095,,,,,,,,,,,,,,11.425054,,,,TRUE,,3,5,TRUE,,FALSE +468,APOGEE,,,,,,130.0986496808401,59.87444782978534,,,,,,12.985482,12.985482,12.985482,12.985482,12.985482,,,,,,,,TRUE,,3,5,TRUE,,FALSE +469,APOGEE,,,,,,331.3029479980469,48.691036224365234,-7.166265,-3.7276094,,1.1966796,,,,,,,,,,14.348793,,,,TRUE,,3,5,TRUE,,FALSE +470,BOSS,,,,,,160.7335205078125,14.717142105102539,,,,,,24.479671,23.95208,22.359156,21.699821,21.041908,,,,,,,,TRUE,,3,5,TRUE,,FALSE +471,BOSS,,,,,,337.6871032714844,46.60219955444336,1.2574878,-0.54577273,,0.97318727,,,,,,,,,,15.459759,,,,TRUE,,3,5,TRUE,,FALSE +472,APOGEE,,,,,,162.74935913085938,-20.38305664,-6.7779098,-7.3813815,,0.80060923,,,,,,,,,,14.772149,,,,TRUE,,3,5,TRUE,,FALSE +473,BOSS,,,,,,273.2932129,14.279129981994629,-2.0851877,-2.8273616,,0.4880365,,,,,,,,,,15.650797,,,,TRUE,,3,5,TRUE,,FALSE +474,BOSS,,,,,,246.59141540527344,-39.72131348,-6.5919886,0.09717616,,0.35207003,,,,,,,,,,14.444545,,,,TRUE,,3,5,TRUE,,FALSE +475,BOSS,,,5625128739280751232,,,132.2197723388672,-37.45576477,-3.1850655,2.47363,,0.20774052,,,,,,,,16.056936,15.213589,15.731041,,,,TRUE,,3,5,TRUE,,FALSE +476,APOGEE,,,5196042677264942464,,,126.61569213867188,-82.31497192,-0.9025651,-8.914667,,1.9092584,,,,,,,,16.187511,14.700386,15.501316,,,,TRUE,,3,5,TRUE,,FALSE +477,BOSS,,,6269205402233818496,,,214.58941650390625,-28.72555923,-13.289969,-5.135757,,0.32337138,,,,,,,,15.774589,14.771223,15.357773,,,,TRUE,,3,5,TRUE,,FALSE +478,APOGEE,,,4095305540738015232,,,270.67266845703125,-19.15880585,-9.672557,16.821596,,4.130032,,,,,,,,15.036289,13.380875,14.253332,,,,TRUE,,3,5,TRUE,,FALSE +479,BOSS,,,3474340165476099968,,,181.4940643310547,-28.56378174,-37.793873,-2.2311952,,5.057372,,,,,,,,11.462166,10.637719,11.132817,,,,TRUE,,3,5,TRUE,,FALSE +480,APOGEE,,,5980812504542141184,,,239.59019470214844,-53.76139832,-3.7573721,-4.999202,,0.34261143,,,,,,,,16.835018,14.954118,15.91313,,,,TRUE,,3,5,TRUE,,FALSE +481,BOSS,,,2137060728746353024,,,296.65374755859375,52.25337219238281,-2.2536843,-5.080354,,0.40150976,,,,,,,,16.081152,15.1121,15.678666,,,,TRUE,,3,5,TRUE,,FALSE +482,APOGEE,,,,,,271.4241638183594,-31.44605064,-2.7251065,-4.5502086,,2.6519842,,,,,,,,,,15.108744,,,,TRUE,,3,5,TRUE,,FALSE +483,BOSS,,,6059684493721359616,,,189.2760772705078,-59.65699768,-4.2305007,-0.017408386,,0.4561232,,,,,,,,16.10303,15.1405115,15.70882,,,,TRUE,,3,5,TRUE,,FALSE +484,APOGEE,,,3255832707861178752,,,64.28480529785156,0.8881714940071106,10.862982,-18.745565,,1.952361,,,,,,,,14.984694,13.8578205,14.50046,,,,TRUE,,3,5,TRUE,,FALSE +485,APOGEE,,,,,,247.8610288,48.864167346575925,,,,,,,,,,,,,,19.718094,,,,TRUE,,3,5,TRUE,,FALSE +486,APOGEE,,,,,,281.61077880859375,-24.47903061,-2.4868326,-7.334808,,0.634817,,,,,,,,,,15.443133,,,,TRUE,,3,5,TRUE,,FALSE +487,APOGEE,,,,,,329.90631103515625,43.24858093261719,,,,,,24.03646,24.721462,23.329077,21.10755,19.95097,,,,,,,,TRUE,,3,5,TRUE,,FALSE +488,BOSS,,,,,,281.07513427734375,-2.932081699,-5.008492,-5.1915402,,2.7878942,,,,,,,,,,15.850998,,,,TRUE,,3,5,TRUE,,FALSE +489,BOSS,,,5355820923901831296,,,155.5844727,-53.58008575,-6.377437,3.7743454,,0.120621696,,,,,,,,16.53025,14.661373,15.6086645,,,,TRUE,,3,5,TRUE,,FALSE +490,APOGEE,63050396493083867,112362753,6697929037721663360,,,301.95281982421875,-34.91501617,-2.563158,-1.9183165,,-0.056342643,,,,,,,,16.423912,14.969755,15.784888,,,,TRUE,,3,5,TRUE,,FALSE +491,APOGEE,,,,,,50.45360800623463,-50.99784875,,,,,,15.082906,15.082906,15.082906,15.082906,15.082906,,,,,,,,TRUE,,3,5,TRUE,,FALSE +492,APOGEE,,,,,,180.03366088867188,14.96243667602539,,,,,,23.931654,21.009706,19.920351,19.461891,19.232035,,,,,,,,TRUE,,3,5,TRUE,,FALSE +493,BOSS,,,,259323453,,135.89649963378906,-23.24621582,,,,,,,,,,,,,,,16.456,,,TRUE,,3,5,TRUE,,FALSE +494,BOSS,,,,,,306.4676513671875,4.220664024353027,-2.9850934,-6.533568,,-0.000821911,,,,,,,,,,15.134507,,,,TRUE,,3,5,TRUE,,FALSE +495,BOSS,,,,,,303.6621279360973,-42.59916291,,,,,,,,,,,,,,15.0562935,,,,TRUE,,3,5,TRUE,,FALSE +496,APOGEE,,,,,,235.26895141601562,25.69287872314453,,,,,,25.651394,23.73533,22.247644,21.042074,20.37564,,,,,,,,TRUE,,3,5,TRUE,,FALSE +497,BOSS,,,5305426938743815680,,,145.4871063232422,-58.97439957,-4.798502,2.9471464,,0.3263461,,,,,,,,14.6178,12.953673,13.825532,,,,TRUE,,3,5,TRUE,,FALSE +498,BOSS,,,,,,235.0601806640625,-55.37739563,-1.9166795,-4.8623257,,0.86623085,,,,,,,,,,14.266909,,,,TRUE,,3,5,TRUE,,FALSE +499,BOSS,,,,,,37.12534713745117,26.966304779052734,,,,,,23.728996,23.577183,22.267443,21.542755,21.414995,,,,,,,,TRUE,,3,5,TRUE,,FALSE +500,APOGEE,,,5875557252897213312,,,232.67327880859375,-61.23598099,-6.7210364,-7.841287,,0.7076458,,,,,,,,16.300095,14.947197,15.697027,,,,TRUE,,3,5,TRUE,,FALSE +501,BOSS,,,,,,24.17914266558879,67.99466481638859,,,,,,10.452161,10.452161,10.452161,10.452161,10.452161,,,,,,,,TRUE,,3,5,TRUE,,FALSE +502,BOSS,63050394963590317,66114451,2024865462780447360,,,292.0614318847656,26.421756744384766,-2.3887353,-4.4299817,,0.18199961,,,,,,,,13.832073,11.703137,12.729208,,,,TRUE,,3,5,TRUE,,FALSE +503,APOGEE,,,,,,76.15621075671531,-0.474730037,,,,,,,,,,,,,,19.988836,,,,TRUE,,3,5,TRUE,,FALSE +504,BOSS,,,,,,291.0588379,-4.82526207,-3.7641177,-7.9671497,,0.83418494,,,,,,,,,,15.456917,,,,TRUE,,3,5,TRUE,,FALSE +505,APOGEE,,,,,,286.97710611738137,-41.10995623,,,,,,,,,,,,,,14.957476,,,,TRUE,,3,5,TRUE,,FALSE +506,APOGEE,,,2174795280628205056,,,326.77569580078125,55.487247467041016,-1.2431009,-4.292938,,1.1545998,,,,,,,,15.659126,14.077881,14.9254465,,,,TRUE,,3,5,TRUE,,FALSE +507,APOGEE,,,,,,200.07322692871094,-77.70184326,-3.062209,-2.9008565,,0.37769482,,,,,,,,,,14.907646,,,,TRUE,,3,5,TRUE,,FALSE +508,BOSS,,,,,,283.8681335449219,-5.272192001,-2.6303709,-6.0103383,,0.14643216,,,,,,,,,,15.875382,,,,TRUE,,3,5,TRUE,,FALSE +509,BOSS,,,5835384838861017984,,,242.05807495117188,-56.98258972,-4.6217175,-3.3055344,,0.36575574,,,,,,,,16.160326,14.267073,15.454029,,,,TRUE,,3,5,TRUE,,FALSE +510,BOSS,63050395590279731,,4221732988304434048,,,301.7219238,-3.696438789,-7.896888,-46.90195,,1.9875027,,,,,,,,14.425155,13.263394,13.925076,,,,TRUE,,3,5,TRUE,,FALSE +511,APOGEE,,,5956993092642113792,,,267.8360595703125,-41.15690994,1.3202887,-7.785451,,0.18020284,,,,,,,,16.671228,15.189217,15.986541,,,,TRUE,,3,5,TRUE,,FALSE +512,APOGEE,,,,,,276.75482177734375,-24.01777267,-7.1308546,-11.13923,,-0.040651146,,,,,,,,,,15.765028,,,,TRUE,,3,5,TRUE,,FALSE +513,BOSS,,,,,,199.07489304209898,-26.45363838,,,,,,11.51871,11.51871,11.51871,11.51871,11.51871,,,,,,,,TRUE,,3,5,TRUE,,FALSE +514,APOGEE,,,,,,288.9649125,-72.17450181,,,,,,,,,,,,,,12.480112,,,,TRUE,,3,5,TRUE,,FALSE +515,APOGEE,,,,,,152.98635864257812,5.360319137573242,,,,,,25.155415,24.589241,22.677738,22.031914,21.347176,,,,,,,,TRUE,,3,5,TRUE,,FALSE +516,BOSS,,,,,,272.7123172408438,8.922306903973308,,,,,,18.609257,18.609257,18.609257,18.609257,18.609257,,,,,,,,TRUE,,3,5,TRUE,,FALSE +517,APOGEE,,,,,,13.387800216674805,33.886024475097656,,,,,,22.697067,22.513002,21.699343,21.90101,21.035086,,,,,,,,TRUE,,3,5,TRUE,,FALSE +518,APOGEE,63050395379142320,83944345,4089688131503378176,,,274.8431701660156,-22.78701973,-4.088193,-4.0948114,,0.99501383,,,,,,,,13.030375,11.725279,12.4483385,,,,TRUE,,3,5,TRUE,,FALSE +519,APOGEE,,,,,,230.93202209472656,22.289823532104492,-8.129888,-10.917553,,0.7477393,,,,,,,,,,15.462765,,,,TRUE,,3,5,TRUE,,FALSE +520,BOSS,,,,,,326.55348731536316,-75.02917569,,,,,,,,,,,,,,18.992537,,,,TRUE,,3,5,TRUE,,FALSE +521,BOSS,,,,,,290.6926574707031,36.802520751953125,,,,,,24.729181,25.24113,24.80252,21.164886,21.453245,,,,,,,,TRUE,,3,5,TRUE,,FALSE +522,BOSS,,,,,,68.80485537759499,89.41294264019348,,,,,,,,,,,,,,15.863707,,,,TRUE,,3,5,TRUE,,FALSE +523,BOSS,,,,,,117.70038604736328,-16.12167358,-4.9214206,0.48959145,,0.87472403,,,,,,,,,,14.399064,,,,TRUE,,3,5,TRUE,,FALSE +524,BOSS,,,1917837626495842048,,,347.3399353027344,38.97124099731445,2.977965,5.791308,,0.93771327,,,,,,,,15.869839,14.81288,15.423519,,,,TRUE,,3,5,TRUE,,FALSE +525,APOGEE,,,,,,241.26425548181237,-87.45372457,,,,,,,,,,,,,,16.213453,,,,TRUE,,3,5,TRUE,,FALSE +526,APOGEE,,,,1186933352,,326.0679626464844,53.33169937133789,,,,,,,,,,,,,,,14.615,,,TRUE,,3,5,TRUE,,FALSE +527,BOSS,,,,,,130.5913901054565,-89.40005641,,,,,,19.043726,19.043726,19.043726,19.043726,19.043726,,,,,,,,TRUE,,3,5,TRUE,,FALSE +528,BOSS,,,,,,78.64933713,-89.24819729,,,,,,19.553968,19.553968,19.553968,19.553968,19.553968,,,,,,,,TRUE,,3,5,TRUE,,FALSE +529,APOGEE,,,,,,19.31688690185547,3.8409690856933594,,,,,,22.167538,22.199493,21.709389,21.205427,20.609585,,,,,,,,TRUE,,3,5,TRUE,,FALSE +530,BOSS,,,,,,233.9136505126953,36.49856948852539,,,,,,24.454786,25.281012,22.717567,22.047422,21.839544,,,,,,,,TRUE,,3,5,TRUE,,FALSE +531,APOGEE,,,,,,152.88081923437773,-16.29570941,,,,,,10.26141,10.26141,10.26141,10.26141,10.26141,,,,,,,,TRUE,,3,5,TRUE,,FALSE +532,BOSS,,,,,,55.34962445088841,25.929375765929933,,,,,,17.767626,17.767626,17.767626,17.767626,17.767626,,,,,,,,TRUE,,3,5,TRUE,,FALSE +533,BOSS,,,3031788625090542848,,,110.31365966796875,-14.74105453,-0.35964996,-0.75572896,,0.8322476,,,,,,,,11.233078,11.137306,11.203665,,,,TRUE,,3,5,TRUE,,FALSE +534,APOGEE,,,,,,198.2512815,-4.182494493,,,,,,15.568952,15.568952,15.568952,15.568952,15.568952,,,,,,,,TRUE,,3,5,TRUE,,FALSE +535,APOGEE,63050395974104158,,5605926936931077632,,,107.95504760742188,-30.93754196,-14.97679,7.9418287,,1.7350882,,,,,,,,13.522416,12.681095,13.184684,,,,TRUE,,3,5,TRUE,,FALSE +536,BOSS,,,,,,315.3011779785156,0.3091956377029419,,,,,,20.833963,19.322245,18.656046,18.407879,18.261242,,,,,,,,TRUE,,3,5,TRUE,,FALSE +537,BOSS,,,6631449231812781696,,,278.64935302734375,-61.29764557,-2.5523403,-15.397907,,0.61966777,,,,,,,,15.344467,14.2870865,14.898588,,,,TRUE,,3,5,TRUE,,FALSE +538,APOGEE,,,5852945487048425600,,,213.89830017089844,-64.08432007,-5.0950212,-2.4251885,,0.3292515,,,,,,,,14.779611,13.683362,14.320599,,,,TRUE,,3,5,TRUE,,FALSE +539,BOSS,,,5863684176542180096,,,197.74075317382812,-60.57977676,-6.8498607,-4.3040404,,0.8435856,,,,,,,,16.728683,14.82622,15.948668,,,,TRUE,,3,5,TRUE,,FALSE +540,APOGEE,,,,,,174.40718012529496,-86.50359566,,,,,,10.426009,10.426009,10.426009,10.426009,10.426009,,,,,,,,TRUE,,3,5,TRUE,,FALSE +541,BOSS,,,,,,4.785295009613037,-13.59751511,,,,,,24.677778,23.401913,22.13766,21.771025,21.51497,,,,,,,,TRUE,,3,5,TRUE,,FALSE +542,BOSS,,,5770235102721962368,,,215.6446533203125,-82.830513,-1.4193362,-1.4139295,,0.80704606,,,,,,,,14.0590515,13.297694,13.761603,,,,TRUE,,3,5,TRUE,,FALSE +543,BOSS,,,,,,269.3148193359375,-17.25314903,-6.220263,-16.147335,,0.6435918,,,,,,,,,,15.706298,,,,TRUE,,3,5,TRUE,,FALSE +544,APOGEE,63050394949732153,65890884,2013218129912627328,,,344.5714111328125,58.358428955078125,-3.974082,-2.868381,,0.21979427,,,,,,,,13.222598,11.732962,12.553071,,,,TRUE,,3,5,TRUE,,FALSE +545,BOSS,,,,,,319.20294189453125,0.63541472,,,,,,23.170242,22.04446,20.68755,19.973001,19.46918,,,,,,,,TRUE,,3,5,TRUE,,FALSE +546,APOGEE,,,,,,267.75921630859375,-8.483067513,7.0046334,-0.5546064,,0.5190887,,,,,,,,,,15.651495,,,,TRUE,,3,5,TRUE,,FALSE +547,APOGEE,,,4302029532226690048,,,296.6654968261719,10.260411262512207,-3.5828784,-6.208854,,0.39463502,,,,,,,,15.263587,13.743317,14.556156,,,,TRUE,,3,5,TRUE,,FALSE +548,BOSS,,,,,,309.4784832,87.62158296567299,,,,,,13.764205,13.764205,13.764205,13.764205,13.764205,,,,,,,,TRUE,,3,5,TRUE,,FALSE +549,APOGEE,,,,,,314.4443359,24.823572158813477,,,,,,22.37607,20.27526,19.38519,19.023441,18.818027,,,,,,,,TRUE,,3,5,TRUE,,FALSE +550,BOSS,,,6029976686029878144,,,256.2670593261719,-28.66666603,-0.8356436,0.5651767,,0.2966127,,,,,,,,15.110459,13.545997,14.386333,,,,TRUE,,3,5,TRUE,,FALSE +551,BOSS,,,,,,233.1489715576172,31.23639678955078,,,,,,25.173529,25.13264,22.18733,24.624088,23.507086,,,,,,,,TRUE,,3,5,TRUE,,FALSE +552,BOSS,,,,,,331.5333846418616,-24.41556241,,,,,,,,,,,,,,19.588415,,,,TRUE,,3,5,TRUE,,FALSE +553,APOGEE,,,,,,121.72666796925276,-27.86532385,,,,,,,,,,,,,,10.290678,,,,TRUE,,3,5,TRUE,,FALSE +554,APOGEE,,,,,,125.25306701660156,-60.53755188,-4.2501116,6.4274645,,0.073270604,,,,,,,,,,15.734622,,,,TRUE,,3,5,TRUE,,FALSE +555,APOGEE,,,5933867653083600384,,,244.86862182617188,-52.80186844,-3.1339045,-4.289576,,0.27909666,,,,,,,,14.035689,12.774894,13.484082,,,,TRUE,,3,5,TRUE,,FALSE +556,APOGEE,,,,,,251.01174324737386,-85.21149374,,,,,,17.286907,17.286907,17.286907,17.286907,17.286907,,,,,,,,TRUE,,3,5,TRUE,,FALSE +557,BOSS,63050394811558558,55493781,530081603797876608,,,8.784536361694336,69.58279418945312,0.8685957,-0.90123606,,0.18967819,,,,,,,,15.108059,12.717012,13.820855,,,,TRUE,,3,5,TRUE,,FALSE +558,BOSS,,,4062970411291967232,,,272.0029297,-27.67734909,-8.12038,-6.0993276,,0.13031842,,,,,,,,16.481976,13.5139675,14.785666,,,,TRUE,,3,5,TRUE,,FALSE +559,APOGEE,,,,770376751,,143.2060547,-57.96246719,,,,,,,,,,,,,,,13.825,,,TRUE,,3,5,TRUE,,FALSE +560,BOSS,,,,,,168.95203917305992,38.43449450849809,,,,,,,,,,,,,,10.911693,,,,TRUE,,3,5,TRUE,,FALSE +561,APOGEE,,,4107057597722760832,,,280.7860412597656,-10.81229305,-3.333848,-7.771619,,0.19315441,,,,,,,,17.139044,14.80908,15.903949,,,,TRUE,,3,5,TRUE,,FALSE +562,BOSS,,,3455520924456866944,,,85.77598571777344,35.48521805,0.85453194,-2.6924748,,0.5877023,,,,,,,,13.328345,12.51157,13.010914,,,,TRUE,,3,5,TRUE,,FALSE +563,BOSS,,,5309794886120370176,,,139.69664001464844,-56.57923889,-12.860635,12.314681,,0.8513798,,,,,,,,12.363344,10.786598,11.623018,,,,TRUE,,3,5,TRUE,,FALSE +564,BOSS,,,,,,103.51087951660156,4.877716064453125,1.3137242,-3.9762192,,0.5659215,,,,,,,,,,15.381278,,,,TRUE,,3,5,TRUE,,FALSE +565,APOGEE,,,,,,227.64533978846762,74.82086658717174,,,,,,,,,,,,,,16.562538,,,,TRUE,,3,5,TRUE,,FALSE +566,APOGEE,,,,,,220.60969320562373,-40.05707241,,,,,,,,,,,,,,15.753344,,,,TRUE,,3,5,TRUE,,FALSE +567,BOSS,63050396571544420,,236599788313754112,,,54.041419982910156,39.77754211425781,8.9519415,0.87800485,,0.662342,,,,,,,,15.848696,14.925826,15.474125,,,,TRUE,,3,5,TRUE,,FALSE +568,APOGEE,,,,,,112.24533081054688,15.194509506225586,,,,,,22.686354,21.004202,19.556688,18.913458,18.494501,,,,,,,,TRUE,,3,5,TRUE,,FALSE +569,BOSS,,,2383257870579385216,,,346.8323059082031,-25.05037498,14.200295,2.310131,,1.0971197,,,,,,,,16.3503,15.196056,15.866995,,,,TRUE,,3,5,TRUE,,FALSE +570,APOGEE,,,,,,247.85317993164062,39.047157287597656,19.758434,-55.5428,,6.6597204,,,,,,,,,,11.842003,,,,TRUE,,3,5,TRUE,,FALSE +571,BOSS,,,2075246253766199680,,,299.8430176,41.54568862915039,2.0759406,-4.51753,,1.4243963,,,,,,,,12.09932,11.361675,11.813303,,,,TRUE,,3,5,TRUE,,FALSE +572,BOSS,,,,,,245.12057495117188,-3.091715813,,,,,,21.497875,19.840092,19.13041,18.803808,18.705406,,,,,,,,TRUE,,3,5,TRUE,,FALSE +573,APOGEE,,,,,,36.93370516368004,-8.253790987,,,,,,,,,,,,,,14.631443,,,,TRUE,,3,5,TRUE,,FALSE +574,APOGEE,,,6215548169650169344,,,220.62399291992188,-34.01202011,-1.1564118,0.4245386,,1.2166282,,,,,,,,15.860356,14.822079,15.42686,,,,TRUE,,3,5,TRUE,,FALSE +575,BOSS,,,,,,33.664634704589844,25.290821075439453,-13.622049,-14.674427,,1.2587081,,,,,,,,,,14.355535,,,,TRUE,,3,5,TRUE,,FALSE +576,BOSS,,,,124420649,,40.56668472290039,-3.540287971,,,,,,,,,,,,,,,15.044,,,TRUE,,3,5,TRUE,,FALSE +577,BOSS,63050395519921871,85336433,4144811562840957696,,,267.3031311035156,-16.99458694,2.2234828,-1.99253,,0.16016898,,,,,,,,15.809598,11.007014,12.51068,,,,TRUE,,3,5,TRUE,,FALSE +578,APOGEE,,,,,,321.22935698974266,83.43601602214935,,,,,,13.373706,13.373706,13.373706,13.373706,13.373706,,,,,,,,TRUE,,3,5,TRUE,,FALSE +579,APOGEE,,,,,,273.5729064941406,-10.87293816,-2.4129505,-10.491037,,0.2066054,,,,,,,,,,14.710543,,,,TRUE,,3,5,TRUE,,FALSE +580,APOGEE,,,,,,164.8592987060547,50.72809982299805,,,,,,24.738962,23.453281,22.202969,21.55306,22.139952,,,,,,,,TRUE,,3,5,TRUE,,FALSE +581,BOSS,,,4036192183521383808,,,270.8544006347656,-38.18399429,-0.3278942,0.9190745,,0.2732692,,,,,,,,13.150856,11.502315,12.366805,,,,TRUE,,3,5,TRUE,,FALSE +582,BOSS,,,,,,234.1052703857422,35.12257766723633,,,,,,24.34594,24.196688,22.7647,22.807348,21.44058,,,,,,,,TRUE,,3,5,TRUE,,FALSE +583,BOSS,,,,,,286.48321533203125,12.61663818359375,-12.691244,14.02439,,1.0253853,,,,,,,,,,15.725237,,,,TRUE,,3,5,TRUE,,FALSE +584,BOSS,,,,,,243.77059936523438,-51.70484161,-3.078706,-4.977445,,1.3642068,,,,,,,,,,12.276511,,,,TRUE,,3,5,TRUE,,FALSE +585,APOGEE,,,,19163831,,255.1195068359375,-34.65916824,,,,,,,,,,,,,,,14.858,,,TRUE,,3,5,TRUE,,FALSE +586,APOGEE,,,4304058539179354752,,,298.6429748535156,11.783635139465332,-8.157393,-11.150521,,0.45382655,,,,,,,,16.396643,15.309932,15.956625,,,,TRUE,,3,5,TRUE,,FALSE +587,BOSS,,,,,,227.0644531,49.10395050048828,,,,,,23.638107,23.931614,23.060629,22.392725,22.023705,,,,,,,,TRUE,,3,5,TRUE,,FALSE +588,BOSS,,,,,,277.0101623535156,15.756054878234863,,,,,,22.579525,20.902927,19.831696,19.278772,19.013058,,,,,,,,TRUE,,3,5,TRUE,,FALSE +589,APOGEE,,,,,,299.2218933105469,9.587837219238281,1.6732532,-4.823099,,1.3187172,,,,,,,,,,14.314518,,,,TRUE,,3,5,TRUE,,FALSE +590,BOSS,,,,,,199.70242309570312,-21.50641251,,,,,,22.470417,23.785404,23.345318,22.064705,22.21405,,,,,,,,TRUE,,3,5,TRUE,,FALSE +591,BOSS,,,,,,106.49585723876953,38.66529465,,,,,,24.655643,25.694834,23.794178,23.430641,21.030912,,,,,,,,TRUE,,3,5,TRUE,,FALSE +592,BOSS,,,,,,191.12155151367188,-58.74043274,-14.054205,-1.8982073,,0.5953409,,,,,,,,,,15.946905,,,,TRUE,,3,5,TRUE,,FALSE +593,BOSS,,,,,,230.97974873799265,81.91890328,,,,,,,,,,,,,,16.022886,,,,TRUE,,3,5,TRUE,,FALSE +594,BOSS,,,,,,333.0979438193703,43.34826432743651,,,,,,16.536528,16.536528,16.536528,16.536528,16.536528,,,,,,,,TRUE,,3,5,TRUE,,FALSE +595,APOGEE,,,,,,36.92597198486328,-9.481547356,,,,,,21.51008,25.525845,24.066328,24.874651,23.628117,,,,,,,,TRUE,,3,5,TRUE,,FALSE +596,APOGEE,,,,,,136.3432159423828,11.85999584197998,-3.3056214,-20.785198,,2.4267426,,,,,,,,,,15.015554,,,,TRUE,,3,5,TRUE,,FALSE +597,APOGEE,,,6072269606866109568,,,180.5696563720703,-57.89603806,-8.258524,-2.108727,,0.6256141,,,,,,,,16.425415,15.313402,15.961051,,,,TRUE,,3,5,TRUE,,FALSE +598,BOSS,,,,,,172.10556796678347,52.213691080823196,,,,,,,,,,,,,,17.292759,,,,TRUE,,3,5,TRUE,,FALSE +599,BOSS,,,,,,308.5118575971303,-88.15452268,,,,,,,,,,,,,,11.506551,,,,TRUE,,3,5,TRUE,,FALSE +600,APOGEE,,,3600777130722863872,,,180.72576904296875,-3.90166378,0.87073725,-6.369217,,0.056507546,,,,,,,,16.155737,15.129116,15.734906,,,,TRUE,,3,5,TRUE,,FALSE +601,BOSS,,,4588828378578064512,,,279.00982666015625,31.381546020507812,-3.7257905,-0.43531606,,0.72062147,,,,,,,,14.855146,13.886403,14.455603,,,,TRUE,,3,5,TRUE,,FALSE +602,APOGEE,,,,,,228.26356506347656,12.836915016174316,,,,,,25.191187,24.143372,23.14978,22.287895,22.215757,,,,,,,,TRUE,,3,5,TRUE,,FALSE +603,BOSS,,,,,,307.9385681152344,40.515167236328125,,,,,,25.457565,24.434338,23.711103,21.556734,20.596796,,,,,,,,TRUE,,3,5,TRUE,,FALSE +604,BOSS,,,1134127006894244864,,,156.71664428710938,81.37867736816406,-22.739155,-15.370893,,1.4457008,,,,,,,,16.510887,14.83679,15.711702,,,,TRUE,,3,5,TRUE,,FALSE +605,APOGEE,,,4051104314375722624,,,275.8066406,-28.99839401,-25.137615,-38.71895,,3.1232026,,,,,,,,15.635555,13.988061,14.903377,,,,TRUE,,3,5,TRUE,,FALSE +606,BOSS,,,6397403922546834560,,,334.4548645019531,-68.83404541,7.30069,-3.5894535,,0.65371484,,,,,,,,15.498588,14.68272,15.171135,,,,TRUE,,3,5,TRUE,,FALSE +607,APOGEE,,,,,,207.62131716682893,83.04333570364008,,,,,,13.409409,13.409409,13.409409,13.409409,13.409409,,,,,,,,TRUE,,3,5,TRUE,,FALSE +608,BOSS,,,,,,217.67165868597732,-4.75792923,,,,,,,,,,,,,,16.463583,,,,TRUE,,3,5,TRUE,,FALSE +609,APOGEE,,,5970284096599739264,,,255.2919158935547,-38.64410019,-4.2219257,-0.86019576,,0.6511395,,,,,,,,14.497218,13.260371,13.964248,,,,TRUE,,3,5,TRUE,,FALSE +610,APOGEE,,,,,,279.1627197265625,8.361335754394531,0.20971021,-0.09347485,,0.28397104,,,,,,,,,,13.373921,,,,TRUE,,3,5,TRUE,,FALSE +611,BOSS,,,,,,277.77508544921875,-39.73245621,1.2394111,-1.7869297,,0.44159433,,,,,,,,,,15.682914,,,,TRUE,,3,5,TRUE,,FALSE +612,APOGEE,,,,,,315.05214221173446,-62.65926236,,,,,,,,,,,,,,15.141437,,,,TRUE,,3,5,TRUE,,FALSE +613,BOSS,,,,,,22.481986231797944,-8.800868508,,,,,,13.176018,13.176018,13.176018,13.176018,13.176018,,,,,,,,TRUE,,3,5,TRUE,,FALSE +614,APOGEE,63050395369812012,,4084132372272683904,,,287.9451599121094,-19.08610725,-1.6798651,-3.0819092,,0.075133964,,,,,,,,16.37009,15.227784,15.883465,,,,TRUE,,3,5,TRUE,,FALSE +615,APOGEE,,,,,,62.54847587,-55.45812368,,,,,,14.650881,14.650881,14.650881,14.650881,14.650881,,,,,,,,TRUE,,3,5,TRUE,,FALSE +616,APOGEE,,,2173631069614006144,,,327.6081237792969,53.543739318847656,5.3605022,1.1588656,,0.30402076,,,,,,,,16.50248,14.142976,15.24269,,,,TRUE,,3,5,TRUE,,FALSE +617,BOSS,,,5992688810695153152,,,246.26866149902344,-42.50436783,-2.7679923,-3.4089236,,0.19945455,,,,,,,,16.90359,14.514334,15.623055,,,,TRUE,,3,5,TRUE,,FALSE +618,BOSS,,,,,,148.62391969873076,-15.24915892,,,,,,,,,,,,,,15.668767,,,,TRUE,,3,5,TRUE,,FALSE +619,APOGEE,,,,,,240.5555228370686,-64.44999483,,,,,,15.338513,15.338513,15.338513,15.338513,15.338513,,,,,,,,TRUE,,3,5,TRUE,,FALSE +620,APOGEE,,,,,,207.4317169189453,-63.18018341,2.5988085,-4.0306993,,0.5574236,,,,,,,,,,15.711347,,,,TRUE,,3,5,TRUE,,FALSE +621,BOSS,,,,,,351.3095397949219,-4.950001717,,,,,,22.788647,21.134224,20.1476,19.721521,19.440414,,,,,,,,TRUE,,3,5,TRUE,,FALSE +622,APOGEE,,,,,,237.81698608398438,-47.19733429,-2.2073853,-3.5437603,,0.17941312,,,,,,,,,,15.982281,,,,TRUE,,3,5,TRUE,,FALSE +623,APOGEE,,,,,,313.03530178726766,-84.54701263,,,,,,16.22595,16.22595,16.22595,16.22595,16.22595,,,,,,,,TRUE,,3,5,TRUE,,FALSE +624,BOSS,,,,,,237.94847106933594,59.448421478271484,,,,,,22.91465,22.957521,22.674917,22.394033,21.743563,,,,,,,,TRUE,,3,5,TRUE,,FALSE +625,APOGEE,,,,,,109.1257985355177,53.63878926585443,,,,,,18.140932,18.140932,18.140932,18.140932,18.140932,,,,,,,,TRUE,,3,5,TRUE,,FALSE +626,APOGEE,,,,,,47.022446822343824,74.93967657730437,,,,,,12.593231,12.593231,12.593231,12.593231,12.593231,,,,,,,,TRUE,,3,5,TRUE,,FALSE +627,BOSS,,,6717068820745728896,,,283.67120361328125,-39.48267365,-11.293724,-15.585056,,0.31332073,,,,,,,,15.808131,14.679681,15.325939,,,,TRUE,,3,5,TRUE,,FALSE +628,APOGEE,,,5239910820428681600,,,160.40521240234375,-63.92519379,-18.086557,10.412901,,0.65690804,,,,,,,,15.47039,14.305795,14.979796,,,,TRUE,,3,5,TRUE,,FALSE +629,BOSS,,,,,,180.7693634033203,1.5889219045639038,,,,,,22.264975,20.518604,19.548244,19.115389,18.742502,,,,,,,,TRUE,,3,5,TRUE,,FALSE +630,BOSS,,,,,,292.8914794921875,-34.98809052,-5.2540927,-6.1297646,,0.30386332,,,,,,,,,,13.269703,,,,TRUE,,3,5,TRUE,,FALSE +631,APOGEE,,,1828067621730994176,,,298.7998352050781,23.10990333557129,-4.361742,-4.4423203,,0.3628621,,,,,,,,15.180392,13.0500555,14.08248,,,,TRUE,,3,5,TRUE,,FALSE +632,BOSS,,,1437513429279909888,,,257.1270751953125,60.06772232055664,-1.443397,-28.834328,,2.7050111,,,,,,,,14.673526,13.450518,14.134826,,,,TRUE,,3,5,TRUE,,FALSE +633,APOGEE,,,1624140581608443136,,,249.01657104492188,59.466522216796875,-3.55073,15.570146,,6.0966334,,,,,,,,14.151682,12.556417,13.398576,,,,TRUE,,3,5,TRUE,,FALSE +634,BOSS,63050396580706445,,280788061119781248,,,76.26654052734375,57.86122131347656,-1.7969649,-5.7395463,,1.4884235,,,,,,,,15.631335,14.377442,15.083575,,,,TRUE,,3,5,TRUE,,FALSE +635,BOSS,,,,,,222.7592773,-59.18612671,-4.2488303,-2.3025928,,0.38976878,,,,,,,,,,12.312154,,,,TRUE,,3,5,TRUE,,FALSE +636,APOGEE,,,,,,322.54848873268315,-57.47709268,,,,,,,,,,,,,,15.082321,,,,TRUE,,3,5,TRUE,,FALSE +637,BOSS,,,,,,271.96917724609375,-33.23094177,0.75122035,-3.8097816,,0.5921568,,,,,,,,,,14.068474,,,,TRUE,,3,5,TRUE,,FALSE +638,APOGEE,,,,,,95.54370880126953,4.876046180725098,-9.378868,-29.56437,,3.2606373,,,,,,,,,,12.708214,,,,TRUE,,3,5,TRUE,,FALSE +639,APOGEE,,,3818265272340159488,,,166.7407684326172,7.130058288574219,-1.3629947,-6.9724464,,0.22826472,,,,,,,,15.51967,14.326375,14.997889,,,,TRUE,,3,5,TRUE,,FALSE +640,BOSS,,,4240706779431051136,,,299.4292297363281,1.317088246,-14.469922,-3.223084,,2.9701314,,,,,,,,16.710316,14.714756,15.709409,,,,TRUE,,3,5,TRUE,,FALSE +641,APOGEE,,,1109255194880907904,,,106.37728881835938,69.67102051,0.51022106,-3.6206582,,0.54947853,,,,,,,,14.378126,13.609616,14.075171,,,,TRUE,,3,5,TRUE,,FALSE +642,BOSS,,,,,,110.0755526273399,44.07568803915038,,,,,,,,,,,,,,12.781383,,,,TRUE,,3,5,TRUE,,FALSE +643,APOGEE,,,,,,246.60586547851562,77.92977905273438,,,,,,21.171444,25.668007,25.896032,25.68073,23.355572,,,,,,,,TRUE,,3,5,TRUE,,FALSE +644,BOSS,,,,,,53.16736448742243,-0.359860154,,,,,,,,,,,,,,13.013135,,,,TRUE,,3,5,TRUE,,FALSE +645,APOGEE,,,,,,196.5104522705078,-54.84932709,-7.368508,-0.9708531,,0.45204172,,,,,,,,,,15.622104,,,,TRUE,,3,5,TRUE,,FALSE +646,APOGEE,63050395395142672,84081936,4093215369178648576,,,278.3622741699219,-19.27349091,-4.96884,-6.458835,,0.10351104,,,,,,,,15.780024,13.405675,14.505188,,,,TRUE,,3,5,TRUE,,FALSE +647,APOGEE,,,4531169542151985920,,,281.2217712402344,21.701467514038086,-1.0566115,-11.775431,,-2.5769944,,,,,,,,15.853795,14.943877,15.9167385,,,,TRUE,,3,5,TRUE,,FALSE +648,BOSS,63050396348720310,,6008871732037501824,,,237.3400421142578,-37.95759964,-4.0620246,-1.6649269,,0.28386253,,,,,,,,15.759646,14.176156,15.023356,,,,TRUE,,3,5,TRUE,,FALSE +649,APOGEE,,,,,,264.8172607421875,-43.66769409,2.2217822,-3.4967396,,0.36767536,,,,,,,,,,12.472592,,,,TRUE,,3,5,TRUE,,FALSE +650,BOSS,,,,,,163.0165557861328,33.80036926269531,,,,,,22.978676,21.43995,20.62619,20.35532,20.020502,,,,,,,,TRUE,,3,5,TRUE,,FALSE +651,BOSS,,,,,,97.71913146972656,-11.46373558,-2.1852167,0.2869014,,0.38194057,,,,,,,,,,14.568674,,,,TRUE,,3,5,TRUE,,FALSE +652,BOSS,63050396311293802,,,186118489,,260.1236572265625,-33.23654175,,,,,,,,,,,,,,,13.381,,,TRUE,,3,5,TRUE,,FALSE +653,APOGEE,,,,1130285009,,269.9403076171875,4.377375126,,,,,,,,,,,,,,,13.256,,,TRUE,,3,5,TRUE,,FALSE +654,APOGEE,,,,,,245.4011688232422,-49.87039948,-1.9234682,-5.8600526,,1.1432875,,,,,,,,,,15.273315,,,,TRUE,,3,5,TRUE,,FALSE +655,APOGEE,,,,,,47.969597179348916,59.55456899311369,,,,,,,,,,,,,,14.545984,,,,TRUE,,3,5,TRUE,,FALSE +656,BOSS,,,,,,153.13397216796875,23.541107177734375,,,,,,24.72344,23.822668,23.088736,22.425251,22.091562,,,,,,,,TRUE,,3,5,TRUE,,FALSE +657,APOGEE,,,4323322502614346240,,,292.5484313964844,18.46716309,1.8744264,-4.1307507,,1.2584507,,,,,,,,15.888413,14.439618,15.231233,,,,TRUE,,3,5,TRUE,,FALSE +658,BOSS,,,,,,288.3132019042969,49.30097198486328,-0.24305704,-4.982285,,0.40894723,,,,,,,,,,15.271489,,,,TRUE,,3,5,TRUE,,FALSE +659,BOSS,,,1929844052953481856,,,346.4954833984375,39.57917404174805,-0.14140293,-3.681939,,0.34070587,,,,,,,,16.119486,15.188096,15.736088,,,,TRUE,,3,5,TRUE,,FALSE +660,APOGEE,,,,,,106.47402954101562,-30.83817101,-1.729902,6.425692,,0.3843502,,,,,,,,,,12.659388,,,,TRUE,,3,5,TRUE,,FALSE +661,BOSS,,,1766165838597968512,,,328.8971252441406,12.091068267822266,-0.65562296,-6.398968,,0.44918057,,,,,,,,15.6873665,14.757081,15.307294,,,,TRUE,,3,5,TRUE,,FALSE +662,APOGEE,,,,,,73.14367958262281,-40.14045529,,,,,,16.987528,16.987528,16.987528,16.987528,16.987528,,,,,,,,TRUE,,3,5,TRUE,,FALSE +663,BOSS,,,,,,84.07003021240234,19.79519271850586,,,,,,21.463827,19.828781,18.931585,18.528864,18.322441,,,,,,,,TRUE,,3,5,TRUE,,FALSE +664,APOGEE,,,,,,50.91654586791992,-6.819466591,,,,,,23.06522,23.622742,22.36015,21.311632,20.6874,,,,,,,,TRUE,,3,5,TRUE,,FALSE +665,APOGEE,,,,,,165.99316070380303,-6.453546362,,,,,,,,,,,,,,12.16694,,,,TRUE,,3,5,TRUE,,FALSE +666,BOSS,,,,,,318.1880187988281,53.715415954589844,,,,,,25.535301,24.789057,22.254484,20.68076,19.682112,,,,,,,,TRUE,,3,5,TRUE,,FALSE +667,APOGEE,,,,,,255.06405639648438,-31.3215847,-0.24710181,-1.2864136,,0.15464613,,,,,,,,,,14.468799,,,,TRUE,,3,5,TRUE,,FALSE +668,APOGEE,,,5882457890962812544,,,236.52565002441406,-57.5420723,-6.6589403,-7.1031914,,0.74118584,,,,,,,,16.555948,15.239271,15.972748,,,,TRUE,,3,5,TRUE,,FALSE +669,BOSS,,,,,,122.61570773706015,-28.94082615,,,,,,,,,,,,,,17.066856,,,,TRUE,,3,5,TRUE,,FALSE +670,BOSS,,,3132997124234483584,,,103.61636352539062,6.994454860687256,-0.059630644,-1.2991401,,0.345966,,,,,,,,15.865173,15.143417,15.593595,,,,TRUE,,3,5,TRUE,,FALSE +671,BOSS,,,,,,126.40337938693514,-72.38305319,,,,,,,,,,,,,,16.297142,,,,TRUE,,3,5,TRUE,,FALSE +672,BOSS,,,,,,261.15211040498104,-60.27667738,,,,,,11.887927,11.887927,11.887927,11.887927,11.887927,,,,,,,,TRUE,,3,5,TRUE,,FALSE +673,BOSS,63050394814635134,55602755,545050904852218752,,,38.80365753173828,70.46918487548828,-1.1128917,0.74980956,,0.6162754,,,,,,,,13.592728,11.697813,12.6525755,,,,TRUE,,3,5,TRUE,,FALSE +674,APOGEE,,,5249032059625742080,,,145.55194091796875,-65.58695984,-1.0743951,4.856339,,0.27172175,,,,,,,,14.70392,13.293571,14.116903,,,,TRUE,,3,5,TRUE,,FALSE +675,APOGEE,,,,,,275.9591064453125,49.99051284790039,-3.2505305,8.570398,,1.2883335,,,,,,,,,,12.525419,,,,TRUE,,3,5,TRUE,,FALSE +676,BOSS,,,,,,226.7289581298828,-71.52174377,-5.265412,-4.791294,,0.02509018,,,,,,,,,,15.974443,,,,TRUE,,3,5,TRUE,,FALSE +677,APOGEE,,,,,,11.762564659118652,34.70375442504883,,,,,,22.03019,21.416128,20.94479,20.539503,20.456787,,,,,,,,TRUE,,3,5,TRUE,,FALSE +678,APOGEE,,,,,,240.90713899274846,-56.66832304,,,,,,16.380571,16.380571,16.380571,16.380571,16.380571,,,,,,,,TRUE,,3,5,TRUE,,FALSE +679,APOGEE,,,,,,288.5784714648988,-78.72000494,,,,,,16.639513,16.639513,16.639513,16.639513,16.639513,,,,,,,,TRUE,,3,5,TRUE,,FALSE +680,BOSS,63050396284544512,105570651,5964965105999673984,,,253.16136169433594,-42.75876236,-0.72600865,-2.210445,,0.55161256,,,,,,,,16.241434,14.476761,15.389992,,,,TRUE,,3,5,TRUE,,FALSE +681,BOSS,,,1830889346490600960,,,307.6405944824219,23.03294563293457,-4.6288095,-6.200954,,0.36149803,,,,,,,,15.521128,14.753385,15.218862,,,,TRUE,,3,5,TRUE,,FALSE +682,APOGEE,,,,,,268.88909912109375,38.70267868041992,-0.090308264,-2.4719143,,0.092193425,,,,,,,,,,14.748493,,,,TRUE,,3,5,TRUE,,FALSE +683,APOGEE,,,,,,281.0074462890625,36.27869415283203,-3.0290263,-3.2106783,,0.15975347,,,,,,,,,,15.70615,,,,TRUE,,3,5,TRUE,,FALSE +684,BOSS,,,,,,143.25886563099223,23.64804358821003,,,,,,18.342402,18.342402,18.342402,18.342402,18.342402,,,,,,,,TRUE,,3,5,TRUE,,FALSE +685,BOSS,,,,,,126.0080566,56.96689987182617,,,,,,23.543585,23.344305,21.947147,21.15077,20.555872,,,,,,,,TRUE,,3,5,TRUE,,FALSE +686,APOGEE,,,5373515982979209344,,,172.9967803955078,-48.67851257,-4.2144256,3.8864522,,0.5731298,,,,,,,,15.40565,14.378716,14.978219,,,,TRUE,,3,5,TRUE,,FALSE +687,APOGEE,,,6716103174659184512,,,282.1134338378906,-42.4707756,7.0793095,-6.7159753,,0.7386296,,,,,,,,11.950217,10.31549,11.172389,,,,TRUE,,3,5,TRUE,,FALSE +688,BOSS,63050395947352095,,,336987893,,122.17324829101562,-44.22309494,,,,,,,,,,,,,,,14.591,,,TRUE,,3,5,TRUE,,FALSE +689,BOSS,,,3121901260906583936,,,93.93719482421875,0.072815478,-2.132785,-5.7796674,,0.8108896,,,,,,,,16.400904,15.308849,15.938829,,,,TRUE,,3,5,TRUE,,FALSE +690,APOGEE,,,,,,137.59443235027825,-23.89913837,,,,,,,,,,,,,,18.569742,,,,TRUE,,3,5,TRUE,,FALSE +691,BOSS,,,,,,65.65604456280583,-62.26898483,,,,,,,,,,,,,,10.814568,,,,TRUE,,3,5,TRUE,,FALSE +692,APOGEE,,,,,,179.89828491210938,18.013010025024414,,,,,,22.589579,22.722742,22.34042,23.097742,22.631636,,,,,,,,TRUE,,3,5,TRUE,,FALSE +693,BOSS,63050395172847232,,3931733497937010304,,,188.03741455078125,12.633756637573242,-16.343481,-19.970377,,0.34295577,,,,,,,,15.611786,14.874605,15.328423,,,,TRUE,,3,5,TRUE,,FALSE +694,BOSS,,,,,,167.84895602297226,-15.7388085,,,,,,16.320738,16.320738,16.320738,16.320738,16.320738,,,,,,,,TRUE,,3,5,TRUE,,FALSE +695,APOGEE,,,,,,138.51329040527344,13.971419334411621,,,,,,25.634636,25.051765,25.311922,22.630032,24.02609,,,,,,,,TRUE,,3,5,TRUE,,FALSE +696,BOSS,,,,,,299.9789123535156,-0.046156041,,,,,,20.656265,19.206242,18.452616,18.158573,18.06457,,,,,,,,TRUE,,3,5,TRUE,,FALSE +697,BOSS,,,,,,25.855222702026367,61.590553283691406,1.3871891,0.07404502,,0.34814754,,,,,,,,,,14.339257,,,,TRUE,,3,5,TRUE,,FALSE +698,BOSS,,,,,,168.72567001446882,-0.619465641,,,,,,,,,,,,,,18.394283,,,,TRUE,,3,5,TRUE,,FALSE +699,BOSS,,,,,,268.70269775390625,-30.15050316,-6.437551,-9.275833,,-0.10276061,,,,,,,,,,15.5457735,,,,TRUE,,3,5,TRUE,,FALSE +700,APOGEE,,,,,,34.926255052624015,-36.19858422,,,,,,,,,,,,,,16.466764,,,,TRUE,,3,5,TRUE,,FALSE +701,BOSS,,,,,,25.606897354125977,49.938133239746094,,,,,,23.928705,22.335455,21.270618,20.89132,20.500801,,,,,,,,TRUE,,3,5,TRUE,,FALSE +702,BOSS,63050395066828946,70316989,2539074546729616384,,,16.27984046936035,2.2418770790100098,-1.5687217,-47.84853,,7.1026936,,,,,,,,16.288002,13.908887,15.021954,,,,TRUE,,3,5,TRUE,,FALSE +703,BOSS,,,,,,193.019043,19.056764602661133,,,,,,22.776123,23.021446,22.67031,22.255188,21.997519,,,,,,,,TRUE,,3,5,TRUE,,FALSE +704,BOSS,,,,,,329.76963715425313,40.133929462273755,,,,,,,,,,,,,,13.3590145,,,,TRUE,,3,5,TRUE,,FALSE +705,BOSS,,,,,,306.0335792212571,28.636935964376093,,,,,,11.069528,11.069528,11.069528,11.069528,11.069528,,,,,,,,TRUE,,3,5,TRUE,,FALSE +706,BOSS,,,,,,332.1538296,-44.8502313,,,,,,17.29722,17.29722,17.29722,17.29722,17.29722,,,,,,,,TRUE,,3,5,TRUE,,FALSE +707,APOGEE,,,,,,212.5724078595871,38.80531474751638,,,,,,,,,,,,,,18.252222,,,,TRUE,,3,5,TRUE,,FALSE +708,BOSS,,,,,,254.51085625541538,17.986795420590113,,,,,,11.880822,11.880822,11.880822,11.880822,11.880822,,,,,,,,TRUE,,3,5,TRUE,,FALSE +709,APOGEE,63050396004544868,,5759658586838123904,,,138.12020874023438,-3.854115963,-0.5739141,6.2576075,,1.0293179,,,,,,,,16.40944,15.327415,15.949825,,,,TRUE,,3,5,TRUE,,FALSE +710,BOSS,,,,,,273.72955322265625,13.53879451751709,,,,,,23.495577,24.596123,23.687021,21.852497,20.699657,,,,,,,,TRUE,,3,5,TRUE,,FALSE +711,APOGEE,,,,,,71.64082336425781,25.99337387084961,,,,,,23.749523,23.775595,22.014788,21.51998,20.929379,,,,,,,,TRUE,,3,5,TRUE,,FALSE +712,APOGEE,,,,,,186.08087660510873,-36.6525981,,,,,,16.571892,16.571892,16.571892,16.571892,16.571892,,,,,,,,TRUE,,3,5,TRUE,,FALSE +713,APOGEE,,,6025706320208414464,,,247.59063720703125,-30.79616356,4.3588715,-2.420482,,0.69343734,,,,,,,,15.471722,14.216216,14.925211,,,,TRUE,,3,5,TRUE,,FALSE +714,BOSS,,,3241144430807626624,,,80.60289001464844,7.367914677,-0.8969869,-7.7346926,,1.382505,,,,,,,,16.009401,14.566895,15.355196,,,,TRUE,,3,5,TRUE,,FALSE +715,BOSS,,,,,,271.39300082543144,46.55634094368199,,,,,,,,,,,,,,10.244609,,,,TRUE,,3,5,TRUE,,FALSE +716,BOSS,,,,,,23.66095733642578,15.261680603027344,,,,,,23.644846,22.435852,20.862713,19.294363,18.41552,,,,,,,,TRUE,,3,5,TRUE,,FALSE +717,APOGEE,,,,,,322.2274169921875,-0.590832531,,,,,,23.805775,24.429989,22.949827,21.126722,20.545622,,,,,,,,TRUE,,3,5,TRUE,,FALSE +718,APOGEE,,,,,,304.1852359948902,34.06479406598626,,,,,,13.64525,13.64525,13.64525,13.64525,13.64525,,,,,,,,TRUE,,3,5,TRUE,,FALSE +719,BOSS,,,,,,251.86422729492188,-51.3959465,-5.093829,-8.169218,,0.2131737,,,,,,,,,,15.3645,,,,TRUE,,3,5,TRUE,,FALSE +720,BOSS,,,2835488484847979392,,,343.54437255859375,21.41486167907715,-5.741491,-7.258939,,0.47317186,,,,,,,,16.050394,15.072262,15.64481,,,,TRUE,,3,5,TRUE,,FALSE +721,APOGEE,,,,,,116.81072998046875,11.095338821411133,,,,,,23.387857,21.081778,19.675722,18.33133,17.594755,,,,,,,,TRUE,,3,5,TRUE,,FALSE +722,BOSS,,,,,,246.3214111328125,11.24138069152832,,,,,,23.751179,23.2066,21.43003,20.974337,20.259226,,,,,,,,TRUE,,3,5,TRUE,,FALSE +723,BOSS,,,2010512609746444800,,,349.7590026855469,58.80140305,4.0483913,5.9489098,,1.707869,,,,,,,,13.616804,12.218917,12.989533,,,,TRUE,,3,5,TRUE,,FALSE +724,APOGEE,63050395915842861,,,364298133,,158.62567138671875,-46.50204086,,,,,,,,,,,,,,,13.845,,,TRUE,,3,5,TRUE,,FALSE +725,APOGEE,,,,,,50.450740814208984,-10.05507278,7.3589134,3.1742864,,1.4537246,,,,,,,,,,13.9649515,,,,TRUE,,3,5,TRUE,,FALSE +726,APOGEE,63050396257446878,,,509542949,,265.7121582,-42.94263458,,,,,,,,,,,,,,,15.605,,,TRUE,,3,5,TRUE,,FALSE +727,APOGEE,,,,,,213.36016729262968,66.36469028116284,,,,,,,,,,,,,,13.7149935,,,,TRUE,,3,5,TRUE,,FALSE +728,BOSS,63050395310110525,82846404,4062650251620456320,,,269.51629638671875,-28.18788719,-3.4247487,-3.192317,,0.12746431,,,,,,,,16.594908,13.877666,15.1447935,,,,TRUE,,3,5,TRUE,,FALSE +729,BOSS,,,6850123368518983296,,,301.7012634277344,-26.34278488,-12.844619,-8.975983,,1.8555686,,,,,,,,14.2311325,13.245338,13.821969,,,,TRUE,,3,5,TRUE,,FALSE +730,APOGEE,,,,,,136.85687255859375,-78.54324341,-4.0846767,5.270097,,0.9188102,,,,,,,,,,14.022322,,,,TRUE,,3,5,TRUE,,FALSE +731,APOGEE,,,,,,23.797475795686076,40.64391002155443,,,,,,,,,,,,,,18.911325,,,,TRUE,,3,5,TRUE,,FALSE +732,APOGEE,,,,,,282.5932312011719,-43.28892517,-0.66710424,-4.556592,,0.6196578,,,,,,,,,,15.696882,,,,TRUE,,3,5,TRUE,,FALSE +733,BOSS,,,,,,225.7871993265267,-32.32782521,,,,,,,,,,,,,,17.2334,,,,TRUE,,3,5,TRUE,,FALSE +734,BOSS,,,5353313728148466560,,,163.94558715820312,-54.34112549,-12.664168,3.5706484,,0.90668046,,,,,,,,15.208982,14.314089,14.859728,,,,TRUE,,3,5,TRUE,,FALSE +735,APOGEE,,,3106999103078443392,,,100.87773132324219,-1.859912157,-2.5714169,-4.888764,,0.59306073,,,,,,,,15.75083,14.598829,15.258438,,,,TRUE,,3,5,TRUE,,FALSE +736,BOSS,,,,,,340.4651794433594,7.045726299285889,,,,,,24.19283,24.443758,23.48346,21.964752,20.670155,,,,,,,,TRUE,,3,5,TRUE,,FALSE +737,APOGEE,,,5642574239297432960,,,132.06312561035156,-28.95905495,-5.906987,10.43581,,0.57630783,,,,,,,,15.203885,14.449873,14.916971,,,,TRUE,,3,5,TRUE,,FALSE +738,APOGEE,,,,,,99.78807067871094,6.5213704109191895,-0.74904996,-1.4589043,,0.47667935,,,,,,,,,,15.317928,,,,TRUE,,3,5,TRUE,,FALSE +739,BOSS,,,,,,149.8709716796875,-60.6295166,-6.522493,3.663718,,0.5783178,,,,,,,,,,13.791664,,,,TRUE,,3,5,TRUE,,FALSE +740,APOGEE,,,3329569290516933760,,,90.73058319091797,9.094842910766602,-0.2895797,-0.57927567,,0.25136864,,,,,,,,16.27239,15.3428545,15.898054,,,,TRUE,,3,5,TRUE,,FALSE +741,APOGEE,,,6650671443847691136,,,284.35382080078125,-53.11709213,-1.9808316,-46.54312,,2.1789443,,,,,,,,13.494103,12.559968,13.111522,,,,TRUE,,3,5,TRUE,,FALSE +742,BOSS,,,4050325787194680704,,,271.6543884277344,-29.4303894,-3.6120505,-2.06348,,0.08820779,,,,,,,,16.695887,14.519068,15.693476,,,,TRUE,,3,5,TRUE,,FALSE +743,BOSS,,,,,,268.9346898086833,12.454465266752877,,,,,,17.274124,17.274124,17.274124,17.274124,17.274124,,,,,,,,TRUE,,3,5,TRUE,,FALSE +744,APOGEE,,,,,,55.946238333998224,-41.70299554,,,,,,,,,,,,,,13.916159,,,,TRUE,,3,5,TRUE,,FALSE +745,APOGEE,,,4366621442288269440,,,257.72357177734375,-3.452363014,2.5626132,-5.779537,,0.710851,,,,,,,,16.010384,14.618831,15.388045,,,,TRUE,,3,5,TRUE,,FALSE +746,BOSS,,,,,,8.895346481236501,-78.97528164,,,,,,,,,,,,,,11.143398,,,,TRUE,,3,5,TRUE,,FALSE +747,BOSS,,,6005670538289801728,,,230.7232666015625,-40.60255051,-7.1774054,-3.5817986,,0.24272409,,,,,,,,13.762442,12.181204,13.018794,,,,TRUE,,3,5,TRUE,,FALSE +748,APOGEE,,,,,,193.96628059546197,-35.80317586,,,,,,13.671679,13.671679,13.671679,13.671679,13.671679,,,,,,,,TRUE,,3,5,TRUE,,FALSE +749,APOGEE,,,5800415803577100544,,,223.76812744140625,-67.8188324,-0.9367328,-2.0261197,,0.522676,,,,,,,,16.297068,15.160863,15.819065,,,,TRUE,,3,5,TRUE,,FALSE +750,APOGEE,,,,,,165.55442810058594,4.765070438,,,,,,24.99194,22.64101,22.191637,21.646763,21.101414,,,,,,,,TRUE,,3,5,TRUE,,FALSE +751,APOGEE,,,,,,75.59630352722719,-73.01058809,,,,,,12.21661,12.21661,12.21661,12.21661,12.21661,,,,,,,,TRUE,,3,5,TRUE,,FALSE +752,BOSS,,,,,,304.6621510869511,9.333332280652385,,,,,,13.373174,13.373174,13.373174,13.373174,13.373174,,,,,,,,TRUE,,3,5,TRUE,,FALSE +753,BOSS,,,,,,301.1188659667969,56.62852859,-1.8412336,-4.444554,,0.8093027,,,,,,,,,,15.050184,,,,TRUE,,3,5,TRUE,,FALSE +754,APOGEE,,,4103933477262374144,,,277.0104064941406,-15.29951668,-2.4243894,-0.16768308,,0.5393106,,,,,,,,16.309261,13.985131,15.139687,,,,TRUE,,3,5,TRUE,,FALSE +755,BOSS,,,,,,244.52293395996094,-56.94312286,-1.0634936,-2.0093563,,0.71365845,,,,,,,,,,15.908218,,,,TRUE,,3,5,TRUE,,FALSE +756,BOSS,,,,,,354.3045316,-71.65132399,,,,,,16.974426,16.974426,16.974426,16.974426,16.974426,,,,,,,,TRUE,,3,5,TRUE,,FALSE +757,APOGEE,,,,,,233.6106719970703,-0.575558662,,,,,,24.291021,24.859365,23.096926,21.948692,21.210947,,,,,,,,TRUE,,3,5,TRUE,,FALSE +758,APOGEE,63050395167347742,,3692529314475852800,,,196.85980224609375,3.5517666339874268,-7.696554,-8.360602,,0.5476423,,,,,,,,16.189621,15.3672285,15.860579,,,,TRUE,,3,5,TRUE,,FALSE +759,APOGEE,,,,,,52.352375529282156,-32.16997465,,,,,,,,,,,,,,10.239092,,,,TRUE,,3,5,TRUE,,FALSE +760,APOGEE,,,,,,126.1578140258789,4.685936928,,,,,,21.436756,20.520584,20.100576,19.975004,19.89709,,,,,,,,TRUE,,3,5,TRUE,,FALSE +761,APOGEE,,,,,,258.6173793527478,-26.71359459,,,,,,,,,,,,,,13.605102,,,,TRUE,,3,5,TRUE,,FALSE +762,APOGEE,,,,,,301.83258056640625,-56.92250061,1.4338254,-7.74661,,1.2888033,,,,,,,,,,15.930237,,,,TRUE,,3,5,TRUE,,FALSE +763,APOGEE,,,,256080257,,112.41814422607422,-31.36370468,,,,,,,,,,,,,,,13.681,,,TRUE,,3,5,TRUE,,FALSE +764,BOSS,,,,,,234.03001403808594,-44.81321335,-5.3285155,-8.016707,,0.15444714,,,,,,,,,,15.243349,,,,TRUE,,3,5,TRUE,,FALSE +765,APOGEE,,,,,,246.27325439453125,38.879390716552734,,,,,,21.77627,24.869308,24.273453,23.471102,23.201963,,,,,,,,TRUE,,3,5,TRUE,,FALSE +766,BOSS,63050395298059403,82542340,4059839624986299776,,,260.8334655761719,-28.30197716,-8.155158,-4.8619094,,0.33258292,,,,,,,,17.670832,13.963033,15.50557,,,,TRUE,,3,5,TRUE,,FALSE +767,APOGEE,,,2222177222384352000,,,321.9098205566406,67.72821044921875,-8.73959,-10.185197,,0.73321354,,,,,,,,16.572014,14.993909,15.838233,,,,TRUE,,3,5,TRUE,,FALSE +768,APOGEE,,,,,,100.13993072509766,5.776090145111084,-1.2480513,-0.25820345,,0.3522603,,,,,,,,,,13.700542,,,,TRUE,,3,5,TRUE,,FALSE +769,APOGEE,,,,,,80.89618225,-1.530449465,,,,,,15.530667,15.530667,15.530667,15.530667,15.530667,,,,,,,,TRUE,,3,5,TRUE,,FALSE +770,BOSS,,,5253794491193589632,,,158.1056671142578,-61.82350922,-10.507338,5.430892,,0.32742828,,,,,,,,16.36453,14.898926,15.708527,,,,TRUE,,3,5,TRUE,,FALSE +771,BOSS,63050395108801371,,3089013944703201920,,,118.09583282470703,3.1013076305389404,0.8932194,-4.4493136,,0.41042665,,,,,,,,16.108273,15.160632,15.715683,,,,TRUE,,3,5,TRUE,,FALSE +772,BOSS,63050394836852432,,1106931170899675648,,,95.13321685791016,69.16665649414062,-3.4835591,2.615431,,0.8466822,,,,,,,,13.999116,13.255476,13.708236,,,,TRUE,,3,5,TRUE,,FALSE +773,APOGEE,,,532415420307585408,,,22.01511573791504,69.57236481,-5.973365,0.9934996,,1.8994496,,,,,,,,14.764286,13.474416,14.207004,,,,TRUE,,3,5,TRUE,,FALSE +774,BOSS,,,,,,254.4734569735469,-66.75162717,,,,,,,,,,,,,,16.042562,,,,TRUE,,3,5,TRUE,,FALSE +775,APOGEE,,,5957751175917593984,,,267.6961669921875,-40.93287659,-3.610069,-2.5184033,,0.18943155,,,,,,,,16.68221,15.043168,15.968863,,,,TRUE,,3,5,TRUE,,FALSE +776,BOSS,,,5950577137393019520,,,259.8725280761719,-48.1771431,0.5076111,0.080944814,,1.146699,,,,,,,,16.27199,15.054531,15.740855,,,,TRUE,,3,5,TRUE,,FALSE +777,APOGEE,,,,,,13.569993019104004,44.72898864746094,,,,,,23.05872,20.15581,18.638502,17.778656,17.30898,,,,,,,,TRUE,,3,5,TRUE,,FALSE +778,APOGEE,,,,,,255.78040235274045,-79.52085637,,,,,,,,,,,,,,16.433317,,,,TRUE,,3,5,TRUE,,FALSE +779,BOSS,,,5317412371389704960,,,132.6694336,-54.0884285,-5.328707,6.5619383,,0.4005361,,,,,,,,15.3143,14.568138,15.026148,,,,TRUE,,3,5,TRUE,,FALSE +780,APOGEE,,,,,,205.52264404296875,-56.49792862,-6.700245,-2.529205,,0.3872656,,,,,,,,,,15.862718,,,,TRUE,,3,5,TRUE,,FALSE +781,APOGEE,,,3399759428485256192,,,86.80228424072266,20.352781295776367,3.9532323,-3.7368124,,1.2150983,,,,,,,,15.201894,14.061503,14.766629,,,,TRUE,,3,5,TRUE,,FALSE +782,BOSS,,,,,,24.03541527,-52.91961793,,,,,,,,,,,,,,16.652773,,,,TRUE,,3,5,TRUE,,FALSE +783,BOSS,,,,,,132.52371215820312,15.946521759033203,,,,,,23.84147,24.764883,24.269144,22.293911,22.202833,,,,,,,,TRUE,,3,5,TRUE,,FALSE +784,APOGEE,,,,,,153.7585449,47.547340393066406,,,,,,23.834654,23.156162,22.704203,23.131952,22.117332,,,,,,,,TRUE,,3,5,TRUE,,FALSE +785,APOGEE,,,2024553201487183488,,,293.7408752441406,25.84939956665039,-1.9128126,-5.9064736,,0.21269822,,,,,,,,16.574862,15.043033,15.877583,,,,TRUE,,3,5,TRUE,,FALSE +786,BOSS,,,4533811496793607552,,,284.1548767089844,24.64291763305664,-6.30955,-7.516169,,0.7343395,,,,,,,,16.031225,14.924446,15.559327,,,,TRUE,,3,5,TRUE,,FALSE +787,APOGEE,,,,,,196.10600096823717,30.42774756996988,,,,,,,,,,,,,,12.401994,,,,TRUE,,3,5,TRUE,,FALSE +788,BOSS,,,,,,155.43150329589844,7.982448577880859,,,,,,22.887093,20.663868,18.86156,17.914333,17.460485,,,,,,,,TRUE,,3,5,TRUE,,FALSE +789,APOGEE,,,801525078792717440,,,146.08404541015625,40.71202850341797,1.7396067,-6.3567643,,2.3426385,,,,,,,,16.283178,14.694183,15.534995,,,,TRUE,,3,5,TRUE,,FALSE +790,APOGEE,,,,,,270.8950195,42.47181701660156,,,,,,23.028482,22.906828,22.497776,22.145445,21.882572,,,,,,,,TRUE,,3,5,TRUE,,FALSE +791,BOSS,,,,,,113.57111358642578,52.438392639160156,-10.084149,-13.398781,,1.6448087,,,,,,,,,,11.23024,,,,TRUE,,3,5,TRUE,,FALSE +792,APOGEE,,,,,,48.75842521777839,2.208194653606057,,,,,,,,,,,,,,15.592444,,,,TRUE,,3,5,TRUE,,FALSE +793,BOSS,,,,,,233.41962876296577,-63.85614067,,,,,,,,,,,,,,12.812766,,,,TRUE,,3,5,TRUE,,FALSE +794,BOSS,,,,,,325.08162304432614,-17.66507096,,,,,,,,,,,,,,10.472257,,,,TRUE,,3,5,TRUE,,FALSE +795,APOGEE,,,4309360251111698560,,,288.3396301269531,10.467550277709961,1.2449459,-5.590638,,0.3985687,,,,,,,,15.572867,12.687796,13.911891,,,,TRUE,,3,5,TRUE,,FALSE +796,APOGEE,,,,,,120.92656707763672,40.75513458251953,,,,,,25.000875,22.744751,22.13908,21.245354,20.707298,,,,,,,,TRUE,,3,5,TRUE,,FALSE +797,APOGEE,,,5957069100745047680,,,268.3627624511719,-41.21985245,-3.1028187,-6.8580713,,0.83811677,,,,,,,,16.098347,15.018975,15.646892,,,,TRUE,,3,5,TRUE,,FALSE +798,APOGEE,,,3121894152735989632,,,93.79180145263672,-0.032937858,2.7673404,-11.718679,,1.3626878,,,,,,,,14.6131,13.709219,14.259199,,,,TRUE,,3,5,TRUE,,FALSE +799,APOGEE,,,,,,271.35870361328125,-29.74879646,-0.7567753,-6.453576,,-0.19243439,,,,,,,,,,15.31647,,,,TRUE,,3,5,TRUE,,FALSE +800,BOSS,,,3028374332251762176,,,113.12367248535156,-15.42679214,-1.3960686,1.4897659,,0.11068156,,,,,,,,15.846987,15.064188,15.544374,,,,TRUE,,3,5,TRUE,,FALSE +801,APOGEE,,,,,,239.6676720639459,46.77160738291735,,,,,,17.055542,17.055542,17.055542,17.055542,17.055542,,,,,,,,TRUE,,3,5,TRUE,,FALSE +802,BOSS,,,,,,287.3391522792582,-20.67360385,,,,,,15.956153,15.956153,15.956153,15.956153,15.956153,,,,,,,,TRUE,,3,5,TRUE,,FALSE +803,BOSS,,,,,,130.95111083984375,33.23208999633789,,,,,,22.452312,22.315716,21.21974,20.973742,20.652742,,,,,,,,TRUE,,3,5,TRUE,,FALSE +804,BOSS,,,,,,281.83184814453125,-12.60692883,1.1073191,1.3469371,,0.44919375,,,,,,,,,,15.485104,,,,TRUE,,3,5,TRUE,,FALSE +805,BOSS,,,,,,258.3380432128906,-18.88710403,-3.421522,-13.380658,,1.7412304,,,,,,,,,,13.196708,,,,TRUE,,3,5,TRUE,,FALSE +806,APOGEE,,,,,,192.64864024569766,-9.872282117,,,,,,10.142276,10.142276,10.142276,10.142276,10.142276,,,,,,,,TRUE,,3,5,TRUE,,FALSE +807,APOGEE,,,,,,169.92286682128906,-77.38050079,-7.513756,-0.40849134,,0.84274817,,,,,,,,,,14.766368,,,,TRUE,,3,5,TRUE,,FALSE +808,APOGEE,,,538655320592056192,,,11.629175186157227,74.46846771240234,16.907072,-6.954044,,2.4310358,,,,,,,,14.285413,13.070892,13.752793,,,,TRUE,,3,5,TRUE,,FALSE +809,APOGEE,,,,,,166.42210292975085,11.742627028804222,,,,,,17.542307,17.542307,17.542307,17.542307,17.542307,,,,,,,,TRUE,,3,5,TRUE,,FALSE +810,BOSS,,,4185343551488047488,,,287.1260986328125,-14.4353075,9.3459835,-10.295002,,1.4185852,,,,,,,,14.975418,13.87078,14.504778,,,,TRUE,,3,5,TRUE,,FALSE +811,APOGEE,,,,,,150.14651143170548,-40.06652249,,,,,,,,,,,,,,18.607433,,,,TRUE,,3,5,TRUE,,FALSE +812,BOSS,,,,1090352196,,276.33624267578125,-14.78479767,,,,,,,,,,,,,,,13.966,,,TRUE,,3,5,TRUE,,FALSE +813,APOGEE,,,4479512561747137152,,,279.9573669433594,9.312574387,-1.3640226,-4.6221285,,0.2340585,,,,,,,,15.375045,13.7733755,14.693845,,,,TRUE,,3,5,TRUE,,FALSE +814,BOSS,,,4325998473372822912,,,249.8457489013672,-16.09867477,-2.8365448,-5.4691405,,0.150293,,,,,,,,16.376457,14.950775,15.73552,,,,TRUE,,3,5,TRUE,,FALSE +815,APOGEE,,,,,,292.6046162451381,-20.16451739,,,,,,,,,,,,,,16.693607,,,,TRUE,,3,5,TRUE,,FALSE +816,APOGEE,63050395795501141,91786315,,225025134,,61.384639739990234,-63.11683655,,,,,,,,,,,,,,,12.582,,,TRUE,,3,5,TRUE,,FALSE +817,BOSS,,,1824139891332943104,,,296.2657775878906,18.069467544555664,1.1000558,-3.6570144,,0.20892118,,,,,,,,16.252104,14.1906185,15.209786,,,,TRUE,,3,5,TRUE,,FALSE +818,BOSS,,,5834787877105379072,,,240.25296020507812,-58.92823029,,,,,,,,,,,,15.387312,14.314261,15.477927,,,,TRUE,,3,5,TRUE,,FALSE +819,BOSS,,,,,,331.8670349121094,-3.550149202,,,,,,23.840542,22.81143,21.585352,21.020584,20.408998,,,,,,,,TRUE,,3,5,TRUE,,FALSE +820,BOSS,,,,,,240.17209582878849,-7.077866834,,,,,,14.142173,14.142173,14.142173,14.142173,14.142173,,,,,,,,TRUE,,3,5,TRUE,,FALSE +821,BOSS,,,,,,310.98699951171875,8.595468521118164,,,,,,24.744999,25.306381,24.72135,24.352837,20.84755,,,,,,,,TRUE,,3,5,TRUE,,FALSE +822,APOGEE,,,,,,289.7470019308899,-5.513556584,,,,,,,,,,,,,,16.010817,,,,TRUE,,3,5,TRUE,,FALSE +823,BOSS,,,6631902295027281152,,,279.63006591796875,-62.30256271,-17.26827,6.0385456,,1.8873161,,,,,,,,13.776419,12.713684,13.327854,,,,TRUE,,3,5,TRUE,,FALSE +824,APOGEE,63050396578112355,116412220,269263323833677824,,,84.54377746582031,57.22608947753906,-2.710385,-3.539322,,2.0058625,,,,,,,,11.79949,10.958752,11.463433,,,,TRUE,,3,5,TRUE,,FALSE +825,BOSS,,,,,,242.25550842285156,0.6621702313423157,,,,,,23.165731,22.948185,22.099463,21.607983,21.264668,,,,,,,,TRUE,,3,5,TRUE,,FALSE +826,BOSS,,,5835160164903055488,,,244.90847778320312,-57.50353622,-4.5852513,-4.28177,,1.4302354,,,,,,,,14.76296,13.686371,14.305989,,,,TRUE,,3,5,TRUE,,FALSE +827,BOSS,,,,,,289.2111511230469,12.924077987670898,18.876566,41.345543,,3.1928048,,,,,,,,,,12.914953,,,,TRUE,,3,5,TRUE,,FALSE +828,APOGEE,,,,,,93.91448211669922,5.896914958953857,,,,,,23.884748,24.253302,23.630447,21.100746,20.161945,,,,,,,,TRUE,,3,5,TRUE,,FALSE +829,BOSS,,,,,,241.7146453857422,-44.9950676,-4.076332,-2.5806413,,0.5298474,,,,,,,,,,15.867353,,,,TRUE,,3,5,TRUE,,FALSE +830,APOGEE,,,4090629420896152960,,,274.2969970703125,-21.98418236,-0.1920034,0.4303768,,0.745865,,,,,,,,16.304123,15.048969,15.834902,,,,TRUE,,3,5,TRUE,,FALSE +831,BOSS,,,4038388015698296448,,,273.82037353515625,-35.54051208,-1.0901982,-8.841643,,0.08712596,,,,,,,,16.208761,15.015092,15.693535,,,,TRUE,,3,5,TRUE,,FALSE +832,APOGEE,,,4230703177821347840,,,306.6768798828125,0.9977842569351196,0.67360157,0.8641425,,1.1450562,,,,,,,,14.524802,13.650281,14.171318,,,,TRUE,,3,5,TRUE,,FALSE +833,APOGEE,,,,,,273.24041099700867,48.86412739576511,,,,,,,,,,,,,,16.497862,,,,TRUE,,3,5,TRUE,,FALSE +834,BOSS,,,2127566961236195584,,,291.56817626953125,46.394805908203125,-0.8416701,-6.0715327,,1.105096,,,,,,,,13.416513,12.657302,13.114871,,,,TRUE,,3,5,TRUE,,FALSE +835,APOGEE,,,,,,199.37965393066406,-63.02163696,-6.9534864,-0.09298336,,0.2799558,,,,,,,,,,14.961357,,,,TRUE,,3,5,TRUE,,FALSE +836,APOGEE,,,,,,105.27275990650804,31.473969461005623,,,,,,17.536287,17.536287,17.536287,17.536287,17.536287,,,,,,,,TRUE,,3,5,TRUE,,FALSE +837,APOGEE,,,,,,126.63403320449271,-47.60348862,,,,,,,,,,,,,,11.311796,,,,TRUE,,3,5,TRUE,,FALSE +838,APOGEE,,,,,,267.65069580078125,-35.84619522,0.92872685,-1.7227448,,0.27681127,,,,,,,,,,15.736281,,,,TRUE,,3,5,TRUE,,FALSE +839,BOSS,,,4070623699390394880,,,268.39337158203125,-21.54141617,1.9520178,-2.941673,,0.81353617,,,,,,,,14.806136,13.58757,14.282885,,,,TRUE,,3,5,TRUE,,FALSE +840,BOSS,,,,,,251.5992889404297,-51.33579254,-2.3177342,-3.568394,,0.19257905,,,,,,,,,,15.272731,,,,TRUE,,3,5,TRUE,,FALSE +841,BOSS,,,,,,286.14437903018757,-24.9979844,,,,,,,,,,,,,,11.184234,,,,TRUE,,3,5,TRUE,,FALSE +842,APOGEE,,,858959103757656320,,,179.2848663330078,60.98826981,4.113509,6.264822,,3.4246259,,,,,,,,10.751525,9.914839,10.414737,,,,TRUE,,3,5,TRUE,,FALSE +843,APOGEE,,,,,,232.5943784882169,45.80142967610081,,,,,,,,,,,,,,11.633426,,,,TRUE,,3,5,TRUE,,FALSE +844,BOSS,,,,,,42.76535139,-19.76875498,,,,,,19.864174,19.864174,19.864174,19.864174,19.864174,,,,,,,,TRUE,,3,5,TRUE,,FALSE +845,APOGEE,,,,,,101.7719557075585,41.50031234,,,,,,,,,,,,,,16.182959,,,,TRUE,,3,5,TRUE,,FALSE +846,BOSS,,,,,,206.38156127929688,-58.95700836,-8.336351,-2.372365,,0.3966283,,,,,,,,,,15.693983,,,,TRUE,,3,5,TRUE,,FALSE +847,BOSS,,,,,,216.42003656015012,-67.7686219,,,,,,,,,,,,,,14.6776705,,,,TRUE,,3,5,TRUE,,FALSE +848,BOSS,,,,,,129.3360320065731,-13.7081642,,,,,,17.933521,17.933521,17.933521,17.933521,17.933521,,,,,,,,TRUE,,3,5,TRUE,,FALSE +849,BOSS,,,,,,12.950535774230957,-24.60267258,-2.8400078,1.120561,,1.4010972,,,,,,,,,,15.049036,,,,TRUE,,3,5,TRUE,,FALSE +850,BOSS,,,4112596185734946816,,,258.0343322753906,-24.55488014,-4.4423676,-2.6517355,,0.2631433,,,,,,,,14.720979,12.111779,13.280781,,,,TRUE,,3,5,TRUE,,FALSE +851,BOSS,,,,,,109.89338684082031,-14.16659641,,,,,,24.618567,22.422737,21.86813,21.455025,22.074617,,,,,,,,TRUE,,3,5,TRUE,,FALSE +852,APOGEE,,,,,,257.7170104980469,-59.21847153,1.5426306,-8.476257,,0.8560386,,,,,,,,,,15.4671955,,,,TRUE,,3,5,TRUE,,FALSE +853,BOSS,,,4103857095536393344,,,279.2171325683594,-13.90309525,-4.3481903,-5.739468,,0.120621294,,,,,,,,16.955921,14.338213,15.541387,,,,TRUE,,3,5,TRUE,,FALSE +854,APOGEE,,,,,,178.95907592773438,0.348806232,,,,,,24.287344,23.179579,22.773827,22.78833,21.859497,,,,,,,,TRUE,,3,5,TRUE,,FALSE +855,APOGEE,,,,,,239.3433654636356,-79.85042787,,,,,,,,,,,,,,17.473711,,,,TRUE,,3,5,TRUE,,FALSE +856,APOGEE,,,,1235192115,,283.1319580078125,17.298070907592773,,,,,,,,,,,,,,,15.88,,,TRUE,,3,5,TRUE,,FALSE +857,APOGEE,,,,,,254.16176228921006,50.62956157553981,,,,,,14.421979,14.421979,14.421979,14.421979,14.421979,,,,,,,,TRUE,,3,5,TRUE,,FALSE +858,APOGEE,,,,,,47.66599494912272,-14.09777627,,,,,,,,,,,,,,17.247301,,,,TRUE,,3,5,TRUE,,FALSE +859,BOSS,,,,,,128.84603881835938,4.458049297332764,,,,,,24.01289,22.734953,21.41248,20.979431,20.518864,,,,,,,,TRUE,,3,5,TRUE,,FALSE +860,BOSS,,,,,,235.550148,-7.037564424,,,,,,,,,,,,,,16.876478,,,,TRUE,,3,5,TRUE,,FALSE +861,APOGEE,,,5904922597083990400,,,223.34385681152344,-48.18967438,-3.97462,-1.4591044,,0.07536201,,,,,,,,14.780618,11.396391,12.7208605,,,,TRUE,,3,5,TRUE,,FALSE +862,APOGEE,63050395262517558,,4050953956144255232,,,272.7914123535156,-27.86912727,0.42760798,-6.5873666,,0.1333057,,,,,,,,16.689833,15.001422,15.926193,,,,TRUE,,3,5,TRUE,,FALSE +863,BOSS,,,,,,104.90880075151009,-84.79717805,,,,,,,,,,,,,,10.292146,,,,TRUE,,3,5,TRUE,,FALSE +864,BOSS,,,,,,332.5770568847656,0.3497856855392456,,,,,,22.63277,23.477345,22.441896,22.286156,22.000551,,,,,,,,TRUE,,3,5,TRUE,,FALSE +865,APOGEE,,,170206740741624064,,,61.45916748046875,32.74042510986328,-0.47325984,-1.2710149,,0.45788494,,,,,,,,16.297436,15.199878,15.83653,,,,TRUE,,3,5,TRUE,,FALSE +866,APOGEE,,,,,,357.12236988732064,29.574373893731178,,,,,,,,,,,,,,16.331451,,,,TRUE,,3,5,TRUE,,FALSE +867,BOSS,63050395111395708,,,129375170,,96.77893829345703,-4.479106903,,,,,,,,,,,,,,,13.783,,,TRUE,,3,5,TRUE,,FALSE +868,APOGEE,,,,,,17.61603546142578,6.484511852264404,,,,,,22.928564,23.156717,22.375666,21.779774,21.0714,,,,,,,,TRUE,,3,5,TRUE,,FALSE +869,APOGEE,,,,,,344.9284973144531,35.06570053100586,-9.143999,-24.117666,,4.896954,,,,,,,,,,15.85635,,,,TRUE,,3,5,TRUE,,FALSE +870,APOGEE,,,,,,213.28352343423714,-77.03669432,,,,,,,,,,,,,,16.771076,,,,TRUE,,3,5,TRUE,,FALSE +871,BOSS,,,,,,150.4371337890625,39.67680740356445,,,,,,25.711784,23.43227,22.232285,22.192497,22.805454,,,,,,,,TRUE,,3,5,TRUE,,FALSE +872,APOGEE,,,6760286912002334464,,,282.8978576660156,-31.2216053,-4.813286,-5.5857024,,0.3182749,,,,,,,,16.319586,15.029354,15.745424,,,,TRUE,,3,5,TRUE,,FALSE +873,APOGEE,,,,,,350.0603884490101,30.60254284165589,,,,,,,,,,,,,,13.089112,,,,TRUE,,3,5,TRUE,,FALSE +874,BOSS,,,,,,168.63392639160156,0.28046420216560364,,,,,,24.629711,22.848324,22.557253,21.866255,22.415123,,,,,,,,TRUE,,3,5,TRUE,,FALSE +875,APOGEE,,,,,,341.8027648925781,2.4120230674743652,24.182482,-2.7091172,,1.1305094,,,,,,,,,,15.290855,,,,TRUE,,3,5,TRUE,,FALSE +876,BOSS,,,,,,338.56253429170334,-47.80954417,,,,,,17.804657,17.804657,17.804657,17.804657,17.804657,,,,,,,,TRUE,,3,5,TRUE,,FALSE +877,BOSS,,,,,,266.1629943847656,-70.47168732,-0.3700021,-7.442837,,0.19168074,,,,,,,,,,14.006102,,,,TRUE,,3,5,TRUE,,FALSE +878,APOGEE,,,,,,275.0453186035156,17.53877830505371,-3.109776,-7.403608,,0.7228079,,,,,,,,,,14.434531,,,,TRUE,,3,5,TRUE,,FALSE +879,APOGEE,,,,,,143.20983322689278,5.535992198960386,,,,,,13.134068,13.134068,13.134068,13.134068,13.134068,,,,,,,,TRUE,,3,5,TRUE,,FALSE +880,BOSS,,,5929354913707653632,,,251.09344482421875,-55.86211014,-3.490731,-4.488674,,0.47799397,,,,,,,,15.480678,14.193657,14.918941,,,,TRUE,,3,5,TRUE,,FALSE +881,APOGEE,63050396552585018,,52888265939905024,,,63.19460678100586,22.863086700439453,5.8576875,-4.1161404,,1.1472226,,,,,,,,16.07513,14.632395,15.429842,,,,TRUE,,3,5,TRUE,,FALSE +882,APOGEE,,,,,,185.3742218017578,-61.11683273,-6.962159,0.1386338,,0.20793065,,,,,,,,,,15.527899,,,,TRUE,,3,5,TRUE,,FALSE +883,APOGEE,,,,,,351.6130897658644,68.46384810966384,,,,,,13.850211,13.850211,13.850211,13.850211,13.850211,,,,,,,,TRUE,,3,5,TRUE,,FALSE +884,BOSS,,,2188983653541511424,,,315.0875549316406,55.84925079345703,-3.6966698,-4.25695,,0.25859675,,,,,,,,16.162766,13.89645,14.965179,,,,TRUE,,3,5,TRUE,,FALSE +885,BOSS,,,4112897108318417152,,,257.2795104980469,-23.68830872,-0.71550995,-6.1061873,,0.26978156,,,,,,,,14.960374,13.333724,14.189638,,,,TRUE,,3,5,TRUE,,FALSE +886,APOGEE,,,3061904626528077824,,,112.4217300415039,-2.138832331,18.38133,-25.75958,,2.6865485,,,,,,,,13.15904,12.26785,12.794762,,,,TRUE,,3,5,TRUE,,FALSE +887,BOSS,,,,,,315.0568874357906,88.56266917515495,,,,,,18.00937,18.00937,18.00937,18.00937,18.00937,,,,,,,,TRUE,,3,5,TRUE,,FALSE +888,APOGEE,,,4353773099161717888,,,251.80307006835938,-4.159920692,-11.092981,-2.5124733,,1.3597438,,,,,,,,14.45369,13.247324,13.932805,,,,TRUE,,3,5,TRUE,,FALSE +889,APOGEE,,,,,,297.1035461425781,-47.0927887,-0.3156617,-6.292669,,0.14056955,,,,,,,,,,14.129204,,,,TRUE,,3,5,TRUE,,FALSE +890,BOSS,,,,,,191.39051475831613,-28.89367508,,,,,,,,,,,,,,18.24594,,,,TRUE,,3,5,TRUE,,FALSE +891,APOGEE,,,,,,344.7470703,23.877243041992188,,,,,,23.982058,23.185135,21.935707,20.619392,19.89212,,,,,,,,TRUE,,3,5,TRUE,,FALSE +892,APOGEE,,,3833360158239884800,,,150.57752990722656,-0.007587385,-21.563665,-0.9384771,,1.6161392,,,,,,,,15.633874,14.492047,15.142449,,,,TRUE,,3,5,TRUE,,FALSE +893,APOGEE,,,6038958390254564096,,,245.63526916503906,-28.71643639,-4.1403327,-3.2592616,,0.655538,,,,,,,,16.060799,14.4560995,15.34438,,,,TRUE,,3,5,TRUE,,FALSE +894,BOSS,,,,,,69.04888814270753,-78.700914,,,,,,11.75486,11.75486,11.75486,11.75486,11.75486,,,,,,,,TRUE,,3,5,TRUE,,FALSE +895,APOGEE,,,4256218208469095936,,,277.74908447265625,-5.993944645,-0.37536165,-1.744794,,0.3882203,,,,,,,,17.41702,14.307373,15.571431,,,,TRUE,,3,5,TRUE,,FALSE +896,BOSS,,,5598611469451823488,,,116.4054183959961,-30.8344059,-2.4098809,3.3117878,,0.31596464,,,,,,,,16.097937,15.418643,15.84276,,,,TRUE,,3,5,TRUE,,FALSE +897,APOGEE,63050395194903446,,4039287622406474624,,,273.04193115234375,-34.49690628,-3.9136634,-5.8426304,,0.14426517,,,,,,,,16.210026,14.658854,15.486781,,,,TRUE,,3,5,TRUE,,FALSE +898,APOGEE,,,,,,241.0905114511767,-9.524710887,,,,,,10.078729,10.078729,10.078729,10.078729,10.078729,,,,,,,,TRUE,,3,5,TRUE,,FALSE +899,APOGEE,,,4529701591041885056,,,275.36492919921875,22.216169357299805,2.3423257,-14.382083,,0.69129163,,,,,,,,15.260972,14.278021,14.8558035,,,,TRUE,,3,5,TRUE,,FALSE +900,APOGEE,,,,,,239.46617126464844,11.823068618774414,,,,,,24.363153,23.99309,23.789478,22.47952,21.79503,,,,,,,,TRUE,,3,5,TRUE,,FALSE +901,APOGEE,,,5605213731842192000,,,110.05709838867188,-30.65170479,-1.1348412,6.1828103,,0.6718026,,,,,,,,13.781239,13.280834,13.601935,,,,TRUE,,3,5,TRUE,,FALSE +902,APOGEE,63050394878125098,,,1099136457,,299.4357604980469,19.292179107666016,,,,,,,,,,,,,,,14.85,,,TRUE,,3,5,TRUE,,FALSE +903,APOGEE,,,,,,106.02689361572266,-5.807257652,-2.0236325,0.17150497,,0.35845667,,,,,,,,,,15.9829,,,,TRUE,,3,5,TRUE,,FALSE +904,APOGEE,63050395120062964,75122958,3137179975704781696,,,115.3438491821289,3.639747381210327,-5.2738905,-2.3318956,,0.99217075,,,,,,,,14.209567,13.433655,13.904402,,,,TRUE,,3,5,TRUE,,FALSE +905,BOSS,,,,,,104.47174072265625,6.656782150268555,-6.0917935,-8.244963,,0.43486342,,,,,,,,,,15.933841,,,,TRUE,,3,5,TRUE,,FALSE +906,APOGEE,,,,,,315.8370548817254,-50.94035019,,,,,,14.461813,14.461813,14.461813,14.461813,14.461813,,,,,,,,TRUE,,3,5,TRUE,,FALSE +907,BOSS,,,5241911106919893888,,,162.96871948242188,-62.54104996,-7.210754,2.6756608,,0.3440247,,,,,,,,14.869354,14.271011,14.669558,,,,TRUE,,3,5,TRUE,,FALSE +908,APOGEE,,,,,,128.02798461914062,13.603619575500488,,,,,,22.423151,21.871357,21.12993,20.88642,20.442284,,,,,,,,TRUE,,3,5,TRUE,,FALSE +909,BOSS,,,,,,25.179156638713923,-30.91257829,,,,,,12.923904,12.923904,12.923904,12.923904,12.923904,,,,,,,,TRUE,,3,5,TRUE,,FALSE +910,BOSS,,,,,,267.2798156738281,-79.41946411,3.1277423,-9.363432,,0.58969927,,,,,,,,,,15.621861,,,,TRUE,,3,5,TRUE,,FALSE +911,BOSS,,,,,,69.75717006818138,79.58543028,,,,,,13.416117,13.416117,13.416117,13.416117,13.416117,,,,,,,,TRUE,,3,5,TRUE,,FALSE +912,BOSS,,,,,,181.27206420898438,-62.09513092,-7.752234,0.81886333,,0.27622315,,,,,,,,,,15.829043,,,,TRUE,,3,5,TRUE,,FALSE +913,APOGEE,,,5970035641357152512,,,252.67510986328125,-39.4069519,10.419095,-11.482424,,1.4367099,,,,,,,,15.709904,14.284756,15.067823,,,,TRUE,,3,5,TRUE,,FALSE +914,APOGEE,,,,,,258.3322448730469,-71.53631592,-1.1245981,-1.6338904,,0.14228217,,,,,,,,,,12.377637,,,,TRUE,,3,5,TRUE,,FALSE +915,APOGEE,,,,,,279.24625786286634,-43.630443,,,,,,11.148791,11.148791,11.148791,11.148791,11.148791,,,,,,,,TRUE,,3,5,TRUE,,FALSE +916,BOSS,,,5259754359580504704,,,150.9435272216797,-56.34089661,3.5148335,-1.9878436,,1.2405018,,,,,,,,14.731065,13.858827,14.380158,,,,TRUE,,3,5,TRUE,,FALSE +917,BOSS,,,,,,19.20097245499865,-24.05500617,,,,,,10.391047,10.391047,10.391047,10.391047,10.391047,,,,,,,,TRUE,,3,5,TRUE,,FALSE +918,BOSS,,,,,,33.01911889309294,18.097420352029758,,,,,,,,,,,,,,18.975893,,,,TRUE,,3,5,TRUE,,FALSE +919,APOGEE,,,,,,308.2547611,80.16363110332537,,,,,,19.393427,19.393427,19.393427,19.393427,19.393427,,,,,,,,TRUE,,3,5,TRUE,,FALSE +920,APOGEE,,,,,,169.7850173533284,37.33708615116301,,,,,,,,,,,,,,15.074795,,,,TRUE,,3,5,TRUE,,FALSE +921,BOSS,,,,,,269.2797852,-32.46685791,-7.7620144,-1.8232079,,0.15793274,,,,,,,,,,15.871359,,,,TRUE,,3,5,TRUE,,FALSE +922,APOGEE,,,,,,96.2308034,87.78098440633926,,,,,,,,,,,,,,17.175756,,,,TRUE,,3,5,TRUE,,FALSE +923,BOSS,63050395044487649,,,738612456,,310.9505310058594,61.74651336669922,,,,,,,,,,,,,,,14.645,,,TRUE,,3,5,TRUE,,FALSE +924,APOGEE,,,,,,39.64012908935547,-8.56165123,,,,,,24.010778,22.607023,21.522726,21.076353,20.891064,,,,,,,,TRUE,,3,5,TRUE,,FALSE +925,APOGEE,,,,,,200.0910262488222,-52.68056451,,,,,,,,,,,,,,17.603024,,,,TRUE,,3,5,TRUE,,FALSE +926,APOGEE,,,,,,131.1952667236328,27.386764526367188,,,,,,21.7776,20.653898,20.132408,19.625088,19.664072,,,,,,,,TRUE,,3,5,TRUE,,FALSE +927,BOSS,,,4478829146535620224,,,275.58074951171875,9.528278350830078,3.0217552,-11.03084,,1.1537447,,,,,,,,14.636052,13.602466,14.204163,,,,TRUE,,3,5,TRUE,,FALSE +928,BOSS,,,,,,339.3148498535156,24.71223258972168,,,,,,19.519648,17.915838,17.363842,17.126333,17.042051,,,,,,,,TRUE,,3,5,TRUE,,FALSE +929,APOGEE,,,,,,274.7460021972656,-35.33782196,-3.604351,-5.2971497,,0.09439389,,,,,,,,,,13.343664,,,,TRUE,,3,5,TRUE,,FALSE +930,APOGEE,,,,,,195.18368530273438,35.73964309692383,,,,,,22.659458,23.038898,22.015358,21.626303,22.335,,,,,,,,TRUE,,3,5,TRUE,,FALSE +931,APOGEE,,,,,,331.0319824,-48.13788605,37.891155,-2.5633848,,3.4679208,,,,,,,,,,15.991901,,,,TRUE,,3,5,TRUE,,FALSE +932,APOGEE,,,,,,81.90642555411596,-38.5680233,,,,,,15.352032,15.352032,15.352032,15.352032,15.352032,,,,,,,,TRUE,,3,5,TRUE,,FALSE +933,APOGEE,,,,,,326.9231872558594,9.166776657104492,,,,,,25.242296,23.046564,21.765423,20.521229,19.76796,,,,,,,,TRUE,,3,5,TRUE,,FALSE +934,APOGEE,63050395086439106,72883834,2939915426332706304,,,98.17352294921875,-19.45599174,-0.673839,-1.3961484,,2.218705,,,,,,,,11.573012,10.951271,11.339647,,,,TRUE,,3,5,TRUE,,FALSE +935,APOGEE,,,,590244304,,241.90451049804688,-43.34813309,,,,,,,,,,,,,,,15.338,,,TRUE,,3,5,TRUE,,FALSE +936,APOGEE,63050394813953528,,540109905754475904,,,5.900785923,76.98787689208984,-7.003332,3.7822993,,0.044018105,,,,,,,,15.581039,14.216597,15.586018,,,,TRUE,,3,5,TRUE,,FALSE +937,BOSS,,,,,,267.52972412109375,53.33525085449219,11.539139,-57.049255,,5.0973244,,,,,,,,,,14.586147,,,,TRUE,,3,5,TRUE,,FALSE +938,APOGEE,,,,,,116.85189056396484,13.385916709899902,,,,,,22.640453,20.577484,19.838839,19.52869,19.284267,,,,,,,,TRUE,,3,5,TRUE,,FALSE +939,BOSS,,,,,,218.2891905492362,11.695768966341944,,,,,,,,,,,,,,18.280252,,,,TRUE,,3,5,TRUE,,FALSE +940,BOSS,,,5315803133032880640,,,124.89336395263672,-57.11537552,-2.5791333,4.7820325,,0.72399664,,,,,,,,14.7885275,13.750988,14.357203,,,,TRUE,,3,5,TRUE,,FALSE +941,BOSS,,,220229400203620224,,,59.18840789794922,36.73500061035156,2.2846332,0.80692226,,0.5813353,,,,,,,,15.547011,14.0614195,14.866968,,,,TRUE,,3,5,TRUE,,FALSE +942,BOSS,,,,489625952,,237.9829102,-52.94974899,,,,,,,,,,,,,,,14.512,,,TRUE,,3,5,TRUE,,FALSE +943,BOSS,,,4021534529587585664,,,176.02943420410156,31.526151657104492,-14.19122,-10.607481,,1.1380758,,,,,,,,15.935618,14.901812,15.500678,,,,TRUE,,3,5,TRUE,,FALSE +944,APOGEE,63050395729149852,,4483872984324173696,,,275.9568176269531,11.725010871887207,-1.6634729,-1.5949261,,0.18337691,,,,,,,,15.910221,14.5252,15.283721,,,,TRUE,,3,5,TRUE,,FALSE +945,APOGEE,,,,,,276.6789855957031,48.93211364746094,-6.888229,11.975583,,0.99248666,,,,,,,,,,15.774844,,,,TRUE,,3,5,TRUE,,FALSE +946,APOGEE,,,,,,232.9378028332862,-29.9267317,,,,,,,,,,,,,,10.585612,,,,TRUE,,3,5,TRUE,,FALSE +947,BOSS,,,,,,147.76600646972656,0.8712112903594971,,,,,,23.374975,24.59667,22.401163,21.721073,21.621645,,,,,,,,TRUE,,3,5,TRUE,,FALSE +948,APOGEE,,,,,,111.11753295482876,-59.45835248,,,,,,,,,,,,,,17.956556,,,,TRUE,,3,5,TRUE,,FALSE +949,APOGEE,63050396068822504,,,945906288,,218.8966064453125,-65.08974457,,,,,,,,,,,,,,,14.917,,,TRUE,,3,5,TRUE,,FALSE +950,APOGEE,,,,,,261.42599538638444,48.16675916317527,,,,,,11.751232,11.751232,11.751232,11.751232,11.751232,,,,,,,,TRUE,,3,5,TRUE,,FALSE +951,APOGEE,,,,,,357.9269104003906,-5.918411732,,,,,,22.744791,23.428076,21.993385,21.2826,21.085152,,,,,,,,TRUE,,3,5,TRUE,,FALSE +952,APOGEE,,,,,,351.62188720703125,65.50370025634766,45.005985,-0.734764,,1.8225596,,,,,,,,,,15.964727,,,,TRUE,,3,5,TRUE,,FALSE +953,BOSS,,,5310843992024958080,,,140.7042236328125,-53.30128098,-6.4459105,4.784749,,0.4393334,,,,,,,,15.481124,14.470877,15.068039,,,,TRUE,,3,5,TRUE,,FALSE +954,BOSS,,,,,,214.1499481201172,-38.8212471,-18.454441,-9.63907,,1.9700277,,,,,,,,,,13.150431,,,,TRUE,,3,5,TRUE,,FALSE +955,APOGEE,63050395325735904,83124557,4065905076512966656,,,272.0969238,-24.0616703,10.503358,-1.3700593,,1.0766963,,,,,,,,13.085819,11.683794,12.459914,,,,TRUE,,3,5,TRUE,,FALSE +956,BOSS,,,930651694294719104,,,126.53436279296875,47.44715881347656,-3.7982104,-6.5683365,,0.49439967,,,,,,,,15.846878,15.005006,15.511344,,,,TRUE,,3,5,TRUE,,FALSE +957,BOSS,,,,,,229.81707364998886,-8.664139631,,,,,,16.042799,16.042799,16.042799,16.042799,16.042799,,,,,,,,TRUE,,3,5,TRUE,,FALSE +958,APOGEE,,,,,,290.27798522614677,14.461860722736773,,,,,,14.7008,14.7008,14.7008,14.7008,14.7008,,,,,,,,TRUE,,3,5,TRUE,,FALSE +959,APOGEE,63050396030983619,,5825496247929907328,,,234.89596557617188,-65.70996857,-4.9341226,-2.4333732,,0.35306183,,,,,,,,15.338764,14.455578,14.983033,,,,TRUE,,3,5,TRUE,,FALSE +960,BOSS,,,,,,250.5493164,17.48832893371582,,,,,,23.17105,23.680649,22.359728,22.35243,22.831812,,,,,,,,TRUE,,3,5,TRUE,,FALSE +961,APOGEE,63050396209519974,,5932712925328241152,,,241.48829650878906,-54.11332703,-3.0678728,-6.0684285,,0.6473175,,,,,,,,14.483506,13.050811,13.836803,,,,TRUE,,3,5,TRUE,,FALSE +962,APOGEE,,,,,,283.8191223144531,-13.48061371,-1.869061,-0.634658,,0.21127893,,,,,,,,,,15.580607,,,,TRUE,,3,5,TRUE,,FALSE +963,BOSS,,,2935237691555318784,,,105.61466217041016,-17.82543373,-2.177266,-3.1439455,,0.4822651,,,,,,,,15.9318695,14.736865,15.419585,,,,TRUE,,3,5,TRUE,,FALSE +964,APOGEE,,,4507506883696913536,,,282.6756896972656,15.200173377990723,-0.25196442,-5.3741407,,0.5400792,,,,,,,,15.965502,14.905372,15.521168,,,,TRUE,,3,5,TRUE,,FALSE +965,APOGEE,,,,,,276.5800827613549,-87.56539758,,,,,,17.267292,17.267292,17.267292,17.267292,17.267292,,,,,,,,TRUE,,3,5,TRUE,,FALSE +966,APOGEE,,,,,,8.124952316,15.009519577026367,,,,,,24.285433,23.97733,22.56597,21.467615,20.344866,,,,,,,,TRUE,,3,5,TRUE,,FALSE +967,BOSS,,,,,,344.0227993984977,21.72764511343388,,,,,,,,,,,,,,14.40221,,,,TRUE,,3,5,TRUE,,FALSE +968,BOSS,,,,,,80.43190424713535,-19.22246467,,,,,,,,,,,,,,11.478988,,,,TRUE,,3,5,TRUE,,FALSE +969,BOSS,,,,,,246.81004333496094,-25.98641396,1.1111625,-8.138172,,0.7857863,,,,,,,,,,15.716153,,,,TRUE,,3,5,TRUE,,FALSE +970,APOGEE,,,,,,273.6872132,-29.84170809,,,,,,,,,,,,,,15.762213,,,,TRUE,,3,5,TRUE,,FALSE +971,BOSS,,,,,,78.76181539731226,-30.97573685,,,,,,,,,,,,,,18.901337,,,,TRUE,,3,5,TRUE,,FALSE +972,BOSS,,,5616544027373107840,,,109.65764617919922,-24.89844131,-2.9394205,3.1703668,,0.7258741,,,,,,,,15.586793,14.404826,15.078097,,,,TRUE,,3,5,TRUE,,FALSE +973,APOGEE,,,2123071229985348224,,,273.30670166015625,49.635005950927734,18.896616,9.749008,,4.166161,,,,,,,,15.015386,13.518826,14.322646,,,,TRUE,,3,5,TRUE,,FALSE +974,APOGEE,,,,,,302.2156982421875,46.80413818359375,-2.9726932,-3.6378117,,0.16334681,,,,,,,,,,15.982075,,,,TRUE,,3,5,TRUE,,FALSE +975,APOGEE,,,4120327878431219328,,,266.8277587890625,-18.78831673,-3.1928937,-5.007303,,0.16952704,,,,,,,,17.10169,14.23565,15.473866,,,,TRUE,,3,5,TRUE,,FALSE +976,BOSS,,,,,,109.86047505334886,2.400742350814312,,,,,,,,,,,,,,12.822466,,,,TRUE,,3,5,TRUE,,FALSE +977,APOGEE,,,,,,151.67854094632628,-14.19495477,,,,,,,,,,,,,,12.861285,,,,TRUE,,3,5,TRUE,,FALSE +978,BOSS,,,,,,223.48760986328125,-52.71503067,-4.1167645,-3.1320472,,0.024767304,,,,,,,,,,15.784547,,,,TRUE,,3,5,TRUE,,FALSE +979,APOGEE,,,5959319865404667520,,,262.6002197265625,-41.25452805,-2.952774,-0.60279495,,0.2327445,,,,,,,,14.559116,11.403349,12.686344,,,,TRUE,,3,5,TRUE,,FALSE +980,BOSS,,,6127250651435196416,,,187.41477966308594,-50.26376343,-2.895175,10.019287,,1.1706499,,,,,,,,15.268555,14.296057,14.869961,,,,TRUE,,3,5,TRUE,,FALSE +981,BOSS,,,,,,123.83009078808513,-50.39364311,,,,,,11.47214,11.47214,11.47214,11.47214,11.47214,,,,,,,,TRUE,,3,5,TRUE,,FALSE +982,APOGEE,,,,,,232.3089599609375,-59.57844543,-7.108618,-4.284143,,0.5077867,,,,,,,,,,15.386257,,,,TRUE,,3,5,TRUE,,FALSE +983,BOSS,,,,,,161.2154083251953,49.994773864746094,,,,,,25.606544,23.80732,22.06862,20.767447,19.834185,,,,,,,,TRUE,,3,5,TRUE,,FALSE +984,APOGEE,,,,,,232.0019989013672,-23.51311111,1.0240436,-9.517354,,1.2165018,,,,,,,,,,15.068976,,,,TRUE,,3,5,TRUE,,FALSE +985,APOGEE,,,,,,198.06077266430475,-21.66710133,,,,,,,,,,,,,,19.310125,,,,TRUE,,3,5,TRUE,,FALSE +986,BOSS,,,,,,95.14650148531813,31.55930326972893,,,,,,13.440146,13.440146,13.440146,13.440146,13.440146,,,,,,,,TRUE,,3,5,TRUE,,FALSE +987,APOGEE,,,,,,135.5488281,-36.97105408,-5.7079997,2.01366,,0.8640847,,,,,,,,,,14.303811,,,,TRUE,,3,5,TRUE,,FALSE +988,BOSS,,,,799237458,,357.1575622558594,61.12431335449219,,,,,,,,,,,,,,,16.255,,,TRUE,,3,5,TRUE,,FALSE +989,BOSS,,,,,,59.28349685668945,12.678717613220215,,,,,,25.763632,25.15737,24.801907,24.204172,18.3594,,,,,,,,TRUE,,3,5,TRUE,,FALSE +990,BOSS,,,,,,159.37468660356677,-89.1207102,,,,,,,,,,,,,,10.986762,,,,TRUE,,3,5,TRUE,,FALSE +991,BOSS,,,,,,85.62360910313627,-30.69191248,,,,,,,,,,,,,,11.84522,,,,TRUE,,3,5,TRUE,,FALSE +992,BOSS,,,,945371526,,217.4279785,-61.13077164,,,,,,,,,,,,,,,14.693,,,TRUE,,3,5,TRUE,,FALSE +993,APOGEE,,,,,,180.28981434651655,46.104693512913286,,,,,,19.63566,19.63566,19.63566,19.63566,19.63566,,,,,,,,TRUE,,3,5,TRUE,,FALSE +994,APOGEE,,,,,,236.95313147145586,11.754803041201313,,,,,,16.987535,16.987535,16.987535,16.987535,16.987535,,,,,,,,TRUE,,3,5,TRUE,,FALSE +995,BOSS,,,,512394860,,227.46453857421875,-58.14958954,,,,,,,,,,,,,,,14.903,,,TRUE,,3,5,TRUE,,FALSE +996,APOGEE,,,,,,204.24234229114955,62.787785797964546,,,,,,,,,,,,,,16.939175,,,,TRUE,,3,5,TRUE,,FALSE +997,BOSS,,,,,,46.127068416738105,-1.063977816,,,,,,15.935718,15.935718,15.935718,15.935718,15.935718,,,,,,,,TRUE,,3,5,TRUE,,FALSE +998,APOGEE,,,,,,336.0591125488281,57.78157424926758,6.129362,2.1856046,,1.0745684,,,,,,,,,,15.988846,,,,TRUE,,3,5,TRUE,,FALSE +999,BOSS,63050395806899015,,4878514748638974976,,,71.46774291992188,-28.87862206,9.606046,-3.6115289,,1.7186465,,,,,,,,15.019477,13.924454,14.603652,,,,TRUE,,3,5,TRUE,,FALSE +1000,APOGEE,,,5373979770729287680,,,169.5585938,-48.88965225,-16.181047,0.35555366,,1.3835307,,,,,,,,15.382621,14.314879,14.92956,,,,TRUE,,3,5,TRUE,,FALSE \ No newline at end of file From 8087e8f1a1e7fcb49e26c613ce284e0d5cf5c85c Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 13:57:50 -0500 Subject: [PATCH 11/16] add epoch for rows with proper motions --- docs/sample.csv | 2002 +++++++++++++++++++++++------------------------ 1 file changed, 1001 insertions(+), 1001 deletions(-) diff --git a/docs/sample.csv b/docs/sample.csv index 9ec8129..a754feb 100644 --- a/docs/sample.csv +++ b/docs/sample.csv @@ -1,1001 +1,1001 @@ -too_id,fiber_type,catalogid,sdss_id,gaia_dr3_source_id,twomass_pts_key,sky_brightness_mode,ra,dec,pmra,pmdec,epoch,parallax,lambda_eff,u_mag,g_mag,r_mag,i_mag,z_mag,optical_prov,gaia_bp_mag,gaia_rp_mag,gaia_g_mag,h_mag,delta_ra,delta_dec,can_offset,inertial,n_exposures,priority,active,expiration_date,observed -1,APOGEE,,,,,,322.0416986442334,23.24975582251605,,,,,,15.585603,15.585603,15.585603,15.585603,15.585603,,,,,,,,TRUE,,3,5,TRUE,,FALSE -2,APOGEE,,,,,,23.68915557861328,63.30213928222656,-1.633114,-0.17489335,,0.36345074,,,,,,,,,,14.495427,,,,TRUE,,3,5,TRUE,,FALSE -3,BOSS,,,,,,317.1805114746094,55.043983459472656,,,,,,24.184845,24.713322,21.989498,21.051416,20.573246,,,,,,,,TRUE,,3,5,TRUE,,FALSE -4,APOGEE,,,,,,132.27410888671875,-9.865385056,-4.23959,1.3068857,,0.67415804,,,,,,,,,,15.891865,,,,TRUE,,3,5,TRUE,,FALSE -5,APOGEE,63050395915414228,,5365231850064328448,,,155.5760498046875,-48.36075211,-2.0050094,-0.13202874,,0.08750413,,,,,,,,16.506353,15.171548,15.910943,,,,TRUE,,3,5,TRUE,,FALSE -6,BOSS,,,,,,169.05540466308594,-52.83566284,-5.52803,3.9846888,,0.1719657,,,,,,,,,,15.479938,,,,TRUE,,3,5,TRUE,,FALSE -7,BOSS,,,5965311383454731648,,,256.6919250488281,-43.81571198,-0.5424047,-8.906387,,0.2787155,,,,,,,,14.780168,11.542485,12.839776,,,,TRUE,,3,5,TRUE,,FALSE -8,BOSS,,,,,,196.95848904939584,32.69419873,,,,,,,,,,,,,,19.130697,,,,TRUE,,3,5,TRUE,,FALSE -9,APOGEE,,,,,,277.48980712890625,-27.69761848,-3.9706147,-4.874005,,0.29140338,,,,,,,,,,13.293058,,,,TRUE,,3,5,TRUE,,FALSE -10,BOSS,,,,,,299.55755615234375,37.57545852661133,-3.8028247,-4.152495,,0.3261723,,,,,,,,,,15.098599,,,,TRUE,,3,5,TRUE,,FALSE -11,BOSS,,,,,,93.15349578857422,-19.25577164,36.599873,-16.589447,,4.3919764,,,,,,,,,,10.35252,,,,TRUE,,3,5,TRUE,,FALSE -12,APOGEE,,,,,,310.54254150390625,25.387367248535156,-0.3989932,-6.631391,,0.730015,,,,,,,,,,14.994102,,,,TRUE,,3,5,TRUE,,FALSE -13,BOSS,,,,,,159.85731506347656,49.125877380371094,,,,,,22.56774,22.654528,22.303133,21.762018,22.578901,,,,,,,,TRUE,,3,5,TRUE,,FALSE -14,BOSS,,,,,,153.8815460205078,-50.7372551,-4.761471,-1.8694482,,0.22456343,,,,,,,,,,10.851905,,,,TRUE,,3,5,TRUE,,FALSE -15,BOSS,,,,,,256.1876220703125,-24.69454193,-3.4426248,-5.791844,,0.14846663,,,,,,,,,,15.639607,,,,TRUE,,3,5,TRUE,,FALSE -16,APOGEE,,,,,,215.0206298828125,-76.02481842,-3.730372,0.39429158,,0.6409972,,,,,,,,,,15.404773,,,,TRUE,,3,5,TRUE,,FALSE -17,APOGEE,,,5307277622951462016,,,142.23260498046875,-55.66678619,-6.8612022,4.6453967,,0.32230595,,,,,,,,15.309744,13.527912,14.52157,,,,TRUE,,3,5,TRUE,,FALSE -18,BOSS,,,,,,308.67156982421875,15.523393630981445,,,,,,24.58621,22.972805,22.191853,21.758198,21.754278,,,,,,,,TRUE,,3,5,TRUE,,FALSE -19,APOGEE,63050394989164473,66549526,2045042974273831296,,,291.6852111816406,31.77603530883789,0.904789,-2.865594,,0.52112687,,,,,,,,12.537917,11.1104555,11.885861,,,,TRUE,,3,5,TRUE,,FALSE -20,APOGEE,,,,,,170.94858663689251,-34.57345707,,,,,,11.915108,11.915108,11.915108,11.915108,11.915108,,,,,,,,TRUE,,3,5,TRUE,,FALSE -21,APOGEE,,,,,,78.14626757697934,-2.682986851,,,,,,16.554398,16.554398,16.554398,16.554398,16.554398,,,,,,,,TRUE,,3,5,TRUE,,FALSE -22,BOSS,,,2001035197482775808,,,333.2771911621094,51.086021423339844,-2.0965788,-3.6020296,,0.35497344,,,,,,,,15.874175,15.128165,15.581831,,,,TRUE,,3,5,TRUE,,FALSE -23,APOGEE,,,,,,56.588253021240234,38.966312408447266,,,,,,25.08159,24.84667,23.36787,21.744411,21.132257,,,,,,,,TRUE,,3,5,TRUE,,FALSE -24,BOSS,,,1742053235068416768,,,321.2508544921875,9.103323936462402,-3.0529616,0.23803899,,0.7733791,,,,,,,,10.806388,9.53475,10.244381,,,,TRUE,,3,5,TRUE,,FALSE -25,APOGEE,,,,,,69.86883583429254,20.846097305005415,,,,,,,,,,,,,,18.151804,,,,TRUE,,3,5,TRUE,,FALSE -26,APOGEE,,,6716603796046091776,,,284.6644592285156,-40.99450302,-1.0301181,-2.8249109,,0.7815646,,,,,,,,15.663781,14.705363,15.268626,,,,TRUE,,3,5,TRUE,,FALSE -27,APOGEE,,,,,,218.5586539257018,-61.00860414,,,,,,,,,,,,,,14.880216,,,,TRUE,,3,5,TRUE,,FALSE -28,APOGEE,,,,,,276.3083570237236,38.030768178594315,,,,,,13.817177,13.817177,13.817177,13.817177,13.817177,,,,,,,,TRUE,,3,5,TRUE,,FALSE -29,BOSS,,,,,,268.5023193359375,-46.51083755,-1.439177,-0.6827121,,0.808074,,,,,,,,,,14.737913,,,,TRUE,,3,5,TRUE,,FALSE -30,APOGEE,,,,,,79.98721313476562,48.676029205322266,0.24466822,-0.33668113,,0.046332162,,,,,,,,,,15.952167,,,,TRUE,,3,5,TRUE,,FALSE -31,APOGEE,,,3127786504271326976,,,104.34357452392578,2.7544913291931152,-5.8881636,-5.562531,,0.8718962,,,,,,,,14.502094,13.579643,14.128604,,,,TRUE,,3,5,TRUE,,FALSE -32,BOSS,,,,,,238.6450229418189,50.81510726772382,,,,,,18.554823,18.554823,18.554823,18.554823,18.554823,,,,,,,,TRUE,,3,5,TRUE,,FALSE -33,BOSS,,,,,,269.59552001953125,-38.65961456,0.2304149,-7.2610464,,0.068813905,,,,,,,,,,15.080259,,,,TRUE,,3,5,TRUE,,FALSE -34,BOSS,,,,,,155.76306136118933,-8.817286692,,,,,,,,,,,,,,18.169863,,,,TRUE,,3,5,TRUE,,FALSE -35,APOGEE,,,,,,41.74240226441114,-42.19454252,,,,,,14.061309,14.061309,14.061309,14.061309,14.061309,,,,,,,,TRUE,,3,5,TRUE,,FALSE -36,APOGEE,,,4037234593687633152,,,269.6929626464844,-37.31075668,0.70930505,-5.7936177,,0.11424016,,,,,,,,15.717317,14.081268,14.95381,,,,TRUE,,3,5,TRUE,,FALSE -37,APOGEE,,,5299473014559365888,,,141.96112060546875,-60.26277542,1.2105885,1.8648937,,0.6556,,,,,,,,16.275719,15.278423,15.861832,,,,TRUE,,3,5,TRUE,,FALSE -38,BOSS,,,,,,105.81937408447266,-62.64641953,-3.6946084,11.30163,,0.5535068,,,,,,,,,,15.339528,,,,TRUE,,3,5,TRUE,,FALSE -39,BOSS,,,5986876723494963456,,,233.5907440185547,-47.45285797,-1.7784321,-2.8776402,,0.9295717,,,,,,,,15.873177,14.653904,15.344839,,,,TRUE,,3,5,TRUE,,FALSE -40,BOSS,,,,,,236.2151641845703,-20.06913757,-5.8280187,0.5509816,,1.7827637,,,,,,,,,,13.432687,,,,TRUE,,3,5,TRUE,,FALSE -41,BOSS,,,,,,308.5747734159112,77.10158798805043,,,,,,,,,,,,,,18.773153,,,,TRUE,,3,5,TRUE,,FALSE -42,BOSS,,,,,,302.7796630859375,9.683060646057129,,,,,,22.639591,20.251524,19.327724,18.93538,18.822897,,,,,,,,TRUE,,3,5,TRUE,,FALSE -43,BOSS,,,,,,262.0460510253906,-31.9094677,-0.70829743,2.5190108,,0.56842405,,,,,,,,,,14.435419,,,,TRUE,,3,5,TRUE,,FALSE -44,BOSS,,,,,,169.67616271972656,-10.8683157,,,,,,23.757376,23.018812,22.498236,22.013803,21.787107,,,,,,,,TRUE,,3,5,TRUE,,FALSE -45,BOSS,,,,,,18.08656883239746,27.824718475341797,,,,,,23.850815,23.642157,22.641645,22.254175,21.973812,,,,,,,,TRUE,,3,5,TRUE,,FALSE -46,BOSS,,,,,,189.5998526,-51.12843654,,,,,,18.021381,18.021381,18.021381,18.021381,18.021381,,,,,,,,TRUE,,3,5,TRUE,,FALSE -47,APOGEE,,,,,,291.1813965,25.48657799,-2.1368947,-9.121573,,0.9166721,,,,,,,,,,13.975713,,,,TRUE,,3,5,TRUE,,FALSE -48,APOGEE,,,,,,253.43643188476562,-34.8242836,-6.0795503,-6.874174,,0.12813249,,,,,,,,,,15.535668,,,,TRUE,,3,5,TRUE,,FALSE -49,APOGEE,,,5404423804617714176,,,149.12953186035156,-53.28446579,-7.2144337,0.5768588,,0.85302585,,,,,,,,16.480652,15.13847,15.8875885,,,,TRUE,,3,5,TRUE,,FALSE -50,BOSS,,,,1235344402,,283.71380615234375,12.371167182922363,,,,,,,,,,,,,,,14.457,,,TRUE,,3,5,TRUE,,FALSE -51,APOGEE,,,6240994682646514816,,,234.66082763671875,-22.23919487,8.803073,-8.529166,,1.8465331,,,,,,,,15.579301,14.333661,15.03334,,,,TRUE,,3,5,TRUE,,FALSE -52,APOGEE,,,5799990498730796288,,,222.24554443359375,-68.69470215,-9.333442,0.32404658,,0.9524031,,,,,,,,15.666204,14.528124,15.178019,,,,TRUE,,3,5,TRUE,,FALSE -53,BOSS,,,,,,70.93364822766145,-15.68639374,,,,,,,,,,,,,,14.216855,,,,TRUE,,3,5,TRUE,,FALSE -54,BOSS,,,,,,313.3588605988401,-64.90821688,,,,,,,,,,,,,,13.435437,,,,TRUE,,3,5,TRUE,,FALSE -55,BOSS,,,,,,326.9616173610489,79.09138071896493,,,,,,14.31843,14.31843,14.31843,14.31843,14.31843,,,,,,,,TRUE,,3,5,TRUE,,FALSE -56,APOGEE,,,,,,205.42795397141813,-39.49090413,,,,,,,,,,,,,,13.221332,,,,TRUE,,3,5,TRUE,,FALSE -57,BOSS,,,1826398116403682688,,,299.416748,20.76044273376465,-1.5154749,-7.1681933,,1.4013343,,,,,,,,16.049578,14.941574,15.806762,,,,TRUE,,3,5,TRUE,,FALSE -58,APOGEE,,,,,,266.9850158691406,-59.67505646,2.8675766,-10.243619,,0.78981423,,,,,,,,,,13.856769,,,,TRUE,,3,5,TRUE,,FALSE -59,APOGEE,,,,,,342.1569026,-1.970879794,,,,,,,,,,,,,,18.382395,,,,TRUE,,3,5,TRUE,,FALSE -60,APOGEE,,,,,,84.32974155834334,-71.86153763,,,,,,,,,,,,,,15.590839,,,,TRUE,,3,5,TRUE,,FALSE -61,BOSS,,,,,,190.79627990722656,64.75472259521484,,,,,,25.67888,24.772968,24.392704,23.133852,20.292099,,,,,,,,TRUE,,3,5,TRUE,,FALSE -62,BOSS,,,,,,173.6854070297808,2.271468995779159,,,,,,15.273549,15.273549,15.273549,15.273549,15.273549,,,,,,,,TRUE,,3,5,TRUE,,FALSE -63,BOSS,,,,,,52.46262741088867,40.507850646972656,,,,,,24.448252,24.801268,24.68017,24.578358,21.238506,,,,,,,,TRUE,,3,5,TRUE,,FALSE -64,APOGEE,,,6803637082046987264,,,318.16033935546875,-24.32069778,-0.47882384,-4.6342425,,0.6224656,,,,,,,,16.321484,15.414918,15.947643,,,,TRUE,,3,5,TRUE,,FALSE -65,BOSS,,,,,,238.2233428955078,42.61351395,,,,,,21.691912,21.406952,20.851591,20.511356,20.34639,,,,,,,,TRUE,,3,5,TRUE,,FALSE -66,BOSS,,,,,,214.76776123046875,-20.05138397,,,,,,17.87514,16.314484,15.600426,15.377921,15.27553,,,,,,,,TRUE,,3,5,TRUE,,FALSE -67,BOSS,,,4082759803798636416,,,290.40240478515625,-20.68270493,-7.3011193,-8.890116,,0.5668037,,,,,,,,16.179142,15.32184,15.846203,,,,TRUE,,3,5,TRUE,,FALSE -68,APOGEE,,,,,,304.1143798828125,8.554203033447266,,,,,,20.532293,18.858007,18.105993,17.792877,17.604002,,,,,,,,TRUE,,3,5,TRUE,,FALSE -69,APOGEE,63050396573102637,,,881141965,,60.59712600708008,47.69127655029297,,,,,,,,,,,,,,,15.367,,,TRUE,,3,5,TRUE,,FALSE -70,APOGEE,,,,,,276.6059265136719,-13.92156696,-0.87135726,-4.060744,,0.3275647,,,,,,,,,,15.232843,,,,TRUE,,3,5,TRUE,,FALSE -71,BOSS,,,1829969948631172992,,,301.3713073730469,22.256240844726562,-5.1121564,-4.497712,,0.7647907,,,,,,,,15.696336,14.445488,15.17279,,,,TRUE,,3,5,TRUE,,FALSE -72,BOSS,,,2131947449919047424,,,285.9072266,48.94021987915039,-0.025091171,0.53291553,,0.60776937,,,,,,,,15.642535,14.802854,15.306992,,,,TRUE,,3,5,TRUE,,FALSE -73,APOGEE,,,,,,90.88671974,-27.27798089,,,,,,19.80138,19.80138,19.80138,19.80138,19.80138,,,,,,,,TRUE,,3,5,TRUE,,FALSE -74,BOSS,,,,,,27.59313965,28.288711547851562,,,,,,24.926758,22.816109,22.242037,21.833595,21.430048,,,,,,,,TRUE,,3,5,TRUE,,FALSE -75,APOGEE,,,,,,61.32428841847853,-51.61235829,,,,,,16.965103,16.965103,16.965103,16.965103,16.965103,,,,,,,,TRUE,,3,5,TRUE,,FALSE -76,BOSS,,,,,,225.9148406982422,42.65070343017578,,,,,,23.71794,23.345898,22.717432,22.086817,22.033043,,,,,,,,TRUE,,3,5,TRUE,,FALSE -77,APOGEE,,,6084172438692073856,,,202.0572967529297,-46.5917778,-0.43000337,-0.99476254,,0.8928374,,,,,,,,14.703981,13.881974,14.377015,,,,TRUE,,3,5,TRUE,,FALSE -78,BOSS,,,,,,109.59927368164062,30.334585189819336,,,,,,23.39626,22.28673,21.509962,21.359001,20.277046,,,,,,,,TRUE,,3,5,TRUE,,FALSE -79,BOSS,,,,1247237537,,183.05258178710938,-61.80580521,,,,,,,,,,,,,,,13.899,,,TRUE,,3,5,TRUE,,FALSE -80,APOGEE,,,,,,332.8862052416298,-70.25785712,,,,,,,,,,,,,,18.625954,,,,TRUE,,3,5,TRUE,,FALSE -81,APOGEE,,,,,,157.18920917502177,-81.68580769,,,,,,17.136791,17.136791,17.136791,17.136791,17.136791,,,,,,,,TRUE,,3,5,TRUE,,FALSE -82,APOGEE,,,,,,324.36694662030385,18.853847795638956,,,,,,15.8132105,15.8132105,15.8132105,15.8132105,15.8132105,,,,,,,,TRUE,,3,5,TRUE,,FALSE -83,APOGEE,,,,,,186.9317775249239,19.63538977732341,,,,,,,,,,,,,,18.928991,,,,TRUE,,3,5,TRUE,,FALSE -84,BOSS,,,,,,121.06922149658203,23.145545959472656,,,,,,23.575663,22.807844,21.505783,21.21398,20.455107,,,,,,,,TRUE,,3,5,TRUE,,FALSE -85,BOSS,,,,,,101.22248077392578,10.302441596984863,,,,,,17.084484,14.776092,14.332685,13.131848,12.773293,,,,,,,,TRUE,,3,5,TRUE,,FALSE -86,APOGEE,,,,,,4.145135272,7.289044771729607,,,,,,,,,,,,,,10.2851715,,,,TRUE,,3,5,TRUE,,FALSE -87,BOSS,,,4511268690924589184,,,282.3520508,17.221071243286133,0.037170157,-2.4240265,,0.45267987,,,,,,,,13.277962,11.734461,12.553878,,,,TRUE,,3,5,TRUE,,FALSE -88,APOGEE,,,,,,257.7920573015427,-13.66046857,,,,,,,,,,,,,,17.302023,,,,TRUE,,3,5,TRUE,,FALSE -89,BOSS,,,,,,182.99066162109375,7.276773452758789,,,,,,25.286516,24.02073,22.77824,22.970306,22.66189,,,,,,,,TRUE,,3,5,TRUE,,FALSE -90,APOGEE,,,,,,241.20236144839555,-73.64303169,,,,,,,,,,,,,,11.724846,,,,TRUE,,3,5,TRUE,,FALSE -91,APOGEE,,,4067114268822744448,,,266.43731689453125,-25.92999649,-2.0346615,-6.8709016,,0.15432438,,,,,,,,20.052053,13.817839,15.52432,,,,TRUE,,3,5,TRUE,,FALSE -92,BOSS,,,,,,36.787410736083984,-3.406038523,3.2144544,-16.144226,,0.13972853,,,,,,,,,,15.57395,,,,TRUE,,3,5,TRUE,,FALSE -93,BOSS,,,,,,110.14348525798255,83.70086402803094,,,,,,16.740643,16.740643,16.740643,16.740643,16.740643,,,,,,,,TRUE,,3,5,TRUE,,FALSE -94,APOGEE,,,,,,222.04954121471215,-82.64486523,,,,,,12.802641,12.802641,12.802641,12.802641,12.802641,,,,,,,,TRUE,,3,5,TRUE,,FALSE -95,BOSS,,,,,,150.28236029286992,12.780074710132851,,,,,,,,,,,,,,11.058099,,,,TRUE,,3,5,TRUE,,FALSE -96,APOGEE,,,,,,198.92550659179688,-7.81828928,-25.817423,-6.0447335,,2.0468123,,,,,,,,,,14.932469,,,,TRUE,,3,5,TRUE,,FALSE -97,BOSS,,,3058004280829321216,,,109.91910552978516,-6.497790337,-0.77837294,-1.0646995,,0.47408396,,,,,,,,15.773341,14.885421,15.413329,,,,TRUE,,3,5,TRUE,,FALSE -98,APOGEE,,,4124058250874645120,,,265.7625427246094,-16.5740242,-3.9413574,-9.323677,,0.36199063,,,,,,,,16.435127,14.9882965,15.787186,,,,TRUE,,3,5,TRUE,,FALSE -99,APOGEE,,,5306000230983976064,,,146.57969665527344,-57.40896988,-4.738899,4.427131,,0.2660805,,,,,,,,15.356114,13.549028,14.477364,,,,TRUE,,3,5,TRUE,,FALSE -100,BOSS,,,,,,30.66155433654785,-51.75399399,12.393519,9.495563,,1.5087881,,,,,,,,,,15.459929,,,,TRUE,,3,5,TRUE,,FALSE -101,BOSS,,,,,,84.12731934,-33.31795883,-2.465497,9.190811,,1.2413044,,,,,,,,,,14.503324,,,,TRUE,,3,5,TRUE,,FALSE -102,BOSS,,,,,,199.9457302488781,-23.11921598,,,,,,,,,,,,,,10.615183,,,,TRUE,,3,5,TRUE,,FALSE -103,BOSS,,,,,,16.03748893737793,25.417741775512695,-4.400728,-1.5684812,,0.38166034,,,,,,,,,,15.913676,,,,TRUE,,3,5,TRUE,,FALSE -104,BOSS,,,5589823077311081600,,,110.65379333496094,-36.06587982,-0.6404882,-9.988043,,1.0768558,,,,,,,,14.299001,13.129776,13.792185,,,,TRUE,,3,5,TRUE,,FALSE -105,APOGEE,,,,,,310.1600341796875,38.229766845703125,,,,,,23.78788,23.197731,20.0639,18.372051,17.09461,,,,,,,,TRUE,,3,5,TRUE,,FALSE -106,BOSS,,,,,,343.5453796386719,-19.09307098,,,,,,25.092176,23.355574,22.229536,20.977276,20.669867,,,,,,,,TRUE,,3,5,TRUE,,FALSE -107,APOGEE,,,,,,113.55461883544922,41.74734115600586,,,,,,24.048195,22.009817,20.620548,18.931036,18.067003,,,,,,,,TRUE,,3,5,TRUE,,FALSE -108,BOSS,,,,,,350.910641,-67.78304816,,,,,,17.513182,17.513182,17.513182,17.513182,17.513182,,,,,,,,TRUE,,3,5,TRUE,,FALSE -109,BOSS,,,,,,206.13137577554156,28.26903834775473,,,,,,,,,,,,,,19.590464,,,,TRUE,,3,5,TRUE,,FALSE -110,APOGEE,,,,,,19.159570091527762,40.29415799238788,,,,,,,,,,,,,,18.978848,,,,TRUE,,3,5,TRUE,,FALSE -111,APOGEE,,,,,,5.744895756426773,84.49992168645656,,,,,,18.6805,18.6805,18.6805,18.6805,18.6805,,,,,,,,TRUE,,3,5,TRUE,,FALSE -112,APOGEE,,,,,,324.01678466796875,48.811710357666016,,,,,,20.615799,18.285866,17.031355,16.33577,15.871981,,,,,,,,TRUE,,3,5,TRUE,,FALSE -113,APOGEE,,,,,,348.05376435669257,52.62786375027122,,,,,,14.371797,14.371797,14.371797,14.371797,14.371797,,,,,,,,TRUE,,3,5,TRUE,,FALSE -114,BOSS,,,,,,16.220903503109234,-74.46982285,,,,,,11.547842,11.547842,11.547842,11.547842,11.547842,,,,,,,,TRUE,,3,5,TRUE,,FALSE -115,APOGEE,,,,,,25.63627815246582,-62.46719742,-4.2084947,-18.993227,,4.611167,,,,,,,,,,15.476997,,,,TRUE,,3,5,TRUE,,FALSE -116,APOGEE,,,4052460905533561600,,,273.9763488769531,-27.05521584,0.2506152,-4.562319,,0.160919,,,,,,,,16.54537,14.640886,15.637927,,,,TRUE,,3,5,TRUE,,FALSE -117,BOSS,,,,,,36.82796455854301,57.176237581995395,,,,,,11.174744,11.174744,11.174744,11.174744,11.174744,,,,,,,,TRUE,,3,5,TRUE,,FALSE -118,APOGEE,,,5813619151497618944,,,263.2093505859375,-65.74384308,-0.71132976,-6.4848313,,0.52739924,,,,,,,,15.737965,14.6950245,15.295575,,,,TRUE,,3,5,TRUE,,FALSE -119,APOGEE,,,1973288609228670848,,,329.1262512207031,44.53296661376953,-3.7957919,-3.6099284,,0.4904507,,,,,,,,13.195243,12.772501,13.036578,,,,TRUE,,3,5,TRUE,,FALSE -120,APOGEE,,,5982926831058168448,,,238.59561157226562,-49.27904129,-4.0846753,-4.439897,,0.21793684,,,,,,,,16.915165,14.474542,15.59257,,,,TRUE,,3,5,TRUE,,FALSE -121,BOSS,,,,,,73.24023438,0.20651757717132568,,,,,,25.413734,23.980934,22.300028,21.551477,20.887323,,,,,,,,TRUE,,3,5,TRUE,,FALSE -122,BOSS,,,,,,150.27741102986474,77.20090774910165,,,,,,,,,,,,,,10.926746,,,,TRUE,,3,5,TRUE,,FALSE -123,APOGEE,,,5799842270816092416,,,221.13246154785156,-69.37440491,-6.91154,-2.3268716,,0.29730365,,,,,,,,13.572745,11.61305,12.588465,,,,TRUE,,3,5,TRUE,,FALSE -124,APOGEE,63050395704679924,,4351740892436039040,,,245.94744873046875,-7.32610178,-24.125172,-3.0970094,,2.0733871,,,,,,,,14.6790085,13.45233,14.144058,,,,TRUE,,3,5,TRUE,,FALSE -125,BOSS,,,5777226897163399680,,,253.24673461914062,-78.29135132,4.278907,-12.102017,,0.9074496,,,,,,,,15.771187,14.797088,15.372929,,,,TRUE,,3,5,TRUE,,FALSE -126,BOSS,,,,,,272.7005310058594,12.850948333740234,,,,,,21.956583,20.017773,19.116306,18.790098,18.518244,,,,,,,,TRUE,,3,5,TRUE,,FALSE -127,APOGEE,,,,,,289.99920654296875,-52.46260071,-1.1395025,-6.6806574,,0.7417156,,,,,,,,,,15.423563,,,,TRUE,,3,5,TRUE,,FALSE -128,BOSS,,,6736209870774856704,,,282.19036865234375,-32.09381485,-3.7470338,-4.7137465,,0.35697088,,,,,,,,16.08381,15.097567,15.680136,,,,TRUE,,3,5,TRUE,,FALSE -129,BOSS,,,4044552496355608448,,,275.3039551,-34.43371964,-2.9231193,-2.6897638,,0.059155453,,,,,,,,15.540074,13.938427,14.788319,,,,TRUE,,3,5,TRUE,,FALSE -130,APOGEE,,,,,,337.88470458984375,-9.277961731,-10.20745,-8.581147,,1.3340018,,,,,,,,,,10.129284,,,,TRUE,,3,5,TRUE,,FALSE -131,APOGEE,,,5846501146255352320,,,216.63258361816406,-69.09770203,-10.951105,-3.9519327,,0.291844,,,,,,,,14.559252,12.711482,13.651046,,,,TRUE,,3,5,TRUE,,FALSE -132,BOSS,,,5829395665912461312,,,245.22824096679688,-62.70051956,0.079439804,-2.5510042,,0.8528777,,,,,,,,15.964369,14.974426,15.553575,,,,TRUE,,3,5,TRUE,,FALSE -133,BOSS,,,4091674987752833536,,,279.2886962890625,-21.05656433,-5.0606675,-5.1329045,,0.12929237,,,,,,,,16.898922,14.99348,15.961774,,,,TRUE,,3,5,TRUE,,FALSE -134,APOGEE,,,4208289775029901440,,,292.77899169921875,-5.914134026,-3.5030572,-5.3154726,,0.13414995,,,,,,,,16.281534,14.531883,15.455056,,,,TRUE,,3,5,TRUE,,FALSE -135,BOSS,,,,,,321.33233642578125,6.116003036499023,,,,,,25.340967,23.437473,21.727844,21.220165,20.50712,,,,,,,,TRUE,,3,5,TRUE,,FALSE -136,APOGEE,,,4093920186116342016,,,273.5802917480469,-21.13858414,0.17464553,-2.4827335,,0.38706926,,,,,,,,15.126768,13.210412,14.183643,,,,TRUE,,3,5,TRUE,,FALSE -137,APOGEE,,,3803202650234276864,,,163.36988830566406,-0.673973083,-22.243174,-1.1306834,,0.7834535,,,,,,,,15.132674,14.330049,14.81713,,,,TRUE,,3,5,TRUE,,FALSE -138,APOGEE,,,,,,329.3421325683594,9.689582824707031,,,,,,26.28364,24.478987,25.07241,23.684786,23.036987,,,,,,,,TRUE,,3,5,TRUE,,FALSE -139,BOSS,,,,,,76.61762618185622,38.05534123623943,,,,,,,,,,,,,,13.107362,,,,TRUE,,3,5,TRUE,,FALSE -140,BOSS,,,,,,117.11239247983283,-81.61079919,,,,,,,,,,,,,,17.614613,,,,TRUE,,3,5,TRUE,,FALSE -141,APOGEE,,,,,,304.31831036085003,-21.93536919,,,,,,,,,,,,,,15.602236,,,,TRUE,,3,5,TRUE,,FALSE -142,BOSS,,,,,,232.6004638671875,-48.34486008,-0.37001857,-4.192707,,0.48872235,,,,,,,,,,14.275659,,,,TRUE,,3,5,TRUE,,FALSE -143,APOGEE,,,,,,352.7692882193108,54.63055845376087,,,,,,,,,,,,,,12.165727,,,,TRUE,,3,5,TRUE,,FALSE -144,BOSS,,,,,,330.56168144756754,33.227117872909545,,,,,,,,,,,,,,11.4708605,,,,TRUE,,3,5,TRUE,,FALSE -145,BOSS,,,,518786054,,273.4162902832031,-39.37337112,,,,,,,,,,,,,,,15.308,,,TRUE,,3,5,TRUE,,FALSE -146,APOGEE,,,,,,244.77034105626115,-62.00604906,,,,,,15.824518,15.824518,15.824518,15.824518,15.824518,,,,,,,,TRUE,,3,5,TRUE,,FALSE -147,APOGEE,,,,,,119.1860580444336,7.504703044891357,,,,,,22.174936,21.152554,20.427776,20.135475,19.98465,,,,,,,,TRUE,,3,5,TRUE,,FALSE -148,BOSS,,,,,,241.91470336914062,3.4725563526153564,-0.9759687,-0.2543052,,0.4012155,,,,,,,,,,12.836271,,,,TRUE,,3,5,TRUE,,FALSE -149,BOSS,,,,,,259.3881726936776,20.330626549793024,,,,,,18.320234,18.320234,18.320234,18.320234,18.320234,,,,,,,,TRUE,,3,5,TRUE,,FALSE -150,APOGEE,,,,,,252.63873354145738,-63.90749167,,,,,,,,,,,,,,15.032701,,,,TRUE,,3,5,TRUE,,FALSE -151,APOGEE,,,,,,251.79672241210938,-34.48783112,-1.1890903,-4.456173,,0.13108417,,,,,,,,,,15.533691,,,,TRUE,,3,5,TRUE,,FALSE -152,APOGEE,,,5574429536560352128,,,93.97206879,-39.32368469,-3.2150314,7.0135956,,1.1870171,,,,,,,,13.803843,13.041596,13.501831,,,,TRUE,,3,5,TRUE,,FALSE -153,BOSS,,,345932029120490880,,,29.950702667236328,42.52369308,-0.18458901,-1.2360835,,0.3114197,,,,,,,,16.490679,15.304227,15.97084,,,,TRUE,,3,5,TRUE,,FALSE -154,APOGEE,,,,,,145.91067504882812,-58.43167496,-8.396666,5.791583,,0.3190049,,,,,,,,,,15.541846,,,,TRUE,,3,5,TRUE,,FALSE -155,APOGEE,,,6018566018671555584,,,247.77407836914062,-37.66640854,-4.105602,-2.7435436,,0.16217516,,,,,,,,14.716791,11.829579,13.055666,,,,TRUE,,3,5,TRUE,,FALSE -156,APOGEE,,,,,,214.8201141357422,33.11469650268555,-8.600596,-3.814931,,0.6835482,,,,,,,,,,15.426093,,,,TRUE,,3,5,TRUE,,FALSE -157,APOGEE,63050396027204925,,5822881300039026304,,,239.84234619140625,-65.36935425,-4.051063,-3.715188,,0.08855469,,,,,,,,16.171309,14.861448,15.589646,,,,TRUE,,3,5,TRUE,,FALSE -158,APOGEE,,,,,,187.54679114944915,-70.0078391,,,,,,,,,,,,,,14.369969,,,,TRUE,,3,5,TRUE,,FALSE -159,APOGEE,,,,,,241.82476806640625,-25.30934525,-6.559978,1.9578153,,0.8349027,,,,,,,,,,14.403549,,,,TRUE,,3,5,TRUE,,FALSE -160,APOGEE,,,,,,59.60449981689453,21.155357360839844,41.740623,-31.136133,,3.9915352,,,,,,,,,,13.705391,,,,TRUE,,3,5,TRUE,,FALSE -161,APOGEE,63050395576809794,,4203563691802320640,,,284.2885437011719,-9.196439743,-1.7588122,-5.255824,,0.15524632,,,,,,,,16.20432,14.46274,15.405895,,,,TRUE,,3,5,TRUE,,FALSE -162,BOSS,,,,,,12.843499183654785,61.68128967285156,-2.8507812,-0.8932814,,0.24784175,,,,,,,,,,15.94241,,,,TRUE,,3,5,TRUE,,FALSE -163,APOGEE,,,,,,327.9395446777344,22.576263427734375,,,,,,23.38508,21.230928,19.675802,18.738052,18.181986,,,,,,,,TRUE,,3,5,TRUE,,FALSE -164,APOGEE,,,5447475285453629568,,,156.2827911376953,-34.25658417,-8.509782,-0.83389175,,1.3120991,,,,,,,,15.0399685,14.113494,14.662061,,,,TRUE,,3,5,TRUE,,FALSE -165,APOGEE,63050396571191797,,,801897472,,64.29582977294922,46.18185806274414,,,,,,,,,,,,,,,14.082,,,TRUE,,3,5,TRUE,,FALSE -166,BOSS,,,,,,251.24901026995926,20.761072247801053,,,,,,,,,,,,,,12.419063,,,,TRUE,,3,5,TRUE,,FALSE -167,APOGEE,,,,,,158.69978100147583,28.011140166951037,,,,,,11.282053,11.282053,11.282053,11.282053,11.282053,,,,,,,,TRUE,,3,5,TRUE,,FALSE -168,BOSS,,,,,,208.5288086,56.69211196899414,,,,,,22.887766,22.028564,20.931177,20.35667,19.90541,,,,,,,,TRUE,,3,5,TRUE,,FALSE -169,BOSS,,,,,,294.1585777,30.838738743737466,,,,,,19.05826,19.05826,19.05826,19.05826,19.05826,,,,,,,,TRUE,,3,5,TRUE,,FALSE -170,APOGEE,,,,,,55.19068908691406,49.30854034423828,,,,,,20.112598,18.448915,17.632612,17.253395,17.066784,,,,,,,,TRUE,,3,5,TRUE,,FALSE -171,BOSS,,,,,,208.2292798918539,-45.10495813,,,,,,,,,,,,,,19.879662,,,,TRUE,,3,5,TRUE,,FALSE -172,APOGEE,,,4472814268166346496,,,269.6982422,4.5690732,0.8074396,-5.3014293,,0.1342601,,,,,,,,15.217981,13.774918,14.558535,,,,TRUE,,3,5,TRUE,,FALSE -173,BOSS,,,5984982780373103232,,,241.364502,-46.14024734,-3.2645855,-4.710714,,0.55543506,,,,,,,,15.941187,14.714792,15.411075,,,,TRUE,,3,5,TRUE,,FALSE -174,BOSS,,,,,,193.87478637695312,13.071717262268066,,,,,,24.209127,23.345558,21.67536,21.011944,20.569208,,,,,,,,TRUE,,3,5,TRUE,,FALSE -175,BOSS,,,,,,82.84574890136719,2.6591269969940186,,,,,,24.490797,24.329973,22.519716,21.054262,20.071192,,,,,,,,TRUE,,3,5,TRUE,,FALSE -176,BOSS,,,,,,258.9907531738281,-30.33228111,-3.9985204,-9.540714,,0.89164203,,,,,,,,,,15.450352,,,,TRUE,,3,5,TRUE,,FALSE -177,BOSS,,,2023925689559897088,,,289.7858887,25.650304794311523,12.421347,10.415708,,2.62943,,,,,,,,14.714386,13.548961,14.210527,,,,TRUE,,3,5,TRUE,,FALSE -178,APOGEE,,,,,,168.18912667385493,30.92086427852159,,,,,,,,,,,,,,17.119446,,,,TRUE,,3,5,TRUE,,FALSE -179,BOSS,,,,800904386,,94.24214935302734,36.041690826416016,,,,,,,,,,,,,,,14.591,,,TRUE,,3,5,TRUE,,FALSE -180,BOSS,,,,,,294.4983825683594,-7.600120544,,,,,,24.201746,23.44475,21.78171,21.078547,20.620617,,,,,,,,TRUE,,3,5,TRUE,,FALSE -181,BOSS,,,4057802126813382016,,,261.6661071777344,-32.06982422,-3.181779,-2.1856582,,1.9901395,,,,,,,,14.366076,13.229444,13.891513,,,,TRUE,,3,5,TRUE,,FALSE -182,APOGEE,,,5844009652906745344,,,200.8880615234375,-70.40213776,-8.01176,-5.2102246,,0.05271804,,,,,,,,16.114222,14.795244,15.553161,,,,TRUE,,3,5,TRUE,,FALSE -183,BOSS,,,,,,261.1799011230469,-38.81180573,-0.50103647,-2.0754387,,0.16245322,,,,,,,,,,14.955585,,,,TRUE,,3,5,TRUE,,FALSE -184,BOSS,63050395054009209,,,757824287,,317.6270751953125,66.22753143310547,,,,,,,,,,,,,,,13.604,,,TRUE,,3,5,TRUE,,FALSE -185,BOSS,63050396148003068,,5887450841951034240,,,226.91937255859375,-54.71531677,-2.488071,-3.678781,,0.6365667,,,,,,,,16.183224,14.9205065,15.634026,,,,TRUE,,3,5,TRUE,,FALSE -186,BOSS,63050394922122699,,1954457445378886272,,,326.6565856933594,40.71246337890625,-1.7632521,-1.5674198,,0.68275404,,,,,,,,15.516054,14.383638,15.033053,,,,TRUE,,3,5,TRUE,,FALSE -187,APOGEE,,,,,,243.71475219726562,8.353689193725586,,,,,,20.809269,18.614685,17.764248,17.451372,17.281826,,,,,,,,TRUE,,3,5,TRUE,,FALSE -188,APOGEE,63050396529839439,113555911,6757538098559982720,,,286.82989501953125,-30.96113014,-2.8509324,-1.7290916,,0.041487724,,,,,,,,16.370113,14.623442,15.520707,,,,TRUE,,3,5,TRUE,,FALSE -189,BOSS,,,,,,5.926082304739078,33.742694797812774,,,,,,,,,,,,,,13.502087,,,,TRUE,,3,5,TRUE,,FALSE -190,APOGEE,,,,161294968,,236.55580139160156,-32.28580856,,,,,,,,,,,,,,,15.925,,,TRUE,,3,5,TRUE,,FALSE -191,APOGEE,,,,,,138.98394775390625,26.898181915283203,-8.336913,-3.9110324,,0.68013984,,,,,,,,,,11.610072,,,,TRUE,,3,5,TRUE,,FALSE -192,BOSS,,,,,,292.3936863445692,-82.87058336,,,,,,15.882666,15.882666,15.882666,15.882666,15.882666,,,,,,,,TRUE,,3,5,TRUE,,FALSE -193,BOSS,63050396286834582,105638663,5967165194405248640,,,256.26776123046875,-39.74424362,0.5756708,-1.0651655,,0.41620448,,,,,,,,17.247837,13.611119,14.978188,,,,TRUE,,3,5,TRUE,,FALSE -194,BOSS,,,,,,190.98094177246094,-10.15176678,0.94922966,-13.742431,,2.043193,,,,,,,,,,13.179207,,,,TRUE,,3,5,TRUE,,FALSE -195,APOGEE,63050394946410938,65788188,2006594534430399872,,,339.1441650390625,56.04572677612305,8.904543,13.167531,,0.5812226,,,,,,,,16.422789,15.377684,15.990764,,,,TRUE,,3,5,TRUE,,FALSE -196,BOSS,,,,,,189.61007690429688,34.30216598510742,,,,,,25.20778,23.033634,21.289375,20.658276,20.114435,,,,,,,,TRUE,,3,5,TRUE,,FALSE -197,BOSS,,,,,,166.7301239,-50.11071708,,,,,,,,,,,,,,16.583065,,,,TRUE,,3,5,TRUE,,FALSE -198,APOGEE,,,,,,324.63651171276115,76.65835282842761,,,,,,15.860367,15.860367,15.860367,15.860367,15.860367,,,,,,,,TRUE,,3,5,TRUE,,FALSE -199,APOGEE,,,,,,341.74710531311894,-51.43609997,,,,,,17.86398,17.86398,17.86398,17.86398,17.86398,,,,,,,,TRUE,,3,5,TRUE,,FALSE -200,BOSS,,,2004163617304059904,,,333.1196289,52.08082962036133,1.2852561,-0.30176,,0.36579403,,,,,,,,15.443185,14.5720625,15.096612,,,,TRUE,,3,5,TRUE,,FALSE -201,APOGEE,,,,,,332.74690208160763,26.06552149320406,,,,,,,,,,,,,,13.253478,,,,TRUE,,3,5,TRUE,,FALSE -202,APOGEE,,,,,,52.104434967041016,-6.528459549,,,,,,24.822882,23.89836,24.840467,24.233374,23.311459,,,,,,,,TRUE,,3,5,TRUE,,FALSE -203,BOSS,,,,,,76.74251095825286,26.50233146903051,,,,,,18.069836,18.069836,18.069836,18.069836,18.069836,,,,,,,,TRUE,,3,5,TRUE,,FALSE -204,BOSS,,,1496888912606063104,,,208.09271240234375,38.84844970703125,1.3851037,-8.001816,,1.068554,,,,,,,,14.8604555,13.967966,14.495973,,,,TRUE,,3,5,TRUE,,FALSE -205,BOSS,,,,,,84.16385168502775,-13.44468253,,,,,,,,,,,,,,14.463943,,,,TRUE,,3,5,TRUE,,FALSE -206,BOSS,,,21729755674531712,,,40.287235260009766,9.58453083,16.563494,-9.90541,,1.6310456,,,,,,,,15.053781,13.881147,14.547879,,,,TRUE,,3,5,TRUE,,FALSE -207,APOGEE,,,,,,293.7564221811903,-9.162181507,,,,,,15.046597,15.046597,15.046597,15.046597,15.046597,,,,,,,,TRUE,,3,5,TRUE,,FALSE -208,BOSS,,,,,,290.9150532810235,-39.56686517,,,,,,,,,,,,,,11.556087,,,,TRUE,,3,5,TRUE,,FALSE -209,BOSS,,,,,,284.5955505371094,11.410357475280762,3.617569,-3.642101,,1.8233423,,,,,,,,,,15.330822,,,,TRUE,,3,5,TRUE,,FALSE -210,BOSS,,,,,,262.3737793,31.639211654663086,,,,,,23.608046,25.114317,24.501036,24.647106,20.60317,,,,,,,,TRUE,,3,5,TRUE,,FALSE -211,APOGEE,,,,,,113.01869201660156,28.357545852661133,,,,,,24.997692,23.011667,22.536375,22.610422,23.476704,,,,,,,,TRUE,,3,5,TRUE,,FALSE -212,BOSS,,,,,,196.5323486328125,62.50304031,,,,,,22.68929,23.519281,22.371004,21.82737,21.125847,,,,,,,,TRUE,,3,5,TRUE,,FALSE -213,BOSS,,,,,,176.4287567138672,4.783514976501465,,,,,,22.978958,23.252066,24.233232,23.15292,22.470022,,,,,,,,TRUE,,3,5,TRUE,,FALSE -214,BOSS,,,,,,278.4013366699219,-18.81860924,2.1777713,-2.770039,,1.9763951,,,,,,,,,,15.284637,,,,TRUE,,3,5,TRUE,,FALSE -215,BOSS,,,,,,62.69222640991211,44.075008392333984,-1.1885136,-1.2036417,,0.36271265,,,,,,,,,,15.648644,,,,TRUE,,3,5,TRUE,,FALSE -216,BOSS,,,,,,79.19980681370927,73.22619696856933,,,,,,,,,,,,,,14.983305,,,,TRUE,,3,5,TRUE,,FALSE -217,APOGEE,,,5391354287828213504,,,160.44200134277344,-42.35755539,-9.177196,6.5275445,,0.37144372,,,,,,,,15.648958,14.5100355,15.159582,,,,TRUE,,3,5,TRUE,,FALSE -218,BOSS,,,,608693941,,228.3907012939453,-53.26818085,,,,,,,,,,,,,,,15.121,,,TRUE,,3,5,TRUE,,FALSE -219,APOGEE,,,4045209901225874944,,,276.3653259277344,-32.32202911,-2.4883888,-2.7885587,,0.11899914,,,,,,,,15.775698,14.264627,15.090936,,,,TRUE,,3,5,TRUE,,FALSE -220,BOSS,,,,,,287.1069641113281,48.14677810668945,6.4676185,-3.543613,,1.7724363,,,,,,,,,,14.426527,,,,TRUE,,3,5,TRUE,,FALSE -221,APOGEE,,,,,,337.6748352050781,22.750871658325195,,,,,,22.271988,25.241003,25.384706,24.261948,22.888098,,,,,,,,TRUE,,3,5,TRUE,,FALSE -222,APOGEE,,,5936905088302842368,,,251.52174377441406,-52.06861877,-3.6866062,-10.862063,,1.3344207,,,,,,,,11.116587,9.74369,10.499817,,,,TRUE,,3,5,TRUE,,FALSE -223,BOSS,,,5358012491083432960,,,156.39268493652344,-50.58660507,-5.565849,8.165027,,0.8573523,,,,,,,,15.883036,14.8255,15.439669,,,,TRUE,,3,5,TRUE,,FALSE -224,BOSS,,,,,,10.849310431738326,17.507725466275957,,,,,,11.822677,11.822677,11.822677,11.822677,11.822677,,,,,,,,TRUE,,3,5,TRUE,,FALSE -225,BOSS,,,,,,268.2889404296875,23.54013442993164,5.2176805,7.7810826,,0.9422425,,,,,,,,,,15.434048,,,,TRUE,,3,5,TRUE,,FALSE -226,BOSS,,,1800450604019178752,,,324.7470703,27.07453727722168,2.8251352,0.106735095,,0.87769127,,,,,,,,15.935665,14.940728,15.533101,,,,TRUE,,3,5,TRUE,,FALSE -227,APOGEE,63050394911985003,64398328,1872812453553619072,,,313.376709,38.93260574,-1.9979454,-1.9001839,,0.29784358,,,,,,,,15.093804,13.285848,14.409677,,,,TRUE,,3,5,TRUE,,FALSE -228,BOSS,63050396368506471,,6027923279277168640,,,252.3264923095703,-30.91301537,-0.47721133,-2.7165391,,0.14906284,,,,,,,,16.506794,14.617592,15.571203,,,,TRUE,,3,5,TRUE,,FALSE -229,APOGEE,63050395922353978,,5398390784287715456,,,173.8163604736328,-35.18009949,-8.203925,2.146045,,1.0643536,,,,,,,,16.111086,15.023605,15.647184,,,,TRUE,,3,5,TRUE,,FALSE -230,APOGEE,,,,,,62.45156145554627,-81.97347349,,,,,,17.740475,17.740475,17.740475,17.740475,17.740475,,,,,,,,TRUE,,3,5,TRUE,,FALSE -231,BOSS,,,,,,22.743648529052734,51.266571044921875,,,,,,23.526623,21.051273,19.441263,18.791553,18.241438,,,,,,,,TRUE,,3,5,TRUE,,FALSE -232,BOSS,,,,,,103.47381591796875,2.426119089126587,2.0629268,-4.952248,,0.9015486,,,,,,,,,,11.830829,,,,TRUE,,3,5,TRUE,,FALSE -233,APOGEE,,,4068417842934354432,,,265.8702697753906,-23.64971924,-0.622478,-0.5309592,,0.3277213,,,,,,,,15.496595,13.230395,14.306583,,,,TRUE,,3,5,TRUE,,FALSE -234,BOSS,,,,,,260.7912110731504,-69.09527089,,,,,,,,,,,,,,12.68287,,,,TRUE,,3,5,TRUE,,FALSE -235,APOGEE,,,,476368393,,224.1922607421875,-52.68593979,,,,,,,,,,,,,,,15.393,,,TRUE,,3,5,TRUE,,FALSE -236,BOSS,,,,,,306.4517222679042,-68.98874701,,,,,,17.970772,17.970772,17.970772,17.970772,17.970772,,,,,,,,TRUE,,3,5,TRUE,,FALSE -237,APOGEE,63050396434380401,,6096032389584133504,,,211.62118530273438,-46.17723465,-12.430888,-5.1364303,,1.2661645,,,,,,,,15.6298685,14.606727,15.251596,,,,TRUE,,3,5,TRUE,,FALSE -238,APOGEE,,,,,,6.043114662,-12.90087605,,,,,,24.843203,24.544159,25.352024,23.834915,20.635614,,,,,,,,TRUE,,3,5,TRUE,,FALSE -239,BOSS,,,,,,353.0296325683594,66.05979156,,,,,,24.636906,25.144846,19.409851,24.33128,20.0094,,,,,,,,TRUE,,3,5,TRUE,,FALSE -240,BOSS,,,4435614903577731840,,,250.29515075683594,5.708816051483154,-6.114963,2.0305336,,1.4258776,,,,,,,,14.518869,13.6278105,14.15838,,,,TRUE,,3,5,TRUE,,FALSE -241,BOSS,,,1624737341544648064,,,245.5135955810547,59.780487060546875,5.295288,-3.5337133,,3.736557,,,,,,,,12.863421,11.980861,12.509692,,,,TRUE,,3,5,TRUE,,FALSE -242,APOGEE,,,,,,242.25900268554688,46.28569793701172,,,,,,23.587397,23.045275,22.622324,22.627691,22.049667,,,,,,,,TRUE,,3,5,TRUE,,FALSE -243,BOSS,,,,,,106.73589324951172,-46.37025452,0.6417522,-6.8648586,,1.0575451,,,,,,,,,,14.8115835,,,,TRUE,,3,5,TRUE,,FALSE -244,APOGEE,,,,,,122.9651107788086,11.55028247833252,,,,,,22.40554,25.997234,25.13293,24.897606,22.9654,,,,,,,,TRUE,,3,5,TRUE,,FALSE -245,BOSS,,,,,,318.9789123535156,12.714149475097656,,,,,,24.74784,23.363575,21.680227,20.295362,19.469025,,,,,,,,TRUE,,3,5,TRUE,,FALSE -246,APOGEE,,,,,,175.4866485595703,-38.2097702,6.7345915,-15.349574,,8.683908,,,,,,,,,,15.511074,,,,TRUE,,3,5,TRUE,,FALSE -247,APOGEE,,,,,,100.90907287597656,-68.87063599,-0.764064,-3.603482,,0.80584013,,,,,,,,,,15.98586,,,,TRUE,,3,5,TRUE,,FALSE -248,BOSS,,,4107385565797288576,,,258.2789611816406,-29.12483788,-1.6209584,-7.324894,,0.08772065,,,,,,,,16.683155,14.260551,15.383914,,,,TRUE,,3,5,TRUE,,FALSE -249,APOGEE,,,,,,126.48829526160355,-65.65629569,,,,,,,,,,,,,,19.788662,,,,TRUE,,3,5,TRUE,,FALSE -250,BOSS,,,,,,245.93031311035156,43.83140945,,,,,,24.747637,23.495625,22.353651,21.190956,20.514248,,,,,,,,TRUE,,3,5,TRUE,,FALSE -251,BOSS,,,5348776421604505472,,,172.87168884277344,-51.20564651,-4.918563,3.613761,,0.14817892,,,,,,,,15.28884,13.912846,14.678274,,,,TRUE,,3,5,TRUE,,FALSE -252,APOGEE,,,,,,177.4503936767578,16.558692932128906,,,,,,20.845938,19.554436,18.946703,18.690798,18.581352,,,,,,,,TRUE,,3,5,TRUE,,FALSE -253,APOGEE,63050394786389543,,429477801692859392,,,0.6187518239021301,61.337989807128906,-1.7693046,-2.299481,,0.34271026,,,,,,,,16.84633,15.060775,15.983837,,,,TRUE,,3,5,TRUE,,FALSE -254,APOGEE,,,,,,224.3972168,8.635515213012695,,,,,,24.062578,21.389425,20.068743,19.395025,19.030811,,,,,,,,TRUE,,3,5,TRUE,,FALSE -255,APOGEE,,,,,,57.30942891717964,76.67025877904055,,,,,,14.734452,14.734452,14.734452,14.734452,14.734452,,,,,,,,TRUE,,3,5,TRUE,,FALSE -256,APOGEE,,,4486999789227958016,,,262.3189697265625,6.788151264190674,8.045208,-13.936562,,1.2926903,,,,,,,,16.499552,15.239317,15.941331,,,,TRUE,,3,5,TRUE,,FALSE -257,APOGEE,,,,,,253.7900848388672,-34.88337708,-3.5851352,-3.582744,,0.25028688,,,,,,,,,,15.574355,,,,TRUE,,3,5,TRUE,,FALSE -258,APOGEE,,,,,,21.139650559740314,72.63876023232206,,,,,,,,,,,,,,10.675391,,,,TRUE,,3,5,TRUE,,FALSE -259,BOSS,,,3112217965076955264,,,104.21683502197266,-1.238292217,-2.6515872,2.8242805,,0.36784115,,,,,,,,12.873659,11.156877,12.046217,,,,TRUE,,3,5,TRUE,,FALSE -260,APOGEE,,,,,,206.4253387451172,4.169458389282227,,,,,,22.84527,23.28901,22.411133,21.800308,21.518261,,,,,,,,TRUE,,3,5,TRUE,,FALSE -261,APOGEE,,,,,,204.8253936767578,17.989782333374023,,,,,,23.078787,26.333214,25.19199,22.51887,22.664995,,,,,,,,TRUE,,3,5,TRUE,,FALSE -262,BOSS,,,,,,173.6584014892578,39.58012771606445,,,,,,25.771442,21.916836,20.394693,19.798885,19.584654,,,,,,,,TRUE,,3,5,TRUE,,FALSE -263,APOGEE,,,,,,272.01531982421875,1.0695526599884033,,,,,,23.846851,20.82615,19.711617,19.372805,19.114819,,,,,,,,TRUE,,3,5,TRUE,,FALSE -264,APOGEE,,,,,,94.86540591,-26.41618993,,,,,,,,,,,,,,14.063766,,,,TRUE,,3,5,TRUE,,FALSE -265,BOSS,,,,,,335.88158963792586,-72.18900065,,,,,,17.158436,17.158436,17.158436,17.158436,17.158436,,,,,,,,TRUE,,3,5,TRUE,,FALSE -266,BOSS,,,,,,214.8327499060461,28.238015523680104,,,,,,16.53069,16.53069,16.53069,16.53069,16.53069,,,,,,,,TRUE,,3,5,TRUE,,FALSE -267,BOSS,,,4091697424653620096,,,279.46258544921875,-20.99000931,-0.90645206,-3.9386024,,0.20236279,,,,,,,,15.705693,13.849323,14.791713,,,,TRUE,,3,5,TRUE,,FALSE -268,APOGEE,,,,,,187.96363830566406,-58.3265686,-13.91975,0.6554736,,0.8078138,,,,,,,,,,15.344174,,,,TRUE,,3,5,TRUE,,FALSE -269,BOSS,63050395284807041,,4056261569267138048,,,269.57135009765625,-29.85884476,3.5069675,-0.34670052,,-0.03125914,,,,,,,,16.890783,14.553944,15.901896,,,,TRUE,,3,5,TRUE,,FALSE -270,BOSS,63050395762065514,,4537316052660289024,,,278.31866455078125,26.545969009399414,-5.0673804,-11.858378,,1.121656,,,,,,,,14.900728,13.96087,14.519752,,,,TRUE,,3,5,TRUE,,FALSE -271,APOGEE,63050396390793034,,6039497666350778496,,,239.82540893554688,-31.5754509,-6.443315,-5.7685194,,0.87194496,,,,,,,,14.540613,13.154329,13.911458,,,,TRUE,,3,5,TRUE,,FALSE -272,APOGEE,,,5831490063783773440,,,244.6187744140625,-59.87011337,-6.093896,-3.9982002,,0.29309118,,,,,,,,13.469457,11.734672,12.629369,,,,TRUE,,3,5,TRUE,,FALSE -273,APOGEE,,,,,,203.5801531336464,63.29292514657524,,,,,,,,,,,,,,17.917465,,,,TRUE,,3,5,TRUE,,FALSE -274,APOGEE,,,,,,171.2684392072577,10.297480704819321,,,,,,14.154331,14.154331,14.154331,14.154331,14.154331,,,,,,,,TRUE,,3,5,TRUE,,FALSE -275,BOSS,,,,,,277.9467468261719,-39.49164581,0.12923425,-3.3333886,,0.16742904,,,,,,,,,,14.430116,,,,TRUE,,3,5,TRUE,,FALSE -276,BOSS,,,,,,120.57569885253906,-44.7967186,-3.833829,5.500197,,0.74139214,,,,,,,,,,15.915638,,,,TRUE,,3,5,TRUE,,FALSE -277,APOGEE,,,,,,304.8626533388269,-41.90018818,,,,,,,,,,,,,,15.144285,,,,TRUE,,3,5,TRUE,,FALSE -278,BOSS,63050396027610459,,5823212493545253760,,,231.50494384765625,-68.65945435,-12.6663065,-4.3131213,,0.60134935,,,,,,,,14.816352,14.112899,14.571983,,,,TRUE,,3,5,TRUE,,FALSE -279,APOGEE,,,,,,90.27867146393328,22.794226001129104,,,,,,18.705862,18.705862,18.705862,18.705862,18.705862,,,,,,,,TRUE,,3,5,TRUE,,FALSE -280,BOSS,,,5386574264107635456,,,166.27969360351562,-46.18291855,-3.431316,-1.6262811,,0.36407766,,,,,,,,15.702174,14.866103,15.369634,,,,TRUE,,3,5,TRUE,,FALSE -281,APOGEE,,,,,,61.12736450284257,16.759570603115137,,,,,,12.857866,12.857866,12.857866,12.857866,12.857866,,,,,,,,TRUE,,3,5,TRUE,,FALSE -282,APOGEE,63050396557766242,115485326,161118516924130304,,,71.87994384765625,32.33192443847656,3.562251,-6.4233055,,0.75918716,,,,,,,,13.540638,11.615866,12.584587,,,,TRUE,,3,5,TRUE,,FALSE -283,APOGEE,,,,,,113.55242156982422,-30.17360878,-0.8978819,2.403713,,0.1563706,,,,,,,,,,15.34702,,,,TRUE,,3,5,TRUE,,FALSE -284,BOSS,,,,,,199.89642507710212,-6.480972486,,,,,,15.024271,15.024271,15.024271,15.024271,15.024271,,,,,,,,TRUE,,3,5,TRUE,,FALSE -285,BOSS,,,,,,22.326122657046138,-62.46450829,,,,,,14.021726,14.021726,14.021726,14.021726,14.021726,,,,,,,,TRUE,,3,5,TRUE,,FALSE -286,APOGEE,,,3382706522822637824,,,98.29799652,23.931608200073242,0.31670055,-3.0029032,,0.2424566,,,,,,,,14.381247,13.11786,13.825673,,,,TRUE,,3,5,TRUE,,FALSE -287,APOGEE,,,,,,249.25001525878906,-8.738912582,,,,,,23.859966,24.619247,23.825565,22.858402,21.004652,,,,,,,,TRUE,,3,5,TRUE,,FALSE -288,APOGEE,,,4074564280338103040,,,285.2690734863281,-24.1451664,-1.1830951,-2.0888999,,0.2850656,,,,,,,,14.804027,13.3257675,14.122156,,,,TRUE,,3,5,TRUE,,FALSE -289,BOSS,,,,,,316.58685568350063,11.665228818436546,,,,,,15.73669,15.73669,15.73669,15.73669,15.73669,,,,,,,,TRUE,,3,5,TRUE,,FALSE -290,APOGEE,,,,,,157.60336303710938,21.31033706665039,,,,,,22.89609,21.903906,21.545723,21.389353,20.904123,,,,,,,,TRUE,,3,5,TRUE,,FALSE -291,BOSS,,,,,,38.057708740234375,55.54185485839844,0.45565102,-0.7535167,,0.2970587,,,,,,,,,,13.239313,,,,TRUE,,3,5,TRUE,,FALSE -292,BOSS,,,,,,135.17893981933594,40.339019775390625,,,,,,25.279095,23.249424,24.734251,24.76783,22.532553,,,,,,,,TRUE,,3,5,TRUE,,FALSE -293,APOGEE,63050396553113421,,66432565569225088,,,57.558013916015625,23.42411994934082,3.793769,-7.1988444,,0.50439936,,,,,,,,15.776256,14.744985,15.347315,,,,TRUE,,3,5,TRUE,,FALSE -294,BOSS,,,5357801625365142144,,,158.6242676,-51.11502075,-14.50671,5.113889,,0.48633903,,,,,,,,16.130934,14.971136,15.630656,,,,TRUE,,3,5,TRUE,,FALSE -295,APOGEE,,,,1007557219,,240.68992614746094,-49.09884644,,,,,,,,,,,,,,,15.071,,,TRUE,,3,5,TRUE,,FALSE -296,APOGEE,63050396577881663,,267419374115099008,,,78.80326080322266,54.58869171142578,-1.7796593,-0.3553971,,0.5525906,,,,,,,,16.44462,15.047129,15.821611,,,,TRUE,,3,5,TRUE,,FALSE -297,APOGEE,,,,,,272.85418701171875,-25.25635147,-0.6261248,-8.990599,,0.32644805,,,,,,,,,,15.679528,,,,TRUE,,3,5,TRUE,,FALSE -298,APOGEE,,,,,,213.80850026124952,8.292458664944874,,,,,,,,,,,,,,14.8571615,,,,TRUE,,3,5,TRUE,,FALSE -299,BOSS,,,,,,339.4684143066406,8.354248047,,,,,,26.27487,22.78128,21.248137,20.169998,19.593122,,,,,,,,TRUE,,3,5,TRUE,,FALSE -300,APOGEE,,,4139691244569450752,,,257.01605224609375,-14.64428139,-2.85011,-4.782603,,0.44464493,,,,,,,,15.917721,14.162873,15.068505,,,,TRUE,,3,5,TRUE,,FALSE -301,BOSS,,,,,,255.8694729648279,82.20284171966875,,,,,,,,,,,,,,16.654812,,,,TRUE,,3,5,TRUE,,FALSE -302,BOSS,,,,,,196.2475586,-52.01388168,-10.449237,-1.8116314,,0.95379496,,,,,,,,,,10.566422,,,,TRUE,,3,5,TRUE,,FALSE -303,APOGEE,,,,,,3.4762230928518623,-46.21451469,,,,,,,,,,,,,,16.690163,,,,TRUE,,3,5,TRUE,,FALSE -304,BOSS,,,5605875534761190144,,,108.19120025634766,-31.08579445,-6.8084106,14.931234,,0.8932869,,,,,,,,15.754414,14.727019,15.322794,,,,TRUE,,3,5,TRUE,,FALSE -305,BOSS,,,,,,322.52260058377294,-19.05090352,,,,,,18.041834,18.041834,18.041834,18.041834,18.041834,,,,,,,,TRUE,,3,5,TRUE,,FALSE -306,APOGEE,63050394919427711,,1942871238520759936,,,351.13299560546875,49.39647674560547,-4.6026883,-4.6394935,,0.67156786,,,,,,,,14.8507,14.016653,14.521241,,,,TRUE,,3,5,TRUE,,FALSE -307,BOSS,,,,,,183.86997985839844,29.93075180053711,,,,,,24.099918,24.064215,23.398298,22.21522,22.669205,,,,,,,,TRUE,,3,5,TRUE,,FALSE -308,APOGEE,,,,,,19.380457904898982,47.13923132685275,,,,,,,,,,,,,,17.578691,,,,TRUE,,3,5,TRUE,,FALSE -309,BOSS,,,,,,145.62500686207454,11.219255621765711,,,,,,14.065916,14.065916,14.065916,14.065916,14.065916,,,,,,,,TRUE,,3,5,TRUE,,FALSE -310,APOGEE,,,,,,247.46183031610875,1.507463912559814,,,,,,16.759418,16.759418,16.759418,16.759418,16.759418,,,,,,,,TRUE,,3,5,TRUE,,FALSE -311,APOGEE,,,,,,112.68246459960938,14.82758617401123,-1.6418208,-91.23109,,1.545224,,,,,,,,,,15.270176,,,,TRUE,,3,5,TRUE,,FALSE -312,APOGEE,,,,,,285.49566650390625,-0.517584503,1.6087799,3.65031,,3.5654547,,,,,,,,,,14.814065,,,,TRUE,,3,5,TRUE,,FALSE -313,BOSS,,,,,,271.23760986328125,-26.97800446,-0.88377047,-4.5355177,,0.46722072,,,,,,,,,,13.39879,,,,TRUE,,3,5,TRUE,,FALSE -314,APOGEE,,,,,,141.81892228010466,-34.61016139,,,,,,,,,,,,,,14.383531,,,,TRUE,,3,5,TRUE,,FALSE -315,APOGEE,,,5241579947808617344,,,160.64385986328125,-62.70717239,-8.599338,4.63491,,0.26211706,,,,,,,,15.229936,13.450268,14.3621435,,,,TRUE,,3,5,TRUE,,FALSE -316,APOGEE,63050395718892336,,4468248168182707072,,,271.5931091308594,1.9585689306259155,-0.34786654,-2.877038,,0.71554106,,,,,,,,15.290248,14.227938,14.845512,,,,TRUE,,3,5,TRUE,,FALSE -317,APOGEE,,,,,,47.48423385620117,6.409243583679199,,,,,,23.183796,22.001513,20.553835,19.506739,18.94921,,,,,,,,TRUE,,3,5,TRUE,,FALSE -318,APOGEE,63050396081318453,,5854687972384947456,,,180.82119750976562,-72.0651474,-5.639454,0.9690935,,0.19212803,,,,,,,,15.933684,14.309703,15.168872,,,,TRUE,,3,5,TRUE,,FALSE -319,BOSS,,,,,,74.95577054,17.256115551410943,,,,,,,,,,,,,,10.958212,,,,TRUE,,3,5,TRUE,,FALSE -320,APOGEE,63050395989740420,,5655001714283749632,,,137.19056701660156,-22.23643494,-14.377401,-4.266612,,0.572578,,,,,,,,16.027575,15.160055,15.681556,,,,TRUE,,3,5,TRUE,,FALSE -321,BOSS,,,1239205924410302080,,,218.91331481933594,19.159832000732422,-2.6336377,3.7526374,,1.3347762,,,,,,,,12.492836,11.419887,12.039087,,,,TRUE,,3,5,TRUE,,FALSE -322,APOGEE,,,,,,274.3512862810719,-56.3217297,,,,,,,,,,,,,,13.862485,,,,TRUE,,3,5,TRUE,,FALSE -323,BOSS,,,,,,90.62757873535156,62.50789260864258,1.4373567,-1.1645263,,0.3864974,,,,,,,,,,15.013068,,,,TRUE,,3,5,TRUE,,FALSE -324,APOGEE,,,,,,73.38604045221513,-30.93134116,,,,,,,,,,,,,,12.39384,,,,TRUE,,3,5,TRUE,,FALSE -325,APOGEE,,,,,,355.7539752511332,-21.33350391,,,,,,,,,,,,,,13.481429,,,,TRUE,,3,5,TRUE,,FALSE -326,APOGEE,,,6033102666231541504,,,253.2592010498047,-27.76338959,0.56902146,-4.588193,,0.60549676,,,,,,,,16.210457,15.170535,15.795382,,,,TRUE,,3,5,TRUE,,FALSE -327,BOSS,,,,,,276.81802926511074,69.80295364975748,,,,,,,,,,,,,,16.821177,,,,TRUE,,3,5,TRUE,,FALSE -328,APOGEE,,,,,,248.33183633819283,8.383162110762996,,,,,,12.19843,12.19843,12.19843,12.19843,12.19843,,,,,,,,TRUE,,3,5,TRUE,,FALSE -329,APOGEE,,,4154275952778659328,,,276.244873,-10.43354034,2.2091186,0.10405406,,0.47819528,,,,,,,,16.592756,14.540666,15.554633,,,,TRUE,,3,5,TRUE,,FALSE -330,BOSS,63050396461987817,109326758,6282446580248808320,,,222.6241912841797,-17.37419891,-4.3076997,-8.831916,,0.2692711,,,,,,,,15.690981,15.18588,15.50574,,,,TRUE,,3,5,TRUE,,FALSE -331,APOGEE,,,,,,238.09207153320312,51.558677673339844,,,,,,22.909134,23.483892,22.305105,21.769423,21.167656,,,,,,,,TRUE,,3,5,TRUE,,FALSE -332,APOGEE,,,3111886088663907968,,,110.14352416992188,1.6963738203048706,-2.5187104,-0.65135366,,0.42197448,,,,,,,,15.747803,14.896778,15.411277,,,,TRUE,,3,5,TRUE,,FALSE -333,BOSS,,,,,,256.8235986361501,-5.898099881,,,,,,19.721457,19.721457,19.721457,19.721457,19.721457,,,,,,,,TRUE,,3,5,TRUE,,FALSE -334,BOSS,,,,,,213.62586922970323,-7.700841416,,,,,,,,,,,,,,19.177898,,,,TRUE,,3,5,TRUE,,FALSE -335,BOSS,,,,,,326.4298070617809,19.41967727692564,,,,,,,,,,,,,,11.758517,,,,TRUE,,3,5,TRUE,,FALSE -336,BOSS,,,,,,345.6827392578125,-3.590945005,,,,,,23.93318,22.734827,22.170446,21.90203,22.647518,,,,,,,,TRUE,,3,5,TRUE,,FALSE -337,APOGEE,,,,,,302.76239013671875,30.619321823120117,,,,,,24.858387,22.670965,20.588276,19.41119,18.581202,,,,,,,,TRUE,,3,5,TRUE,,FALSE -338,APOGEE,,,,,,146.46792602539062,-62.81245041,-3.5063326,3.3436139,,0.51065737,,,,,,,,,,15.092734,,,,TRUE,,3,5,TRUE,,FALSE -339,APOGEE,,,4750259156799646720,,,46.44874572753906,-48.80378342,8.085212,-0.61807835,,0.30553108,,,,,,,,15.833857,14.759364,15.37914,,,,TRUE,,3,5,TRUE,,FALSE -340,APOGEE,,,,,,102.01593780517578,27.853824615478516,-0.5623944,-6.4581013,,0.7809886,,,,,,,,,,14.114419,,,,TRUE,,3,5,TRUE,,FALSE -341,APOGEE,,,3434065398149961344,,,98.07112884521484,27.65948486328125,-1.071301,-18.329903,,1.9256781,,,,,,,,16.597858,15.062904,15.881707,,,,TRUE,,3,5,TRUE,,FALSE -342,BOSS,,,87920974142002560,,,39.14982604980469,20.30297852,10.929401,-8.358176,,0.40420455,,,,,,,,15.646815,14.491757,15.156663,,,,TRUE,,3,5,TRUE,,FALSE -343,APOGEE,,,,,,323.35308837890625,-16.61554337,12.100038,-16.353989,,4.095662,,,,,,,,,,11.628042,,,,TRUE,,3,5,TRUE,,FALSE -344,APOGEE,,,,,,9.392899387534705,-36.27319274,,,,,,,,,,,,,,19.840899,,,,TRUE,,3,5,TRUE,,FALSE -345,APOGEE,,,,,,50.76715971859668,47.46348609071529,,,,,,,,,,,,,,18.508158,,,,TRUE,,3,5,TRUE,,FALSE -346,APOGEE,,,,,,190.7328338623047,-0.670413971,,,,,,22.999598,22.885208,22.001408,21.61313,21.216791,,,,,,,,TRUE,,3,5,TRUE,,FALSE -347,BOSS,,,5588349731732350464,,,113.72810363769531,-34.87350464,-1.5261728,7.6164412,,0.54156244,,,,,,,,15.914534,14.893491,15.4905205,,,,TRUE,,3,5,TRUE,,FALSE -348,APOGEE,,,,,,121.5251235961914,-30.15754509,-2.1666052,2.1710746,,0.030252786,,,,,,,,,,14.360721,,,,TRUE,,3,5,TRUE,,FALSE -349,BOSS,63050395934466948,,5429960237024983552,,,141.31747436523438,-39.04939651,-4.022697,2.263812,,0.7283598,,,,,,,,15.934863,14.969467,15.539667,,,,TRUE,,3,5,TRUE,,FALSE -350,BOSS,,,,,,171.05276489257812,-11.39757442,,,,,,24.874617,21.794987,20.342665,19.78375,19.4361,,,,,,,,TRUE,,3,5,TRUE,,FALSE -351,BOSS,63050396000673146,,5719382655583805312,,,116.82365417480469,-15.74708843,-4.072693,2.9307632,,0.32057515,,,,,,,,16.029339,15.115657,15.65647,,,,TRUE,,3,5,TRUE,,FALSE -352,BOSS,,,,,,335.0503845214844,13.342512130737305,,,,,,23.537666,24.995821,24.00141,21.61261,22.503119,,,,,,,,TRUE,,3,5,TRUE,,FALSE -353,APOGEE,,,2004898640825905792,,,335.81903076171875,54.349918365478516,-2.6362,-5.107851,,0.3678613,,,,,,,,13.794047,12.36924,13.145841,,,,TRUE,,3,5,TRUE,,FALSE -354,BOSS,,,4504417118605096192,,,283.35894775390625,12.26593017578125,1.811513,-7.4086685,,1.1857543,,,,,,,,16.198013,14.841307,15.585546,,,,TRUE,,3,5,TRUE,,FALSE -355,APOGEE,,,4185047503669742080,,,287.9762268066406,-15.192276,-3.0487027,-4.5651093,,0.20880888,,,,,,,,14.209098,12.7589035,13.547967,,,,TRUE,,3,5,TRUE,,FALSE -356,BOSS,,,,952138551,,197.7841797,-62.75466537,,,,,,,,,,,,,,,12.357,,,TRUE,,3,5,TRUE,,FALSE -357,BOSS,,,,,,121.26750946044922,33.70030212402344,,,,,,23.129293,23.103611,22.281048,21.59885,20.984114,,,,,,,,TRUE,,3,5,TRUE,,FALSE -358,BOSS,,,,,,84.95551960119067,72.80202679,,,,,,11.60984,11.60984,11.60984,11.60984,11.60984,,,,,,,,TRUE,,3,5,TRUE,,FALSE -359,APOGEE,,,,,,153.48228454589844,-61.74525452,-8.206086,2.9888012,,0.8264185,,,,,,,,,,14.561772,,,,TRUE,,3,5,TRUE,,FALSE -360,BOSS,,,,,,260.8817263752377,-21.96616187,,,,,,19.147873,19.147873,19.147873,19.147873,19.147873,,,,,,,,TRUE,,3,5,TRUE,,FALSE -361,APOGEE,,,,1053774256,,283.5673828,25.661691665649414,,,,,,,,,,,,,,,13.813,,,TRUE,,3,5,TRUE,,FALSE -362,BOSS,,,,,,273.0733771786869,72.17176097035221,,,,,,,,,,,,,,11.351375,,,,TRUE,,3,5,TRUE,,FALSE -363,APOGEE,63050396248065399,105192989,5951738286052701440,,,262.5308837890625,-46.59006882,0.97500414,1.7774001,,0.3895575,,,,,,,,14.3129425,12.897282,13.668084,,,,TRUE,,3,5,TRUE,,FALSE -364,BOSS,,,5696424646636987008,,,124.72760009765625,-24.18893242,-4.326405,3.6894386,,0.80112106,,,,,,,,13.59751,12.965911,13.356296,,,,TRUE,,3,5,TRUE,,FALSE -365,APOGEE,,,,,,108.49375915527344,38.515010833740234,,,,,,22.571835,21.996529,21.036383,20.461472,20.165129,,,,,,,,TRUE,,3,5,TRUE,,FALSE -366,BOSS,,,,,,61.77870559692383,-0.922587812,,,,,,25.424257,23.467241,21.770433,20.383831,19.514921,,,,,,,,TRUE,,3,5,TRUE,,FALSE -367,BOSS,63050396131516790,,5877236688205298304,,,220.9179688,-62.85441208,-4.2525477,-2.545133,,0.24593624,,,,,,,,17.398678,14.781101,15.944885,,,,TRUE,,3,5,TRUE,,FALSE -368,APOGEE,,,,,,90.55750274658203,31.995189666748047,,,,,,23.384329,21.148413,19.771376,19.183846,18.811361,,,,,,,,TRUE,,3,5,TRUE,,FALSE -369,APOGEE,63050395063628541,,2368658181524061312,,,5.524478912353516,-15.77119064,10.1245365,-6.5783367,,1.8334643,,,,,,,,16.247599,14.850008,15.612547,,,,TRUE,,3,5,TRUE,,FALSE -370,APOGEE,,,,,,111.5455551147461,44.194374084472656,-0.3043992,-7.6063266,,0.70804614,,,,,,,,,,15.6847925,,,,TRUE,,3,5,TRUE,,FALSE -371,BOSS,,,,,,191.8635292788548,-72.68997322,,,,,,11.783735,11.783735,11.783735,11.783735,11.783735,,,,,,,,TRUE,,3,5,TRUE,,FALSE -372,BOSS,,,,590147288,,241.69764709472656,-43.74672699,,,,,,,,,,,,,,,15.449,,,TRUE,,3,5,TRUE,,FALSE -373,APOGEE,,,,,,23.82105433,58.76926130218331,,,,,,,,,,,,,,19.468203,,,,TRUE,,3,5,TRUE,,FALSE -374,BOSS,,,,,,248.08383178710938,-8.898121834,-1.4435717,0.10919098,,3.3272586,,,,,,,,,,10.979209,,,,TRUE,,3,5,TRUE,,FALSE -375,APOGEE,,,,,,270.3764953613281,-1.618571401,-3.6191587,1.370966,,0.30749905,,,,,,,,,,14.463103,,,,TRUE,,3,5,TRUE,,FALSE -376,APOGEE,,,1963349608231960192,,,333.2350158691406,46.60401153564453,-4.33009,-3.0242238,,0.17279005,,,,,,,,16.562141,15.204494,15.955939,,,,TRUE,,3,5,TRUE,,FALSE -377,BOSS,,,,,,187.30799748986072,-59.38070185,,,,,,,,,,,,,,18.820301,,,,TRUE,,3,5,TRUE,,FALSE -378,APOGEE,,,,,,209.2765350341797,-9.837945938,,,,,,22.015062,22.985518,22.039286,21.592236,20.787157,,,,,,,,TRUE,,3,5,TRUE,,FALSE -379,APOGEE,,,,979186291,,63.508148193359375,64.17413330078125,,,,,,,,,,,,,,,16.351,,,TRUE,,3,5,TRUE,,FALSE -380,APOGEE,,,3317257028026509696,,,91.8503418,3.4736931324005127,0.33583894,0.6456253,,0.41969883,,,,,,,,15.492894,14.216338,14.935561,,,,TRUE,,3,5,TRUE,,FALSE -381,APOGEE,,,,,,245.28451538085938,-50.05701065,2.355074,-4.9659495,,0.52695024,,,,,,,,,,15.894541,,,,TRUE,,3,5,TRUE,,FALSE -382,BOSS,,,,,,289.5540809755508,-80.01018891,,,,,,,,,,,,,,12.655298,,,,TRUE,,3,5,TRUE,,FALSE -383,BOSS,,,,,,133.83770751953125,-49.40533066,-3.7913196,4.2820964,,1.4607426,,,,,,,,,,14.951678,,,,TRUE,,3,5,TRUE,,FALSE -384,BOSS,,,,,,46.480029730051164,58.49371794832203,,,,,,,,,,,,,,16.219131,,,,TRUE,,3,5,TRUE,,FALSE -385,BOSS,,,,,,283.50431268495385,9.737931008,,,,,,,,,,,,,,14.38017,,,,TRUE,,3,5,TRUE,,FALSE -386,BOSS,,,,,,79.75766754,-65.45455933,1.4873829,0.2675279,,-0.057196513,,,,,,,,,,15.990143,,,,TRUE,,3,5,TRUE,,FALSE -387,APOGEE,,,,,,165.5263193829449,-70.38366479,,,,,,10.521661,10.521661,10.521661,10.521661,10.521661,,,,,,,,TRUE,,3,5,TRUE,,FALSE -388,APOGEE,,,4044208864624592384,,,270.317627,-30.36800575,1.7311352,1.8624274,,0.80753875,,,,,,,,14.683975,13.698873,14.290009,,,,TRUE,,3,5,TRUE,,FALSE -389,BOSS,,,,,,263.37799072265625,-32.92294312,-0.17990057,-2.0229042,,0.29229972,,,,,,,,,,15.897639,,,,TRUE,,3,5,TRUE,,FALSE -390,APOGEE,,,,,,280.35158560734106,-33.54919031,,,,,,,,,,,,,,14.901437,,,,TRUE,,3,5,TRUE,,FALSE -391,APOGEE,,,,,,102.32522205599136,46.655322901522396,,,,,,10.366301,10.366301,10.366301,10.366301,10.366301,,,,,,,,TRUE,,3,5,TRUE,,FALSE -392,APOGEE,,,4050114238496889856,,,271.9659118652344,-29.80384064,-1.525468,-6.0036526,,0.04538482,,,,,,,,16.197578,12.906226,14.241316,,,,TRUE,,3,5,TRUE,,FALSE -393,BOSS,,,1809053350497275136,,,304.5271301269531,16.62353516,-5.4788117,-3.6995006,,0.33318242,,,,,,,,12.273199,10.755296,11.567069,,,,TRUE,,3,5,TRUE,,FALSE -394,APOGEE,,,,,,41.114920133861105,-67.37261514,,,,,,11.319076,11.319076,11.319076,11.319076,11.319076,,,,,,,,TRUE,,3,5,TRUE,,FALSE -395,BOSS,,,,,,49.662322717165715,28.042686756034655,,,,,,,,,,,,,,17.074808,,,,TRUE,,3,5,TRUE,,FALSE -396,APOGEE,,,,,,93.63078165858886,-78.66112355,,,,,,,,,,,,,,15.051751,,,,TRUE,,3,5,TRUE,,FALSE -397,BOSS,,,3032874633341177856,,,110.53865051269531,-12.84098911,-0.74049854,-0.52692276,,0.24223706,,,,,,,,15.308669,14.699602,15.081545,,,,TRUE,,3,5,TRUE,,FALSE -398,BOSS,63050395593594802,,4237037468610852608,,,300.2938232421875,0.44119417667388916,-6.2919707,-0.69298756,,0.87065995,,,,,,,,14.954726,13.905159,14.51665,,,,TRUE,,3,5,TRUE,,FALSE -399,BOSS,,,,,,247.80653381347656,14.629353523254395,,,,,,24.920174,23.141794,23.939354,23.853264,23.270372,,,,,,,,TRUE,,3,5,TRUE,,FALSE -400,BOSS,,,6031635780265645312,,,250.08680725097656,-30.00025177,-3.3214576,-1.9272777,,0.12450659,,,,,,,,16.053246,14.49891,15.333137,,,,TRUE,,3,5,TRUE,,FALSE -401,APOGEE,,,5341773906948329472,,,176.66346740722656,-58.17378616,-7.359181,1.3160751,,0.45009926,,,,,,,,13.352261,12.9249525,13.207072,,,,TRUE,,3,5,TRUE,,FALSE -402,BOSS,,,5919154606862669568,,,263.34576416015625,-57.64451599,1.8092415,3.6454601,,0.87961286,,,,,,,,13.992725,13.151111,13.656467,,,,TRUE,,3,5,TRUE,,FALSE -403,APOGEE,,,1135773422478118272,,,119.33052825927734,75.04370880126953,-11.077475,-8.933944,,1.3462143,,,,,,,,12.1649685,11.068497,11.69883,,,,TRUE,,3,5,TRUE,,FALSE -404,BOSS,,,,,,280.6139325018585,31.106128434122198,,,,,,17.224066,17.224066,17.224066,17.224066,17.224066,,,,,,,,TRUE,,3,5,TRUE,,FALSE -405,BOSS,,,,,,318.01631950431766,-44.41174609,,,,,,14.057388,14.057388,14.057388,14.057388,14.057388,,,,,,,,TRUE,,3,5,TRUE,,FALSE -406,APOGEE,,,,,,334.1224771849238,-86.78006322,,,,,,,,,,,,,,19.66509,,,,TRUE,,3,5,TRUE,,FALSE -407,APOGEE,63050394857474244,,1748239980839482368,,,311.4403991699219,7.676003456115723,-0.4342905,-3.5963159,,0.30318138,,,,,,,,14.757024,13.442669,14.169228,,,,TRUE,,3,5,TRUE,,FALSE -408,BOSS,,,,,,328.01648077080637,-38.17142952,,,,,,10.654339,10.654339,10.654339,10.654339,10.654339,,,,,,,,TRUE,,3,5,TRUE,,FALSE -409,BOSS,,,5952530041868174208,,,262.58013916015625,-44.4292717,-0.4406635,0.26955724,,0.44494462,,,,,,,,15.605582,14.650015,15.21535,,,,TRUE,,3,5,TRUE,,FALSE -410,APOGEE,63050395814002142,,5196699532383501568,,,135.7180176,-80.30479431,-6.703588,5.624849,,0.5352583,,,,,,,,16.41963,15.329366,15.956409,,,,TRUE,,3,5,TRUE,,FALSE -411,BOSS,,,,,,5.161852605344204,89.7474087,,,,,,,,,,,,,,16.24896,,,,TRUE,,3,5,TRUE,,FALSE -412,APOGEE,,,,,,22.670887726346265,-71.37607109,,,,,,17.439081,17.439081,17.439081,17.439081,17.439081,,,,,,,,TRUE,,3,5,TRUE,,FALSE -413,BOSS,,,,,,112.32024383544922,23.338708877563477,,,,,,22.908152,21.232225,20.762075,20.587696,20.449867,,,,,,,,TRUE,,3,5,TRUE,,FALSE -414,BOSS,,,,,,126.7456419362615,-74.30921787,,,,,,,,,,,,,,15.827661,,,,TRUE,,3,5,TRUE,,FALSE -415,BOSS,,,,,,243.72622377971794,85.18336367416228,,,,,,,,,,,,,,19.322287,,,,TRUE,,3,5,TRUE,,FALSE -416,APOGEE,,,,,,130.1280975341797,-47.62461853,-3.6169267,3.7727883,,0.10810649,,,,,,,,,,15.474914,,,,TRUE,,3,5,TRUE,,FALSE -417,APOGEE,,,,,,82.90458679199219,-8.463197708,0.25507995,-3.3431995,,0.6063415,,,,,,,,,,15.670346,,,,TRUE,,3,5,TRUE,,FALSE -418,APOGEE,,,,,,349.64537819276956,-53.29420002,,,,,,10.789656,10.789656,10.789656,10.789656,10.789656,,,,,,,,TRUE,,3,5,TRUE,,FALSE -419,APOGEE,,,5337425269747357184,,,169.02552795410156,-61.17183304,-5.1563363,1.9308856,,0.08651072,,,,,,,,18.50918,12.54399,14.148178,,,,TRUE,,3,5,TRUE,,FALSE -420,BOSS,,,,,,101.31139609582473,41.37964235414148,,,,,,,,,,,,,,12.144341,,,,TRUE,,3,5,TRUE,,FALSE -421,APOGEE,63050394807636064,,518059303144735616,,,30.631330490112305,64.33978271484375,-0.67285967,-0.108683795,,0.20724578,,,,,,,,16.389925,14.292176,15.315882,,,,TRUE,,3,5,TRUE,,FALSE -422,BOSS,,,,,,146.8807729847386,33.72318948801188,,,,,,,,,,,,,,14.013764,,,,TRUE,,3,5,TRUE,,FALSE -423,BOSS,,,,,,47.25010169901816,54.94170596770289,,,,,,15.370076,15.370076,15.370076,15.370076,15.370076,,,,,,,,TRUE,,3,5,TRUE,,FALSE -424,BOSS,,,5256590171300645760,,,150.5889129638672,-60.50811768,-3.420351,0.17310613,,0.21370761,,,,,,,,15.034916,13.5649395,14.361195,,,,TRUE,,3,5,TRUE,,FALSE -425,APOGEE,,,,,,242.9103822496102,-33.30078308,,,,,,,,,,,,,,17.498768,,,,TRUE,,3,5,TRUE,,FALSE -426,APOGEE,,,,,,342.2573547363281,64.55258178710938,,,,,,23.562025,24.600319,23.126251,20.955397,19.71036,,,,,,,,TRUE,,3,5,TRUE,,FALSE -427,BOSS,,,,,,203.51564025878906,-55.33155441,-22.983206,3.4202046,,1.0892464,,,,,,,,,,15.545646,,,,TRUE,,3,5,TRUE,,FALSE -428,BOSS,,,,,,115.77200317382812,20.621469497680664,,,,,,23.542658,25.793892,24.333727,22.292213,20.41367,,,,,,,,TRUE,,3,5,TRUE,,FALSE -429,APOGEE,,,,,,276.9360537933442,-84.6283365,,,,,,,,,,,,,,15.108389,,,,TRUE,,3,5,TRUE,,FALSE -430,APOGEE,,,5608731275693338496,,,104.19329071044922,-29.22268105,-0.1214479,4.6623945,,0.673103,,,,,,,,15.600853,14.822427,15.292921,,,,TRUE,,3,5,TRUE,,FALSE -431,BOSS,,,,,,108.37801361083984,-14.83190727,,,,,,20.998796,19.219343,18.472977,18.11028,17.932262,,,,,,,,TRUE,,3,5,TRUE,,FALSE -432,BOSS,63050395852165967,,5270598258642595840,,,120.9011001586914,-69.05821228,-4.111269,7.313748,,0.6337655,,,,,,,,14.498236,13.797024,14.226707,,,,TRUE,,3,5,TRUE,,FALSE -433,BOSS,,,,,,152.30859465159332,47.63121814216865,,,,,,19.303774,19.303774,19.303774,19.303774,19.303774,,,,,,,,TRUE,,3,5,TRUE,,FALSE -434,BOSS,,,,,,230.21185302734375,52.97753906,,,,,,23.046698,23.68321,22.461466,22.431992,21.790535,,,,,,,,TRUE,,3,5,TRUE,,FALSE -435,APOGEE,,,,,,4.450130957976879,79.64879404627422,,,,,,11.893364,11.893364,11.893364,11.893364,11.893364,,,,,,,,TRUE,,3,5,TRUE,,FALSE -436,APOGEE,,,,,,356.83651722032585,9.778099434474157,,,,,,16.719353,16.719353,16.719353,16.719353,16.719353,,,,,,,,TRUE,,3,5,TRUE,,FALSE -437,APOGEE,,,,,,301.5992126464844,8.575030326843262,-3.6165621,-9.068182,,0.4690419,,,,,,,,,,15.44834,,,,TRUE,,3,5,TRUE,,FALSE -438,APOGEE,,,,633896357,,270.25018310546875,-27.82985687,,,,,,,,,,,,,,,13.059,,,TRUE,,3,5,TRUE,,FALSE -439,APOGEE,,,5528162155991606784,,,126.66361999511719,-38.92765045,-7.7388654,-5.475267,,2.1901166,,,,,,,,15.073684,13.92172,14.576618,,,,TRUE,,3,5,TRUE,,FALSE -440,BOSS,63050395385605993,,4090856671839859584,,,274.4754333496094,-21.55037689,-1.5635316,-4.0271473,,0.2499878,,,,,,,,16.321796,14.212082,15.239828,,,,TRUE,,3,5,TRUE,,FALSE -441,BOSS,,,,,,285.6783142089844,16.013452529907227,-2.26164,-4.3229446,,0.18660606,,,,,,,,,,14.890517,,,,TRUE,,3,5,TRUE,,FALSE -442,APOGEE,,,3808919247410481792,,,164.5400848388672,3.554823398590088,-11.891517,-3.0602934,,0.5013773,,,,,,,,16.306662,15.515771,15.996194,,,,TRUE,,3,5,TRUE,,FALSE -443,APOGEE,63050396156212746,,5891440179379865856,,,219.89207458496094,-57.649086,-0.92216265,-2.228004,,0.4685509,,,,,,,,14.5904045,13.582278,14.17604,,,,TRUE,,3,5,TRUE,,FALSE -444,APOGEE,,,2154545574964355968,,,280.9845275878906,58.782596588134766,-9.221912,2.1159868,,1.9292787,,,,,,,,15.629158,14.380419,15.075761,,,,TRUE,,3,5,TRUE,,FALSE -445,BOSS,,,,,,280.8703918457031,-8.460271835,-0.32922095,-0.43821537,,0.32482007,,,,,,,,,,14.100223,,,,TRUE,,3,5,TRUE,,FALSE -446,APOGEE,,,,,,28.411960312803792,65.91616177407172,,,,,,14.718841,14.718841,14.718841,14.718841,14.718841,,,,,,,,TRUE,,3,5,TRUE,,FALSE -447,APOGEE,63050395077830753,72208102,2887744458586423040,,,87.26921844482422,-35.72962189,1.2497166,1.5040443,,0.11513953,,,,,,,,16.17308,15.030487,15.682566,,,,TRUE,,3,5,TRUE,,FALSE -448,APOGEE,,,1812734760241161600,,,312.6208801269531,17.348440170288086,-4.09583,-5.1857867,,0.67810434,,,,,,,,15.949253,15.083168,15.600728,,,,TRUE,,3,5,TRUE,,FALSE -449,APOGEE,,,4345180175273199232,,,243.08352661132812,-9.550031662,-3.9855082,-0.1442319,,0.24726771,,,,,,,,15.65536,14.219376,15.001842,,,,TRUE,,3,5,TRUE,,FALSE -450,APOGEE,,,4049109280488528000,,,271.6079102,-31.36966705,4.976375,-4.646424,,2.8843672,,,,,,,,12.049998,11.244013,11.729532,,,,TRUE,,3,5,TRUE,,FALSE -451,APOGEE,,,,,,275.7818711576812,40.416418995123564,,,,,,,,,,,,,,14.990516,,,,TRUE,,3,5,TRUE,,FALSE -452,BOSS,,,,,,8.067514419555664,59.453521728515625,-1.2530131,0.09434621,,0.24649014,,,,,,,,,,14.8595,,,,TRUE,,3,5,TRUE,,FALSE -453,BOSS,63050395977971177,,,255312470,,114.31839752197266,-24.27757263,,,,,,,,,,,,,,,14.423,,,TRUE,,3,5,TRUE,,FALSE -454,APOGEE,,,6120877744594519296,,,211.2926025390625,-36.27659225,6.4086876,-8.878188,,1.8799226,,,,,,,,15.432252,14.182332,14.881709,,,,TRUE,,3,5,TRUE,,FALSE -455,BOSS,,,,,,150.4075469970703,-1.654230118,,,,,,24.207088,23.079874,22.287527,22.453857,21.653755,,,,,,,,TRUE,,3,5,TRUE,,FALSE -456,APOGEE,,,,,,82.04621887207031,-6.841846466,-5.8667264,-3.8152413,,2.891221,,,,,,,,,,15.413581,,,,TRUE,,3,5,TRUE,,FALSE -457,BOSS,,,,,,222.02175903320312,-62.10781097,-5.4309077,-2.314992,,0.25169802,,,,,,,,,,14.918212,,,,TRUE,,3,5,TRUE,,FALSE -458,BOSS,,,,,,125.97203063964844,7.541876792907715,3.9331033,-5.804282,,0.70235205,,,,,,,,,,14.818821,,,,TRUE,,3,5,TRUE,,FALSE -459,BOSS,,,,,,32.61758804321289,28.15776824951172,,,,,,23.969034,25.232449,23.13529,21.867043,21.238775,,,,,,,,TRUE,,3,5,TRUE,,FALSE -460,APOGEE,,,,,,105.30199432373047,-17.73529434,,,,,,24.59284,22.841167,21.417097,21.036207,20.517189,,,,,,,,TRUE,,3,5,TRUE,,FALSE -461,APOGEE,,,,,,273.4855957,2.6372904777526855,,,,,,19.726717,17.726105,16.885101,16.487762,16.268087,,,,,,,,TRUE,,3,5,TRUE,,FALSE -462,APOGEE,,,4369167735121779584,,,265.8389587402344,-2.744055271,-4.6846805,-1.6842042,,1.2452623,,,,,,,,15.99917,14.560691,15.363743,,,,TRUE,,3,5,TRUE,,FALSE -463,BOSS,,,5646449644132831744,,,128.32675170898438,-27.93286133,2.7899938,0.7734809,,0.96464086,,,,,,,,16.307806,15.219769,15.844103,,,,TRUE,,3,5,TRUE,,FALSE -464,APOGEE,,,,135745522,,81.26732635498047,27.89073944091797,,,,,,,,,,,,,,,16.907,,,TRUE,,3,5,TRUE,,FALSE -465,BOSS,,,3253310428186591360,,,61.66284942626953,-2.099471092,1.338665,-6.0964465,,1.7611884,,,,,,,,14.496506,13.482664,14.071737,,,,TRUE,,3,5,TRUE,,FALSE -466,APOGEE,,,,,,171.03175354003906,-53.15166855,-9.558513,4.463718,,0.8028863,,,,,,,,,,14.16969,,,,TRUE,,3,5,TRUE,,FALSE -467,BOSS,,,,,,56.09106633373874,9.182482839739095,,,,,,,,,,,,,,11.425054,,,,TRUE,,3,5,TRUE,,FALSE -468,APOGEE,,,,,,130.0986496808401,59.87444782978534,,,,,,12.985482,12.985482,12.985482,12.985482,12.985482,,,,,,,,TRUE,,3,5,TRUE,,FALSE -469,APOGEE,,,,,,331.3029479980469,48.691036224365234,-7.166265,-3.7276094,,1.1966796,,,,,,,,,,14.348793,,,,TRUE,,3,5,TRUE,,FALSE -470,BOSS,,,,,,160.7335205078125,14.717142105102539,,,,,,24.479671,23.95208,22.359156,21.699821,21.041908,,,,,,,,TRUE,,3,5,TRUE,,FALSE -471,BOSS,,,,,,337.6871032714844,46.60219955444336,1.2574878,-0.54577273,,0.97318727,,,,,,,,,,15.459759,,,,TRUE,,3,5,TRUE,,FALSE -472,APOGEE,,,,,,162.74935913085938,-20.38305664,-6.7779098,-7.3813815,,0.80060923,,,,,,,,,,14.772149,,,,TRUE,,3,5,TRUE,,FALSE -473,BOSS,,,,,,273.2932129,14.279129981994629,-2.0851877,-2.8273616,,0.4880365,,,,,,,,,,15.650797,,,,TRUE,,3,5,TRUE,,FALSE -474,BOSS,,,,,,246.59141540527344,-39.72131348,-6.5919886,0.09717616,,0.35207003,,,,,,,,,,14.444545,,,,TRUE,,3,5,TRUE,,FALSE -475,BOSS,,,5625128739280751232,,,132.2197723388672,-37.45576477,-3.1850655,2.47363,,0.20774052,,,,,,,,16.056936,15.213589,15.731041,,,,TRUE,,3,5,TRUE,,FALSE -476,APOGEE,,,5196042677264942464,,,126.61569213867188,-82.31497192,-0.9025651,-8.914667,,1.9092584,,,,,,,,16.187511,14.700386,15.501316,,,,TRUE,,3,5,TRUE,,FALSE -477,BOSS,,,6269205402233818496,,,214.58941650390625,-28.72555923,-13.289969,-5.135757,,0.32337138,,,,,,,,15.774589,14.771223,15.357773,,,,TRUE,,3,5,TRUE,,FALSE -478,APOGEE,,,4095305540738015232,,,270.67266845703125,-19.15880585,-9.672557,16.821596,,4.130032,,,,,,,,15.036289,13.380875,14.253332,,,,TRUE,,3,5,TRUE,,FALSE -479,BOSS,,,3474340165476099968,,,181.4940643310547,-28.56378174,-37.793873,-2.2311952,,5.057372,,,,,,,,11.462166,10.637719,11.132817,,,,TRUE,,3,5,TRUE,,FALSE -480,APOGEE,,,5980812504542141184,,,239.59019470214844,-53.76139832,-3.7573721,-4.999202,,0.34261143,,,,,,,,16.835018,14.954118,15.91313,,,,TRUE,,3,5,TRUE,,FALSE -481,BOSS,,,2137060728746353024,,,296.65374755859375,52.25337219238281,-2.2536843,-5.080354,,0.40150976,,,,,,,,16.081152,15.1121,15.678666,,,,TRUE,,3,5,TRUE,,FALSE -482,APOGEE,,,,,,271.4241638183594,-31.44605064,-2.7251065,-4.5502086,,2.6519842,,,,,,,,,,15.108744,,,,TRUE,,3,5,TRUE,,FALSE -483,BOSS,,,6059684493721359616,,,189.2760772705078,-59.65699768,-4.2305007,-0.017408386,,0.4561232,,,,,,,,16.10303,15.1405115,15.70882,,,,TRUE,,3,5,TRUE,,FALSE -484,APOGEE,,,3255832707861178752,,,64.28480529785156,0.8881714940071106,10.862982,-18.745565,,1.952361,,,,,,,,14.984694,13.8578205,14.50046,,,,TRUE,,3,5,TRUE,,FALSE -485,APOGEE,,,,,,247.8610288,48.864167346575925,,,,,,,,,,,,,,19.718094,,,,TRUE,,3,5,TRUE,,FALSE -486,APOGEE,,,,,,281.61077880859375,-24.47903061,-2.4868326,-7.334808,,0.634817,,,,,,,,,,15.443133,,,,TRUE,,3,5,TRUE,,FALSE -487,APOGEE,,,,,,329.90631103515625,43.24858093261719,,,,,,24.03646,24.721462,23.329077,21.10755,19.95097,,,,,,,,TRUE,,3,5,TRUE,,FALSE -488,BOSS,,,,,,281.07513427734375,-2.932081699,-5.008492,-5.1915402,,2.7878942,,,,,,,,,,15.850998,,,,TRUE,,3,5,TRUE,,FALSE -489,BOSS,,,5355820923901831296,,,155.5844727,-53.58008575,-6.377437,3.7743454,,0.120621696,,,,,,,,16.53025,14.661373,15.6086645,,,,TRUE,,3,5,TRUE,,FALSE -490,APOGEE,63050396493083867,112362753,6697929037721663360,,,301.95281982421875,-34.91501617,-2.563158,-1.9183165,,-0.056342643,,,,,,,,16.423912,14.969755,15.784888,,,,TRUE,,3,5,TRUE,,FALSE -491,APOGEE,,,,,,50.45360800623463,-50.99784875,,,,,,15.082906,15.082906,15.082906,15.082906,15.082906,,,,,,,,TRUE,,3,5,TRUE,,FALSE -492,APOGEE,,,,,,180.03366088867188,14.96243667602539,,,,,,23.931654,21.009706,19.920351,19.461891,19.232035,,,,,,,,TRUE,,3,5,TRUE,,FALSE -493,BOSS,,,,259323453,,135.89649963378906,-23.24621582,,,,,,,,,,,,,,,16.456,,,TRUE,,3,5,TRUE,,FALSE -494,BOSS,,,,,,306.4676513671875,4.220664024353027,-2.9850934,-6.533568,,-0.000821911,,,,,,,,,,15.134507,,,,TRUE,,3,5,TRUE,,FALSE -495,BOSS,,,,,,303.6621279360973,-42.59916291,,,,,,,,,,,,,,15.0562935,,,,TRUE,,3,5,TRUE,,FALSE -496,APOGEE,,,,,,235.26895141601562,25.69287872314453,,,,,,25.651394,23.73533,22.247644,21.042074,20.37564,,,,,,,,TRUE,,3,5,TRUE,,FALSE -497,BOSS,,,5305426938743815680,,,145.4871063232422,-58.97439957,-4.798502,2.9471464,,0.3263461,,,,,,,,14.6178,12.953673,13.825532,,,,TRUE,,3,5,TRUE,,FALSE -498,BOSS,,,,,,235.0601806640625,-55.37739563,-1.9166795,-4.8623257,,0.86623085,,,,,,,,,,14.266909,,,,TRUE,,3,5,TRUE,,FALSE -499,BOSS,,,,,,37.12534713745117,26.966304779052734,,,,,,23.728996,23.577183,22.267443,21.542755,21.414995,,,,,,,,TRUE,,3,5,TRUE,,FALSE -500,APOGEE,,,5875557252897213312,,,232.67327880859375,-61.23598099,-6.7210364,-7.841287,,0.7076458,,,,,,,,16.300095,14.947197,15.697027,,,,TRUE,,3,5,TRUE,,FALSE -501,BOSS,,,,,,24.17914266558879,67.99466481638859,,,,,,10.452161,10.452161,10.452161,10.452161,10.452161,,,,,,,,TRUE,,3,5,TRUE,,FALSE -502,BOSS,63050394963590317,66114451,2024865462780447360,,,292.0614318847656,26.421756744384766,-2.3887353,-4.4299817,,0.18199961,,,,,,,,13.832073,11.703137,12.729208,,,,TRUE,,3,5,TRUE,,FALSE -503,APOGEE,,,,,,76.15621075671531,-0.474730037,,,,,,,,,,,,,,19.988836,,,,TRUE,,3,5,TRUE,,FALSE -504,BOSS,,,,,,291.0588379,-4.82526207,-3.7641177,-7.9671497,,0.83418494,,,,,,,,,,15.456917,,,,TRUE,,3,5,TRUE,,FALSE -505,APOGEE,,,,,,286.97710611738137,-41.10995623,,,,,,,,,,,,,,14.957476,,,,TRUE,,3,5,TRUE,,FALSE -506,APOGEE,,,2174795280628205056,,,326.77569580078125,55.487247467041016,-1.2431009,-4.292938,,1.1545998,,,,,,,,15.659126,14.077881,14.9254465,,,,TRUE,,3,5,TRUE,,FALSE -507,APOGEE,,,,,,200.07322692871094,-77.70184326,-3.062209,-2.9008565,,0.37769482,,,,,,,,,,14.907646,,,,TRUE,,3,5,TRUE,,FALSE -508,BOSS,,,,,,283.8681335449219,-5.272192001,-2.6303709,-6.0103383,,0.14643216,,,,,,,,,,15.875382,,,,TRUE,,3,5,TRUE,,FALSE -509,BOSS,,,5835384838861017984,,,242.05807495117188,-56.98258972,-4.6217175,-3.3055344,,0.36575574,,,,,,,,16.160326,14.267073,15.454029,,,,TRUE,,3,5,TRUE,,FALSE -510,BOSS,63050395590279731,,4221732988304434048,,,301.7219238,-3.696438789,-7.896888,-46.90195,,1.9875027,,,,,,,,14.425155,13.263394,13.925076,,,,TRUE,,3,5,TRUE,,FALSE -511,APOGEE,,,5956993092642113792,,,267.8360595703125,-41.15690994,1.3202887,-7.785451,,0.18020284,,,,,,,,16.671228,15.189217,15.986541,,,,TRUE,,3,5,TRUE,,FALSE -512,APOGEE,,,,,,276.75482177734375,-24.01777267,-7.1308546,-11.13923,,-0.040651146,,,,,,,,,,15.765028,,,,TRUE,,3,5,TRUE,,FALSE -513,BOSS,,,,,,199.07489304209898,-26.45363838,,,,,,11.51871,11.51871,11.51871,11.51871,11.51871,,,,,,,,TRUE,,3,5,TRUE,,FALSE -514,APOGEE,,,,,,288.9649125,-72.17450181,,,,,,,,,,,,,,12.480112,,,,TRUE,,3,5,TRUE,,FALSE -515,APOGEE,,,,,,152.98635864257812,5.360319137573242,,,,,,25.155415,24.589241,22.677738,22.031914,21.347176,,,,,,,,TRUE,,3,5,TRUE,,FALSE -516,BOSS,,,,,,272.7123172408438,8.922306903973308,,,,,,18.609257,18.609257,18.609257,18.609257,18.609257,,,,,,,,TRUE,,3,5,TRUE,,FALSE -517,APOGEE,,,,,,13.387800216674805,33.886024475097656,,,,,,22.697067,22.513002,21.699343,21.90101,21.035086,,,,,,,,TRUE,,3,5,TRUE,,FALSE -518,APOGEE,63050395379142320,83944345,4089688131503378176,,,274.8431701660156,-22.78701973,-4.088193,-4.0948114,,0.99501383,,,,,,,,13.030375,11.725279,12.4483385,,,,TRUE,,3,5,TRUE,,FALSE -519,APOGEE,,,,,,230.93202209472656,22.289823532104492,-8.129888,-10.917553,,0.7477393,,,,,,,,,,15.462765,,,,TRUE,,3,5,TRUE,,FALSE -520,BOSS,,,,,,326.55348731536316,-75.02917569,,,,,,,,,,,,,,18.992537,,,,TRUE,,3,5,TRUE,,FALSE -521,BOSS,,,,,,290.6926574707031,36.802520751953125,,,,,,24.729181,25.24113,24.80252,21.164886,21.453245,,,,,,,,TRUE,,3,5,TRUE,,FALSE -522,BOSS,,,,,,68.80485537759499,89.41294264019348,,,,,,,,,,,,,,15.863707,,,,TRUE,,3,5,TRUE,,FALSE -523,BOSS,,,,,,117.70038604736328,-16.12167358,-4.9214206,0.48959145,,0.87472403,,,,,,,,,,14.399064,,,,TRUE,,3,5,TRUE,,FALSE -524,BOSS,,,1917837626495842048,,,347.3399353027344,38.97124099731445,2.977965,5.791308,,0.93771327,,,,,,,,15.869839,14.81288,15.423519,,,,TRUE,,3,5,TRUE,,FALSE -525,APOGEE,,,,,,241.26425548181237,-87.45372457,,,,,,,,,,,,,,16.213453,,,,TRUE,,3,5,TRUE,,FALSE -526,APOGEE,,,,1186933352,,326.0679626464844,53.33169937133789,,,,,,,,,,,,,,,14.615,,,TRUE,,3,5,TRUE,,FALSE -527,BOSS,,,,,,130.5913901054565,-89.40005641,,,,,,19.043726,19.043726,19.043726,19.043726,19.043726,,,,,,,,TRUE,,3,5,TRUE,,FALSE -528,BOSS,,,,,,78.64933713,-89.24819729,,,,,,19.553968,19.553968,19.553968,19.553968,19.553968,,,,,,,,TRUE,,3,5,TRUE,,FALSE -529,APOGEE,,,,,,19.31688690185547,3.8409690856933594,,,,,,22.167538,22.199493,21.709389,21.205427,20.609585,,,,,,,,TRUE,,3,5,TRUE,,FALSE -530,BOSS,,,,,,233.9136505126953,36.49856948852539,,,,,,24.454786,25.281012,22.717567,22.047422,21.839544,,,,,,,,TRUE,,3,5,TRUE,,FALSE -531,APOGEE,,,,,,152.88081923437773,-16.29570941,,,,,,10.26141,10.26141,10.26141,10.26141,10.26141,,,,,,,,TRUE,,3,5,TRUE,,FALSE -532,BOSS,,,,,,55.34962445088841,25.929375765929933,,,,,,17.767626,17.767626,17.767626,17.767626,17.767626,,,,,,,,TRUE,,3,5,TRUE,,FALSE -533,BOSS,,,3031788625090542848,,,110.31365966796875,-14.74105453,-0.35964996,-0.75572896,,0.8322476,,,,,,,,11.233078,11.137306,11.203665,,,,TRUE,,3,5,TRUE,,FALSE -534,APOGEE,,,,,,198.2512815,-4.182494493,,,,,,15.568952,15.568952,15.568952,15.568952,15.568952,,,,,,,,TRUE,,3,5,TRUE,,FALSE -535,APOGEE,63050395974104158,,5605926936931077632,,,107.95504760742188,-30.93754196,-14.97679,7.9418287,,1.7350882,,,,,,,,13.522416,12.681095,13.184684,,,,TRUE,,3,5,TRUE,,FALSE -536,BOSS,,,,,,315.3011779785156,0.3091956377029419,,,,,,20.833963,19.322245,18.656046,18.407879,18.261242,,,,,,,,TRUE,,3,5,TRUE,,FALSE -537,BOSS,,,6631449231812781696,,,278.64935302734375,-61.29764557,-2.5523403,-15.397907,,0.61966777,,,,,,,,15.344467,14.2870865,14.898588,,,,TRUE,,3,5,TRUE,,FALSE -538,APOGEE,,,5852945487048425600,,,213.89830017089844,-64.08432007,-5.0950212,-2.4251885,,0.3292515,,,,,,,,14.779611,13.683362,14.320599,,,,TRUE,,3,5,TRUE,,FALSE -539,BOSS,,,5863684176542180096,,,197.74075317382812,-60.57977676,-6.8498607,-4.3040404,,0.8435856,,,,,,,,16.728683,14.82622,15.948668,,,,TRUE,,3,5,TRUE,,FALSE -540,APOGEE,,,,,,174.40718012529496,-86.50359566,,,,,,10.426009,10.426009,10.426009,10.426009,10.426009,,,,,,,,TRUE,,3,5,TRUE,,FALSE -541,BOSS,,,,,,4.785295009613037,-13.59751511,,,,,,24.677778,23.401913,22.13766,21.771025,21.51497,,,,,,,,TRUE,,3,5,TRUE,,FALSE -542,BOSS,,,5770235102721962368,,,215.6446533203125,-82.830513,-1.4193362,-1.4139295,,0.80704606,,,,,,,,14.0590515,13.297694,13.761603,,,,TRUE,,3,5,TRUE,,FALSE -543,BOSS,,,,,,269.3148193359375,-17.25314903,-6.220263,-16.147335,,0.6435918,,,,,,,,,,15.706298,,,,TRUE,,3,5,TRUE,,FALSE -544,APOGEE,63050394949732153,65890884,2013218129912627328,,,344.5714111328125,58.358428955078125,-3.974082,-2.868381,,0.21979427,,,,,,,,13.222598,11.732962,12.553071,,,,TRUE,,3,5,TRUE,,FALSE -545,BOSS,,,,,,319.20294189453125,0.63541472,,,,,,23.170242,22.04446,20.68755,19.973001,19.46918,,,,,,,,TRUE,,3,5,TRUE,,FALSE -546,APOGEE,,,,,,267.75921630859375,-8.483067513,7.0046334,-0.5546064,,0.5190887,,,,,,,,,,15.651495,,,,TRUE,,3,5,TRUE,,FALSE -547,APOGEE,,,4302029532226690048,,,296.6654968261719,10.260411262512207,-3.5828784,-6.208854,,0.39463502,,,,,,,,15.263587,13.743317,14.556156,,,,TRUE,,3,5,TRUE,,FALSE -548,BOSS,,,,,,309.4784832,87.62158296567299,,,,,,13.764205,13.764205,13.764205,13.764205,13.764205,,,,,,,,TRUE,,3,5,TRUE,,FALSE -549,APOGEE,,,,,,314.4443359,24.823572158813477,,,,,,22.37607,20.27526,19.38519,19.023441,18.818027,,,,,,,,TRUE,,3,5,TRUE,,FALSE -550,BOSS,,,6029976686029878144,,,256.2670593261719,-28.66666603,-0.8356436,0.5651767,,0.2966127,,,,,,,,15.110459,13.545997,14.386333,,,,TRUE,,3,5,TRUE,,FALSE -551,BOSS,,,,,,233.1489715576172,31.23639678955078,,,,,,25.173529,25.13264,22.18733,24.624088,23.507086,,,,,,,,TRUE,,3,5,TRUE,,FALSE -552,BOSS,,,,,,331.5333846418616,-24.41556241,,,,,,,,,,,,,,19.588415,,,,TRUE,,3,5,TRUE,,FALSE -553,APOGEE,,,,,,121.72666796925276,-27.86532385,,,,,,,,,,,,,,10.290678,,,,TRUE,,3,5,TRUE,,FALSE -554,APOGEE,,,,,,125.25306701660156,-60.53755188,-4.2501116,6.4274645,,0.073270604,,,,,,,,,,15.734622,,,,TRUE,,3,5,TRUE,,FALSE -555,APOGEE,,,5933867653083600384,,,244.86862182617188,-52.80186844,-3.1339045,-4.289576,,0.27909666,,,,,,,,14.035689,12.774894,13.484082,,,,TRUE,,3,5,TRUE,,FALSE -556,APOGEE,,,,,,251.01174324737386,-85.21149374,,,,,,17.286907,17.286907,17.286907,17.286907,17.286907,,,,,,,,TRUE,,3,5,TRUE,,FALSE -557,BOSS,63050394811558558,55493781,530081603797876608,,,8.784536361694336,69.58279418945312,0.8685957,-0.90123606,,0.18967819,,,,,,,,15.108059,12.717012,13.820855,,,,TRUE,,3,5,TRUE,,FALSE -558,BOSS,,,4062970411291967232,,,272.0029297,-27.67734909,-8.12038,-6.0993276,,0.13031842,,,,,,,,16.481976,13.5139675,14.785666,,,,TRUE,,3,5,TRUE,,FALSE -559,APOGEE,,,,770376751,,143.2060547,-57.96246719,,,,,,,,,,,,,,,13.825,,,TRUE,,3,5,TRUE,,FALSE -560,BOSS,,,,,,168.95203917305992,38.43449450849809,,,,,,,,,,,,,,10.911693,,,,TRUE,,3,5,TRUE,,FALSE -561,APOGEE,,,4107057597722760832,,,280.7860412597656,-10.81229305,-3.333848,-7.771619,,0.19315441,,,,,,,,17.139044,14.80908,15.903949,,,,TRUE,,3,5,TRUE,,FALSE -562,BOSS,,,3455520924456866944,,,85.77598571777344,35.48521805,0.85453194,-2.6924748,,0.5877023,,,,,,,,13.328345,12.51157,13.010914,,,,TRUE,,3,5,TRUE,,FALSE -563,BOSS,,,5309794886120370176,,,139.69664001464844,-56.57923889,-12.860635,12.314681,,0.8513798,,,,,,,,12.363344,10.786598,11.623018,,,,TRUE,,3,5,TRUE,,FALSE -564,BOSS,,,,,,103.51087951660156,4.877716064453125,1.3137242,-3.9762192,,0.5659215,,,,,,,,,,15.381278,,,,TRUE,,3,5,TRUE,,FALSE -565,APOGEE,,,,,,227.64533978846762,74.82086658717174,,,,,,,,,,,,,,16.562538,,,,TRUE,,3,5,TRUE,,FALSE -566,APOGEE,,,,,,220.60969320562373,-40.05707241,,,,,,,,,,,,,,15.753344,,,,TRUE,,3,5,TRUE,,FALSE -567,BOSS,63050396571544420,,236599788313754112,,,54.041419982910156,39.77754211425781,8.9519415,0.87800485,,0.662342,,,,,,,,15.848696,14.925826,15.474125,,,,TRUE,,3,5,TRUE,,FALSE -568,APOGEE,,,,,,112.24533081054688,15.194509506225586,,,,,,22.686354,21.004202,19.556688,18.913458,18.494501,,,,,,,,TRUE,,3,5,TRUE,,FALSE -569,BOSS,,,2383257870579385216,,,346.8323059082031,-25.05037498,14.200295,2.310131,,1.0971197,,,,,,,,16.3503,15.196056,15.866995,,,,TRUE,,3,5,TRUE,,FALSE -570,APOGEE,,,,,,247.85317993164062,39.047157287597656,19.758434,-55.5428,,6.6597204,,,,,,,,,,11.842003,,,,TRUE,,3,5,TRUE,,FALSE -571,BOSS,,,2075246253766199680,,,299.8430176,41.54568862915039,2.0759406,-4.51753,,1.4243963,,,,,,,,12.09932,11.361675,11.813303,,,,TRUE,,3,5,TRUE,,FALSE -572,BOSS,,,,,,245.12057495117188,-3.091715813,,,,,,21.497875,19.840092,19.13041,18.803808,18.705406,,,,,,,,TRUE,,3,5,TRUE,,FALSE -573,APOGEE,,,,,,36.93370516368004,-8.253790987,,,,,,,,,,,,,,14.631443,,,,TRUE,,3,5,TRUE,,FALSE -574,APOGEE,,,6215548169650169344,,,220.62399291992188,-34.01202011,-1.1564118,0.4245386,,1.2166282,,,,,,,,15.860356,14.822079,15.42686,,,,TRUE,,3,5,TRUE,,FALSE -575,BOSS,,,,,,33.664634704589844,25.290821075439453,-13.622049,-14.674427,,1.2587081,,,,,,,,,,14.355535,,,,TRUE,,3,5,TRUE,,FALSE -576,BOSS,,,,124420649,,40.56668472290039,-3.540287971,,,,,,,,,,,,,,,15.044,,,TRUE,,3,5,TRUE,,FALSE -577,BOSS,63050395519921871,85336433,4144811562840957696,,,267.3031311035156,-16.99458694,2.2234828,-1.99253,,0.16016898,,,,,,,,15.809598,11.007014,12.51068,,,,TRUE,,3,5,TRUE,,FALSE -578,APOGEE,,,,,,321.22935698974266,83.43601602214935,,,,,,13.373706,13.373706,13.373706,13.373706,13.373706,,,,,,,,TRUE,,3,5,TRUE,,FALSE -579,APOGEE,,,,,,273.5729064941406,-10.87293816,-2.4129505,-10.491037,,0.2066054,,,,,,,,,,14.710543,,,,TRUE,,3,5,TRUE,,FALSE -580,APOGEE,,,,,,164.8592987060547,50.72809982299805,,,,,,24.738962,23.453281,22.202969,21.55306,22.139952,,,,,,,,TRUE,,3,5,TRUE,,FALSE -581,BOSS,,,4036192183521383808,,,270.8544006347656,-38.18399429,-0.3278942,0.9190745,,0.2732692,,,,,,,,13.150856,11.502315,12.366805,,,,TRUE,,3,5,TRUE,,FALSE -582,BOSS,,,,,,234.1052703857422,35.12257766723633,,,,,,24.34594,24.196688,22.7647,22.807348,21.44058,,,,,,,,TRUE,,3,5,TRUE,,FALSE -583,BOSS,,,,,,286.48321533203125,12.61663818359375,-12.691244,14.02439,,1.0253853,,,,,,,,,,15.725237,,,,TRUE,,3,5,TRUE,,FALSE -584,BOSS,,,,,,243.77059936523438,-51.70484161,-3.078706,-4.977445,,1.3642068,,,,,,,,,,12.276511,,,,TRUE,,3,5,TRUE,,FALSE -585,APOGEE,,,,19163831,,255.1195068359375,-34.65916824,,,,,,,,,,,,,,,14.858,,,TRUE,,3,5,TRUE,,FALSE -586,APOGEE,,,4304058539179354752,,,298.6429748535156,11.783635139465332,-8.157393,-11.150521,,0.45382655,,,,,,,,16.396643,15.309932,15.956625,,,,TRUE,,3,5,TRUE,,FALSE -587,BOSS,,,,,,227.0644531,49.10395050048828,,,,,,23.638107,23.931614,23.060629,22.392725,22.023705,,,,,,,,TRUE,,3,5,TRUE,,FALSE -588,BOSS,,,,,,277.0101623535156,15.756054878234863,,,,,,22.579525,20.902927,19.831696,19.278772,19.013058,,,,,,,,TRUE,,3,5,TRUE,,FALSE -589,APOGEE,,,,,,299.2218933105469,9.587837219238281,1.6732532,-4.823099,,1.3187172,,,,,,,,,,14.314518,,,,TRUE,,3,5,TRUE,,FALSE -590,BOSS,,,,,,199.70242309570312,-21.50641251,,,,,,22.470417,23.785404,23.345318,22.064705,22.21405,,,,,,,,TRUE,,3,5,TRUE,,FALSE -591,BOSS,,,,,,106.49585723876953,38.66529465,,,,,,24.655643,25.694834,23.794178,23.430641,21.030912,,,,,,,,TRUE,,3,5,TRUE,,FALSE -592,BOSS,,,,,,191.12155151367188,-58.74043274,-14.054205,-1.8982073,,0.5953409,,,,,,,,,,15.946905,,,,TRUE,,3,5,TRUE,,FALSE -593,BOSS,,,,,,230.97974873799265,81.91890328,,,,,,,,,,,,,,16.022886,,,,TRUE,,3,5,TRUE,,FALSE -594,BOSS,,,,,,333.0979438193703,43.34826432743651,,,,,,16.536528,16.536528,16.536528,16.536528,16.536528,,,,,,,,TRUE,,3,5,TRUE,,FALSE -595,APOGEE,,,,,,36.92597198486328,-9.481547356,,,,,,21.51008,25.525845,24.066328,24.874651,23.628117,,,,,,,,TRUE,,3,5,TRUE,,FALSE -596,APOGEE,,,,,,136.3432159423828,11.85999584197998,-3.3056214,-20.785198,,2.4267426,,,,,,,,,,15.015554,,,,TRUE,,3,5,TRUE,,FALSE -597,APOGEE,,,6072269606866109568,,,180.5696563720703,-57.89603806,-8.258524,-2.108727,,0.6256141,,,,,,,,16.425415,15.313402,15.961051,,,,TRUE,,3,5,TRUE,,FALSE -598,BOSS,,,,,,172.10556796678347,52.213691080823196,,,,,,,,,,,,,,17.292759,,,,TRUE,,3,5,TRUE,,FALSE -599,BOSS,,,,,,308.5118575971303,-88.15452268,,,,,,,,,,,,,,11.506551,,,,TRUE,,3,5,TRUE,,FALSE -600,APOGEE,,,3600777130722863872,,,180.72576904296875,-3.90166378,0.87073725,-6.369217,,0.056507546,,,,,,,,16.155737,15.129116,15.734906,,,,TRUE,,3,5,TRUE,,FALSE -601,BOSS,,,4588828378578064512,,,279.00982666015625,31.381546020507812,-3.7257905,-0.43531606,,0.72062147,,,,,,,,14.855146,13.886403,14.455603,,,,TRUE,,3,5,TRUE,,FALSE -602,APOGEE,,,,,,228.26356506347656,12.836915016174316,,,,,,25.191187,24.143372,23.14978,22.287895,22.215757,,,,,,,,TRUE,,3,5,TRUE,,FALSE -603,BOSS,,,,,,307.9385681152344,40.515167236328125,,,,,,25.457565,24.434338,23.711103,21.556734,20.596796,,,,,,,,TRUE,,3,5,TRUE,,FALSE -604,BOSS,,,1134127006894244864,,,156.71664428710938,81.37867736816406,-22.739155,-15.370893,,1.4457008,,,,,,,,16.510887,14.83679,15.711702,,,,TRUE,,3,5,TRUE,,FALSE -605,APOGEE,,,4051104314375722624,,,275.8066406,-28.99839401,-25.137615,-38.71895,,3.1232026,,,,,,,,15.635555,13.988061,14.903377,,,,TRUE,,3,5,TRUE,,FALSE -606,BOSS,,,6397403922546834560,,,334.4548645019531,-68.83404541,7.30069,-3.5894535,,0.65371484,,,,,,,,15.498588,14.68272,15.171135,,,,TRUE,,3,5,TRUE,,FALSE -607,APOGEE,,,,,,207.62131716682893,83.04333570364008,,,,,,13.409409,13.409409,13.409409,13.409409,13.409409,,,,,,,,TRUE,,3,5,TRUE,,FALSE -608,BOSS,,,,,,217.67165868597732,-4.75792923,,,,,,,,,,,,,,16.463583,,,,TRUE,,3,5,TRUE,,FALSE -609,APOGEE,,,5970284096599739264,,,255.2919158935547,-38.64410019,-4.2219257,-0.86019576,,0.6511395,,,,,,,,14.497218,13.260371,13.964248,,,,TRUE,,3,5,TRUE,,FALSE -610,APOGEE,,,,,,279.1627197265625,8.361335754394531,0.20971021,-0.09347485,,0.28397104,,,,,,,,,,13.373921,,,,TRUE,,3,5,TRUE,,FALSE -611,BOSS,,,,,,277.77508544921875,-39.73245621,1.2394111,-1.7869297,,0.44159433,,,,,,,,,,15.682914,,,,TRUE,,3,5,TRUE,,FALSE -612,APOGEE,,,,,,315.05214221173446,-62.65926236,,,,,,,,,,,,,,15.141437,,,,TRUE,,3,5,TRUE,,FALSE -613,BOSS,,,,,,22.481986231797944,-8.800868508,,,,,,13.176018,13.176018,13.176018,13.176018,13.176018,,,,,,,,TRUE,,3,5,TRUE,,FALSE -614,APOGEE,63050395369812012,,4084132372272683904,,,287.9451599121094,-19.08610725,-1.6798651,-3.0819092,,0.075133964,,,,,,,,16.37009,15.227784,15.883465,,,,TRUE,,3,5,TRUE,,FALSE -615,APOGEE,,,,,,62.54847587,-55.45812368,,,,,,14.650881,14.650881,14.650881,14.650881,14.650881,,,,,,,,TRUE,,3,5,TRUE,,FALSE -616,APOGEE,,,2173631069614006144,,,327.6081237792969,53.543739318847656,5.3605022,1.1588656,,0.30402076,,,,,,,,16.50248,14.142976,15.24269,,,,TRUE,,3,5,TRUE,,FALSE -617,BOSS,,,5992688810695153152,,,246.26866149902344,-42.50436783,-2.7679923,-3.4089236,,0.19945455,,,,,,,,16.90359,14.514334,15.623055,,,,TRUE,,3,5,TRUE,,FALSE -618,BOSS,,,,,,148.62391969873076,-15.24915892,,,,,,,,,,,,,,15.668767,,,,TRUE,,3,5,TRUE,,FALSE -619,APOGEE,,,,,,240.5555228370686,-64.44999483,,,,,,15.338513,15.338513,15.338513,15.338513,15.338513,,,,,,,,TRUE,,3,5,TRUE,,FALSE -620,APOGEE,,,,,,207.4317169189453,-63.18018341,2.5988085,-4.0306993,,0.5574236,,,,,,,,,,15.711347,,,,TRUE,,3,5,TRUE,,FALSE -621,BOSS,,,,,,351.3095397949219,-4.950001717,,,,,,22.788647,21.134224,20.1476,19.721521,19.440414,,,,,,,,TRUE,,3,5,TRUE,,FALSE -622,APOGEE,,,,,,237.81698608398438,-47.19733429,-2.2073853,-3.5437603,,0.17941312,,,,,,,,,,15.982281,,,,TRUE,,3,5,TRUE,,FALSE -623,APOGEE,,,,,,313.03530178726766,-84.54701263,,,,,,16.22595,16.22595,16.22595,16.22595,16.22595,,,,,,,,TRUE,,3,5,TRUE,,FALSE -624,BOSS,,,,,,237.94847106933594,59.448421478271484,,,,,,22.91465,22.957521,22.674917,22.394033,21.743563,,,,,,,,TRUE,,3,5,TRUE,,FALSE -625,APOGEE,,,,,,109.1257985355177,53.63878926585443,,,,,,18.140932,18.140932,18.140932,18.140932,18.140932,,,,,,,,TRUE,,3,5,TRUE,,FALSE -626,APOGEE,,,,,,47.022446822343824,74.93967657730437,,,,,,12.593231,12.593231,12.593231,12.593231,12.593231,,,,,,,,TRUE,,3,5,TRUE,,FALSE -627,BOSS,,,6717068820745728896,,,283.67120361328125,-39.48267365,-11.293724,-15.585056,,0.31332073,,,,,,,,15.808131,14.679681,15.325939,,,,TRUE,,3,5,TRUE,,FALSE -628,APOGEE,,,5239910820428681600,,,160.40521240234375,-63.92519379,-18.086557,10.412901,,0.65690804,,,,,,,,15.47039,14.305795,14.979796,,,,TRUE,,3,5,TRUE,,FALSE -629,BOSS,,,,,,180.7693634033203,1.5889219045639038,,,,,,22.264975,20.518604,19.548244,19.115389,18.742502,,,,,,,,TRUE,,3,5,TRUE,,FALSE -630,BOSS,,,,,,292.8914794921875,-34.98809052,-5.2540927,-6.1297646,,0.30386332,,,,,,,,,,13.269703,,,,TRUE,,3,5,TRUE,,FALSE -631,APOGEE,,,1828067621730994176,,,298.7998352050781,23.10990333557129,-4.361742,-4.4423203,,0.3628621,,,,,,,,15.180392,13.0500555,14.08248,,,,TRUE,,3,5,TRUE,,FALSE -632,BOSS,,,1437513429279909888,,,257.1270751953125,60.06772232055664,-1.443397,-28.834328,,2.7050111,,,,,,,,14.673526,13.450518,14.134826,,,,TRUE,,3,5,TRUE,,FALSE -633,APOGEE,,,1624140581608443136,,,249.01657104492188,59.466522216796875,-3.55073,15.570146,,6.0966334,,,,,,,,14.151682,12.556417,13.398576,,,,TRUE,,3,5,TRUE,,FALSE -634,BOSS,63050396580706445,,280788061119781248,,,76.26654052734375,57.86122131347656,-1.7969649,-5.7395463,,1.4884235,,,,,,,,15.631335,14.377442,15.083575,,,,TRUE,,3,5,TRUE,,FALSE -635,BOSS,,,,,,222.7592773,-59.18612671,-4.2488303,-2.3025928,,0.38976878,,,,,,,,,,12.312154,,,,TRUE,,3,5,TRUE,,FALSE -636,APOGEE,,,,,,322.54848873268315,-57.47709268,,,,,,,,,,,,,,15.082321,,,,TRUE,,3,5,TRUE,,FALSE -637,BOSS,,,,,,271.96917724609375,-33.23094177,0.75122035,-3.8097816,,0.5921568,,,,,,,,,,14.068474,,,,TRUE,,3,5,TRUE,,FALSE -638,APOGEE,,,,,,95.54370880126953,4.876046180725098,-9.378868,-29.56437,,3.2606373,,,,,,,,,,12.708214,,,,TRUE,,3,5,TRUE,,FALSE -639,APOGEE,,,3818265272340159488,,,166.7407684326172,7.130058288574219,-1.3629947,-6.9724464,,0.22826472,,,,,,,,15.51967,14.326375,14.997889,,,,TRUE,,3,5,TRUE,,FALSE -640,BOSS,,,4240706779431051136,,,299.4292297363281,1.317088246,-14.469922,-3.223084,,2.9701314,,,,,,,,16.710316,14.714756,15.709409,,,,TRUE,,3,5,TRUE,,FALSE -641,APOGEE,,,1109255194880907904,,,106.37728881835938,69.67102051,0.51022106,-3.6206582,,0.54947853,,,,,,,,14.378126,13.609616,14.075171,,,,TRUE,,3,5,TRUE,,FALSE -642,BOSS,,,,,,110.0755526273399,44.07568803915038,,,,,,,,,,,,,,12.781383,,,,TRUE,,3,5,TRUE,,FALSE -643,APOGEE,,,,,,246.60586547851562,77.92977905273438,,,,,,21.171444,25.668007,25.896032,25.68073,23.355572,,,,,,,,TRUE,,3,5,TRUE,,FALSE -644,BOSS,,,,,,53.16736448742243,-0.359860154,,,,,,,,,,,,,,13.013135,,,,TRUE,,3,5,TRUE,,FALSE -645,APOGEE,,,,,,196.5104522705078,-54.84932709,-7.368508,-0.9708531,,0.45204172,,,,,,,,,,15.622104,,,,TRUE,,3,5,TRUE,,FALSE -646,APOGEE,63050395395142672,84081936,4093215369178648576,,,278.3622741699219,-19.27349091,-4.96884,-6.458835,,0.10351104,,,,,,,,15.780024,13.405675,14.505188,,,,TRUE,,3,5,TRUE,,FALSE -647,APOGEE,,,4531169542151985920,,,281.2217712402344,21.701467514038086,-1.0566115,-11.775431,,-2.5769944,,,,,,,,15.853795,14.943877,15.9167385,,,,TRUE,,3,5,TRUE,,FALSE -648,BOSS,63050396348720310,,6008871732037501824,,,237.3400421142578,-37.95759964,-4.0620246,-1.6649269,,0.28386253,,,,,,,,15.759646,14.176156,15.023356,,,,TRUE,,3,5,TRUE,,FALSE -649,APOGEE,,,,,,264.8172607421875,-43.66769409,2.2217822,-3.4967396,,0.36767536,,,,,,,,,,12.472592,,,,TRUE,,3,5,TRUE,,FALSE -650,BOSS,,,,,,163.0165557861328,33.80036926269531,,,,,,22.978676,21.43995,20.62619,20.35532,20.020502,,,,,,,,TRUE,,3,5,TRUE,,FALSE -651,BOSS,,,,,,97.71913146972656,-11.46373558,-2.1852167,0.2869014,,0.38194057,,,,,,,,,,14.568674,,,,TRUE,,3,5,TRUE,,FALSE -652,BOSS,63050396311293802,,,186118489,,260.1236572265625,-33.23654175,,,,,,,,,,,,,,,13.381,,,TRUE,,3,5,TRUE,,FALSE -653,APOGEE,,,,1130285009,,269.9403076171875,4.377375126,,,,,,,,,,,,,,,13.256,,,TRUE,,3,5,TRUE,,FALSE -654,APOGEE,,,,,,245.4011688232422,-49.87039948,-1.9234682,-5.8600526,,1.1432875,,,,,,,,,,15.273315,,,,TRUE,,3,5,TRUE,,FALSE -655,APOGEE,,,,,,47.969597179348916,59.55456899311369,,,,,,,,,,,,,,14.545984,,,,TRUE,,3,5,TRUE,,FALSE -656,BOSS,,,,,,153.13397216796875,23.541107177734375,,,,,,24.72344,23.822668,23.088736,22.425251,22.091562,,,,,,,,TRUE,,3,5,TRUE,,FALSE -657,APOGEE,,,4323322502614346240,,,292.5484313964844,18.46716309,1.8744264,-4.1307507,,1.2584507,,,,,,,,15.888413,14.439618,15.231233,,,,TRUE,,3,5,TRUE,,FALSE -658,BOSS,,,,,,288.3132019042969,49.30097198486328,-0.24305704,-4.982285,,0.40894723,,,,,,,,,,15.271489,,,,TRUE,,3,5,TRUE,,FALSE -659,BOSS,,,1929844052953481856,,,346.4954833984375,39.57917404174805,-0.14140293,-3.681939,,0.34070587,,,,,,,,16.119486,15.188096,15.736088,,,,TRUE,,3,5,TRUE,,FALSE -660,APOGEE,,,,,,106.47402954101562,-30.83817101,-1.729902,6.425692,,0.3843502,,,,,,,,,,12.659388,,,,TRUE,,3,5,TRUE,,FALSE -661,BOSS,,,1766165838597968512,,,328.8971252441406,12.091068267822266,-0.65562296,-6.398968,,0.44918057,,,,,,,,15.6873665,14.757081,15.307294,,,,TRUE,,3,5,TRUE,,FALSE -662,APOGEE,,,,,,73.14367958262281,-40.14045529,,,,,,16.987528,16.987528,16.987528,16.987528,16.987528,,,,,,,,TRUE,,3,5,TRUE,,FALSE -663,BOSS,,,,,,84.07003021240234,19.79519271850586,,,,,,21.463827,19.828781,18.931585,18.528864,18.322441,,,,,,,,TRUE,,3,5,TRUE,,FALSE -664,APOGEE,,,,,,50.91654586791992,-6.819466591,,,,,,23.06522,23.622742,22.36015,21.311632,20.6874,,,,,,,,TRUE,,3,5,TRUE,,FALSE -665,APOGEE,,,,,,165.99316070380303,-6.453546362,,,,,,,,,,,,,,12.16694,,,,TRUE,,3,5,TRUE,,FALSE -666,BOSS,,,,,,318.1880187988281,53.715415954589844,,,,,,25.535301,24.789057,22.254484,20.68076,19.682112,,,,,,,,TRUE,,3,5,TRUE,,FALSE -667,APOGEE,,,,,,255.06405639648438,-31.3215847,-0.24710181,-1.2864136,,0.15464613,,,,,,,,,,14.468799,,,,TRUE,,3,5,TRUE,,FALSE -668,APOGEE,,,5882457890962812544,,,236.52565002441406,-57.5420723,-6.6589403,-7.1031914,,0.74118584,,,,,,,,16.555948,15.239271,15.972748,,,,TRUE,,3,5,TRUE,,FALSE -669,BOSS,,,,,,122.61570773706015,-28.94082615,,,,,,,,,,,,,,17.066856,,,,TRUE,,3,5,TRUE,,FALSE -670,BOSS,,,3132997124234483584,,,103.61636352539062,6.994454860687256,-0.059630644,-1.2991401,,0.345966,,,,,,,,15.865173,15.143417,15.593595,,,,TRUE,,3,5,TRUE,,FALSE -671,BOSS,,,,,,126.40337938693514,-72.38305319,,,,,,,,,,,,,,16.297142,,,,TRUE,,3,5,TRUE,,FALSE -672,BOSS,,,,,,261.15211040498104,-60.27667738,,,,,,11.887927,11.887927,11.887927,11.887927,11.887927,,,,,,,,TRUE,,3,5,TRUE,,FALSE -673,BOSS,63050394814635134,55602755,545050904852218752,,,38.80365753173828,70.46918487548828,-1.1128917,0.74980956,,0.6162754,,,,,,,,13.592728,11.697813,12.6525755,,,,TRUE,,3,5,TRUE,,FALSE -674,APOGEE,,,5249032059625742080,,,145.55194091796875,-65.58695984,-1.0743951,4.856339,,0.27172175,,,,,,,,14.70392,13.293571,14.116903,,,,TRUE,,3,5,TRUE,,FALSE -675,APOGEE,,,,,,275.9591064453125,49.99051284790039,-3.2505305,8.570398,,1.2883335,,,,,,,,,,12.525419,,,,TRUE,,3,5,TRUE,,FALSE -676,BOSS,,,,,,226.7289581298828,-71.52174377,-5.265412,-4.791294,,0.02509018,,,,,,,,,,15.974443,,,,TRUE,,3,5,TRUE,,FALSE -677,APOGEE,,,,,,11.762564659118652,34.70375442504883,,,,,,22.03019,21.416128,20.94479,20.539503,20.456787,,,,,,,,TRUE,,3,5,TRUE,,FALSE -678,APOGEE,,,,,,240.90713899274846,-56.66832304,,,,,,16.380571,16.380571,16.380571,16.380571,16.380571,,,,,,,,TRUE,,3,5,TRUE,,FALSE -679,APOGEE,,,,,,288.5784714648988,-78.72000494,,,,,,16.639513,16.639513,16.639513,16.639513,16.639513,,,,,,,,TRUE,,3,5,TRUE,,FALSE -680,BOSS,63050396284544512,105570651,5964965105999673984,,,253.16136169433594,-42.75876236,-0.72600865,-2.210445,,0.55161256,,,,,,,,16.241434,14.476761,15.389992,,,,TRUE,,3,5,TRUE,,FALSE -681,BOSS,,,1830889346490600960,,,307.6405944824219,23.03294563293457,-4.6288095,-6.200954,,0.36149803,,,,,,,,15.521128,14.753385,15.218862,,,,TRUE,,3,5,TRUE,,FALSE -682,APOGEE,,,,,,268.88909912109375,38.70267868041992,-0.090308264,-2.4719143,,0.092193425,,,,,,,,,,14.748493,,,,TRUE,,3,5,TRUE,,FALSE -683,APOGEE,,,,,,281.0074462890625,36.27869415283203,-3.0290263,-3.2106783,,0.15975347,,,,,,,,,,15.70615,,,,TRUE,,3,5,TRUE,,FALSE -684,BOSS,,,,,,143.25886563099223,23.64804358821003,,,,,,18.342402,18.342402,18.342402,18.342402,18.342402,,,,,,,,TRUE,,3,5,TRUE,,FALSE -685,BOSS,,,,,,126.0080566,56.96689987182617,,,,,,23.543585,23.344305,21.947147,21.15077,20.555872,,,,,,,,TRUE,,3,5,TRUE,,FALSE -686,APOGEE,,,5373515982979209344,,,172.9967803955078,-48.67851257,-4.2144256,3.8864522,,0.5731298,,,,,,,,15.40565,14.378716,14.978219,,,,TRUE,,3,5,TRUE,,FALSE -687,APOGEE,,,6716103174659184512,,,282.1134338378906,-42.4707756,7.0793095,-6.7159753,,0.7386296,,,,,,,,11.950217,10.31549,11.172389,,,,TRUE,,3,5,TRUE,,FALSE -688,BOSS,63050395947352095,,,336987893,,122.17324829101562,-44.22309494,,,,,,,,,,,,,,,14.591,,,TRUE,,3,5,TRUE,,FALSE -689,BOSS,,,3121901260906583936,,,93.93719482421875,0.072815478,-2.132785,-5.7796674,,0.8108896,,,,,,,,16.400904,15.308849,15.938829,,,,TRUE,,3,5,TRUE,,FALSE -690,APOGEE,,,,,,137.59443235027825,-23.89913837,,,,,,,,,,,,,,18.569742,,,,TRUE,,3,5,TRUE,,FALSE -691,BOSS,,,,,,65.65604456280583,-62.26898483,,,,,,,,,,,,,,10.814568,,,,TRUE,,3,5,TRUE,,FALSE -692,APOGEE,,,,,,179.89828491210938,18.013010025024414,,,,,,22.589579,22.722742,22.34042,23.097742,22.631636,,,,,,,,TRUE,,3,5,TRUE,,FALSE -693,BOSS,63050395172847232,,3931733497937010304,,,188.03741455078125,12.633756637573242,-16.343481,-19.970377,,0.34295577,,,,,,,,15.611786,14.874605,15.328423,,,,TRUE,,3,5,TRUE,,FALSE -694,BOSS,,,,,,167.84895602297226,-15.7388085,,,,,,16.320738,16.320738,16.320738,16.320738,16.320738,,,,,,,,TRUE,,3,5,TRUE,,FALSE -695,APOGEE,,,,,,138.51329040527344,13.971419334411621,,,,,,25.634636,25.051765,25.311922,22.630032,24.02609,,,,,,,,TRUE,,3,5,TRUE,,FALSE -696,BOSS,,,,,,299.9789123535156,-0.046156041,,,,,,20.656265,19.206242,18.452616,18.158573,18.06457,,,,,,,,TRUE,,3,5,TRUE,,FALSE -697,BOSS,,,,,,25.855222702026367,61.590553283691406,1.3871891,0.07404502,,0.34814754,,,,,,,,,,14.339257,,,,TRUE,,3,5,TRUE,,FALSE -698,BOSS,,,,,,168.72567001446882,-0.619465641,,,,,,,,,,,,,,18.394283,,,,TRUE,,3,5,TRUE,,FALSE -699,BOSS,,,,,,268.70269775390625,-30.15050316,-6.437551,-9.275833,,-0.10276061,,,,,,,,,,15.5457735,,,,TRUE,,3,5,TRUE,,FALSE -700,APOGEE,,,,,,34.926255052624015,-36.19858422,,,,,,,,,,,,,,16.466764,,,,TRUE,,3,5,TRUE,,FALSE -701,BOSS,,,,,,25.606897354125977,49.938133239746094,,,,,,23.928705,22.335455,21.270618,20.89132,20.500801,,,,,,,,TRUE,,3,5,TRUE,,FALSE -702,BOSS,63050395066828946,70316989,2539074546729616384,,,16.27984046936035,2.2418770790100098,-1.5687217,-47.84853,,7.1026936,,,,,,,,16.288002,13.908887,15.021954,,,,TRUE,,3,5,TRUE,,FALSE -703,BOSS,,,,,,193.019043,19.056764602661133,,,,,,22.776123,23.021446,22.67031,22.255188,21.997519,,,,,,,,TRUE,,3,5,TRUE,,FALSE -704,BOSS,,,,,,329.76963715425313,40.133929462273755,,,,,,,,,,,,,,13.3590145,,,,TRUE,,3,5,TRUE,,FALSE -705,BOSS,,,,,,306.0335792212571,28.636935964376093,,,,,,11.069528,11.069528,11.069528,11.069528,11.069528,,,,,,,,TRUE,,3,5,TRUE,,FALSE -706,BOSS,,,,,,332.1538296,-44.8502313,,,,,,17.29722,17.29722,17.29722,17.29722,17.29722,,,,,,,,TRUE,,3,5,TRUE,,FALSE -707,APOGEE,,,,,,212.5724078595871,38.80531474751638,,,,,,,,,,,,,,18.252222,,,,TRUE,,3,5,TRUE,,FALSE -708,BOSS,,,,,,254.51085625541538,17.986795420590113,,,,,,11.880822,11.880822,11.880822,11.880822,11.880822,,,,,,,,TRUE,,3,5,TRUE,,FALSE -709,APOGEE,63050396004544868,,5759658586838123904,,,138.12020874023438,-3.854115963,-0.5739141,6.2576075,,1.0293179,,,,,,,,16.40944,15.327415,15.949825,,,,TRUE,,3,5,TRUE,,FALSE -710,BOSS,,,,,,273.72955322265625,13.53879451751709,,,,,,23.495577,24.596123,23.687021,21.852497,20.699657,,,,,,,,TRUE,,3,5,TRUE,,FALSE -711,APOGEE,,,,,,71.64082336425781,25.99337387084961,,,,,,23.749523,23.775595,22.014788,21.51998,20.929379,,,,,,,,TRUE,,3,5,TRUE,,FALSE -712,APOGEE,,,,,,186.08087660510873,-36.6525981,,,,,,16.571892,16.571892,16.571892,16.571892,16.571892,,,,,,,,TRUE,,3,5,TRUE,,FALSE -713,APOGEE,,,6025706320208414464,,,247.59063720703125,-30.79616356,4.3588715,-2.420482,,0.69343734,,,,,,,,15.471722,14.216216,14.925211,,,,TRUE,,3,5,TRUE,,FALSE -714,BOSS,,,3241144430807626624,,,80.60289001464844,7.367914677,-0.8969869,-7.7346926,,1.382505,,,,,,,,16.009401,14.566895,15.355196,,,,TRUE,,3,5,TRUE,,FALSE -715,BOSS,,,,,,271.39300082543144,46.55634094368199,,,,,,,,,,,,,,10.244609,,,,TRUE,,3,5,TRUE,,FALSE -716,BOSS,,,,,,23.66095733642578,15.261680603027344,,,,,,23.644846,22.435852,20.862713,19.294363,18.41552,,,,,,,,TRUE,,3,5,TRUE,,FALSE -717,APOGEE,,,,,,322.2274169921875,-0.590832531,,,,,,23.805775,24.429989,22.949827,21.126722,20.545622,,,,,,,,TRUE,,3,5,TRUE,,FALSE -718,APOGEE,,,,,,304.1852359948902,34.06479406598626,,,,,,13.64525,13.64525,13.64525,13.64525,13.64525,,,,,,,,TRUE,,3,5,TRUE,,FALSE -719,BOSS,,,,,,251.86422729492188,-51.3959465,-5.093829,-8.169218,,0.2131737,,,,,,,,,,15.3645,,,,TRUE,,3,5,TRUE,,FALSE -720,BOSS,,,2835488484847979392,,,343.54437255859375,21.41486167907715,-5.741491,-7.258939,,0.47317186,,,,,,,,16.050394,15.072262,15.64481,,,,TRUE,,3,5,TRUE,,FALSE -721,APOGEE,,,,,,116.81072998046875,11.095338821411133,,,,,,23.387857,21.081778,19.675722,18.33133,17.594755,,,,,,,,TRUE,,3,5,TRUE,,FALSE -722,BOSS,,,,,,246.3214111328125,11.24138069152832,,,,,,23.751179,23.2066,21.43003,20.974337,20.259226,,,,,,,,TRUE,,3,5,TRUE,,FALSE -723,BOSS,,,2010512609746444800,,,349.7590026855469,58.80140305,4.0483913,5.9489098,,1.707869,,,,,,,,13.616804,12.218917,12.989533,,,,TRUE,,3,5,TRUE,,FALSE -724,APOGEE,63050395915842861,,,364298133,,158.62567138671875,-46.50204086,,,,,,,,,,,,,,,13.845,,,TRUE,,3,5,TRUE,,FALSE -725,APOGEE,,,,,,50.450740814208984,-10.05507278,7.3589134,3.1742864,,1.4537246,,,,,,,,,,13.9649515,,,,TRUE,,3,5,TRUE,,FALSE -726,APOGEE,63050396257446878,,,509542949,,265.7121582,-42.94263458,,,,,,,,,,,,,,,15.605,,,TRUE,,3,5,TRUE,,FALSE -727,APOGEE,,,,,,213.36016729262968,66.36469028116284,,,,,,,,,,,,,,13.7149935,,,,TRUE,,3,5,TRUE,,FALSE -728,BOSS,63050395310110525,82846404,4062650251620456320,,,269.51629638671875,-28.18788719,-3.4247487,-3.192317,,0.12746431,,,,,,,,16.594908,13.877666,15.1447935,,,,TRUE,,3,5,TRUE,,FALSE -729,BOSS,,,6850123368518983296,,,301.7012634277344,-26.34278488,-12.844619,-8.975983,,1.8555686,,,,,,,,14.2311325,13.245338,13.821969,,,,TRUE,,3,5,TRUE,,FALSE -730,APOGEE,,,,,,136.85687255859375,-78.54324341,-4.0846767,5.270097,,0.9188102,,,,,,,,,,14.022322,,,,TRUE,,3,5,TRUE,,FALSE -731,APOGEE,,,,,,23.797475795686076,40.64391002155443,,,,,,,,,,,,,,18.911325,,,,TRUE,,3,5,TRUE,,FALSE -732,APOGEE,,,,,,282.5932312011719,-43.28892517,-0.66710424,-4.556592,,0.6196578,,,,,,,,,,15.696882,,,,TRUE,,3,5,TRUE,,FALSE -733,BOSS,,,,,,225.7871993265267,-32.32782521,,,,,,,,,,,,,,17.2334,,,,TRUE,,3,5,TRUE,,FALSE -734,BOSS,,,5353313728148466560,,,163.94558715820312,-54.34112549,-12.664168,3.5706484,,0.90668046,,,,,,,,15.208982,14.314089,14.859728,,,,TRUE,,3,5,TRUE,,FALSE -735,APOGEE,,,3106999103078443392,,,100.87773132324219,-1.859912157,-2.5714169,-4.888764,,0.59306073,,,,,,,,15.75083,14.598829,15.258438,,,,TRUE,,3,5,TRUE,,FALSE -736,BOSS,,,,,,340.4651794433594,7.045726299285889,,,,,,24.19283,24.443758,23.48346,21.964752,20.670155,,,,,,,,TRUE,,3,5,TRUE,,FALSE -737,APOGEE,,,5642574239297432960,,,132.06312561035156,-28.95905495,-5.906987,10.43581,,0.57630783,,,,,,,,15.203885,14.449873,14.916971,,,,TRUE,,3,5,TRUE,,FALSE -738,APOGEE,,,,,,99.78807067871094,6.5213704109191895,-0.74904996,-1.4589043,,0.47667935,,,,,,,,,,15.317928,,,,TRUE,,3,5,TRUE,,FALSE -739,BOSS,,,,,,149.8709716796875,-60.6295166,-6.522493,3.663718,,0.5783178,,,,,,,,,,13.791664,,,,TRUE,,3,5,TRUE,,FALSE -740,APOGEE,,,3329569290516933760,,,90.73058319091797,9.094842910766602,-0.2895797,-0.57927567,,0.25136864,,,,,,,,16.27239,15.3428545,15.898054,,,,TRUE,,3,5,TRUE,,FALSE -741,APOGEE,,,6650671443847691136,,,284.35382080078125,-53.11709213,-1.9808316,-46.54312,,2.1789443,,,,,,,,13.494103,12.559968,13.111522,,,,TRUE,,3,5,TRUE,,FALSE -742,BOSS,,,4050325787194680704,,,271.6543884277344,-29.4303894,-3.6120505,-2.06348,,0.08820779,,,,,,,,16.695887,14.519068,15.693476,,,,TRUE,,3,5,TRUE,,FALSE -743,BOSS,,,,,,268.9346898086833,12.454465266752877,,,,,,17.274124,17.274124,17.274124,17.274124,17.274124,,,,,,,,TRUE,,3,5,TRUE,,FALSE -744,APOGEE,,,,,,55.946238333998224,-41.70299554,,,,,,,,,,,,,,13.916159,,,,TRUE,,3,5,TRUE,,FALSE -745,APOGEE,,,4366621442288269440,,,257.72357177734375,-3.452363014,2.5626132,-5.779537,,0.710851,,,,,,,,16.010384,14.618831,15.388045,,,,TRUE,,3,5,TRUE,,FALSE -746,BOSS,,,,,,8.895346481236501,-78.97528164,,,,,,,,,,,,,,11.143398,,,,TRUE,,3,5,TRUE,,FALSE -747,BOSS,,,6005670538289801728,,,230.7232666015625,-40.60255051,-7.1774054,-3.5817986,,0.24272409,,,,,,,,13.762442,12.181204,13.018794,,,,TRUE,,3,5,TRUE,,FALSE -748,APOGEE,,,,,,193.96628059546197,-35.80317586,,,,,,13.671679,13.671679,13.671679,13.671679,13.671679,,,,,,,,TRUE,,3,5,TRUE,,FALSE -749,APOGEE,,,5800415803577100544,,,223.76812744140625,-67.8188324,-0.9367328,-2.0261197,,0.522676,,,,,,,,16.297068,15.160863,15.819065,,,,TRUE,,3,5,TRUE,,FALSE -750,APOGEE,,,,,,165.55442810058594,4.765070438,,,,,,24.99194,22.64101,22.191637,21.646763,21.101414,,,,,,,,TRUE,,3,5,TRUE,,FALSE -751,APOGEE,,,,,,75.59630352722719,-73.01058809,,,,,,12.21661,12.21661,12.21661,12.21661,12.21661,,,,,,,,TRUE,,3,5,TRUE,,FALSE -752,BOSS,,,,,,304.6621510869511,9.333332280652385,,,,,,13.373174,13.373174,13.373174,13.373174,13.373174,,,,,,,,TRUE,,3,5,TRUE,,FALSE -753,BOSS,,,,,,301.1188659667969,56.62852859,-1.8412336,-4.444554,,0.8093027,,,,,,,,,,15.050184,,,,TRUE,,3,5,TRUE,,FALSE -754,APOGEE,,,4103933477262374144,,,277.0104064941406,-15.29951668,-2.4243894,-0.16768308,,0.5393106,,,,,,,,16.309261,13.985131,15.139687,,,,TRUE,,3,5,TRUE,,FALSE -755,BOSS,,,,,,244.52293395996094,-56.94312286,-1.0634936,-2.0093563,,0.71365845,,,,,,,,,,15.908218,,,,TRUE,,3,5,TRUE,,FALSE -756,BOSS,,,,,,354.3045316,-71.65132399,,,,,,16.974426,16.974426,16.974426,16.974426,16.974426,,,,,,,,TRUE,,3,5,TRUE,,FALSE -757,APOGEE,,,,,,233.6106719970703,-0.575558662,,,,,,24.291021,24.859365,23.096926,21.948692,21.210947,,,,,,,,TRUE,,3,5,TRUE,,FALSE -758,APOGEE,63050395167347742,,3692529314475852800,,,196.85980224609375,3.5517666339874268,-7.696554,-8.360602,,0.5476423,,,,,,,,16.189621,15.3672285,15.860579,,,,TRUE,,3,5,TRUE,,FALSE -759,APOGEE,,,,,,52.352375529282156,-32.16997465,,,,,,,,,,,,,,10.239092,,,,TRUE,,3,5,TRUE,,FALSE -760,APOGEE,,,,,,126.1578140258789,4.685936928,,,,,,21.436756,20.520584,20.100576,19.975004,19.89709,,,,,,,,TRUE,,3,5,TRUE,,FALSE -761,APOGEE,,,,,,258.6173793527478,-26.71359459,,,,,,,,,,,,,,13.605102,,,,TRUE,,3,5,TRUE,,FALSE -762,APOGEE,,,,,,301.83258056640625,-56.92250061,1.4338254,-7.74661,,1.2888033,,,,,,,,,,15.930237,,,,TRUE,,3,5,TRUE,,FALSE -763,APOGEE,,,,256080257,,112.41814422607422,-31.36370468,,,,,,,,,,,,,,,13.681,,,TRUE,,3,5,TRUE,,FALSE -764,BOSS,,,,,,234.03001403808594,-44.81321335,-5.3285155,-8.016707,,0.15444714,,,,,,,,,,15.243349,,,,TRUE,,3,5,TRUE,,FALSE -765,APOGEE,,,,,,246.27325439453125,38.879390716552734,,,,,,21.77627,24.869308,24.273453,23.471102,23.201963,,,,,,,,TRUE,,3,5,TRUE,,FALSE -766,BOSS,63050395298059403,82542340,4059839624986299776,,,260.8334655761719,-28.30197716,-8.155158,-4.8619094,,0.33258292,,,,,,,,17.670832,13.963033,15.50557,,,,TRUE,,3,5,TRUE,,FALSE -767,APOGEE,,,2222177222384352000,,,321.9098205566406,67.72821044921875,-8.73959,-10.185197,,0.73321354,,,,,,,,16.572014,14.993909,15.838233,,,,TRUE,,3,5,TRUE,,FALSE -768,APOGEE,,,,,,100.13993072509766,5.776090145111084,-1.2480513,-0.25820345,,0.3522603,,,,,,,,,,13.700542,,,,TRUE,,3,5,TRUE,,FALSE -769,APOGEE,,,,,,80.89618225,-1.530449465,,,,,,15.530667,15.530667,15.530667,15.530667,15.530667,,,,,,,,TRUE,,3,5,TRUE,,FALSE -770,BOSS,,,5253794491193589632,,,158.1056671142578,-61.82350922,-10.507338,5.430892,,0.32742828,,,,,,,,16.36453,14.898926,15.708527,,,,TRUE,,3,5,TRUE,,FALSE -771,BOSS,63050395108801371,,3089013944703201920,,,118.09583282470703,3.1013076305389404,0.8932194,-4.4493136,,0.41042665,,,,,,,,16.108273,15.160632,15.715683,,,,TRUE,,3,5,TRUE,,FALSE -772,BOSS,63050394836852432,,1106931170899675648,,,95.13321685791016,69.16665649414062,-3.4835591,2.615431,,0.8466822,,,,,,,,13.999116,13.255476,13.708236,,,,TRUE,,3,5,TRUE,,FALSE -773,APOGEE,,,532415420307585408,,,22.01511573791504,69.57236481,-5.973365,0.9934996,,1.8994496,,,,,,,,14.764286,13.474416,14.207004,,,,TRUE,,3,5,TRUE,,FALSE -774,BOSS,,,,,,254.4734569735469,-66.75162717,,,,,,,,,,,,,,16.042562,,,,TRUE,,3,5,TRUE,,FALSE -775,APOGEE,,,5957751175917593984,,,267.6961669921875,-40.93287659,-3.610069,-2.5184033,,0.18943155,,,,,,,,16.68221,15.043168,15.968863,,,,TRUE,,3,5,TRUE,,FALSE -776,BOSS,,,5950577137393019520,,,259.8725280761719,-48.1771431,0.5076111,0.080944814,,1.146699,,,,,,,,16.27199,15.054531,15.740855,,,,TRUE,,3,5,TRUE,,FALSE -777,APOGEE,,,,,,13.569993019104004,44.72898864746094,,,,,,23.05872,20.15581,18.638502,17.778656,17.30898,,,,,,,,TRUE,,3,5,TRUE,,FALSE -778,APOGEE,,,,,,255.78040235274045,-79.52085637,,,,,,,,,,,,,,16.433317,,,,TRUE,,3,5,TRUE,,FALSE -779,BOSS,,,5317412371389704960,,,132.6694336,-54.0884285,-5.328707,6.5619383,,0.4005361,,,,,,,,15.3143,14.568138,15.026148,,,,TRUE,,3,5,TRUE,,FALSE -780,APOGEE,,,,,,205.52264404296875,-56.49792862,-6.700245,-2.529205,,0.3872656,,,,,,,,,,15.862718,,,,TRUE,,3,5,TRUE,,FALSE -781,APOGEE,,,3399759428485256192,,,86.80228424072266,20.352781295776367,3.9532323,-3.7368124,,1.2150983,,,,,,,,15.201894,14.061503,14.766629,,,,TRUE,,3,5,TRUE,,FALSE -782,BOSS,,,,,,24.03541527,-52.91961793,,,,,,,,,,,,,,16.652773,,,,TRUE,,3,5,TRUE,,FALSE -783,BOSS,,,,,,132.52371215820312,15.946521759033203,,,,,,23.84147,24.764883,24.269144,22.293911,22.202833,,,,,,,,TRUE,,3,5,TRUE,,FALSE -784,APOGEE,,,,,,153.7585449,47.547340393066406,,,,,,23.834654,23.156162,22.704203,23.131952,22.117332,,,,,,,,TRUE,,3,5,TRUE,,FALSE -785,APOGEE,,,2024553201487183488,,,293.7408752441406,25.84939956665039,-1.9128126,-5.9064736,,0.21269822,,,,,,,,16.574862,15.043033,15.877583,,,,TRUE,,3,5,TRUE,,FALSE -786,BOSS,,,4533811496793607552,,,284.1548767089844,24.64291763305664,-6.30955,-7.516169,,0.7343395,,,,,,,,16.031225,14.924446,15.559327,,,,TRUE,,3,5,TRUE,,FALSE -787,APOGEE,,,,,,196.10600096823717,30.42774756996988,,,,,,,,,,,,,,12.401994,,,,TRUE,,3,5,TRUE,,FALSE -788,BOSS,,,,,,155.43150329589844,7.982448577880859,,,,,,22.887093,20.663868,18.86156,17.914333,17.460485,,,,,,,,TRUE,,3,5,TRUE,,FALSE -789,APOGEE,,,801525078792717440,,,146.08404541015625,40.71202850341797,1.7396067,-6.3567643,,2.3426385,,,,,,,,16.283178,14.694183,15.534995,,,,TRUE,,3,5,TRUE,,FALSE -790,APOGEE,,,,,,270.8950195,42.47181701660156,,,,,,23.028482,22.906828,22.497776,22.145445,21.882572,,,,,,,,TRUE,,3,5,TRUE,,FALSE -791,BOSS,,,,,,113.57111358642578,52.438392639160156,-10.084149,-13.398781,,1.6448087,,,,,,,,,,11.23024,,,,TRUE,,3,5,TRUE,,FALSE -792,APOGEE,,,,,,48.75842521777839,2.208194653606057,,,,,,,,,,,,,,15.592444,,,,TRUE,,3,5,TRUE,,FALSE -793,BOSS,,,,,,233.41962876296577,-63.85614067,,,,,,,,,,,,,,12.812766,,,,TRUE,,3,5,TRUE,,FALSE -794,BOSS,,,,,,325.08162304432614,-17.66507096,,,,,,,,,,,,,,10.472257,,,,TRUE,,3,5,TRUE,,FALSE -795,APOGEE,,,4309360251111698560,,,288.3396301269531,10.467550277709961,1.2449459,-5.590638,,0.3985687,,,,,,,,15.572867,12.687796,13.911891,,,,TRUE,,3,5,TRUE,,FALSE -796,APOGEE,,,,,,120.92656707763672,40.75513458251953,,,,,,25.000875,22.744751,22.13908,21.245354,20.707298,,,,,,,,TRUE,,3,5,TRUE,,FALSE -797,APOGEE,,,5957069100745047680,,,268.3627624511719,-41.21985245,-3.1028187,-6.8580713,,0.83811677,,,,,,,,16.098347,15.018975,15.646892,,,,TRUE,,3,5,TRUE,,FALSE -798,APOGEE,,,3121894152735989632,,,93.79180145263672,-0.032937858,2.7673404,-11.718679,,1.3626878,,,,,,,,14.6131,13.709219,14.259199,,,,TRUE,,3,5,TRUE,,FALSE -799,APOGEE,,,,,,271.35870361328125,-29.74879646,-0.7567753,-6.453576,,-0.19243439,,,,,,,,,,15.31647,,,,TRUE,,3,5,TRUE,,FALSE -800,BOSS,,,3028374332251762176,,,113.12367248535156,-15.42679214,-1.3960686,1.4897659,,0.11068156,,,,,,,,15.846987,15.064188,15.544374,,,,TRUE,,3,5,TRUE,,FALSE -801,APOGEE,,,,,,239.6676720639459,46.77160738291735,,,,,,17.055542,17.055542,17.055542,17.055542,17.055542,,,,,,,,TRUE,,3,5,TRUE,,FALSE -802,BOSS,,,,,,287.3391522792582,-20.67360385,,,,,,15.956153,15.956153,15.956153,15.956153,15.956153,,,,,,,,TRUE,,3,5,TRUE,,FALSE -803,BOSS,,,,,,130.95111083984375,33.23208999633789,,,,,,22.452312,22.315716,21.21974,20.973742,20.652742,,,,,,,,TRUE,,3,5,TRUE,,FALSE -804,BOSS,,,,,,281.83184814453125,-12.60692883,1.1073191,1.3469371,,0.44919375,,,,,,,,,,15.485104,,,,TRUE,,3,5,TRUE,,FALSE -805,BOSS,,,,,,258.3380432128906,-18.88710403,-3.421522,-13.380658,,1.7412304,,,,,,,,,,13.196708,,,,TRUE,,3,5,TRUE,,FALSE -806,APOGEE,,,,,,192.64864024569766,-9.872282117,,,,,,10.142276,10.142276,10.142276,10.142276,10.142276,,,,,,,,TRUE,,3,5,TRUE,,FALSE -807,APOGEE,,,,,,169.92286682128906,-77.38050079,-7.513756,-0.40849134,,0.84274817,,,,,,,,,,14.766368,,,,TRUE,,3,5,TRUE,,FALSE -808,APOGEE,,,538655320592056192,,,11.629175186157227,74.46846771240234,16.907072,-6.954044,,2.4310358,,,,,,,,14.285413,13.070892,13.752793,,,,TRUE,,3,5,TRUE,,FALSE -809,APOGEE,,,,,,166.42210292975085,11.742627028804222,,,,,,17.542307,17.542307,17.542307,17.542307,17.542307,,,,,,,,TRUE,,3,5,TRUE,,FALSE -810,BOSS,,,4185343551488047488,,,287.1260986328125,-14.4353075,9.3459835,-10.295002,,1.4185852,,,,,,,,14.975418,13.87078,14.504778,,,,TRUE,,3,5,TRUE,,FALSE -811,APOGEE,,,,,,150.14651143170548,-40.06652249,,,,,,,,,,,,,,18.607433,,,,TRUE,,3,5,TRUE,,FALSE -812,BOSS,,,,1090352196,,276.33624267578125,-14.78479767,,,,,,,,,,,,,,,13.966,,,TRUE,,3,5,TRUE,,FALSE -813,APOGEE,,,4479512561747137152,,,279.9573669433594,9.312574387,-1.3640226,-4.6221285,,0.2340585,,,,,,,,15.375045,13.7733755,14.693845,,,,TRUE,,3,5,TRUE,,FALSE -814,BOSS,,,4325998473372822912,,,249.8457489013672,-16.09867477,-2.8365448,-5.4691405,,0.150293,,,,,,,,16.376457,14.950775,15.73552,,,,TRUE,,3,5,TRUE,,FALSE -815,APOGEE,,,,,,292.6046162451381,-20.16451739,,,,,,,,,,,,,,16.693607,,,,TRUE,,3,5,TRUE,,FALSE -816,APOGEE,63050395795501141,91786315,,225025134,,61.384639739990234,-63.11683655,,,,,,,,,,,,,,,12.582,,,TRUE,,3,5,TRUE,,FALSE -817,BOSS,,,1824139891332943104,,,296.2657775878906,18.069467544555664,1.1000558,-3.6570144,,0.20892118,,,,,,,,16.252104,14.1906185,15.209786,,,,TRUE,,3,5,TRUE,,FALSE -818,BOSS,,,5834787877105379072,,,240.25296020507812,-58.92823029,,,,,,,,,,,,15.387312,14.314261,15.477927,,,,TRUE,,3,5,TRUE,,FALSE -819,BOSS,,,,,,331.8670349121094,-3.550149202,,,,,,23.840542,22.81143,21.585352,21.020584,20.408998,,,,,,,,TRUE,,3,5,TRUE,,FALSE -820,BOSS,,,,,,240.17209582878849,-7.077866834,,,,,,14.142173,14.142173,14.142173,14.142173,14.142173,,,,,,,,TRUE,,3,5,TRUE,,FALSE -821,BOSS,,,,,,310.98699951171875,8.595468521118164,,,,,,24.744999,25.306381,24.72135,24.352837,20.84755,,,,,,,,TRUE,,3,5,TRUE,,FALSE -822,APOGEE,,,,,,289.7470019308899,-5.513556584,,,,,,,,,,,,,,16.010817,,,,TRUE,,3,5,TRUE,,FALSE -823,BOSS,,,6631902295027281152,,,279.63006591796875,-62.30256271,-17.26827,6.0385456,,1.8873161,,,,,,,,13.776419,12.713684,13.327854,,,,TRUE,,3,5,TRUE,,FALSE -824,APOGEE,63050396578112355,116412220,269263323833677824,,,84.54377746582031,57.22608947753906,-2.710385,-3.539322,,2.0058625,,,,,,,,11.79949,10.958752,11.463433,,,,TRUE,,3,5,TRUE,,FALSE -825,BOSS,,,,,,242.25550842285156,0.6621702313423157,,,,,,23.165731,22.948185,22.099463,21.607983,21.264668,,,,,,,,TRUE,,3,5,TRUE,,FALSE -826,BOSS,,,5835160164903055488,,,244.90847778320312,-57.50353622,-4.5852513,-4.28177,,1.4302354,,,,,,,,14.76296,13.686371,14.305989,,,,TRUE,,3,5,TRUE,,FALSE -827,BOSS,,,,,,289.2111511230469,12.924077987670898,18.876566,41.345543,,3.1928048,,,,,,,,,,12.914953,,,,TRUE,,3,5,TRUE,,FALSE -828,APOGEE,,,,,,93.91448211669922,5.896914958953857,,,,,,23.884748,24.253302,23.630447,21.100746,20.161945,,,,,,,,TRUE,,3,5,TRUE,,FALSE -829,BOSS,,,,,,241.7146453857422,-44.9950676,-4.076332,-2.5806413,,0.5298474,,,,,,,,,,15.867353,,,,TRUE,,3,5,TRUE,,FALSE -830,APOGEE,,,4090629420896152960,,,274.2969970703125,-21.98418236,-0.1920034,0.4303768,,0.745865,,,,,,,,16.304123,15.048969,15.834902,,,,TRUE,,3,5,TRUE,,FALSE -831,BOSS,,,4038388015698296448,,,273.82037353515625,-35.54051208,-1.0901982,-8.841643,,0.08712596,,,,,,,,16.208761,15.015092,15.693535,,,,TRUE,,3,5,TRUE,,FALSE -832,APOGEE,,,4230703177821347840,,,306.6768798828125,0.9977842569351196,0.67360157,0.8641425,,1.1450562,,,,,,,,14.524802,13.650281,14.171318,,,,TRUE,,3,5,TRUE,,FALSE -833,APOGEE,,,,,,273.24041099700867,48.86412739576511,,,,,,,,,,,,,,16.497862,,,,TRUE,,3,5,TRUE,,FALSE -834,BOSS,,,2127566961236195584,,,291.56817626953125,46.394805908203125,-0.8416701,-6.0715327,,1.105096,,,,,,,,13.416513,12.657302,13.114871,,,,TRUE,,3,5,TRUE,,FALSE -835,APOGEE,,,,,,199.37965393066406,-63.02163696,-6.9534864,-0.09298336,,0.2799558,,,,,,,,,,14.961357,,,,TRUE,,3,5,TRUE,,FALSE -836,APOGEE,,,,,,105.27275990650804,31.473969461005623,,,,,,17.536287,17.536287,17.536287,17.536287,17.536287,,,,,,,,TRUE,,3,5,TRUE,,FALSE -837,APOGEE,,,,,,126.63403320449271,-47.60348862,,,,,,,,,,,,,,11.311796,,,,TRUE,,3,5,TRUE,,FALSE -838,APOGEE,,,,,,267.65069580078125,-35.84619522,0.92872685,-1.7227448,,0.27681127,,,,,,,,,,15.736281,,,,TRUE,,3,5,TRUE,,FALSE -839,BOSS,,,4070623699390394880,,,268.39337158203125,-21.54141617,1.9520178,-2.941673,,0.81353617,,,,,,,,14.806136,13.58757,14.282885,,,,TRUE,,3,5,TRUE,,FALSE -840,BOSS,,,,,,251.5992889404297,-51.33579254,-2.3177342,-3.568394,,0.19257905,,,,,,,,,,15.272731,,,,TRUE,,3,5,TRUE,,FALSE -841,BOSS,,,,,,286.14437903018757,-24.9979844,,,,,,,,,,,,,,11.184234,,,,TRUE,,3,5,TRUE,,FALSE -842,APOGEE,,,858959103757656320,,,179.2848663330078,60.98826981,4.113509,6.264822,,3.4246259,,,,,,,,10.751525,9.914839,10.414737,,,,TRUE,,3,5,TRUE,,FALSE -843,APOGEE,,,,,,232.5943784882169,45.80142967610081,,,,,,,,,,,,,,11.633426,,,,TRUE,,3,5,TRUE,,FALSE -844,BOSS,,,,,,42.76535139,-19.76875498,,,,,,19.864174,19.864174,19.864174,19.864174,19.864174,,,,,,,,TRUE,,3,5,TRUE,,FALSE -845,APOGEE,,,,,,101.7719557075585,41.50031234,,,,,,,,,,,,,,16.182959,,,,TRUE,,3,5,TRUE,,FALSE -846,BOSS,,,,,,206.38156127929688,-58.95700836,-8.336351,-2.372365,,0.3966283,,,,,,,,,,15.693983,,,,TRUE,,3,5,TRUE,,FALSE -847,BOSS,,,,,,216.42003656015012,-67.7686219,,,,,,,,,,,,,,14.6776705,,,,TRUE,,3,5,TRUE,,FALSE -848,BOSS,,,,,,129.3360320065731,-13.7081642,,,,,,17.933521,17.933521,17.933521,17.933521,17.933521,,,,,,,,TRUE,,3,5,TRUE,,FALSE -849,BOSS,,,,,,12.950535774230957,-24.60267258,-2.8400078,1.120561,,1.4010972,,,,,,,,,,15.049036,,,,TRUE,,3,5,TRUE,,FALSE -850,BOSS,,,4112596185734946816,,,258.0343322753906,-24.55488014,-4.4423676,-2.6517355,,0.2631433,,,,,,,,14.720979,12.111779,13.280781,,,,TRUE,,3,5,TRUE,,FALSE -851,BOSS,,,,,,109.89338684082031,-14.16659641,,,,,,24.618567,22.422737,21.86813,21.455025,22.074617,,,,,,,,TRUE,,3,5,TRUE,,FALSE -852,APOGEE,,,,,,257.7170104980469,-59.21847153,1.5426306,-8.476257,,0.8560386,,,,,,,,,,15.4671955,,,,TRUE,,3,5,TRUE,,FALSE -853,BOSS,,,4103857095536393344,,,279.2171325683594,-13.90309525,-4.3481903,-5.739468,,0.120621294,,,,,,,,16.955921,14.338213,15.541387,,,,TRUE,,3,5,TRUE,,FALSE -854,APOGEE,,,,,,178.95907592773438,0.348806232,,,,,,24.287344,23.179579,22.773827,22.78833,21.859497,,,,,,,,TRUE,,3,5,TRUE,,FALSE -855,APOGEE,,,,,,239.3433654636356,-79.85042787,,,,,,,,,,,,,,17.473711,,,,TRUE,,3,5,TRUE,,FALSE -856,APOGEE,,,,1235192115,,283.1319580078125,17.298070907592773,,,,,,,,,,,,,,,15.88,,,TRUE,,3,5,TRUE,,FALSE -857,APOGEE,,,,,,254.16176228921006,50.62956157553981,,,,,,14.421979,14.421979,14.421979,14.421979,14.421979,,,,,,,,TRUE,,3,5,TRUE,,FALSE -858,APOGEE,,,,,,47.66599494912272,-14.09777627,,,,,,,,,,,,,,17.247301,,,,TRUE,,3,5,TRUE,,FALSE -859,BOSS,,,,,,128.84603881835938,4.458049297332764,,,,,,24.01289,22.734953,21.41248,20.979431,20.518864,,,,,,,,TRUE,,3,5,TRUE,,FALSE -860,BOSS,,,,,,235.550148,-7.037564424,,,,,,,,,,,,,,16.876478,,,,TRUE,,3,5,TRUE,,FALSE -861,APOGEE,,,5904922597083990400,,,223.34385681152344,-48.18967438,-3.97462,-1.4591044,,0.07536201,,,,,,,,14.780618,11.396391,12.7208605,,,,TRUE,,3,5,TRUE,,FALSE -862,APOGEE,63050395262517558,,4050953956144255232,,,272.7914123535156,-27.86912727,0.42760798,-6.5873666,,0.1333057,,,,,,,,16.689833,15.001422,15.926193,,,,TRUE,,3,5,TRUE,,FALSE -863,BOSS,,,,,,104.90880075151009,-84.79717805,,,,,,,,,,,,,,10.292146,,,,TRUE,,3,5,TRUE,,FALSE -864,BOSS,,,,,,332.5770568847656,0.3497856855392456,,,,,,22.63277,23.477345,22.441896,22.286156,22.000551,,,,,,,,TRUE,,3,5,TRUE,,FALSE -865,APOGEE,,,170206740741624064,,,61.45916748046875,32.74042510986328,-0.47325984,-1.2710149,,0.45788494,,,,,,,,16.297436,15.199878,15.83653,,,,TRUE,,3,5,TRUE,,FALSE -866,APOGEE,,,,,,357.12236988732064,29.574373893731178,,,,,,,,,,,,,,16.331451,,,,TRUE,,3,5,TRUE,,FALSE -867,BOSS,63050395111395708,,,129375170,,96.77893829345703,-4.479106903,,,,,,,,,,,,,,,13.783,,,TRUE,,3,5,TRUE,,FALSE -868,APOGEE,,,,,,17.61603546142578,6.484511852264404,,,,,,22.928564,23.156717,22.375666,21.779774,21.0714,,,,,,,,TRUE,,3,5,TRUE,,FALSE -869,APOGEE,,,,,,344.9284973144531,35.06570053100586,-9.143999,-24.117666,,4.896954,,,,,,,,,,15.85635,,,,TRUE,,3,5,TRUE,,FALSE -870,APOGEE,,,,,,213.28352343423714,-77.03669432,,,,,,,,,,,,,,16.771076,,,,TRUE,,3,5,TRUE,,FALSE -871,BOSS,,,,,,150.4371337890625,39.67680740356445,,,,,,25.711784,23.43227,22.232285,22.192497,22.805454,,,,,,,,TRUE,,3,5,TRUE,,FALSE -872,APOGEE,,,6760286912002334464,,,282.8978576660156,-31.2216053,-4.813286,-5.5857024,,0.3182749,,,,,,,,16.319586,15.029354,15.745424,,,,TRUE,,3,5,TRUE,,FALSE -873,APOGEE,,,,,,350.0603884490101,30.60254284165589,,,,,,,,,,,,,,13.089112,,,,TRUE,,3,5,TRUE,,FALSE -874,BOSS,,,,,,168.63392639160156,0.28046420216560364,,,,,,24.629711,22.848324,22.557253,21.866255,22.415123,,,,,,,,TRUE,,3,5,TRUE,,FALSE -875,APOGEE,,,,,,341.8027648925781,2.4120230674743652,24.182482,-2.7091172,,1.1305094,,,,,,,,,,15.290855,,,,TRUE,,3,5,TRUE,,FALSE -876,BOSS,,,,,,338.56253429170334,-47.80954417,,,,,,17.804657,17.804657,17.804657,17.804657,17.804657,,,,,,,,TRUE,,3,5,TRUE,,FALSE -877,BOSS,,,,,,266.1629943847656,-70.47168732,-0.3700021,-7.442837,,0.19168074,,,,,,,,,,14.006102,,,,TRUE,,3,5,TRUE,,FALSE -878,APOGEE,,,,,,275.0453186035156,17.53877830505371,-3.109776,-7.403608,,0.7228079,,,,,,,,,,14.434531,,,,TRUE,,3,5,TRUE,,FALSE -879,APOGEE,,,,,,143.20983322689278,5.535992198960386,,,,,,13.134068,13.134068,13.134068,13.134068,13.134068,,,,,,,,TRUE,,3,5,TRUE,,FALSE -880,BOSS,,,5929354913707653632,,,251.09344482421875,-55.86211014,-3.490731,-4.488674,,0.47799397,,,,,,,,15.480678,14.193657,14.918941,,,,TRUE,,3,5,TRUE,,FALSE -881,APOGEE,63050396552585018,,52888265939905024,,,63.19460678100586,22.863086700439453,5.8576875,-4.1161404,,1.1472226,,,,,,,,16.07513,14.632395,15.429842,,,,TRUE,,3,5,TRUE,,FALSE -882,APOGEE,,,,,,185.3742218017578,-61.11683273,-6.962159,0.1386338,,0.20793065,,,,,,,,,,15.527899,,,,TRUE,,3,5,TRUE,,FALSE -883,APOGEE,,,,,,351.6130897658644,68.46384810966384,,,,,,13.850211,13.850211,13.850211,13.850211,13.850211,,,,,,,,TRUE,,3,5,TRUE,,FALSE -884,BOSS,,,2188983653541511424,,,315.0875549316406,55.84925079345703,-3.6966698,-4.25695,,0.25859675,,,,,,,,16.162766,13.89645,14.965179,,,,TRUE,,3,5,TRUE,,FALSE -885,BOSS,,,4112897108318417152,,,257.2795104980469,-23.68830872,-0.71550995,-6.1061873,,0.26978156,,,,,,,,14.960374,13.333724,14.189638,,,,TRUE,,3,5,TRUE,,FALSE -886,APOGEE,,,3061904626528077824,,,112.4217300415039,-2.138832331,18.38133,-25.75958,,2.6865485,,,,,,,,13.15904,12.26785,12.794762,,,,TRUE,,3,5,TRUE,,FALSE -887,BOSS,,,,,,315.0568874357906,88.56266917515495,,,,,,18.00937,18.00937,18.00937,18.00937,18.00937,,,,,,,,TRUE,,3,5,TRUE,,FALSE -888,APOGEE,,,4353773099161717888,,,251.80307006835938,-4.159920692,-11.092981,-2.5124733,,1.3597438,,,,,,,,14.45369,13.247324,13.932805,,,,TRUE,,3,5,TRUE,,FALSE -889,APOGEE,,,,,,297.1035461425781,-47.0927887,-0.3156617,-6.292669,,0.14056955,,,,,,,,,,14.129204,,,,TRUE,,3,5,TRUE,,FALSE -890,BOSS,,,,,,191.39051475831613,-28.89367508,,,,,,,,,,,,,,18.24594,,,,TRUE,,3,5,TRUE,,FALSE -891,APOGEE,,,,,,344.7470703,23.877243041992188,,,,,,23.982058,23.185135,21.935707,20.619392,19.89212,,,,,,,,TRUE,,3,5,TRUE,,FALSE -892,APOGEE,,,3833360158239884800,,,150.57752990722656,-0.007587385,-21.563665,-0.9384771,,1.6161392,,,,,,,,15.633874,14.492047,15.142449,,,,TRUE,,3,5,TRUE,,FALSE -893,APOGEE,,,6038958390254564096,,,245.63526916503906,-28.71643639,-4.1403327,-3.2592616,,0.655538,,,,,,,,16.060799,14.4560995,15.34438,,,,TRUE,,3,5,TRUE,,FALSE -894,BOSS,,,,,,69.04888814270753,-78.700914,,,,,,11.75486,11.75486,11.75486,11.75486,11.75486,,,,,,,,TRUE,,3,5,TRUE,,FALSE -895,APOGEE,,,4256218208469095936,,,277.74908447265625,-5.993944645,-0.37536165,-1.744794,,0.3882203,,,,,,,,17.41702,14.307373,15.571431,,,,TRUE,,3,5,TRUE,,FALSE -896,BOSS,,,5598611469451823488,,,116.4054183959961,-30.8344059,-2.4098809,3.3117878,,0.31596464,,,,,,,,16.097937,15.418643,15.84276,,,,TRUE,,3,5,TRUE,,FALSE -897,APOGEE,63050395194903446,,4039287622406474624,,,273.04193115234375,-34.49690628,-3.9136634,-5.8426304,,0.14426517,,,,,,,,16.210026,14.658854,15.486781,,,,TRUE,,3,5,TRUE,,FALSE -898,APOGEE,,,,,,241.0905114511767,-9.524710887,,,,,,10.078729,10.078729,10.078729,10.078729,10.078729,,,,,,,,TRUE,,3,5,TRUE,,FALSE -899,APOGEE,,,4529701591041885056,,,275.36492919921875,22.216169357299805,2.3423257,-14.382083,,0.69129163,,,,,,,,15.260972,14.278021,14.8558035,,,,TRUE,,3,5,TRUE,,FALSE -900,APOGEE,,,,,,239.46617126464844,11.823068618774414,,,,,,24.363153,23.99309,23.789478,22.47952,21.79503,,,,,,,,TRUE,,3,5,TRUE,,FALSE -901,APOGEE,,,5605213731842192000,,,110.05709838867188,-30.65170479,-1.1348412,6.1828103,,0.6718026,,,,,,,,13.781239,13.280834,13.601935,,,,TRUE,,3,5,TRUE,,FALSE -902,APOGEE,63050394878125098,,,1099136457,,299.4357604980469,19.292179107666016,,,,,,,,,,,,,,,14.85,,,TRUE,,3,5,TRUE,,FALSE -903,APOGEE,,,,,,106.02689361572266,-5.807257652,-2.0236325,0.17150497,,0.35845667,,,,,,,,,,15.9829,,,,TRUE,,3,5,TRUE,,FALSE -904,APOGEE,63050395120062964,75122958,3137179975704781696,,,115.3438491821289,3.639747381210327,-5.2738905,-2.3318956,,0.99217075,,,,,,,,14.209567,13.433655,13.904402,,,,TRUE,,3,5,TRUE,,FALSE -905,BOSS,,,,,,104.47174072265625,6.656782150268555,-6.0917935,-8.244963,,0.43486342,,,,,,,,,,15.933841,,,,TRUE,,3,5,TRUE,,FALSE -906,APOGEE,,,,,,315.8370548817254,-50.94035019,,,,,,14.461813,14.461813,14.461813,14.461813,14.461813,,,,,,,,TRUE,,3,5,TRUE,,FALSE -907,BOSS,,,5241911106919893888,,,162.96871948242188,-62.54104996,-7.210754,2.6756608,,0.3440247,,,,,,,,14.869354,14.271011,14.669558,,,,TRUE,,3,5,TRUE,,FALSE -908,APOGEE,,,,,,128.02798461914062,13.603619575500488,,,,,,22.423151,21.871357,21.12993,20.88642,20.442284,,,,,,,,TRUE,,3,5,TRUE,,FALSE -909,BOSS,,,,,,25.179156638713923,-30.91257829,,,,,,12.923904,12.923904,12.923904,12.923904,12.923904,,,,,,,,TRUE,,3,5,TRUE,,FALSE -910,BOSS,,,,,,267.2798156738281,-79.41946411,3.1277423,-9.363432,,0.58969927,,,,,,,,,,15.621861,,,,TRUE,,3,5,TRUE,,FALSE -911,BOSS,,,,,,69.75717006818138,79.58543028,,,,,,13.416117,13.416117,13.416117,13.416117,13.416117,,,,,,,,TRUE,,3,5,TRUE,,FALSE -912,BOSS,,,,,,181.27206420898438,-62.09513092,-7.752234,0.81886333,,0.27622315,,,,,,,,,,15.829043,,,,TRUE,,3,5,TRUE,,FALSE -913,APOGEE,,,5970035641357152512,,,252.67510986328125,-39.4069519,10.419095,-11.482424,,1.4367099,,,,,,,,15.709904,14.284756,15.067823,,,,TRUE,,3,5,TRUE,,FALSE -914,APOGEE,,,,,,258.3322448730469,-71.53631592,-1.1245981,-1.6338904,,0.14228217,,,,,,,,,,12.377637,,,,TRUE,,3,5,TRUE,,FALSE -915,APOGEE,,,,,,279.24625786286634,-43.630443,,,,,,11.148791,11.148791,11.148791,11.148791,11.148791,,,,,,,,TRUE,,3,5,TRUE,,FALSE -916,BOSS,,,5259754359580504704,,,150.9435272216797,-56.34089661,3.5148335,-1.9878436,,1.2405018,,,,,,,,14.731065,13.858827,14.380158,,,,TRUE,,3,5,TRUE,,FALSE -917,BOSS,,,,,,19.20097245499865,-24.05500617,,,,,,10.391047,10.391047,10.391047,10.391047,10.391047,,,,,,,,TRUE,,3,5,TRUE,,FALSE -918,BOSS,,,,,,33.01911889309294,18.097420352029758,,,,,,,,,,,,,,18.975893,,,,TRUE,,3,5,TRUE,,FALSE -919,APOGEE,,,,,,308.2547611,80.16363110332537,,,,,,19.393427,19.393427,19.393427,19.393427,19.393427,,,,,,,,TRUE,,3,5,TRUE,,FALSE -920,APOGEE,,,,,,169.7850173533284,37.33708615116301,,,,,,,,,,,,,,15.074795,,,,TRUE,,3,5,TRUE,,FALSE -921,BOSS,,,,,,269.2797852,-32.46685791,-7.7620144,-1.8232079,,0.15793274,,,,,,,,,,15.871359,,,,TRUE,,3,5,TRUE,,FALSE -922,APOGEE,,,,,,96.2308034,87.78098440633926,,,,,,,,,,,,,,17.175756,,,,TRUE,,3,5,TRUE,,FALSE -923,BOSS,63050395044487649,,,738612456,,310.9505310058594,61.74651336669922,,,,,,,,,,,,,,,14.645,,,TRUE,,3,5,TRUE,,FALSE -924,APOGEE,,,,,,39.64012908935547,-8.56165123,,,,,,24.010778,22.607023,21.522726,21.076353,20.891064,,,,,,,,TRUE,,3,5,TRUE,,FALSE -925,APOGEE,,,,,,200.0910262488222,-52.68056451,,,,,,,,,,,,,,17.603024,,,,TRUE,,3,5,TRUE,,FALSE -926,APOGEE,,,,,,131.1952667236328,27.386764526367188,,,,,,21.7776,20.653898,20.132408,19.625088,19.664072,,,,,,,,TRUE,,3,5,TRUE,,FALSE -927,BOSS,,,4478829146535620224,,,275.58074951171875,9.528278350830078,3.0217552,-11.03084,,1.1537447,,,,,,,,14.636052,13.602466,14.204163,,,,TRUE,,3,5,TRUE,,FALSE -928,BOSS,,,,,,339.3148498535156,24.71223258972168,,,,,,19.519648,17.915838,17.363842,17.126333,17.042051,,,,,,,,TRUE,,3,5,TRUE,,FALSE -929,APOGEE,,,,,,274.7460021972656,-35.33782196,-3.604351,-5.2971497,,0.09439389,,,,,,,,,,13.343664,,,,TRUE,,3,5,TRUE,,FALSE -930,APOGEE,,,,,,195.18368530273438,35.73964309692383,,,,,,22.659458,23.038898,22.015358,21.626303,22.335,,,,,,,,TRUE,,3,5,TRUE,,FALSE -931,APOGEE,,,,,,331.0319824,-48.13788605,37.891155,-2.5633848,,3.4679208,,,,,,,,,,15.991901,,,,TRUE,,3,5,TRUE,,FALSE -932,APOGEE,,,,,,81.90642555411596,-38.5680233,,,,,,15.352032,15.352032,15.352032,15.352032,15.352032,,,,,,,,TRUE,,3,5,TRUE,,FALSE -933,APOGEE,,,,,,326.9231872558594,9.166776657104492,,,,,,25.242296,23.046564,21.765423,20.521229,19.76796,,,,,,,,TRUE,,3,5,TRUE,,FALSE -934,APOGEE,63050395086439106,72883834,2939915426332706304,,,98.17352294921875,-19.45599174,-0.673839,-1.3961484,,2.218705,,,,,,,,11.573012,10.951271,11.339647,,,,TRUE,,3,5,TRUE,,FALSE -935,APOGEE,,,,590244304,,241.90451049804688,-43.34813309,,,,,,,,,,,,,,,15.338,,,TRUE,,3,5,TRUE,,FALSE -936,APOGEE,63050394813953528,,540109905754475904,,,5.900785923,76.98787689208984,-7.003332,3.7822993,,0.044018105,,,,,,,,15.581039,14.216597,15.586018,,,,TRUE,,3,5,TRUE,,FALSE -937,BOSS,,,,,,267.52972412109375,53.33525085449219,11.539139,-57.049255,,5.0973244,,,,,,,,,,14.586147,,,,TRUE,,3,5,TRUE,,FALSE -938,APOGEE,,,,,,116.85189056396484,13.385916709899902,,,,,,22.640453,20.577484,19.838839,19.52869,19.284267,,,,,,,,TRUE,,3,5,TRUE,,FALSE -939,BOSS,,,,,,218.2891905492362,11.695768966341944,,,,,,,,,,,,,,18.280252,,,,TRUE,,3,5,TRUE,,FALSE -940,BOSS,,,5315803133032880640,,,124.89336395263672,-57.11537552,-2.5791333,4.7820325,,0.72399664,,,,,,,,14.7885275,13.750988,14.357203,,,,TRUE,,3,5,TRUE,,FALSE -941,BOSS,,,220229400203620224,,,59.18840789794922,36.73500061035156,2.2846332,0.80692226,,0.5813353,,,,,,,,15.547011,14.0614195,14.866968,,,,TRUE,,3,5,TRUE,,FALSE -942,BOSS,,,,489625952,,237.9829102,-52.94974899,,,,,,,,,,,,,,,14.512,,,TRUE,,3,5,TRUE,,FALSE -943,BOSS,,,4021534529587585664,,,176.02943420410156,31.526151657104492,-14.19122,-10.607481,,1.1380758,,,,,,,,15.935618,14.901812,15.500678,,,,TRUE,,3,5,TRUE,,FALSE -944,APOGEE,63050395729149852,,4483872984324173696,,,275.9568176269531,11.725010871887207,-1.6634729,-1.5949261,,0.18337691,,,,,,,,15.910221,14.5252,15.283721,,,,TRUE,,3,5,TRUE,,FALSE -945,APOGEE,,,,,,276.6789855957031,48.93211364746094,-6.888229,11.975583,,0.99248666,,,,,,,,,,15.774844,,,,TRUE,,3,5,TRUE,,FALSE -946,APOGEE,,,,,,232.9378028332862,-29.9267317,,,,,,,,,,,,,,10.585612,,,,TRUE,,3,5,TRUE,,FALSE -947,BOSS,,,,,,147.76600646972656,0.8712112903594971,,,,,,23.374975,24.59667,22.401163,21.721073,21.621645,,,,,,,,TRUE,,3,5,TRUE,,FALSE -948,APOGEE,,,,,,111.11753295482876,-59.45835248,,,,,,,,,,,,,,17.956556,,,,TRUE,,3,5,TRUE,,FALSE -949,APOGEE,63050396068822504,,,945906288,,218.8966064453125,-65.08974457,,,,,,,,,,,,,,,14.917,,,TRUE,,3,5,TRUE,,FALSE -950,APOGEE,,,,,,261.42599538638444,48.16675916317527,,,,,,11.751232,11.751232,11.751232,11.751232,11.751232,,,,,,,,TRUE,,3,5,TRUE,,FALSE -951,APOGEE,,,,,,357.9269104003906,-5.918411732,,,,,,22.744791,23.428076,21.993385,21.2826,21.085152,,,,,,,,TRUE,,3,5,TRUE,,FALSE -952,APOGEE,,,,,,351.62188720703125,65.50370025634766,45.005985,-0.734764,,1.8225596,,,,,,,,,,15.964727,,,,TRUE,,3,5,TRUE,,FALSE -953,BOSS,,,5310843992024958080,,,140.7042236328125,-53.30128098,-6.4459105,4.784749,,0.4393334,,,,,,,,15.481124,14.470877,15.068039,,,,TRUE,,3,5,TRUE,,FALSE -954,BOSS,,,,,,214.1499481201172,-38.8212471,-18.454441,-9.63907,,1.9700277,,,,,,,,,,13.150431,,,,TRUE,,3,5,TRUE,,FALSE -955,APOGEE,63050395325735904,83124557,4065905076512966656,,,272.0969238,-24.0616703,10.503358,-1.3700593,,1.0766963,,,,,,,,13.085819,11.683794,12.459914,,,,TRUE,,3,5,TRUE,,FALSE -956,BOSS,,,930651694294719104,,,126.53436279296875,47.44715881347656,-3.7982104,-6.5683365,,0.49439967,,,,,,,,15.846878,15.005006,15.511344,,,,TRUE,,3,5,TRUE,,FALSE -957,BOSS,,,,,,229.81707364998886,-8.664139631,,,,,,16.042799,16.042799,16.042799,16.042799,16.042799,,,,,,,,TRUE,,3,5,TRUE,,FALSE -958,APOGEE,,,,,,290.27798522614677,14.461860722736773,,,,,,14.7008,14.7008,14.7008,14.7008,14.7008,,,,,,,,TRUE,,3,5,TRUE,,FALSE -959,APOGEE,63050396030983619,,5825496247929907328,,,234.89596557617188,-65.70996857,-4.9341226,-2.4333732,,0.35306183,,,,,,,,15.338764,14.455578,14.983033,,,,TRUE,,3,5,TRUE,,FALSE -960,BOSS,,,,,,250.5493164,17.48832893371582,,,,,,23.17105,23.680649,22.359728,22.35243,22.831812,,,,,,,,TRUE,,3,5,TRUE,,FALSE -961,APOGEE,63050396209519974,,5932712925328241152,,,241.48829650878906,-54.11332703,-3.0678728,-6.0684285,,0.6473175,,,,,,,,14.483506,13.050811,13.836803,,,,TRUE,,3,5,TRUE,,FALSE -962,APOGEE,,,,,,283.8191223144531,-13.48061371,-1.869061,-0.634658,,0.21127893,,,,,,,,,,15.580607,,,,TRUE,,3,5,TRUE,,FALSE -963,BOSS,,,2935237691555318784,,,105.61466217041016,-17.82543373,-2.177266,-3.1439455,,0.4822651,,,,,,,,15.9318695,14.736865,15.419585,,,,TRUE,,3,5,TRUE,,FALSE -964,APOGEE,,,4507506883696913536,,,282.6756896972656,15.200173377990723,-0.25196442,-5.3741407,,0.5400792,,,,,,,,15.965502,14.905372,15.521168,,,,TRUE,,3,5,TRUE,,FALSE -965,APOGEE,,,,,,276.5800827613549,-87.56539758,,,,,,17.267292,17.267292,17.267292,17.267292,17.267292,,,,,,,,TRUE,,3,5,TRUE,,FALSE -966,APOGEE,,,,,,8.124952316,15.009519577026367,,,,,,24.285433,23.97733,22.56597,21.467615,20.344866,,,,,,,,TRUE,,3,5,TRUE,,FALSE -967,BOSS,,,,,,344.0227993984977,21.72764511343388,,,,,,,,,,,,,,14.40221,,,,TRUE,,3,5,TRUE,,FALSE -968,BOSS,,,,,,80.43190424713535,-19.22246467,,,,,,,,,,,,,,11.478988,,,,TRUE,,3,5,TRUE,,FALSE -969,BOSS,,,,,,246.81004333496094,-25.98641396,1.1111625,-8.138172,,0.7857863,,,,,,,,,,15.716153,,,,TRUE,,3,5,TRUE,,FALSE -970,APOGEE,,,,,,273.6872132,-29.84170809,,,,,,,,,,,,,,15.762213,,,,TRUE,,3,5,TRUE,,FALSE -971,BOSS,,,,,,78.76181539731226,-30.97573685,,,,,,,,,,,,,,18.901337,,,,TRUE,,3,5,TRUE,,FALSE -972,BOSS,,,5616544027373107840,,,109.65764617919922,-24.89844131,-2.9394205,3.1703668,,0.7258741,,,,,,,,15.586793,14.404826,15.078097,,,,TRUE,,3,5,TRUE,,FALSE -973,APOGEE,,,2123071229985348224,,,273.30670166015625,49.635005950927734,18.896616,9.749008,,4.166161,,,,,,,,15.015386,13.518826,14.322646,,,,TRUE,,3,5,TRUE,,FALSE -974,APOGEE,,,,,,302.2156982421875,46.80413818359375,-2.9726932,-3.6378117,,0.16334681,,,,,,,,,,15.982075,,,,TRUE,,3,5,TRUE,,FALSE -975,APOGEE,,,4120327878431219328,,,266.8277587890625,-18.78831673,-3.1928937,-5.007303,,0.16952704,,,,,,,,17.10169,14.23565,15.473866,,,,TRUE,,3,5,TRUE,,FALSE -976,BOSS,,,,,,109.86047505334886,2.400742350814312,,,,,,,,,,,,,,12.822466,,,,TRUE,,3,5,TRUE,,FALSE -977,APOGEE,,,,,,151.67854094632628,-14.19495477,,,,,,,,,,,,,,12.861285,,,,TRUE,,3,5,TRUE,,FALSE -978,BOSS,,,,,,223.48760986328125,-52.71503067,-4.1167645,-3.1320472,,0.024767304,,,,,,,,,,15.784547,,,,TRUE,,3,5,TRUE,,FALSE -979,APOGEE,,,5959319865404667520,,,262.6002197265625,-41.25452805,-2.952774,-0.60279495,,0.2327445,,,,,,,,14.559116,11.403349,12.686344,,,,TRUE,,3,5,TRUE,,FALSE -980,BOSS,,,6127250651435196416,,,187.41477966308594,-50.26376343,-2.895175,10.019287,,1.1706499,,,,,,,,15.268555,14.296057,14.869961,,,,TRUE,,3,5,TRUE,,FALSE -981,BOSS,,,,,,123.83009078808513,-50.39364311,,,,,,11.47214,11.47214,11.47214,11.47214,11.47214,,,,,,,,TRUE,,3,5,TRUE,,FALSE -982,APOGEE,,,,,,232.3089599609375,-59.57844543,-7.108618,-4.284143,,0.5077867,,,,,,,,,,15.386257,,,,TRUE,,3,5,TRUE,,FALSE -983,BOSS,,,,,,161.2154083251953,49.994773864746094,,,,,,25.606544,23.80732,22.06862,20.767447,19.834185,,,,,,,,TRUE,,3,5,TRUE,,FALSE -984,APOGEE,,,,,,232.0019989013672,-23.51311111,1.0240436,-9.517354,,1.2165018,,,,,,,,,,15.068976,,,,TRUE,,3,5,TRUE,,FALSE -985,APOGEE,,,,,,198.06077266430475,-21.66710133,,,,,,,,,,,,,,19.310125,,,,TRUE,,3,5,TRUE,,FALSE -986,BOSS,,,,,,95.14650148531813,31.55930326972893,,,,,,13.440146,13.440146,13.440146,13.440146,13.440146,,,,,,,,TRUE,,3,5,TRUE,,FALSE -987,APOGEE,,,,,,135.5488281,-36.97105408,-5.7079997,2.01366,,0.8640847,,,,,,,,,,14.303811,,,,TRUE,,3,5,TRUE,,FALSE -988,BOSS,,,,799237458,,357.1575622558594,61.12431335449219,,,,,,,,,,,,,,,16.255,,,TRUE,,3,5,TRUE,,FALSE -989,BOSS,,,,,,59.28349685668945,12.678717613220215,,,,,,25.763632,25.15737,24.801907,24.204172,18.3594,,,,,,,,TRUE,,3,5,TRUE,,FALSE -990,BOSS,,,,,,159.37468660356677,-89.1207102,,,,,,,,,,,,,,10.986762,,,,TRUE,,3,5,TRUE,,FALSE -991,BOSS,,,,,,85.62360910313627,-30.69191248,,,,,,,,,,,,,,11.84522,,,,TRUE,,3,5,TRUE,,FALSE -992,BOSS,,,,945371526,,217.4279785,-61.13077164,,,,,,,,,,,,,,,14.693,,,TRUE,,3,5,TRUE,,FALSE -993,APOGEE,,,,,,180.28981434651655,46.104693512913286,,,,,,19.63566,19.63566,19.63566,19.63566,19.63566,,,,,,,,TRUE,,3,5,TRUE,,FALSE -994,APOGEE,,,,,,236.95313147145586,11.754803041201313,,,,,,16.987535,16.987535,16.987535,16.987535,16.987535,,,,,,,,TRUE,,3,5,TRUE,,FALSE -995,BOSS,,,,512394860,,227.46453857421875,-58.14958954,,,,,,,,,,,,,,,14.903,,,TRUE,,3,5,TRUE,,FALSE -996,APOGEE,,,,,,204.24234229114955,62.787785797964546,,,,,,,,,,,,,,16.939175,,,,TRUE,,3,5,TRUE,,FALSE -997,BOSS,,,,,,46.127068416738105,-1.063977816,,,,,,15.935718,15.935718,15.935718,15.935718,15.935718,,,,,,,,TRUE,,3,5,TRUE,,FALSE -998,APOGEE,,,,,,336.0591125488281,57.78157424926758,6.129362,2.1856046,,1.0745684,,,,,,,,,,15.988846,,,,TRUE,,3,5,TRUE,,FALSE -999,BOSS,63050395806899015,,4878514748638974976,,,71.46774291992188,-28.87862206,9.606046,-3.6115289,,1.7186465,,,,,,,,15.019477,13.924454,14.603652,,,,TRUE,,3,5,TRUE,,FALSE -1000,APOGEE,,,5373979770729287680,,,169.5585938,-48.88965225,-16.181047,0.35555366,,1.3835307,,,,,,,,15.382621,14.314879,14.92956,,,,TRUE,,3,5,TRUE,,FALSE \ No newline at end of file +too_id,fiber_type,catalogid,sdss_id,gaia_dr3_source_id,twomass_pts_key,sky_brightness_mode,ra,dec,pmra,pmdec,epoch,parallax,lambda_eff,u_mag,g_mag,r_mag,i_mag,z_mag,optical_prov,gaia_bp_mag,gaia_rp_mag,gaia_g_mag,h_mag,delta_ra,delta_dec,can_offset,inertial,n_exposures,priority,active,expiration_date,observed +1,APOGEE,,,,,,322.0416986442334,23.24975582251605,,,,,,15.585603,15.585603,15.585603,15.585603,15.585603,,,,,,,,true,,3,5,true,,false +2,APOGEE,,,,,,23.68915557861328,63.30213928222656,-1.633114,-0.17489335,2016,0.36345074,,,,,,,,,,14.495427,,,,true,,3,5,true,,false +3,BOSS,,,,,,317.1805114746094,55.043983459472656,,,,,,24.184845,24.713322,21.989498,21.051416,20.573246,,,,,,,,true,,3,5,true,,false +4,APOGEE,,,,,,132.27410888671875,-9.865385056,-4.23959,1.3068857,2016,0.67415804,,,,,,,,,,15.891865,,,,true,,3,5,true,,false +5,APOGEE,63050395915414228,,5365231850064328448,,,155.5760498046875,-48.36075211,-2.0050094,-0.13202874,2016,0.08750413,,,,,,,,16.506353,15.171548,15.910943,,,,true,,3,5,true,,false +6,BOSS,,,,,,169.05540466308594,-52.83566284,-5.52803,3.9846888,2016,0.1719657,,,,,,,,,,15.479938,,,,true,,3,5,true,,false +7,BOSS,,,5965311383454731648,,,256.6919250488281,-43.81571198,-0.5424047,-8.906387,2016,0.2787155,,,,,,,,14.780168,11.542485,12.839776,,,,true,,3,5,true,,false +8,BOSS,,,,,,196.95848904939584,32.69419873,,,,,,,,,,,,,,19.130697,,,,true,,3,5,true,,false +9,APOGEE,,,,,,277.48980712890625,-27.69761848,-3.9706147,-4.874005,2016,0.29140338,,,,,,,,,,13.293058,,,,true,,3,5,true,,false +10,BOSS,,,,,,299.55755615234375,37.57545852661133,-3.8028247,-4.152495,2016,0.3261723,,,,,,,,,,15.098599,,,,true,,3,5,true,,false +11,BOSS,,,,,,93.15349578857422,-19.25577164,36.599873,-16.589447,2016,4.3919764,,,,,,,,,,10.35252,,,,true,,3,5,true,,false +12,APOGEE,,,,,,310.54254150390625,25.387367248535156,-0.3989932,-6.631391,2016,0.730015,,,,,,,,,,14.994102,,,,true,,3,5,true,,false +13,BOSS,,,,,,159.85731506347656,49.125877380371094,,,,,,22.56774,22.654528,22.303133,21.762018,22.578901,,,,,,,,true,,3,5,true,,false +14,BOSS,,,,,,153.8815460205078,-50.7372551,-4.761471,-1.8694482,2016,0.22456343,,,,,,,,,,10.851905,,,,true,,3,5,true,,false +15,BOSS,,,,,,256.1876220703125,-24.69454193,-3.4426248,-5.791844,2016,0.14846663,,,,,,,,,,15.639607,,,,true,,3,5,true,,false +16,APOGEE,,,,,,215.0206298828125,-76.02481842,-3.730372,0.39429158,2016,0.6409972,,,,,,,,,,15.404773,,,,true,,3,5,true,,false +17,APOGEE,,,5307277622951462016,,,142.23260498046875,-55.66678619,-6.8612022,4.6453967,2016,0.32230595,,,,,,,,15.309744,13.527912,14.52157,,,,true,,3,5,true,,false +18,BOSS,,,,,,308.67156982421875,15.523393630981445,,,,,,24.58621,22.972805,22.191853,21.758198,21.754278,,,,,,,,true,,3,5,true,,false +19,APOGEE,63050394989164473,66549526,2045042974273831296,,,291.6852111816406,31.77603530883789,0.904789,-2.865594,2016,0.52112687,,,,,,,,12.537917,11.1104555,11.885861,,,,true,,3,5,true,,false +20,APOGEE,,,,,,170.94858663689251,-34.57345707,,,,,,11.915108,11.915108,11.915108,11.915108,11.915108,,,,,,,,true,,3,5,true,,false +21,APOGEE,,,,,,78.14626757697934,-2.682986851,,,,,,16.554398,16.554398,16.554398,16.554398,16.554398,,,,,,,,true,,3,5,true,,false +22,BOSS,,,2001035197482775808,,,333.2771911621094,51.086021423339844,-2.0965788,-3.6020296,2016,0.35497344,,,,,,,,15.874175,15.128165,15.581831,,,,true,,3,5,true,,false +23,APOGEE,,,,,,56.588253021240234,38.966312408447266,,,,,,25.08159,24.84667,23.36787,21.744411,21.132257,,,,,,,,true,,3,5,true,,false +24,BOSS,,,1742053235068416768,,,321.2508544921875,9.103323936462402,-3.0529616,0.23803899,2016,0.7733791,,,,,,,,10.806388,9.53475,10.244381,,,,true,,3,5,true,,false +25,APOGEE,,,,,,69.86883583429254,20.846097305005415,,,,,,,,,,,,,,18.151804,,,,true,,3,5,true,,false +26,APOGEE,,,6716603796046091776,,,284.6644592285156,-40.99450302,-1.0301181,-2.8249109,2016,0.7815646,,,,,,,,15.663781,14.705363,15.268626,,,,true,,3,5,true,,false +27,APOGEE,,,,,,218.5586539257018,-61.00860414,,,,,,,,,,,,,,14.880216,,,,true,,3,5,true,,false +28,APOGEE,,,,,,276.3083570237236,38.030768178594315,,,,,,13.817177,13.817177,13.817177,13.817177,13.817177,,,,,,,,true,,3,5,true,,false +29,BOSS,,,,,,268.5023193359375,-46.51083755,-1.439177,-0.6827121,2016,0.808074,,,,,,,,,,14.737913,,,,true,,3,5,true,,false +30,APOGEE,,,,,,79.98721313476562,48.676029205322266,0.24466822,-0.33668113,2016,0.046332162,,,,,,,,,,15.952167,,,,true,,3,5,true,,false +31,APOGEE,,,3127786504271326976,,,104.34357452392578,2.7544913291931152,-5.8881636,-5.562531,2016,0.8718962,,,,,,,,14.502094,13.579643,14.128604,,,,true,,3,5,true,,false +32,BOSS,,,,,,238.6450229418189,50.81510726772382,,,,,,18.554823,18.554823,18.554823,18.554823,18.554823,,,,,,,,true,,3,5,true,,false +33,BOSS,,,,,,269.59552001953125,-38.65961456,0.2304149,-7.2610464,2016,0.068813905,,,,,,,,,,15.080259,,,,true,,3,5,true,,false +34,BOSS,,,,,,155.76306136118933,-8.817286692,,,,,,,,,,,,,,18.169863,,,,true,,3,5,true,,false +35,APOGEE,,,,,,41.74240226441114,-42.19454252,,,,,,14.061309,14.061309,14.061309,14.061309,14.061309,,,,,,,,true,,3,5,true,,false +36,APOGEE,,,4037234593687633152,,,269.6929626464844,-37.31075668,0.70930505,-5.7936177,2016,0.11424016,,,,,,,,15.717317,14.081268,14.95381,,,,true,,3,5,true,,false +37,APOGEE,,,5299473014559365888,,,141.96112060546875,-60.26277542,1.2105885,1.8648937,2016,0.6556,,,,,,,,16.275719,15.278423,15.861832,,,,true,,3,5,true,,false +38,BOSS,,,,,,105.81937408447266,-62.64641953,-3.6946084,11.30163,2016,0.5535068,,,,,,,,,,15.339528,,,,true,,3,5,true,,false +39,BOSS,,,5986876723494963456,,,233.5907440185547,-47.45285797,-1.7784321,-2.8776402,2016,0.9295717,,,,,,,,15.873177,14.653904,15.344839,,,,true,,3,5,true,,false +40,BOSS,,,,,,236.2151641845703,-20.06913757,-5.8280187,0.5509816,2016,1.7827637,,,,,,,,,,13.432687,,,,true,,3,5,true,,false +41,BOSS,,,,,,308.5747734159112,77.10158798805043,,,,,,,,,,,,,,18.773153,,,,true,,3,5,true,,false +42,BOSS,,,,,,302.7796630859375,9.683060646057129,,,,,,22.639591,20.251524,19.327724,18.93538,18.822897,,,,,,,,true,,3,5,true,,false +43,BOSS,,,,,,262.0460510253906,-31.9094677,-0.70829743,2.5190108,2016,0.56842405,,,,,,,,,,14.435419,,,,true,,3,5,true,,false +44,BOSS,,,,,,169.67616271972656,-10.8683157,,,,,,23.757376,23.018812,22.498236,22.013803,21.787107,,,,,,,,true,,3,5,true,,false +45,BOSS,,,,,,18.08656883239746,27.824718475341797,,,,,,23.850815,23.642157,22.641645,22.254175,21.973812,,,,,,,,true,,3,5,true,,false +46,BOSS,,,,,,189.5998526,-51.12843654,,,,,,18.021381,18.021381,18.021381,18.021381,18.021381,,,,,,,,true,,3,5,true,,false +47,APOGEE,,,,,,291.1813965,25.48657799,-2.1368947,-9.121573,2016,0.9166721,,,,,,,,,,13.975713,,,,true,,3,5,true,,false +48,APOGEE,,,,,,253.43643188476562,-34.8242836,-6.0795503,-6.874174,2016,0.12813249,,,,,,,,,,15.535668,,,,true,,3,5,true,,false +49,APOGEE,,,5404423804617714176,,,149.12953186035156,-53.28446579,-7.2144337,0.5768588,2016,0.85302585,,,,,,,,16.480652,15.13847,15.8875885,,,,true,,3,5,true,,false +50,BOSS,,,,1235344402,,283.71380615234375,12.371167182922363,,,,,,,,,,,,,,,14.457,,,true,,3,5,true,,false +51,APOGEE,,,6240994682646514816,,,234.66082763671875,-22.23919487,8.803073,-8.529166,2016,1.8465331,,,,,,,,15.579301,14.333661,15.03334,,,,true,,3,5,true,,false +52,APOGEE,,,5799990498730796288,,,222.24554443359375,-68.69470215,-9.333442,0.32404658,2016,0.9524031,,,,,,,,15.666204,14.528124,15.178019,,,,true,,3,5,true,,false +53,BOSS,,,,,,70.93364822766145,-15.68639374,,,,,,,,,,,,,,14.216855,,,,true,,3,5,true,,false +54,BOSS,,,,,,313.3588605988401,-64.90821688,,,,,,,,,,,,,,13.435437,,,,true,,3,5,true,,false +55,BOSS,,,,,,326.9616173610489,79.09138071896493,,,,,,14.31843,14.31843,14.31843,14.31843,14.31843,,,,,,,,true,,3,5,true,,false +56,APOGEE,,,,,,205.42795397141813,-39.49090413,,,,,,,,,,,,,,13.221332,,,,true,,3,5,true,,false +57,BOSS,,,1826398116403682688,,,299.416748,20.76044273376465,-1.5154749,-7.1681933,2016,1.4013343,,,,,,,,16.049578,14.941574,15.806762,,,,true,,3,5,true,,false +58,APOGEE,,,,,,266.9850158691406,-59.67505646,2.8675766,-10.243619,2016,0.78981423,,,,,,,,,,13.856769,,,,true,,3,5,true,,false +59,APOGEE,,,,,,342.1569026,-1.970879794,,,,,,,,,,,,,,18.382395,,,,true,,3,5,true,,false +60,APOGEE,,,,,,84.32974155834334,-71.86153763,,,,,,,,,,,,,,15.590839,,,,true,,3,5,true,,false +61,BOSS,,,,,,190.79627990722656,64.75472259521484,,,,,,25.67888,24.772968,24.392704,23.133852,20.292099,,,,,,,,true,,3,5,true,,false +62,BOSS,,,,,,173.6854070297808,2.271468995779159,,,,,,15.273549,15.273549,15.273549,15.273549,15.273549,,,,,,,,true,,3,5,true,,false +63,BOSS,,,,,,52.46262741088867,40.507850646972656,,,,,,24.448252,24.801268,24.68017,24.578358,21.238506,,,,,,,,true,,3,5,true,,false +64,APOGEE,,,6803637082046987264,,,318.16033935546875,-24.32069778,-0.47882384,-4.6342425,2016,0.6224656,,,,,,,,16.321484,15.414918,15.947643,,,,true,,3,5,true,,false +65,BOSS,,,,,,238.2233428955078,42.61351395,,,,,,21.691912,21.406952,20.851591,20.511356,20.34639,,,,,,,,true,,3,5,true,,false +66,BOSS,,,,,,214.76776123046875,-20.05138397,,,,,,17.87514,16.314484,15.600426,15.377921,15.27553,,,,,,,,true,,3,5,true,,false +67,BOSS,,,4082759803798636416,,,290.40240478515625,-20.68270493,-7.3011193,-8.890116,2016,0.5668037,,,,,,,,16.179142,15.32184,15.846203,,,,true,,3,5,true,,false +68,APOGEE,,,,,,304.1143798828125,8.554203033447266,,,,,,20.532293,18.858007,18.105993,17.792877,17.604002,,,,,,,,true,,3,5,true,,false +69,APOGEE,63050396573102637,,,881141965,,60.59712600708008,47.69127655029297,,,,,,,,,,,,,,,15.367,,,true,,3,5,true,,false +70,APOGEE,,,,,,276.6059265136719,-13.92156696,-0.87135726,-4.060744,2016,0.3275647,,,,,,,,,,15.232843,,,,true,,3,5,true,,false +71,BOSS,,,1829969948631172992,,,301.3713073730469,22.256240844726562,-5.1121564,-4.497712,2016,0.7647907,,,,,,,,15.696336,14.445488,15.17279,,,,true,,3,5,true,,false +72,BOSS,,,2131947449919047424,,,285.9072266,48.94021987915039,-0.025091171,0.53291553,2016,0.60776937,,,,,,,,15.642535,14.802854,15.306992,,,,true,,3,5,true,,false +73,APOGEE,,,,,,90.88671974,-27.27798089,,,,,,19.80138,19.80138,19.80138,19.80138,19.80138,,,,,,,,true,,3,5,true,,false +74,BOSS,,,,,,27.59313965,28.288711547851562,,,,,,24.926758,22.816109,22.242037,21.833595,21.430048,,,,,,,,true,,3,5,true,,false +75,APOGEE,,,,,,61.32428841847853,-51.61235829,,,,,,16.965103,16.965103,16.965103,16.965103,16.965103,,,,,,,,true,,3,5,true,,false +76,BOSS,,,,,,225.9148406982422,42.65070343017578,,,,,,23.71794,23.345898,22.717432,22.086817,22.033043,,,,,,,,true,,3,5,true,,false +77,APOGEE,,,6084172438692073856,,,202.0572967529297,-46.5917778,-0.43000337,-0.99476254,2016,0.8928374,,,,,,,,14.703981,13.881974,14.377015,,,,true,,3,5,true,,false +78,BOSS,,,,,,109.59927368164062,30.334585189819336,,,,,,23.39626,22.28673,21.509962,21.359001,20.277046,,,,,,,,true,,3,5,true,,false +79,BOSS,,,,1247237537,,183.05258178710938,-61.80580521,,,,,,,,,,,,,,,13.899,,,true,,3,5,true,,false +80,APOGEE,,,,,,332.8862052416298,-70.25785712,,,,,,,,,,,,,,18.625954,,,,true,,3,5,true,,false +81,APOGEE,,,,,,157.18920917502177,-81.68580769,,,,,,17.136791,17.136791,17.136791,17.136791,17.136791,,,,,,,,true,,3,5,true,,false +82,APOGEE,,,,,,324.36694662030385,18.853847795638956,,,,,,15.8132105,15.8132105,15.8132105,15.8132105,15.8132105,,,,,,,,true,,3,5,true,,false +83,APOGEE,,,,,,186.9317775249239,19.63538977732341,,,,,,,,,,,,,,18.928991,,,,true,,3,5,true,,false +84,BOSS,,,,,,121.06922149658203,23.145545959472656,,,,,,23.575663,22.807844,21.505783,21.21398,20.455107,,,,,,,,true,,3,5,true,,false +85,BOSS,,,,,,101.22248077392578,10.302441596984863,,,,,,17.084484,14.776092,14.332685,13.131848,12.773293,,,,,,,,true,,3,5,true,,false +86,APOGEE,,,,,,4.145135272,7.289044771729607,,,,,,,,,,,,,,10.2851715,,,,true,,3,5,true,,false +87,BOSS,,,4511268690924589184,,,282.3520508,17.221071243286133,0.037170157,-2.4240265,2016,0.45267987,,,,,,,,13.277962,11.734461,12.553878,,,,true,,3,5,true,,false +88,APOGEE,,,,,,257.7920573015427,-13.66046857,,,,,,,,,,,,,,17.302023,,,,true,,3,5,true,,false +89,BOSS,,,,,,182.99066162109375,7.276773452758789,,,,,,25.286516,24.02073,22.77824,22.970306,22.66189,,,,,,,,true,,3,5,true,,false +90,APOGEE,,,,,,241.20236144839555,-73.64303169,,,,,,,,,,,,,,11.724846,,,,true,,3,5,true,,false +91,APOGEE,,,4067114268822744448,,,266.43731689453125,-25.92999649,-2.0346615,-6.8709016,2016,0.15432438,,,,,,,,20.052053,13.817839,15.52432,,,,true,,3,5,true,,false +92,BOSS,,,,,,36.787410736083984,-3.406038523,3.2144544,-16.144226,2016,0.13972853,,,,,,,,,,15.57395,,,,true,,3,5,true,,false +93,BOSS,,,,,,110.14348525798255,83.70086402803094,,,,,,16.740643,16.740643,16.740643,16.740643,16.740643,,,,,,,,true,,3,5,true,,false +94,APOGEE,,,,,,222.04954121471215,-82.64486523,,,,,,12.802641,12.802641,12.802641,12.802641,12.802641,,,,,,,,true,,3,5,true,,false +95,BOSS,,,,,,150.28236029286992,12.780074710132851,,,,,,,,,,,,,,11.058099,,,,true,,3,5,true,,false +96,APOGEE,,,,,,198.92550659179688,-7.81828928,-25.817423,-6.0447335,2016,2.0468123,,,,,,,,,,14.932469,,,,true,,3,5,true,,false +97,BOSS,,,3058004280829321216,,,109.91910552978516,-6.497790337,-0.77837294,-1.0646995,2016,0.47408396,,,,,,,,15.773341,14.885421,15.413329,,,,true,,3,5,true,,false +98,APOGEE,,,4124058250874645120,,,265.7625427246094,-16.5740242,-3.9413574,-9.323677,2016,0.36199063,,,,,,,,16.435127,14.9882965,15.787186,,,,true,,3,5,true,,false +99,APOGEE,,,5306000230983976064,,,146.57969665527344,-57.40896988,-4.738899,4.427131,2016,0.2660805,,,,,,,,15.356114,13.549028,14.477364,,,,true,,3,5,true,,false +100,BOSS,,,,,,30.66155433654785,-51.75399399,12.393519,9.495563,2016,1.5087881,,,,,,,,,,15.459929,,,,true,,3,5,true,,false +101,BOSS,,,,,,84.12731934,-33.31795883,-2.465497,9.190811,2016,1.2413044,,,,,,,,,,14.503324,,,,true,,3,5,true,,false +102,BOSS,,,,,,199.9457302488781,-23.11921598,,,,,,,,,,,,,,10.615183,,,,true,,3,5,true,,false +103,BOSS,,,,,,16.03748893737793,25.417741775512695,-4.400728,-1.5684812,2016,0.38166034,,,,,,,,,,15.913676,,,,true,,3,5,true,,false +104,BOSS,,,5589823077311081600,,,110.65379333496094,-36.06587982,-0.6404882,-9.988043,2016,1.0768558,,,,,,,,14.299001,13.129776,13.792185,,,,true,,3,5,true,,false +105,APOGEE,,,,,,310.1600341796875,38.229766845703125,,,,,,23.78788,23.197731,20.0639,18.372051,17.09461,,,,,,,,true,,3,5,true,,false +106,BOSS,,,,,,343.5453796386719,-19.09307098,,,,,,25.092176,23.355574,22.229536,20.977276,20.669867,,,,,,,,true,,3,5,true,,false +107,APOGEE,,,,,,113.55461883544922,41.74734115600586,,,,,,24.048195,22.009817,20.620548,18.931036,18.067003,,,,,,,,true,,3,5,true,,false +108,BOSS,,,,,,350.910641,-67.78304816,,,,,,17.513182,17.513182,17.513182,17.513182,17.513182,,,,,,,,true,,3,5,true,,false +109,BOSS,,,,,,206.13137577554156,28.26903834775473,,,,,,,,,,,,,,19.590464,,,,true,,3,5,true,,false +110,APOGEE,,,,,,19.159570091527762,40.29415799238788,,,,,,,,,,,,,,18.978848,,,,true,,3,5,true,,false +111,APOGEE,,,,,,5.744895756426773,84.49992168645656,,,,,,18.6805,18.6805,18.6805,18.6805,18.6805,,,,,,,,true,,3,5,true,,false +112,APOGEE,,,,,,324.01678466796875,48.811710357666016,,,,,,20.615799,18.285866,17.031355,16.33577,15.871981,,,,,,,,true,,3,5,true,,false +113,APOGEE,,,,,,348.05376435669257,52.62786375027122,,,,,,14.371797,14.371797,14.371797,14.371797,14.371797,,,,,,,,true,,3,5,true,,false +114,BOSS,,,,,,16.220903503109234,-74.46982285,,,,,,11.547842,11.547842,11.547842,11.547842,11.547842,,,,,,,,true,,3,5,true,,false +115,APOGEE,,,,,,25.63627815246582,-62.46719742,-4.2084947,-18.993227,2016,4.611167,,,,,,,,,,15.476997,,,,true,,3,5,true,,false +116,APOGEE,,,4052460905533561600,,,273.9763488769531,-27.05521584,0.2506152,-4.562319,2016,0.160919,,,,,,,,16.54537,14.640886,15.637927,,,,true,,3,5,true,,false +117,BOSS,,,,,,36.82796455854301,57.176237581995395,,,,,,11.174744,11.174744,11.174744,11.174744,11.174744,,,,,,,,true,,3,5,true,,false +118,APOGEE,,,5813619151497618944,,,263.2093505859375,-65.74384308,-0.71132976,-6.4848313,2016,0.52739924,,,,,,,,15.737965,14.6950245,15.295575,,,,true,,3,5,true,,false +119,APOGEE,,,1973288609228670848,,,329.1262512207031,44.53296661376953,-3.7957919,-3.6099284,2016,0.4904507,,,,,,,,13.195243,12.772501,13.036578,,,,true,,3,5,true,,false +120,APOGEE,,,5982926831058168448,,,238.59561157226562,-49.27904129,-4.0846753,-4.439897,2016,0.21793684,,,,,,,,16.915165,14.474542,15.59257,,,,true,,3,5,true,,false +121,BOSS,,,,,,73.24023438,0.20651757717132568,,,,,,25.413734,23.980934,22.300028,21.551477,20.887323,,,,,,,,true,,3,5,true,,false +122,BOSS,,,,,,150.27741102986474,77.20090774910165,,,,,,,,,,,,,,10.926746,,,,true,,3,5,true,,false +123,APOGEE,,,5799842270816092416,,,221.13246154785156,-69.37440491,-6.91154,-2.3268716,2016,0.29730365,,,,,,,,13.572745,11.61305,12.588465,,,,true,,3,5,true,,false +124,APOGEE,63050395704679924,,4351740892436039040,,,245.94744873046875,-7.32610178,-24.125172,-3.0970094,2016,2.0733871,,,,,,,,14.6790085,13.45233,14.144058,,,,true,,3,5,true,,false +125,BOSS,,,5777226897163399680,,,253.24673461914062,-78.29135132,4.278907,-12.102017,2016,0.9074496,,,,,,,,15.771187,14.797088,15.372929,,,,true,,3,5,true,,false +126,BOSS,,,,,,272.7005310058594,12.850948333740234,,,,,,21.956583,20.017773,19.116306,18.790098,18.518244,,,,,,,,true,,3,5,true,,false +127,APOGEE,,,,,,289.99920654296875,-52.46260071,-1.1395025,-6.6806574,2016,0.7417156,,,,,,,,,,15.423563,,,,true,,3,5,true,,false +128,BOSS,,,6736209870774856704,,,282.19036865234375,-32.09381485,-3.7470338,-4.7137465,2016,0.35697088,,,,,,,,16.08381,15.097567,15.680136,,,,true,,3,5,true,,false +129,BOSS,,,4044552496355608448,,,275.3039551,-34.43371964,-2.9231193,-2.6897638,2016,0.059155453,,,,,,,,15.540074,13.938427,14.788319,,,,true,,3,5,true,,false +130,APOGEE,,,,,,337.88470458984375,-9.277961731,-10.20745,-8.581147,2016,1.3340018,,,,,,,,,,10.129284,,,,true,,3,5,true,,false +131,APOGEE,,,5846501146255352320,,,216.63258361816406,-69.09770203,-10.951105,-3.9519327,2016,0.291844,,,,,,,,14.559252,12.711482,13.651046,,,,true,,3,5,true,,false +132,BOSS,,,5829395665912461312,,,245.22824096679688,-62.70051956,0.079439804,-2.5510042,2016,0.8528777,,,,,,,,15.964369,14.974426,15.553575,,,,true,,3,5,true,,false +133,BOSS,,,4091674987752833536,,,279.2886962890625,-21.05656433,-5.0606675,-5.1329045,2016,0.12929237,,,,,,,,16.898922,14.99348,15.961774,,,,true,,3,5,true,,false +134,APOGEE,,,4208289775029901440,,,292.77899169921875,-5.914134026,-3.5030572,-5.3154726,2016,0.13414995,,,,,,,,16.281534,14.531883,15.455056,,,,true,,3,5,true,,false +135,BOSS,,,,,,321.33233642578125,6.116003036499023,,,,,,25.340967,23.437473,21.727844,21.220165,20.50712,,,,,,,,true,,3,5,true,,false +136,APOGEE,,,4093920186116342016,,,273.5802917480469,-21.13858414,0.17464553,-2.4827335,2016,0.38706926,,,,,,,,15.126768,13.210412,14.183643,,,,true,,3,5,true,,false +137,APOGEE,,,3803202650234276864,,,163.36988830566406,-0.673973083,-22.243174,-1.1306834,2016,0.7834535,,,,,,,,15.132674,14.330049,14.81713,,,,true,,3,5,true,,false +138,APOGEE,,,,,,329.3421325683594,9.689582824707031,,,,,,26.28364,24.478987,25.07241,23.684786,23.036987,,,,,,,,true,,3,5,true,,false +139,BOSS,,,,,,76.61762618185622,38.05534123623943,,,,,,,,,,,,,,13.107362,,,,true,,3,5,true,,false +140,BOSS,,,,,,117.11239247983283,-81.61079919,,,,,,,,,,,,,,17.614613,,,,true,,3,5,true,,false +141,APOGEE,,,,,,304.31831036085003,-21.93536919,,,,,,,,,,,,,,15.602236,,,,true,,3,5,true,,false +142,BOSS,,,,,,232.6004638671875,-48.34486008,-0.37001857,-4.192707,2016,0.48872235,,,,,,,,,,14.275659,,,,true,,3,5,true,,false +143,APOGEE,,,,,,352.7692882193108,54.63055845376087,,,,,,,,,,,,,,12.165727,,,,true,,3,5,true,,false +144,BOSS,,,,,,330.56168144756754,33.227117872909545,,,,,,,,,,,,,,11.4708605,,,,true,,3,5,true,,false +145,BOSS,,,,518786054,,273.4162902832031,-39.37337112,,,,,,,,,,,,,,,15.308,,,true,,3,5,true,,false +146,APOGEE,,,,,,244.77034105626115,-62.00604906,,,,,,15.824518,15.824518,15.824518,15.824518,15.824518,,,,,,,,true,,3,5,true,,false +147,APOGEE,,,,,,119.1860580444336,7.504703044891357,,,,,,22.174936,21.152554,20.427776,20.135475,19.98465,,,,,,,,true,,3,5,true,,false +148,BOSS,,,,,,241.91470336914062,3.4725563526153564,-0.9759687,-0.2543052,2016,0.4012155,,,,,,,,,,12.836271,,,,true,,3,5,true,,false +149,BOSS,,,,,,259.3881726936776,20.330626549793024,,,,,,18.320234,18.320234,18.320234,18.320234,18.320234,,,,,,,,true,,3,5,true,,false +150,APOGEE,,,,,,252.63873354145738,-63.90749167,,,,,,,,,,,,,,15.032701,,,,true,,3,5,true,,false +151,APOGEE,,,,,,251.79672241210938,-34.48783112,-1.1890903,-4.456173,2016,0.13108417,,,,,,,,,,15.533691,,,,true,,3,5,true,,false +152,APOGEE,,,5574429536560352128,,,93.97206879,-39.32368469,-3.2150314,7.0135956,2016,1.1870171,,,,,,,,13.803843,13.041596,13.501831,,,,true,,3,5,true,,false +153,BOSS,,,345932029120490880,,,29.950702667236328,42.52369308,-0.18458901,-1.2360835,2016,0.3114197,,,,,,,,16.490679,15.304227,15.97084,,,,true,,3,5,true,,false +154,APOGEE,,,,,,145.91067504882812,-58.43167496,-8.396666,5.791583,2016,0.3190049,,,,,,,,,,15.541846,,,,true,,3,5,true,,false +155,APOGEE,,,6018566018671555584,,,247.77407836914062,-37.66640854,-4.105602,-2.7435436,2016,0.16217516,,,,,,,,14.716791,11.829579,13.055666,,,,true,,3,5,true,,false +156,APOGEE,,,,,,214.8201141357422,33.11469650268555,-8.600596,-3.814931,2016,0.6835482,,,,,,,,,,15.426093,,,,true,,3,5,true,,false +157,APOGEE,63050396027204925,,5822881300039026304,,,239.84234619140625,-65.36935425,-4.051063,-3.715188,2016,0.08855469,,,,,,,,16.171309,14.861448,15.589646,,,,true,,3,5,true,,false +158,APOGEE,,,,,,187.54679114944915,-70.0078391,,,,,,,,,,,,,,14.369969,,,,true,,3,5,true,,false +159,APOGEE,,,,,,241.82476806640625,-25.30934525,-6.559978,1.9578153,2016,0.8349027,,,,,,,,,,14.403549,,,,true,,3,5,true,,false +160,APOGEE,,,,,,59.60449981689453,21.155357360839844,41.740623,-31.136133,2016,3.9915352,,,,,,,,,,13.705391,,,,true,,3,5,true,,false +161,APOGEE,63050395576809794,,4203563691802320640,,,284.2885437011719,-9.196439743,-1.7588122,-5.255824,2016,0.15524632,,,,,,,,16.20432,14.46274,15.405895,,,,true,,3,5,true,,false +162,BOSS,,,,,,12.843499183654785,61.68128967285156,-2.8507812,-0.8932814,2016,0.24784175,,,,,,,,,,15.94241,,,,true,,3,5,true,,false +163,APOGEE,,,,,,327.9395446777344,22.576263427734375,,,,,,23.38508,21.230928,19.675802,18.738052,18.181986,,,,,,,,true,,3,5,true,,false +164,APOGEE,,,5447475285453629568,,,156.2827911376953,-34.25658417,-8.509782,-0.83389175,2016,1.3120991,,,,,,,,15.0399685,14.113494,14.662061,,,,true,,3,5,true,,false +165,APOGEE,63050396571191797,,,801897472,,64.29582977294922,46.18185806274414,,,,,,,,,,,,,,,14.082,,,true,,3,5,true,,false +166,BOSS,,,,,,251.24901026995926,20.761072247801053,,,,,,,,,,,,,,12.419063,,,,true,,3,5,true,,false +167,APOGEE,,,,,,158.69978100147583,28.011140166951037,,,,,,11.282053,11.282053,11.282053,11.282053,11.282053,,,,,,,,true,,3,5,true,,false +168,BOSS,,,,,,208.5288086,56.69211196899414,,,,,,22.887766,22.028564,20.931177,20.35667,19.90541,,,,,,,,true,,3,5,true,,false +169,BOSS,,,,,,294.1585777,30.838738743737466,,,,,,19.05826,19.05826,19.05826,19.05826,19.05826,,,,,,,,true,,3,5,true,,false +170,APOGEE,,,,,,55.19068908691406,49.30854034423828,,,,,,20.112598,18.448915,17.632612,17.253395,17.066784,,,,,,,,true,,3,5,true,,false +171,BOSS,,,,,,208.2292798918539,-45.10495813,,,,,,,,,,,,,,19.879662,,,,true,,3,5,true,,false +172,APOGEE,,,4472814268166346496,,,269.6982422,4.5690732,0.8074396,-5.3014293,2016,0.1342601,,,,,,,,15.217981,13.774918,14.558535,,,,true,,3,5,true,,false +173,BOSS,,,5984982780373103232,,,241.364502,-46.14024734,-3.2645855,-4.710714,2016,0.55543506,,,,,,,,15.941187,14.714792,15.411075,,,,true,,3,5,true,,false +174,BOSS,,,,,,193.87478637695312,13.071717262268066,,,,,,24.209127,23.345558,21.67536,21.011944,20.569208,,,,,,,,true,,3,5,true,,false +175,BOSS,,,,,,82.84574890136719,2.6591269969940186,,,,,,24.490797,24.329973,22.519716,21.054262,20.071192,,,,,,,,true,,3,5,true,,false +176,BOSS,,,,,,258.9907531738281,-30.33228111,-3.9985204,-9.540714,2016,0.89164203,,,,,,,,,,15.450352,,,,true,,3,5,true,,false +177,BOSS,,,2023925689559897088,,,289.7858887,25.650304794311523,12.421347,10.415708,2016,2.62943,,,,,,,,14.714386,13.548961,14.210527,,,,true,,3,5,true,,false +178,APOGEE,,,,,,168.18912667385493,30.92086427852159,,,,,,,,,,,,,,17.119446,,,,true,,3,5,true,,false +179,BOSS,,,,800904386,,94.24214935302734,36.041690826416016,,,,,,,,,,,,,,,14.591,,,true,,3,5,true,,false +180,BOSS,,,,,,294.4983825683594,-7.600120544,,,,,,24.201746,23.44475,21.78171,21.078547,20.620617,,,,,,,,true,,3,5,true,,false +181,BOSS,,,4057802126813382016,,,261.6661071777344,-32.06982422,-3.181779,-2.1856582,2016,1.9901395,,,,,,,,14.366076,13.229444,13.891513,,,,true,,3,5,true,,false +182,APOGEE,,,5844009652906745344,,,200.8880615234375,-70.40213776,-8.01176,-5.2102246,2016,0.05271804,,,,,,,,16.114222,14.795244,15.553161,,,,true,,3,5,true,,false +183,BOSS,,,,,,261.1799011230469,-38.81180573,-0.50103647,-2.0754387,2016,0.16245322,,,,,,,,,,14.955585,,,,true,,3,5,true,,false +184,BOSS,63050395054009209,,,757824287,,317.6270751953125,66.22753143310547,,,,,,,,,,,,,,,13.604,,,true,,3,5,true,,false +185,BOSS,63050396148003068,,5887450841951034240,,,226.91937255859375,-54.71531677,-2.488071,-3.678781,2016,0.6365667,,,,,,,,16.183224,14.9205065,15.634026,,,,true,,3,5,true,,false +186,BOSS,63050394922122699,,1954457445378886272,,,326.6565856933594,40.71246337890625,-1.7632521,-1.5674198,2016,0.68275404,,,,,,,,15.516054,14.383638,15.033053,,,,true,,3,5,true,,false +187,APOGEE,,,,,,243.71475219726562,8.353689193725586,,,,,,20.809269,18.614685,17.764248,17.451372,17.281826,,,,,,,,true,,3,5,true,,false +188,APOGEE,63050396529839439,113555911,6757538098559982720,,,286.82989501953125,-30.96113014,-2.8509324,-1.7290916,2016,0.041487724,,,,,,,,16.370113,14.623442,15.520707,,,,true,,3,5,true,,false +189,BOSS,,,,,,5.926082304739078,33.742694797812774,,,,,,,,,,,,,,13.502087,,,,true,,3,5,true,,false +190,APOGEE,,,,161294968,,236.55580139160156,-32.28580856,,,,,,,,,,,,,,,15.925,,,true,,3,5,true,,false +191,APOGEE,,,,,,138.98394775390625,26.898181915283203,-8.336913,-3.9110324,2016,0.68013984,,,,,,,,,,11.610072,,,,true,,3,5,true,,false +192,BOSS,,,,,,292.3936863445692,-82.87058336,,,,,,15.882666,15.882666,15.882666,15.882666,15.882666,,,,,,,,true,,3,5,true,,false +193,BOSS,63050396286834582,105638663,5967165194405248640,,,256.26776123046875,-39.74424362,0.5756708,-1.0651655,2016,0.41620448,,,,,,,,17.247837,13.611119,14.978188,,,,true,,3,5,true,,false +194,BOSS,,,,,,190.98094177246094,-10.15176678,0.94922966,-13.742431,2016,2.043193,,,,,,,,,,13.179207,,,,true,,3,5,true,,false +195,APOGEE,63050394946410938,65788188,2006594534430399872,,,339.1441650390625,56.04572677612305,8.904543,13.167531,2016,0.5812226,,,,,,,,16.422789,15.377684,15.990764,,,,true,,3,5,true,,false +196,BOSS,,,,,,189.61007690429688,34.30216598510742,,,,,,25.20778,23.033634,21.289375,20.658276,20.114435,,,,,,,,true,,3,5,true,,false +197,BOSS,,,,,,166.7301239,-50.11071708,,,,,,,,,,,,,,16.583065,,,,true,,3,5,true,,false +198,APOGEE,,,,,,324.63651171276115,76.65835282842761,,,,,,15.860367,15.860367,15.860367,15.860367,15.860367,,,,,,,,true,,3,5,true,,false +199,APOGEE,,,,,,341.74710531311894,-51.43609997,,,,,,17.86398,17.86398,17.86398,17.86398,17.86398,,,,,,,,true,,3,5,true,,false +200,BOSS,,,2004163617304059904,,,333.1196289,52.08082962036133,1.2852561,-0.30176,2016,0.36579403,,,,,,,,15.443185,14.5720625,15.096612,,,,true,,3,5,true,,false +201,APOGEE,,,,,,332.74690208160763,26.06552149320406,,,,,,,,,,,,,,13.253478,,,,true,,3,5,true,,false +202,APOGEE,,,,,,52.104434967041016,-6.528459549,,,,,,24.822882,23.89836,24.840467,24.233374,23.311459,,,,,,,,true,,3,5,true,,false +203,BOSS,,,,,,76.74251095825286,26.50233146903051,,,,,,18.069836,18.069836,18.069836,18.069836,18.069836,,,,,,,,true,,3,5,true,,false +204,BOSS,,,1496888912606063104,,,208.09271240234375,38.84844970703125,1.3851037,-8.001816,2016,1.068554,,,,,,,,14.8604555,13.967966,14.495973,,,,true,,3,5,true,,false +205,BOSS,,,,,,84.16385168502775,-13.44468253,,,,,,,,,,,,,,14.463943,,,,true,,3,5,true,,false +206,BOSS,,,21729755674531712,,,40.287235260009766,9.58453083,16.563494,-9.90541,2016,1.6310456,,,,,,,,15.053781,13.881147,14.547879,,,,true,,3,5,true,,false +207,APOGEE,,,,,,293.7564221811903,-9.162181507,,,,,,15.046597,15.046597,15.046597,15.046597,15.046597,,,,,,,,true,,3,5,true,,false +208,BOSS,,,,,,290.9150532810235,-39.56686517,,,,,,,,,,,,,,11.556087,,,,true,,3,5,true,,false +209,BOSS,,,,,,284.5955505371094,11.410357475280762,3.617569,-3.642101,2016,1.8233423,,,,,,,,,,15.330822,,,,true,,3,5,true,,false +210,BOSS,,,,,,262.3737793,31.639211654663086,,,,,,23.608046,25.114317,24.501036,24.647106,20.60317,,,,,,,,true,,3,5,true,,false +211,APOGEE,,,,,,113.01869201660156,28.357545852661133,,,,,,24.997692,23.011667,22.536375,22.610422,23.476704,,,,,,,,true,,3,5,true,,false +212,BOSS,,,,,,196.5323486328125,62.50304031,,,,,,22.68929,23.519281,22.371004,21.82737,21.125847,,,,,,,,true,,3,5,true,,false +213,BOSS,,,,,,176.4287567138672,4.783514976501465,,,,,,22.978958,23.252066,24.233232,23.15292,22.470022,,,,,,,,true,,3,5,true,,false +214,BOSS,,,,,,278.4013366699219,-18.81860924,2.1777713,-2.770039,2016,1.9763951,,,,,,,,,,15.284637,,,,true,,3,5,true,,false +215,BOSS,,,,,,62.69222640991211,44.075008392333984,-1.1885136,-1.2036417,2016,0.36271265,,,,,,,,,,15.648644,,,,true,,3,5,true,,false +216,BOSS,,,,,,79.19980681370927,73.22619696856933,,,,,,,,,,,,,,14.983305,,,,true,,3,5,true,,false +217,APOGEE,,,5391354287828213504,,,160.44200134277344,-42.35755539,-9.177196,6.5275445,2016,0.37144372,,,,,,,,15.648958,14.5100355,15.159582,,,,true,,3,5,true,,false +218,BOSS,,,,608693941,,228.3907012939453,-53.26818085,,,,,,,,,,,,,,,15.121,,,true,,3,5,true,,false +219,APOGEE,,,4045209901225874944,,,276.3653259277344,-32.32202911,-2.4883888,-2.7885587,2016,0.11899914,,,,,,,,15.775698,14.264627,15.090936,,,,true,,3,5,true,,false +220,BOSS,,,,,,287.1069641113281,48.14677810668945,6.4676185,-3.543613,2016,1.7724363,,,,,,,,,,14.426527,,,,true,,3,5,true,,false +221,APOGEE,,,,,,337.6748352050781,22.750871658325195,,,,,,22.271988,25.241003,25.384706,24.261948,22.888098,,,,,,,,true,,3,5,true,,false +222,APOGEE,,,5936905088302842368,,,251.52174377441406,-52.06861877,-3.6866062,-10.862063,2016,1.3344207,,,,,,,,11.116587,9.74369,10.499817,,,,true,,3,5,true,,false +223,BOSS,,,5358012491083432960,,,156.39268493652344,-50.58660507,-5.565849,8.165027,2016,0.8573523,,,,,,,,15.883036,14.8255,15.439669,,,,true,,3,5,true,,false +224,BOSS,,,,,,10.849310431738326,17.507725466275957,,,,,,11.822677,11.822677,11.822677,11.822677,11.822677,,,,,,,,true,,3,5,true,,false +225,BOSS,,,,,,268.2889404296875,23.54013442993164,5.2176805,7.7810826,2016,0.9422425,,,,,,,,,,15.434048,,,,true,,3,5,true,,false +226,BOSS,,,1800450604019178752,,,324.7470703,27.07453727722168,2.8251352,0.106735095,2016,0.87769127,,,,,,,,15.935665,14.940728,15.533101,,,,true,,3,5,true,,false +227,APOGEE,63050394911985003,64398328,1872812453553619072,,,313.376709,38.93260574,-1.9979454,-1.9001839,2016,0.29784358,,,,,,,,15.093804,13.285848,14.409677,,,,true,,3,5,true,,false +228,BOSS,63050396368506471,,6027923279277168640,,,252.3264923095703,-30.91301537,-0.47721133,-2.7165391,2016,0.14906284,,,,,,,,16.506794,14.617592,15.571203,,,,true,,3,5,true,,false +229,APOGEE,63050395922353978,,5398390784287715456,,,173.8163604736328,-35.18009949,-8.203925,2.146045,2016,1.0643536,,,,,,,,16.111086,15.023605,15.647184,,,,true,,3,5,true,,false +230,APOGEE,,,,,,62.45156145554627,-81.97347349,,,,,,17.740475,17.740475,17.740475,17.740475,17.740475,,,,,,,,true,,3,5,true,,false +231,BOSS,,,,,,22.743648529052734,51.266571044921875,,,,,,23.526623,21.051273,19.441263,18.791553,18.241438,,,,,,,,true,,3,5,true,,false +232,BOSS,,,,,,103.47381591796875,2.426119089126587,2.0629268,-4.952248,2016,0.9015486,,,,,,,,,,11.830829,,,,true,,3,5,true,,false +233,APOGEE,,,4068417842934354432,,,265.8702697753906,-23.64971924,-0.622478,-0.5309592,2016,0.3277213,,,,,,,,15.496595,13.230395,14.306583,,,,true,,3,5,true,,false +234,BOSS,,,,,,260.7912110731504,-69.09527089,,,,,,,,,,,,,,12.68287,,,,true,,3,5,true,,false +235,APOGEE,,,,476368393,,224.1922607421875,-52.68593979,,,,,,,,,,,,,,,15.393,,,true,,3,5,true,,false +236,BOSS,,,,,,306.4517222679042,-68.98874701,,,,,,17.970772,17.970772,17.970772,17.970772,17.970772,,,,,,,,true,,3,5,true,,false +237,APOGEE,63050396434380401,,6096032389584133504,,,211.62118530273438,-46.17723465,-12.430888,-5.1364303,2016,1.2661645,,,,,,,,15.6298685,14.606727,15.251596,,,,true,,3,5,true,,false +238,APOGEE,,,,,,6.043114662,-12.90087605,,,,,,24.843203,24.544159,25.352024,23.834915,20.635614,,,,,,,,true,,3,5,true,,false +239,BOSS,,,,,,353.0296325683594,66.05979156,,,,,,24.636906,25.144846,19.409851,24.33128,20.0094,,,,,,,,true,,3,5,true,,false +240,BOSS,,,4435614903577731840,,,250.29515075683594,5.708816051483154,-6.114963,2.0305336,2016,1.4258776,,,,,,,,14.518869,13.6278105,14.15838,,,,true,,3,5,true,,false +241,BOSS,,,1624737341544648064,,,245.5135955810547,59.780487060546875,5.295288,-3.5337133,2016,3.736557,,,,,,,,12.863421,11.980861,12.509692,,,,true,,3,5,true,,false +242,APOGEE,,,,,,242.25900268554688,46.28569793701172,,,,,,23.587397,23.045275,22.622324,22.627691,22.049667,,,,,,,,true,,3,5,true,,false +243,BOSS,,,,,,106.73589324951172,-46.37025452,0.6417522,-6.8648586,2016,1.0575451,,,,,,,,,,14.8115835,,,,true,,3,5,true,,false +244,APOGEE,,,,,,122.9651107788086,11.55028247833252,,,,,,22.40554,25.997234,25.13293,24.897606,22.9654,,,,,,,,true,,3,5,true,,false +245,BOSS,,,,,,318.9789123535156,12.714149475097656,,,,,,24.74784,23.363575,21.680227,20.295362,19.469025,,,,,,,,true,,3,5,true,,false +246,APOGEE,,,,,,175.4866485595703,-38.2097702,6.7345915,-15.349574,2016,8.683908,,,,,,,,,,15.511074,,,,true,,3,5,true,,false +247,APOGEE,,,,,,100.90907287597656,-68.87063599,-0.764064,-3.603482,2016,0.80584013,,,,,,,,,,15.98586,,,,true,,3,5,true,,false +248,BOSS,,,4107385565797288576,,,258.2789611816406,-29.12483788,-1.6209584,-7.324894,2016,0.08772065,,,,,,,,16.683155,14.260551,15.383914,,,,true,,3,5,true,,false +249,APOGEE,,,,,,126.48829526160355,-65.65629569,,,,,,,,,,,,,,19.788662,,,,true,,3,5,true,,false +250,BOSS,,,,,,245.93031311035156,43.83140945,,,,,,24.747637,23.495625,22.353651,21.190956,20.514248,,,,,,,,true,,3,5,true,,false +251,BOSS,,,5348776421604505472,,,172.87168884277344,-51.20564651,-4.918563,3.613761,2016,0.14817892,,,,,,,,15.28884,13.912846,14.678274,,,,true,,3,5,true,,false +252,APOGEE,,,,,,177.4503936767578,16.558692932128906,,,,,,20.845938,19.554436,18.946703,18.690798,18.581352,,,,,,,,true,,3,5,true,,false +253,APOGEE,63050394786389543,,429477801692859392,,,0.6187518239021301,61.337989807128906,-1.7693046,-2.299481,2016,0.34271026,,,,,,,,16.84633,15.060775,15.983837,,,,true,,3,5,true,,false +254,APOGEE,,,,,,224.3972168,8.635515213012695,,,,,,24.062578,21.389425,20.068743,19.395025,19.030811,,,,,,,,true,,3,5,true,,false +255,APOGEE,,,,,,57.30942891717964,76.67025877904055,,,,,,14.734452,14.734452,14.734452,14.734452,14.734452,,,,,,,,true,,3,5,true,,false +256,APOGEE,,,4486999789227958016,,,262.3189697265625,6.788151264190674,8.045208,-13.936562,2016,1.2926903,,,,,,,,16.499552,15.239317,15.941331,,,,true,,3,5,true,,false +257,APOGEE,,,,,,253.7900848388672,-34.88337708,-3.5851352,-3.582744,2016,0.25028688,,,,,,,,,,15.574355,,,,true,,3,5,true,,false +258,APOGEE,,,,,,21.139650559740314,72.63876023232206,,,,,,,,,,,,,,10.675391,,,,true,,3,5,true,,false +259,BOSS,,,3112217965076955264,,,104.21683502197266,-1.238292217,-2.6515872,2.8242805,2016,0.36784115,,,,,,,,12.873659,11.156877,12.046217,,,,true,,3,5,true,,false +260,APOGEE,,,,,,206.4253387451172,4.169458389282227,,,,,,22.84527,23.28901,22.411133,21.800308,21.518261,,,,,,,,true,,3,5,true,,false +261,APOGEE,,,,,,204.8253936767578,17.989782333374023,,,,,,23.078787,26.333214,25.19199,22.51887,22.664995,,,,,,,,true,,3,5,true,,false +262,BOSS,,,,,,173.6584014892578,39.58012771606445,,,,,,25.771442,21.916836,20.394693,19.798885,19.584654,,,,,,,,true,,3,5,true,,false +263,APOGEE,,,,,,272.01531982421875,1.0695526599884033,,,,,,23.846851,20.82615,19.711617,19.372805,19.114819,,,,,,,,true,,3,5,true,,false +264,APOGEE,,,,,,94.86540591,-26.41618993,,,,,,,,,,,,,,14.063766,,,,true,,3,5,true,,false +265,BOSS,,,,,,335.88158963792586,-72.18900065,,,,,,17.158436,17.158436,17.158436,17.158436,17.158436,,,,,,,,true,,3,5,true,,false +266,BOSS,,,,,,214.8327499060461,28.238015523680104,,,,,,16.53069,16.53069,16.53069,16.53069,16.53069,,,,,,,,true,,3,5,true,,false +267,BOSS,,,4091697424653620096,,,279.46258544921875,-20.99000931,-0.90645206,-3.9386024,2016,0.20236279,,,,,,,,15.705693,13.849323,14.791713,,,,true,,3,5,true,,false +268,APOGEE,,,,,,187.96363830566406,-58.3265686,-13.91975,0.6554736,2016,0.8078138,,,,,,,,,,15.344174,,,,true,,3,5,true,,false +269,BOSS,63050395284807041,,4056261569267138048,,,269.57135009765625,-29.85884476,3.5069675,-0.34670052,2016,-0.03125914,,,,,,,,16.890783,14.553944,15.901896,,,,true,,3,5,true,,false +270,BOSS,63050395762065514,,4537316052660289024,,,278.31866455078125,26.545969009399414,-5.0673804,-11.858378,2016,1.121656,,,,,,,,14.900728,13.96087,14.519752,,,,true,,3,5,true,,false +271,APOGEE,63050396390793034,,6039497666350778496,,,239.82540893554688,-31.5754509,-6.443315,-5.7685194,2016,0.87194496,,,,,,,,14.540613,13.154329,13.911458,,,,true,,3,5,true,,false +272,APOGEE,,,5831490063783773440,,,244.6187744140625,-59.87011337,-6.093896,-3.9982002,2016,0.29309118,,,,,,,,13.469457,11.734672,12.629369,,,,true,,3,5,true,,false +273,APOGEE,,,,,,203.5801531336464,63.29292514657524,,,,,,,,,,,,,,17.917465,,,,true,,3,5,true,,false +274,APOGEE,,,,,,171.2684392072577,10.297480704819321,,,,,,14.154331,14.154331,14.154331,14.154331,14.154331,,,,,,,,true,,3,5,true,,false +275,BOSS,,,,,,277.9467468261719,-39.49164581,0.12923425,-3.3333886,2016,0.16742904,,,,,,,,,,14.430116,,,,true,,3,5,true,,false +276,BOSS,,,,,,120.57569885253906,-44.7967186,-3.833829,5.500197,2016,0.74139214,,,,,,,,,,15.915638,,,,true,,3,5,true,,false +277,APOGEE,,,,,,304.8626533388269,-41.90018818,,,,,,,,,,,,,,15.144285,,,,true,,3,5,true,,false +278,BOSS,63050396027610459,,5823212493545253760,,,231.50494384765625,-68.65945435,-12.6663065,-4.3131213,2016,0.60134935,,,,,,,,14.816352,14.112899,14.571983,,,,true,,3,5,true,,false +279,APOGEE,,,,,,90.27867146393328,22.794226001129104,,,,,,18.705862,18.705862,18.705862,18.705862,18.705862,,,,,,,,true,,3,5,true,,false +280,BOSS,,,5386574264107635456,,,166.27969360351562,-46.18291855,-3.431316,-1.6262811,2016,0.36407766,,,,,,,,15.702174,14.866103,15.369634,,,,true,,3,5,true,,false +281,APOGEE,,,,,,61.12736450284257,16.759570603115137,,,,,,12.857866,12.857866,12.857866,12.857866,12.857866,,,,,,,,true,,3,5,true,,false +282,APOGEE,63050396557766242,115485326,161118516924130304,,,71.87994384765625,32.33192443847656,3.562251,-6.4233055,2016,0.75918716,,,,,,,,13.540638,11.615866,12.584587,,,,true,,3,5,true,,false +283,APOGEE,,,,,,113.55242156982422,-30.17360878,-0.8978819,2.403713,2016,0.1563706,,,,,,,,,,15.34702,,,,true,,3,5,true,,false +284,BOSS,,,,,,199.89642507710212,-6.480972486,,,,,,15.024271,15.024271,15.024271,15.024271,15.024271,,,,,,,,true,,3,5,true,,false +285,BOSS,,,,,,22.326122657046138,-62.46450829,,,,,,14.021726,14.021726,14.021726,14.021726,14.021726,,,,,,,,true,,3,5,true,,false +286,APOGEE,,,3382706522822637824,,,98.29799652,23.931608200073242,0.31670055,-3.0029032,2016,0.2424566,,,,,,,,14.381247,13.11786,13.825673,,,,true,,3,5,true,,false +287,APOGEE,,,,,,249.25001525878906,-8.738912582,,,,,,23.859966,24.619247,23.825565,22.858402,21.004652,,,,,,,,true,,3,5,true,,false +288,APOGEE,,,4074564280338103040,,,285.2690734863281,-24.1451664,-1.1830951,-2.0888999,2016,0.2850656,,,,,,,,14.804027,13.3257675,14.122156,,,,true,,3,5,true,,false +289,BOSS,,,,,,316.58685568350063,11.665228818436546,,,,,,15.73669,15.73669,15.73669,15.73669,15.73669,,,,,,,,true,,3,5,true,,false +290,APOGEE,,,,,,157.60336303710938,21.31033706665039,,,,,,22.89609,21.903906,21.545723,21.389353,20.904123,,,,,,,,true,,3,5,true,,false +291,BOSS,,,,,,38.057708740234375,55.54185485839844,0.45565102,-0.7535167,2016,0.2970587,,,,,,,,,,13.239313,,,,true,,3,5,true,,false +292,BOSS,,,,,,135.17893981933594,40.339019775390625,,,,,,25.279095,23.249424,24.734251,24.76783,22.532553,,,,,,,,true,,3,5,true,,false +293,APOGEE,63050396553113421,,66432565569225088,,,57.558013916015625,23.42411994934082,3.793769,-7.1988444,2016,0.50439936,,,,,,,,15.776256,14.744985,15.347315,,,,true,,3,5,true,,false +294,BOSS,,,5357801625365142144,,,158.6242676,-51.11502075,-14.50671,5.113889,2016,0.48633903,,,,,,,,16.130934,14.971136,15.630656,,,,true,,3,5,true,,false +295,APOGEE,,,,1007557219,,240.68992614746094,-49.09884644,,,,,,,,,,,,,,,15.071,,,true,,3,5,true,,false +296,APOGEE,63050396577881663,,267419374115099008,,,78.80326080322266,54.58869171142578,-1.7796593,-0.3553971,2016,0.5525906,,,,,,,,16.44462,15.047129,15.821611,,,,true,,3,5,true,,false +297,APOGEE,,,,,,272.85418701171875,-25.25635147,-0.6261248,-8.990599,2016,0.32644805,,,,,,,,,,15.679528,,,,true,,3,5,true,,false +298,APOGEE,,,,,,213.80850026124952,8.292458664944874,,,,,,,,,,,,,,14.8571615,,,,true,,3,5,true,,false +299,BOSS,,,,,,339.4684143066406,8.354248047,,,,,,26.27487,22.78128,21.248137,20.169998,19.593122,,,,,,,,true,,3,5,true,,false +300,APOGEE,,,4139691244569450752,,,257.01605224609375,-14.64428139,-2.85011,-4.782603,2016,0.44464493,,,,,,,,15.917721,14.162873,15.068505,,,,true,,3,5,true,,false +301,BOSS,,,,,,255.8694729648279,82.20284171966875,,,,,,,,,,,,,,16.654812,,,,true,,3,5,true,,false +302,BOSS,,,,,,196.2475586,-52.01388168,-10.449237,-1.8116314,2016,0.95379496,,,,,,,,,,10.566422,,,,true,,3,5,true,,false +303,APOGEE,,,,,,3.4762230928518623,-46.21451469,,,,,,,,,,,,,,16.690163,,,,true,,3,5,true,,false +304,BOSS,,,5605875534761190144,,,108.19120025634766,-31.08579445,-6.8084106,14.931234,2016,0.8932869,,,,,,,,15.754414,14.727019,15.322794,,,,true,,3,5,true,,false +305,BOSS,,,,,,322.52260058377294,-19.05090352,,,,,,18.041834,18.041834,18.041834,18.041834,18.041834,,,,,,,,true,,3,5,true,,false +306,APOGEE,63050394919427711,,1942871238520759936,,,351.13299560546875,49.39647674560547,-4.6026883,-4.6394935,2016,0.67156786,,,,,,,,14.8507,14.016653,14.521241,,,,true,,3,5,true,,false +307,BOSS,,,,,,183.86997985839844,29.93075180053711,,,,,,24.099918,24.064215,23.398298,22.21522,22.669205,,,,,,,,true,,3,5,true,,false +308,APOGEE,,,,,,19.380457904898982,47.13923132685275,,,,,,,,,,,,,,17.578691,,,,true,,3,5,true,,false +309,BOSS,,,,,,145.62500686207454,11.219255621765711,,,,,,14.065916,14.065916,14.065916,14.065916,14.065916,,,,,,,,true,,3,5,true,,false +310,APOGEE,,,,,,247.46183031610875,1.507463912559814,,,,,,16.759418,16.759418,16.759418,16.759418,16.759418,,,,,,,,true,,3,5,true,,false +311,APOGEE,,,,,,112.68246459960938,14.82758617401123,-1.6418208,-91.23109,2016,1.545224,,,,,,,,,,15.270176,,,,true,,3,5,true,,false +312,APOGEE,,,,,,285.49566650390625,-0.517584503,1.6087799,3.65031,2016,3.5654547,,,,,,,,,,14.814065,,,,true,,3,5,true,,false +313,BOSS,,,,,,271.23760986328125,-26.97800446,-0.88377047,-4.5355177,2016,0.46722072,,,,,,,,,,13.39879,,,,true,,3,5,true,,false +314,APOGEE,,,,,,141.81892228010466,-34.61016139,,,,,,,,,,,,,,14.383531,,,,true,,3,5,true,,false +315,APOGEE,,,5241579947808617344,,,160.64385986328125,-62.70717239,-8.599338,4.63491,2016,0.26211706,,,,,,,,15.229936,13.450268,14.3621435,,,,true,,3,5,true,,false +316,APOGEE,63050395718892336,,4468248168182707072,,,271.5931091308594,1.9585689306259155,-0.34786654,-2.877038,2016,0.71554106,,,,,,,,15.290248,14.227938,14.845512,,,,true,,3,5,true,,false +317,APOGEE,,,,,,47.48423385620117,6.409243583679199,,,,,,23.183796,22.001513,20.553835,19.506739,18.94921,,,,,,,,true,,3,5,true,,false +318,APOGEE,63050396081318453,,5854687972384947456,,,180.82119750976562,-72.0651474,-5.639454,0.9690935,2016,0.19212803,,,,,,,,15.933684,14.309703,15.168872,,,,true,,3,5,true,,false +319,BOSS,,,,,,74.95577054,17.256115551410943,,,,,,,,,,,,,,10.958212,,,,true,,3,5,true,,false +320,APOGEE,63050395989740420,,5655001714283749632,,,137.19056701660156,-22.23643494,-14.377401,-4.266612,2016,0.572578,,,,,,,,16.027575,15.160055,15.681556,,,,true,,3,5,true,,false +321,BOSS,,,1239205924410302080,,,218.91331481933594,19.159832000732422,-2.6336377,3.7526374,2016,1.3347762,,,,,,,,12.492836,11.419887,12.039087,,,,true,,3,5,true,,false +322,APOGEE,,,,,,274.3512862810719,-56.3217297,,,,,,,,,,,,,,13.862485,,,,true,,3,5,true,,false +323,BOSS,,,,,,90.62757873535156,62.50789260864258,1.4373567,-1.1645263,2016,0.3864974,,,,,,,,,,15.013068,,,,true,,3,5,true,,false +324,APOGEE,,,,,,73.38604045221513,-30.93134116,,,,,,,,,,,,,,12.39384,,,,true,,3,5,true,,false +325,APOGEE,,,,,,355.7539752511332,-21.33350391,,,,,,,,,,,,,,13.481429,,,,true,,3,5,true,,false +326,APOGEE,,,6033102666231541504,,,253.2592010498047,-27.76338959,0.56902146,-4.588193,2016,0.60549676,,,,,,,,16.210457,15.170535,15.795382,,,,true,,3,5,true,,false +327,BOSS,,,,,,276.81802926511074,69.80295364975748,,,,,,,,,,,,,,16.821177,,,,true,,3,5,true,,false +328,APOGEE,,,,,,248.33183633819283,8.383162110762996,,,,,,12.19843,12.19843,12.19843,12.19843,12.19843,,,,,,,,true,,3,5,true,,false +329,APOGEE,,,4154275952778659328,,,276.244873,-10.43354034,2.2091186,0.10405406,2016,0.47819528,,,,,,,,16.592756,14.540666,15.554633,,,,true,,3,5,true,,false +330,BOSS,63050396461987817,109326758,6282446580248808320,,,222.6241912841797,-17.37419891,-4.3076997,-8.831916,2016,0.2692711,,,,,,,,15.690981,15.18588,15.50574,,,,true,,3,5,true,,false +331,APOGEE,,,,,,238.09207153320312,51.558677673339844,,,,,,22.909134,23.483892,22.305105,21.769423,21.167656,,,,,,,,true,,3,5,true,,false +332,APOGEE,,,3111886088663907968,,,110.14352416992188,1.6963738203048706,-2.5187104,-0.65135366,2016,0.42197448,,,,,,,,15.747803,14.896778,15.411277,,,,true,,3,5,true,,false +333,BOSS,,,,,,256.8235986361501,-5.898099881,,,,,,19.721457,19.721457,19.721457,19.721457,19.721457,,,,,,,,true,,3,5,true,,false +334,BOSS,,,,,,213.62586922970323,-7.700841416,,,,,,,,,,,,,,19.177898,,,,true,,3,5,true,,false +335,BOSS,,,,,,326.4298070617809,19.41967727692564,,,,,,,,,,,,,,11.758517,,,,true,,3,5,true,,false +336,BOSS,,,,,,345.6827392578125,-3.590945005,,,,,,23.93318,22.734827,22.170446,21.90203,22.647518,,,,,,,,true,,3,5,true,,false +337,APOGEE,,,,,,302.76239013671875,30.619321823120117,,,,,,24.858387,22.670965,20.588276,19.41119,18.581202,,,,,,,,true,,3,5,true,,false +338,APOGEE,,,,,,146.46792602539062,-62.81245041,-3.5063326,3.3436139,2016,0.51065737,,,,,,,,,,15.092734,,,,true,,3,5,true,,false +339,APOGEE,,,4750259156799646720,,,46.44874572753906,-48.80378342,8.085212,-0.61807835,2016,0.30553108,,,,,,,,15.833857,14.759364,15.37914,,,,true,,3,5,true,,false +340,APOGEE,,,,,,102.01593780517578,27.853824615478516,-0.5623944,-6.4581013,2016,0.7809886,,,,,,,,,,14.114419,,,,true,,3,5,true,,false +341,APOGEE,,,3434065398149961344,,,98.07112884521484,27.65948486328125,-1.071301,-18.329903,2016,1.9256781,,,,,,,,16.597858,15.062904,15.881707,,,,true,,3,5,true,,false +342,BOSS,,,87920974142002560,,,39.14982604980469,20.30297852,10.929401,-8.358176,2016,0.40420455,,,,,,,,15.646815,14.491757,15.156663,,,,true,,3,5,true,,false +343,APOGEE,,,,,,323.35308837890625,-16.61554337,12.100038,-16.353989,2016,4.095662,,,,,,,,,,11.628042,,,,true,,3,5,true,,false +344,APOGEE,,,,,,9.392899387534705,-36.27319274,,,,,,,,,,,,,,19.840899,,,,true,,3,5,true,,false +345,APOGEE,,,,,,50.76715971859668,47.46348609071529,,,,,,,,,,,,,,18.508158,,,,true,,3,5,true,,false +346,APOGEE,,,,,,190.7328338623047,-0.670413971,,,,,,22.999598,22.885208,22.001408,21.61313,21.216791,,,,,,,,true,,3,5,true,,false +347,BOSS,,,5588349731732350464,,,113.72810363769531,-34.87350464,-1.5261728,7.6164412,2016,0.54156244,,,,,,,,15.914534,14.893491,15.4905205,,,,true,,3,5,true,,false +348,APOGEE,,,,,,121.5251235961914,-30.15754509,-2.1666052,2.1710746,2016,0.030252786,,,,,,,,,,14.360721,,,,true,,3,5,true,,false +349,BOSS,63050395934466948,,5429960237024983552,,,141.31747436523438,-39.04939651,-4.022697,2.263812,2016,0.7283598,,,,,,,,15.934863,14.969467,15.539667,,,,true,,3,5,true,,false +350,BOSS,,,,,,171.05276489257812,-11.39757442,,,,,,24.874617,21.794987,20.342665,19.78375,19.4361,,,,,,,,true,,3,5,true,,false +351,BOSS,63050396000673146,,5719382655583805312,,,116.82365417480469,-15.74708843,-4.072693,2.9307632,2016,0.32057515,,,,,,,,16.029339,15.115657,15.65647,,,,true,,3,5,true,,false +352,BOSS,,,,,,335.0503845214844,13.342512130737305,,,,,,23.537666,24.995821,24.00141,21.61261,22.503119,,,,,,,,true,,3,5,true,,false +353,APOGEE,,,2004898640825905792,,,335.81903076171875,54.349918365478516,-2.6362,-5.107851,2016,0.3678613,,,,,,,,13.794047,12.36924,13.145841,,,,true,,3,5,true,,false +354,BOSS,,,4504417118605096192,,,283.35894775390625,12.26593017578125,1.811513,-7.4086685,2016,1.1857543,,,,,,,,16.198013,14.841307,15.585546,,,,true,,3,5,true,,false +355,APOGEE,,,4185047503669742080,,,287.9762268066406,-15.192276,-3.0487027,-4.5651093,2016,0.20880888,,,,,,,,14.209098,12.7589035,13.547967,,,,true,,3,5,true,,false +356,BOSS,,,,952138551,,197.7841797,-62.75466537,,,,,,,,,,,,,,,12.357,,,true,,3,5,true,,false +357,BOSS,,,,,,121.26750946044922,33.70030212402344,,,,,,23.129293,23.103611,22.281048,21.59885,20.984114,,,,,,,,true,,3,5,true,,false +358,BOSS,,,,,,84.95551960119067,72.80202679,,,,,,11.60984,11.60984,11.60984,11.60984,11.60984,,,,,,,,true,,3,5,true,,false +359,APOGEE,,,,,,153.48228454589844,-61.74525452,-8.206086,2.9888012,2016,0.8264185,,,,,,,,,,14.561772,,,,true,,3,5,true,,false +360,BOSS,,,,,,260.8817263752377,-21.96616187,,,,,,19.147873,19.147873,19.147873,19.147873,19.147873,,,,,,,,true,,3,5,true,,false +361,APOGEE,,,,1053774256,,283.5673828,25.661691665649414,,,,,,,,,,,,,,,13.813,,,true,,3,5,true,,false +362,BOSS,,,,,,273.0733771786869,72.17176097035221,,,,,,,,,,,,,,11.351375,,,,true,,3,5,true,,false +363,APOGEE,63050396248065399,105192989,5951738286052701440,,,262.5308837890625,-46.59006882,0.97500414,1.7774001,2016,0.3895575,,,,,,,,14.3129425,12.897282,13.668084,,,,true,,3,5,true,,false +364,BOSS,,,5696424646636987008,,,124.72760009765625,-24.18893242,-4.326405,3.6894386,2016,0.80112106,,,,,,,,13.59751,12.965911,13.356296,,,,true,,3,5,true,,false +365,APOGEE,,,,,,108.49375915527344,38.515010833740234,,,,,,22.571835,21.996529,21.036383,20.461472,20.165129,,,,,,,,true,,3,5,true,,false +366,BOSS,,,,,,61.77870559692383,-0.922587812,,,,,,25.424257,23.467241,21.770433,20.383831,19.514921,,,,,,,,true,,3,5,true,,false +367,BOSS,63050396131516790,,5877236688205298304,,,220.9179688,-62.85441208,-4.2525477,-2.545133,2016,0.24593624,,,,,,,,17.398678,14.781101,15.944885,,,,true,,3,5,true,,false +368,APOGEE,,,,,,90.55750274658203,31.995189666748047,,,,,,23.384329,21.148413,19.771376,19.183846,18.811361,,,,,,,,true,,3,5,true,,false +369,APOGEE,63050395063628541,,2368658181524061312,,,5.524478912353516,-15.77119064,10.1245365,-6.5783367,2016,1.8334643,,,,,,,,16.247599,14.850008,15.612547,,,,true,,3,5,true,,false +370,APOGEE,,,,,,111.5455551147461,44.194374084472656,-0.3043992,-7.6063266,2016,0.70804614,,,,,,,,,,15.6847925,,,,true,,3,5,true,,false +371,BOSS,,,,,,191.8635292788548,-72.68997322,,,,,,11.783735,11.783735,11.783735,11.783735,11.783735,,,,,,,,true,,3,5,true,,false +372,BOSS,,,,590147288,,241.69764709472656,-43.74672699,,,,,,,,,,,,,,,15.449,,,true,,3,5,true,,false +373,APOGEE,,,,,,23.82105433,58.76926130218331,,,,,,,,,,,,,,19.468203,,,,true,,3,5,true,,false +374,BOSS,,,,,,248.08383178710938,-8.898121834,-1.4435717,0.10919098,2016,3.3272586,,,,,,,,,,10.979209,,,,true,,3,5,true,,false +375,APOGEE,,,,,,270.3764953613281,-1.618571401,-3.6191587,1.370966,2016,0.30749905,,,,,,,,,,14.463103,,,,true,,3,5,true,,false +376,APOGEE,,,1963349608231960192,,,333.2350158691406,46.60401153564453,-4.33009,-3.0242238,2016,0.17279005,,,,,,,,16.562141,15.204494,15.955939,,,,true,,3,5,true,,false +377,BOSS,,,,,,187.30799748986072,-59.38070185,,,,,,,,,,,,,,18.820301,,,,true,,3,5,true,,false +378,APOGEE,,,,,,209.2765350341797,-9.837945938,,,,,,22.015062,22.985518,22.039286,21.592236,20.787157,,,,,,,,true,,3,5,true,,false +379,APOGEE,,,,979186291,,63.508148193359375,64.17413330078125,,,,,,,,,,,,,,,16.351,,,true,,3,5,true,,false +380,APOGEE,,,3317257028026509696,,,91.8503418,3.4736931324005127,0.33583894,0.6456253,2016,0.41969883,,,,,,,,15.492894,14.216338,14.935561,,,,true,,3,5,true,,false +381,APOGEE,,,,,,245.28451538085938,-50.05701065,2.355074,-4.9659495,2016,0.52695024,,,,,,,,,,15.894541,,,,true,,3,5,true,,false +382,BOSS,,,,,,289.5540809755508,-80.01018891,,,,,,,,,,,,,,12.655298,,,,true,,3,5,true,,false +383,BOSS,,,,,,133.83770751953125,-49.40533066,-3.7913196,4.2820964,2016,1.4607426,,,,,,,,,,14.951678,,,,true,,3,5,true,,false +384,BOSS,,,,,,46.480029730051164,58.49371794832203,,,,,,,,,,,,,,16.219131,,,,true,,3,5,true,,false +385,BOSS,,,,,,283.50431268495385,9.737931008,,,,,,,,,,,,,,14.38017,,,,true,,3,5,true,,false +386,BOSS,,,,,,79.75766754,-65.45455933,1.4873829,0.2675279,2016,-0.057196513,,,,,,,,,,15.990143,,,,true,,3,5,true,,false +387,APOGEE,,,,,,165.5263193829449,-70.38366479,,,,,,10.521661,10.521661,10.521661,10.521661,10.521661,,,,,,,,true,,3,5,true,,false +388,APOGEE,,,4044208864624592384,,,270.317627,-30.36800575,1.7311352,1.8624274,2016,0.80753875,,,,,,,,14.683975,13.698873,14.290009,,,,true,,3,5,true,,false +389,BOSS,,,,,,263.37799072265625,-32.92294312,-0.17990057,-2.0229042,2016,0.29229972,,,,,,,,,,15.897639,,,,true,,3,5,true,,false +390,APOGEE,,,,,,280.35158560734106,-33.54919031,,,,,,,,,,,,,,14.901437,,,,true,,3,5,true,,false +391,APOGEE,,,,,,102.32522205599136,46.655322901522396,,,,,,10.366301,10.366301,10.366301,10.366301,10.366301,,,,,,,,true,,3,5,true,,false +392,APOGEE,,,4050114238496889856,,,271.9659118652344,-29.80384064,-1.525468,-6.0036526,2016,0.04538482,,,,,,,,16.197578,12.906226,14.241316,,,,true,,3,5,true,,false +393,BOSS,,,1809053350497275136,,,304.5271301269531,16.62353516,-5.4788117,-3.6995006,2016,0.33318242,,,,,,,,12.273199,10.755296,11.567069,,,,true,,3,5,true,,false +394,APOGEE,,,,,,41.114920133861105,-67.37261514,,,,,,11.319076,11.319076,11.319076,11.319076,11.319076,,,,,,,,true,,3,5,true,,false +395,BOSS,,,,,,49.662322717165715,28.042686756034655,,,,,,,,,,,,,,17.074808,,,,true,,3,5,true,,false +396,APOGEE,,,,,,93.63078165858886,-78.66112355,,,,,,,,,,,,,,15.051751,,,,true,,3,5,true,,false +397,BOSS,,,3032874633341177856,,,110.53865051269531,-12.84098911,-0.74049854,-0.52692276,2016,0.24223706,,,,,,,,15.308669,14.699602,15.081545,,,,true,,3,5,true,,false +398,BOSS,63050395593594802,,4237037468610852608,,,300.2938232421875,0.44119417667388916,-6.2919707,-0.69298756,2016,0.87065995,,,,,,,,14.954726,13.905159,14.51665,,,,true,,3,5,true,,false +399,BOSS,,,,,,247.80653381347656,14.629353523254395,,,,,,24.920174,23.141794,23.939354,23.853264,23.270372,,,,,,,,true,,3,5,true,,false +400,BOSS,,,6031635780265645312,,,250.08680725097656,-30.00025177,-3.3214576,-1.9272777,2016,0.12450659,,,,,,,,16.053246,14.49891,15.333137,,,,true,,3,5,true,,false +401,APOGEE,,,5341773906948329472,,,176.66346740722656,-58.17378616,-7.359181,1.3160751,2016,0.45009926,,,,,,,,13.352261,12.9249525,13.207072,,,,true,,3,5,true,,false +402,BOSS,,,5919154606862669568,,,263.34576416015625,-57.64451599,1.8092415,3.6454601,2016,0.87961286,,,,,,,,13.992725,13.151111,13.656467,,,,true,,3,5,true,,false +403,APOGEE,,,1135773422478118272,,,119.33052825927734,75.04370880126953,-11.077475,-8.933944,2016,1.3462143,,,,,,,,12.1649685,11.068497,11.69883,,,,true,,3,5,true,,false +404,BOSS,,,,,,280.6139325018585,31.106128434122198,,,,,,17.224066,17.224066,17.224066,17.224066,17.224066,,,,,,,,true,,3,5,true,,false +405,BOSS,,,,,,318.01631950431766,-44.41174609,,,,,,14.057388,14.057388,14.057388,14.057388,14.057388,,,,,,,,true,,3,5,true,,false +406,APOGEE,,,,,,334.1224771849238,-86.78006322,,,,,,,,,,,,,,19.66509,,,,true,,3,5,true,,false +407,APOGEE,63050394857474244,,1748239980839482368,,,311.4403991699219,7.676003456115723,-0.4342905,-3.5963159,2016,0.30318138,,,,,,,,14.757024,13.442669,14.169228,,,,true,,3,5,true,,false +408,BOSS,,,,,,328.01648077080637,-38.17142952,,,,,,10.654339,10.654339,10.654339,10.654339,10.654339,,,,,,,,true,,3,5,true,,false +409,BOSS,,,5952530041868174208,,,262.58013916015625,-44.4292717,-0.4406635,0.26955724,2016,0.44494462,,,,,,,,15.605582,14.650015,15.21535,,,,true,,3,5,true,,false +410,APOGEE,63050395814002142,,5196699532383501568,,,135.7180176,-80.30479431,-6.703588,5.624849,2016,0.5352583,,,,,,,,16.41963,15.329366,15.956409,,,,true,,3,5,true,,false +411,BOSS,,,,,,5.161852605344204,89.7474087,,,,,,,,,,,,,,16.24896,,,,true,,3,5,true,,false +412,APOGEE,,,,,,22.670887726346265,-71.37607109,,,,,,17.439081,17.439081,17.439081,17.439081,17.439081,,,,,,,,true,,3,5,true,,false +413,BOSS,,,,,,112.32024383544922,23.338708877563477,,,,,,22.908152,21.232225,20.762075,20.587696,20.449867,,,,,,,,true,,3,5,true,,false +414,BOSS,,,,,,126.7456419362615,-74.30921787,,,,,,,,,,,,,,15.827661,,,,true,,3,5,true,,false +415,BOSS,,,,,,243.72622377971794,85.18336367416228,,,,,,,,,,,,,,19.322287,,,,true,,3,5,true,,false +416,APOGEE,,,,,,130.1280975341797,-47.62461853,-3.6169267,3.7727883,2016,0.10810649,,,,,,,,,,15.474914,,,,true,,3,5,true,,false +417,APOGEE,,,,,,82.90458679199219,-8.463197708,0.25507995,-3.3431995,2016,0.6063415,,,,,,,,,,15.670346,,,,true,,3,5,true,,false +418,APOGEE,,,,,,349.64537819276956,-53.29420002,,,,,,10.789656,10.789656,10.789656,10.789656,10.789656,,,,,,,,true,,3,5,true,,false +419,APOGEE,,,5337425269747357184,,,169.02552795410156,-61.17183304,-5.1563363,1.9308856,2016,0.08651072,,,,,,,,18.50918,12.54399,14.148178,,,,true,,3,5,true,,false +420,BOSS,,,,,,101.31139609582473,41.37964235414148,,,,,,,,,,,,,,12.144341,,,,true,,3,5,true,,false +421,APOGEE,63050394807636064,,518059303144735616,,,30.631330490112305,64.33978271484375,-0.67285967,-0.108683795,2016,0.20724578,,,,,,,,16.389925,14.292176,15.315882,,,,true,,3,5,true,,false +422,BOSS,,,,,,146.8807729847386,33.72318948801188,,,,,,,,,,,,,,14.013764,,,,true,,3,5,true,,false +423,BOSS,,,,,,47.25010169901816,54.94170596770289,,,,,,15.370076,15.370076,15.370076,15.370076,15.370076,,,,,,,,true,,3,5,true,,false +424,BOSS,,,5256590171300645760,,,150.5889129638672,-60.50811768,-3.420351,0.17310613,2016,0.21370761,,,,,,,,15.034916,13.5649395,14.361195,,,,true,,3,5,true,,false +425,APOGEE,,,,,,242.9103822496102,-33.30078308,,,,,,,,,,,,,,17.498768,,,,true,,3,5,true,,false +426,APOGEE,,,,,,342.2573547363281,64.55258178710938,,,,,,23.562025,24.600319,23.126251,20.955397,19.71036,,,,,,,,true,,3,5,true,,false +427,BOSS,,,,,,203.51564025878906,-55.33155441,-22.983206,3.4202046,2016,1.0892464,,,,,,,,,,15.545646,,,,true,,3,5,true,,false +428,BOSS,,,,,,115.77200317382812,20.621469497680664,,,,,,23.542658,25.793892,24.333727,22.292213,20.41367,,,,,,,,true,,3,5,true,,false +429,APOGEE,,,,,,276.9360537933442,-84.6283365,,,,,,,,,,,,,,15.108389,,,,true,,3,5,true,,false +430,APOGEE,,,5608731275693338496,,,104.19329071044922,-29.22268105,-0.1214479,4.6623945,2016,0.673103,,,,,,,,15.600853,14.822427,15.292921,,,,true,,3,5,true,,false +431,BOSS,,,,,,108.37801361083984,-14.83190727,,,,,,20.998796,19.219343,18.472977,18.11028,17.932262,,,,,,,,true,,3,5,true,,false +432,BOSS,63050395852165967,,5270598258642595840,,,120.9011001586914,-69.05821228,-4.111269,7.313748,2016,0.6337655,,,,,,,,14.498236,13.797024,14.226707,,,,true,,3,5,true,,false +433,BOSS,,,,,,152.30859465159332,47.63121814216865,,,,,,19.303774,19.303774,19.303774,19.303774,19.303774,,,,,,,,true,,3,5,true,,false +434,BOSS,,,,,,230.21185302734375,52.97753906,,,,,,23.046698,23.68321,22.461466,22.431992,21.790535,,,,,,,,true,,3,5,true,,false +435,APOGEE,,,,,,4.450130957976879,79.64879404627422,,,,,,11.893364,11.893364,11.893364,11.893364,11.893364,,,,,,,,true,,3,5,true,,false +436,APOGEE,,,,,,356.83651722032585,9.778099434474157,,,,,,16.719353,16.719353,16.719353,16.719353,16.719353,,,,,,,,true,,3,5,true,,false +437,APOGEE,,,,,,301.5992126464844,8.575030326843262,-3.6165621,-9.068182,2016,0.4690419,,,,,,,,,,15.44834,,,,true,,3,5,true,,false +438,APOGEE,,,,633896357,,270.25018310546875,-27.82985687,,,,,,,,,,,,,,,13.059,,,true,,3,5,true,,false +439,APOGEE,,,5528162155991606784,,,126.66361999511719,-38.92765045,-7.7388654,-5.475267,2016,2.1901166,,,,,,,,15.073684,13.92172,14.576618,,,,true,,3,5,true,,false +440,BOSS,63050395385605993,,4090856671839859584,,,274.4754333496094,-21.55037689,-1.5635316,-4.0271473,2016,0.2499878,,,,,,,,16.321796,14.212082,15.239828,,,,true,,3,5,true,,false +441,BOSS,,,,,,285.6783142089844,16.013452529907227,-2.26164,-4.3229446,2016,0.18660606,,,,,,,,,,14.890517,,,,true,,3,5,true,,false +442,APOGEE,,,3808919247410481792,,,164.5400848388672,3.554823398590088,-11.891517,-3.0602934,2016,0.5013773,,,,,,,,16.306662,15.515771,15.996194,,,,true,,3,5,true,,false +443,APOGEE,63050396156212746,,5891440179379865856,,,219.89207458496094,-57.649086,-0.92216265,-2.228004,2016,0.4685509,,,,,,,,14.5904045,13.582278,14.17604,,,,true,,3,5,true,,false +444,APOGEE,,,2154545574964355968,,,280.9845275878906,58.782596588134766,-9.221912,2.1159868,2016,1.9292787,,,,,,,,15.629158,14.380419,15.075761,,,,true,,3,5,true,,false +445,BOSS,,,,,,280.8703918457031,-8.460271835,-0.32922095,-0.43821537,2016,0.32482007,,,,,,,,,,14.100223,,,,true,,3,5,true,,false +446,APOGEE,,,,,,28.411960312803792,65.91616177407172,,,,,,14.718841,14.718841,14.718841,14.718841,14.718841,,,,,,,,true,,3,5,true,,false +447,APOGEE,63050395077830753,72208102,2887744458586423040,,,87.26921844482422,-35.72962189,1.2497166,1.5040443,2016,0.11513953,,,,,,,,16.17308,15.030487,15.682566,,,,true,,3,5,true,,false +448,APOGEE,,,1812734760241161600,,,312.6208801269531,17.348440170288086,-4.09583,-5.1857867,2016,0.67810434,,,,,,,,15.949253,15.083168,15.600728,,,,true,,3,5,true,,false +449,APOGEE,,,4345180175273199232,,,243.08352661132812,-9.550031662,-3.9855082,-0.1442319,2016,0.24726771,,,,,,,,15.65536,14.219376,15.001842,,,,true,,3,5,true,,false +450,APOGEE,,,4049109280488528000,,,271.6079102,-31.36966705,4.976375,-4.646424,2016,2.8843672,,,,,,,,12.049998,11.244013,11.729532,,,,true,,3,5,true,,false +451,APOGEE,,,,,,275.7818711576812,40.416418995123564,,,,,,,,,,,,,,14.990516,,,,true,,3,5,true,,false +452,BOSS,,,,,,8.067514419555664,59.453521728515625,-1.2530131,0.09434621,2016,0.24649014,,,,,,,,,,14.8595,,,,true,,3,5,true,,false +453,BOSS,63050395977971177,,,255312470,,114.31839752197266,-24.27757263,,,,,,,,,,,,,,,14.423,,,true,,3,5,true,,false +454,APOGEE,,,6120877744594519296,,,211.2926025390625,-36.27659225,6.4086876,-8.878188,2016,1.8799226,,,,,,,,15.432252,14.182332,14.881709,,,,true,,3,5,true,,false +455,BOSS,,,,,,150.4075469970703,-1.654230118,,,,,,24.207088,23.079874,22.287527,22.453857,21.653755,,,,,,,,true,,3,5,true,,false +456,APOGEE,,,,,,82.04621887207031,-6.841846466,-5.8667264,-3.8152413,2016,2.891221,,,,,,,,,,15.413581,,,,true,,3,5,true,,false +457,BOSS,,,,,,222.02175903320312,-62.10781097,-5.4309077,-2.314992,2016,0.25169802,,,,,,,,,,14.918212,,,,true,,3,5,true,,false +458,BOSS,,,,,,125.97203063964844,7.541876792907715,3.9331033,-5.804282,2016,0.70235205,,,,,,,,,,14.818821,,,,true,,3,5,true,,false +459,BOSS,,,,,,32.61758804321289,28.15776824951172,,,,,,23.969034,25.232449,23.13529,21.867043,21.238775,,,,,,,,true,,3,5,true,,false +460,APOGEE,,,,,,105.30199432373047,-17.73529434,,,,,,24.59284,22.841167,21.417097,21.036207,20.517189,,,,,,,,true,,3,5,true,,false +461,APOGEE,,,,,,273.4855957,2.6372904777526855,,,,,,19.726717,17.726105,16.885101,16.487762,16.268087,,,,,,,,true,,3,5,true,,false +462,APOGEE,,,4369167735121779584,,,265.8389587402344,-2.744055271,-4.6846805,-1.6842042,2016,1.2452623,,,,,,,,15.99917,14.560691,15.363743,,,,true,,3,5,true,,false +463,BOSS,,,5646449644132831744,,,128.32675170898438,-27.93286133,2.7899938,0.7734809,2016,0.96464086,,,,,,,,16.307806,15.219769,15.844103,,,,true,,3,5,true,,false +464,APOGEE,,,,135745522,,81.26732635498047,27.89073944091797,,,,,,,,,,,,,,,16.907,,,true,,3,5,true,,false +465,BOSS,,,3253310428186591360,,,61.66284942626953,-2.099471092,1.338665,-6.0964465,2016,1.7611884,,,,,,,,14.496506,13.482664,14.071737,,,,true,,3,5,true,,false +466,APOGEE,,,,,,171.03175354003906,-53.15166855,-9.558513,4.463718,2016,0.8028863,,,,,,,,,,14.16969,,,,true,,3,5,true,,false +467,BOSS,,,,,,56.09106633373874,9.182482839739095,,,,,,,,,,,,,,11.425054,,,,true,,3,5,true,,false +468,APOGEE,,,,,,130.0986496808401,59.87444782978534,,,,,,12.985482,12.985482,12.985482,12.985482,12.985482,,,,,,,,true,,3,5,true,,false +469,APOGEE,,,,,,331.3029479980469,48.691036224365234,-7.166265,-3.7276094,2016,1.1966796,,,,,,,,,,14.348793,,,,true,,3,5,true,,false +470,BOSS,,,,,,160.7335205078125,14.717142105102539,,,,,,24.479671,23.95208,22.359156,21.699821,21.041908,,,,,,,,true,,3,5,true,,false +471,BOSS,,,,,,337.6871032714844,46.60219955444336,1.2574878,-0.54577273,2016,0.97318727,,,,,,,,,,15.459759,,,,true,,3,5,true,,false +472,APOGEE,,,,,,162.74935913085938,-20.38305664,-6.7779098,-7.3813815,2016,0.80060923,,,,,,,,,,14.772149,,,,true,,3,5,true,,false +473,BOSS,,,,,,273.2932129,14.279129981994629,-2.0851877,-2.8273616,2016,0.4880365,,,,,,,,,,15.650797,,,,true,,3,5,true,,false +474,BOSS,,,,,,246.59141540527344,-39.72131348,-6.5919886,0.09717616,2016,0.35207003,,,,,,,,,,14.444545,,,,true,,3,5,true,,false +475,BOSS,,,5625128739280751232,,,132.2197723388672,-37.45576477,-3.1850655,2.47363,2016,0.20774052,,,,,,,,16.056936,15.213589,15.731041,,,,true,,3,5,true,,false +476,APOGEE,,,5196042677264942464,,,126.61569213867188,-82.31497192,-0.9025651,-8.914667,2016,1.9092584,,,,,,,,16.187511,14.700386,15.501316,,,,true,,3,5,true,,false +477,BOSS,,,6269205402233818496,,,214.58941650390625,-28.72555923,-13.289969,-5.135757,2016,0.32337138,,,,,,,,15.774589,14.771223,15.357773,,,,true,,3,5,true,,false +478,APOGEE,,,4095305540738015232,,,270.67266845703125,-19.15880585,-9.672557,16.821596,2016,4.130032,,,,,,,,15.036289,13.380875,14.253332,,,,true,,3,5,true,,false +479,BOSS,,,3474340165476099968,,,181.4940643310547,-28.56378174,-37.793873,-2.2311952,2016,5.057372,,,,,,,,11.462166,10.637719,11.132817,,,,true,,3,5,true,,false +480,APOGEE,,,5980812504542141184,,,239.59019470214844,-53.76139832,-3.7573721,-4.999202,2016,0.34261143,,,,,,,,16.835018,14.954118,15.91313,,,,true,,3,5,true,,false +481,BOSS,,,2137060728746353024,,,296.65374755859375,52.25337219238281,-2.2536843,-5.080354,2016,0.40150976,,,,,,,,16.081152,15.1121,15.678666,,,,true,,3,5,true,,false +482,APOGEE,,,,,,271.4241638183594,-31.44605064,-2.7251065,-4.5502086,2016,2.6519842,,,,,,,,,,15.108744,,,,true,,3,5,true,,false +483,BOSS,,,6059684493721359616,,,189.2760772705078,-59.65699768,-4.2305007,-0.017408386,2016,0.4561232,,,,,,,,16.10303,15.1405115,15.70882,,,,true,,3,5,true,,false +484,APOGEE,,,3255832707861178752,,,64.28480529785156,0.8881714940071106,10.862982,-18.745565,2016,1.952361,,,,,,,,14.984694,13.8578205,14.50046,,,,true,,3,5,true,,false +485,APOGEE,,,,,,247.8610288,48.864167346575925,,,,,,,,,,,,,,19.718094,,,,true,,3,5,true,,false +486,APOGEE,,,,,,281.61077880859375,-24.47903061,-2.4868326,-7.334808,2016,0.634817,,,,,,,,,,15.443133,,,,true,,3,5,true,,false +487,APOGEE,,,,,,329.90631103515625,43.24858093261719,,,,,,24.03646,24.721462,23.329077,21.10755,19.95097,,,,,,,,true,,3,5,true,,false +488,BOSS,,,,,,281.07513427734375,-2.932081699,-5.008492,-5.1915402,2016,2.7878942,,,,,,,,,,15.850998,,,,true,,3,5,true,,false +489,BOSS,,,5355820923901831296,,,155.5844727,-53.58008575,-6.377437,3.7743454,2016,0.120621696,,,,,,,,16.53025,14.661373,15.6086645,,,,true,,3,5,true,,false +490,APOGEE,63050396493083867,112362753,6697929037721663360,,,301.95281982421875,-34.91501617,-2.563158,-1.9183165,2016,-0.056342643,,,,,,,,16.423912,14.969755,15.784888,,,,true,,3,5,true,,false +491,APOGEE,,,,,,50.45360800623463,-50.99784875,,,,,,15.082906,15.082906,15.082906,15.082906,15.082906,,,,,,,,true,,3,5,true,,false +492,APOGEE,,,,,,180.03366088867188,14.96243667602539,,,,,,23.931654,21.009706,19.920351,19.461891,19.232035,,,,,,,,true,,3,5,true,,false +493,BOSS,,,,259323453,,135.89649963378906,-23.24621582,,,,,,,,,,,,,,,16.456,,,true,,3,5,true,,false +494,BOSS,,,,,,306.4676513671875,4.220664024353027,-2.9850934,-6.533568,2016,-0.000821911,,,,,,,,,,15.134507,,,,true,,3,5,true,,false +495,BOSS,,,,,,303.6621279360973,-42.59916291,,,,,,,,,,,,,,15.0562935,,,,true,,3,5,true,,false +496,APOGEE,,,,,,235.26895141601562,25.69287872314453,,,,,,25.651394,23.73533,22.247644,21.042074,20.37564,,,,,,,,true,,3,5,true,,false +497,BOSS,,,5305426938743815680,,,145.4871063232422,-58.97439957,-4.798502,2.9471464,2016,0.3263461,,,,,,,,14.6178,12.953673,13.825532,,,,true,,3,5,true,,false +498,BOSS,,,,,,235.0601806640625,-55.37739563,-1.9166795,-4.8623257,2016,0.86623085,,,,,,,,,,14.266909,,,,true,,3,5,true,,false +499,BOSS,,,,,,37.12534713745117,26.966304779052734,,,,,,23.728996,23.577183,22.267443,21.542755,21.414995,,,,,,,,true,,3,5,true,,false +500,APOGEE,,,5875557252897213312,,,232.67327880859375,-61.23598099,-6.7210364,-7.841287,2016,0.7076458,,,,,,,,16.300095,14.947197,15.697027,,,,true,,3,5,true,,false +501,BOSS,,,,,,24.17914266558879,67.99466481638859,,,,,,10.452161,10.452161,10.452161,10.452161,10.452161,,,,,,,,true,,3,5,true,,false +502,BOSS,63050394963590317,66114451,2024865462780447360,,,292.0614318847656,26.421756744384766,-2.3887353,-4.4299817,2016,0.18199961,,,,,,,,13.832073,11.703137,12.729208,,,,true,,3,5,true,,false +503,APOGEE,,,,,,76.15621075671531,-0.474730037,,,,,,,,,,,,,,19.988836,,,,true,,3,5,true,,false +504,BOSS,,,,,,291.0588379,-4.82526207,-3.7641177,-7.9671497,2016,0.83418494,,,,,,,,,,15.456917,,,,true,,3,5,true,,false +505,APOGEE,,,,,,286.97710611738137,-41.10995623,,,,,,,,,,,,,,14.957476,,,,true,,3,5,true,,false +506,APOGEE,,,2174795280628205056,,,326.77569580078125,55.487247467041016,-1.2431009,-4.292938,2016,1.1545998,,,,,,,,15.659126,14.077881,14.9254465,,,,true,,3,5,true,,false +507,APOGEE,,,,,,200.07322692871094,-77.70184326,-3.062209,-2.9008565,2016,0.37769482,,,,,,,,,,14.907646,,,,true,,3,5,true,,false +508,BOSS,,,,,,283.8681335449219,-5.272192001,-2.6303709,-6.0103383,2016,0.14643216,,,,,,,,,,15.875382,,,,true,,3,5,true,,false +509,BOSS,,,5835384838861017984,,,242.05807495117188,-56.98258972,-4.6217175,-3.3055344,2016,0.36575574,,,,,,,,16.160326,14.267073,15.454029,,,,true,,3,5,true,,false +510,BOSS,63050395590279731,,4221732988304434048,,,301.7219238,-3.696438789,-7.896888,-46.90195,2016,1.9875027,,,,,,,,14.425155,13.263394,13.925076,,,,true,,3,5,true,,false +511,APOGEE,,,5956993092642113792,,,267.8360595703125,-41.15690994,1.3202887,-7.785451,2016,0.18020284,,,,,,,,16.671228,15.189217,15.986541,,,,true,,3,5,true,,false +512,APOGEE,,,,,,276.75482177734375,-24.01777267,-7.1308546,-11.13923,2016,-0.040651146,,,,,,,,,,15.765028,,,,true,,3,5,true,,false +513,BOSS,,,,,,199.07489304209898,-26.45363838,,,,,,11.51871,11.51871,11.51871,11.51871,11.51871,,,,,,,,true,,3,5,true,,false +514,APOGEE,,,,,,288.9649125,-72.17450181,,,,,,,,,,,,,,12.480112,,,,true,,3,5,true,,false +515,APOGEE,,,,,,152.98635864257812,5.360319137573242,,,,,,25.155415,24.589241,22.677738,22.031914,21.347176,,,,,,,,true,,3,5,true,,false +516,BOSS,,,,,,272.7123172408438,8.922306903973308,,,,,,18.609257,18.609257,18.609257,18.609257,18.609257,,,,,,,,true,,3,5,true,,false +517,APOGEE,,,,,,13.387800216674805,33.886024475097656,,,,,,22.697067,22.513002,21.699343,21.90101,21.035086,,,,,,,,true,,3,5,true,,false +518,APOGEE,63050395379142320,83944345,4089688131503378176,,,274.8431701660156,-22.78701973,-4.088193,-4.0948114,2016,0.99501383,,,,,,,,13.030375,11.725279,12.4483385,,,,true,,3,5,true,,false +519,APOGEE,,,,,,230.93202209472656,22.289823532104492,-8.129888,-10.917553,2016,0.7477393,,,,,,,,,,15.462765,,,,true,,3,5,true,,false +520,BOSS,,,,,,326.55348731536316,-75.02917569,,,,,,,,,,,,,,18.992537,,,,true,,3,5,true,,false +521,BOSS,,,,,,290.6926574707031,36.802520751953125,,,,,,24.729181,25.24113,24.80252,21.164886,21.453245,,,,,,,,true,,3,5,true,,false +522,BOSS,,,,,,68.80485537759499,89.41294264019348,,,,,,,,,,,,,,15.863707,,,,true,,3,5,true,,false +523,BOSS,,,,,,117.70038604736328,-16.12167358,-4.9214206,0.48959145,2016,0.87472403,,,,,,,,,,14.399064,,,,true,,3,5,true,,false +524,BOSS,,,1917837626495842048,,,347.3399353027344,38.97124099731445,2.977965,5.791308,2016,0.93771327,,,,,,,,15.869839,14.81288,15.423519,,,,true,,3,5,true,,false +525,APOGEE,,,,,,241.26425548181237,-87.45372457,,,,,,,,,,,,,,16.213453,,,,true,,3,5,true,,false +526,APOGEE,,,,1186933352,,326.0679626464844,53.33169937133789,,,,,,,,,,,,,,,14.615,,,true,,3,5,true,,false +527,BOSS,,,,,,130.5913901054565,-89.40005641,,,,,,19.043726,19.043726,19.043726,19.043726,19.043726,,,,,,,,true,,3,5,true,,false +528,BOSS,,,,,,78.64933713,-89.24819729,,,,,,19.553968,19.553968,19.553968,19.553968,19.553968,,,,,,,,true,,3,5,true,,false +529,APOGEE,,,,,,19.31688690185547,3.8409690856933594,,,,,,22.167538,22.199493,21.709389,21.205427,20.609585,,,,,,,,true,,3,5,true,,false +530,BOSS,,,,,,233.9136505126953,36.49856948852539,,,,,,24.454786,25.281012,22.717567,22.047422,21.839544,,,,,,,,true,,3,5,true,,false +531,APOGEE,,,,,,152.88081923437773,-16.29570941,,,,,,10.26141,10.26141,10.26141,10.26141,10.26141,,,,,,,,true,,3,5,true,,false +532,BOSS,,,,,,55.34962445088841,25.929375765929933,,,,,,17.767626,17.767626,17.767626,17.767626,17.767626,,,,,,,,true,,3,5,true,,false +533,BOSS,,,3031788625090542848,,,110.31365966796875,-14.74105453,-0.35964996,-0.75572896,2016,0.8322476,,,,,,,,11.233078,11.137306,11.203665,,,,true,,3,5,true,,false +534,APOGEE,,,,,,198.2512815,-4.182494493,,,,,,15.568952,15.568952,15.568952,15.568952,15.568952,,,,,,,,true,,3,5,true,,false +535,APOGEE,63050395974104158,,5605926936931077632,,,107.95504760742188,-30.93754196,-14.97679,7.9418287,2016,1.7350882,,,,,,,,13.522416,12.681095,13.184684,,,,true,,3,5,true,,false +536,BOSS,,,,,,315.3011779785156,0.3091956377029419,,,,,,20.833963,19.322245,18.656046,18.407879,18.261242,,,,,,,,true,,3,5,true,,false +537,BOSS,,,6631449231812781696,,,278.64935302734375,-61.29764557,-2.5523403,-15.397907,2016,0.61966777,,,,,,,,15.344467,14.2870865,14.898588,,,,true,,3,5,true,,false +538,APOGEE,,,5852945487048425600,,,213.89830017089844,-64.08432007,-5.0950212,-2.4251885,2016,0.3292515,,,,,,,,14.779611,13.683362,14.320599,,,,true,,3,5,true,,false +539,BOSS,,,5863684176542180096,,,197.74075317382812,-60.57977676,-6.8498607,-4.3040404,2016,0.8435856,,,,,,,,16.728683,14.82622,15.948668,,,,true,,3,5,true,,false +540,APOGEE,,,,,,174.40718012529496,-86.50359566,,,,,,10.426009,10.426009,10.426009,10.426009,10.426009,,,,,,,,true,,3,5,true,,false +541,BOSS,,,,,,4.785295009613037,-13.59751511,,,,,,24.677778,23.401913,22.13766,21.771025,21.51497,,,,,,,,true,,3,5,true,,false +542,BOSS,,,5770235102721962368,,,215.6446533203125,-82.830513,-1.4193362,-1.4139295,2016,0.80704606,,,,,,,,14.0590515,13.297694,13.761603,,,,true,,3,5,true,,false +543,BOSS,,,,,,269.3148193359375,-17.25314903,-6.220263,-16.147335,2016,0.6435918,,,,,,,,,,15.706298,,,,true,,3,5,true,,false +544,APOGEE,63050394949732153,65890884,2013218129912627328,,,344.5714111328125,58.358428955078125,-3.974082,-2.868381,2016,0.21979427,,,,,,,,13.222598,11.732962,12.553071,,,,true,,3,5,true,,false +545,BOSS,,,,,,319.20294189453125,0.63541472,,,,,,23.170242,22.04446,20.68755,19.973001,19.46918,,,,,,,,true,,3,5,true,,false +546,APOGEE,,,,,,267.75921630859375,-8.483067513,7.0046334,-0.5546064,2016,0.5190887,,,,,,,,,,15.651495,,,,true,,3,5,true,,false +547,APOGEE,,,4302029532226690048,,,296.6654968261719,10.260411262512207,-3.5828784,-6.208854,2016,0.39463502,,,,,,,,15.263587,13.743317,14.556156,,,,true,,3,5,true,,false +548,BOSS,,,,,,309.4784832,87.62158296567299,,,,,,13.764205,13.764205,13.764205,13.764205,13.764205,,,,,,,,true,,3,5,true,,false +549,APOGEE,,,,,,314.4443359,24.823572158813477,,,,,,22.37607,20.27526,19.38519,19.023441,18.818027,,,,,,,,true,,3,5,true,,false +550,BOSS,,,6029976686029878144,,,256.2670593261719,-28.66666603,-0.8356436,0.5651767,2016,0.2966127,,,,,,,,15.110459,13.545997,14.386333,,,,true,,3,5,true,,false +551,BOSS,,,,,,233.1489715576172,31.23639678955078,,,,,,25.173529,25.13264,22.18733,24.624088,23.507086,,,,,,,,true,,3,5,true,,false +552,BOSS,,,,,,331.5333846418616,-24.41556241,,,,,,,,,,,,,,19.588415,,,,true,,3,5,true,,false +553,APOGEE,,,,,,121.72666796925276,-27.86532385,,,,,,,,,,,,,,10.290678,,,,true,,3,5,true,,false +554,APOGEE,,,,,,125.25306701660156,-60.53755188,-4.2501116,6.4274645,2016,0.073270604,,,,,,,,,,15.734622,,,,true,,3,5,true,,false +555,APOGEE,,,5933867653083600384,,,244.86862182617188,-52.80186844,-3.1339045,-4.289576,2016,0.27909666,,,,,,,,14.035689,12.774894,13.484082,,,,true,,3,5,true,,false +556,APOGEE,,,,,,251.01174324737386,-85.21149374,,,,,,17.286907,17.286907,17.286907,17.286907,17.286907,,,,,,,,true,,3,5,true,,false +557,BOSS,63050394811558558,55493781,530081603797876608,,,8.784536361694336,69.58279418945312,0.8685957,-0.90123606,2016,0.18967819,,,,,,,,15.108059,12.717012,13.820855,,,,true,,3,5,true,,false +558,BOSS,,,4062970411291967232,,,272.0029297,-27.67734909,-8.12038,-6.0993276,2016,0.13031842,,,,,,,,16.481976,13.5139675,14.785666,,,,true,,3,5,true,,false +559,APOGEE,,,,770376751,,143.2060547,-57.96246719,,,,,,,,,,,,,,,13.825,,,true,,3,5,true,,false +560,BOSS,,,,,,168.95203917305992,38.43449450849809,,,,,,,,,,,,,,10.911693,,,,true,,3,5,true,,false +561,APOGEE,,,4107057597722760832,,,280.7860412597656,-10.81229305,-3.333848,-7.771619,2016,0.19315441,,,,,,,,17.139044,14.80908,15.903949,,,,true,,3,5,true,,false +562,BOSS,,,3455520924456866944,,,85.77598571777344,35.48521805,0.85453194,-2.6924748,2016,0.5877023,,,,,,,,13.328345,12.51157,13.010914,,,,true,,3,5,true,,false +563,BOSS,,,5309794886120370176,,,139.69664001464844,-56.57923889,-12.860635,12.314681,2016,0.8513798,,,,,,,,12.363344,10.786598,11.623018,,,,true,,3,5,true,,false +564,BOSS,,,,,,103.51087951660156,4.877716064453125,1.3137242,-3.9762192,2016,0.5659215,,,,,,,,,,15.381278,,,,true,,3,5,true,,false +565,APOGEE,,,,,,227.64533978846762,74.82086658717174,,,,,,,,,,,,,,16.562538,,,,true,,3,5,true,,false +566,APOGEE,,,,,,220.60969320562373,-40.05707241,,,,,,,,,,,,,,15.753344,,,,true,,3,5,true,,false +567,BOSS,63050396571544420,,236599788313754112,,,54.041419982910156,39.77754211425781,8.9519415,0.87800485,2016,0.662342,,,,,,,,15.848696,14.925826,15.474125,,,,true,,3,5,true,,false +568,APOGEE,,,,,,112.24533081054688,15.194509506225586,,,,,,22.686354,21.004202,19.556688,18.913458,18.494501,,,,,,,,true,,3,5,true,,false +569,BOSS,,,2383257870579385216,,,346.8323059082031,-25.05037498,14.200295,2.310131,2016,1.0971197,,,,,,,,16.3503,15.196056,15.866995,,,,true,,3,5,true,,false +570,APOGEE,,,,,,247.85317993164062,39.047157287597656,19.758434,-55.5428,2016,6.6597204,,,,,,,,,,11.842003,,,,true,,3,5,true,,false +571,BOSS,,,2075246253766199680,,,299.8430176,41.54568862915039,2.0759406,-4.51753,2016,1.4243963,,,,,,,,12.09932,11.361675,11.813303,,,,true,,3,5,true,,false +572,BOSS,,,,,,245.12057495117188,-3.091715813,,,,,,21.497875,19.840092,19.13041,18.803808,18.705406,,,,,,,,true,,3,5,true,,false +573,APOGEE,,,,,,36.93370516368004,-8.253790987,,,,,,,,,,,,,,14.631443,,,,true,,3,5,true,,false +574,APOGEE,,,6215548169650169344,,,220.62399291992188,-34.01202011,-1.1564118,0.4245386,2016,1.2166282,,,,,,,,15.860356,14.822079,15.42686,,,,true,,3,5,true,,false +575,BOSS,,,,,,33.664634704589844,25.290821075439453,-13.622049,-14.674427,2016,1.2587081,,,,,,,,,,14.355535,,,,true,,3,5,true,,false +576,BOSS,,,,124420649,,40.56668472290039,-3.540287971,,,,,,,,,,,,,,,15.044,,,true,,3,5,true,,false +577,BOSS,63050395519921871,85336433,4144811562840957696,,,267.3031311035156,-16.99458694,2.2234828,-1.99253,2016,0.16016898,,,,,,,,15.809598,11.007014,12.51068,,,,true,,3,5,true,,false +578,APOGEE,,,,,,321.22935698974266,83.43601602214935,,,,,,13.373706,13.373706,13.373706,13.373706,13.373706,,,,,,,,true,,3,5,true,,false +579,APOGEE,,,,,,273.5729064941406,-10.87293816,-2.4129505,-10.491037,2016,0.2066054,,,,,,,,,,14.710543,,,,true,,3,5,true,,false +580,APOGEE,,,,,,164.8592987060547,50.72809982299805,,,,,,24.738962,23.453281,22.202969,21.55306,22.139952,,,,,,,,true,,3,5,true,,false +581,BOSS,,,4036192183521383808,,,270.8544006347656,-38.18399429,-0.3278942,0.9190745,2016,0.2732692,,,,,,,,13.150856,11.502315,12.366805,,,,true,,3,5,true,,false +582,BOSS,,,,,,234.1052703857422,35.12257766723633,,,,,,24.34594,24.196688,22.7647,22.807348,21.44058,,,,,,,,true,,3,5,true,,false +583,BOSS,,,,,,286.48321533203125,12.61663818359375,-12.691244,14.02439,2016,1.0253853,,,,,,,,,,15.725237,,,,true,,3,5,true,,false +584,BOSS,,,,,,243.77059936523438,-51.70484161,-3.078706,-4.977445,2016,1.3642068,,,,,,,,,,12.276511,,,,true,,3,5,true,,false +585,APOGEE,,,,19163831,,255.1195068359375,-34.65916824,,,,,,,,,,,,,,,14.858,,,true,,3,5,true,,false +586,APOGEE,,,4304058539179354752,,,298.6429748535156,11.783635139465332,-8.157393,-11.150521,2016,0.45382655,,,,,,,,16.396643,15.309932,15.956625,,,,true,,3,5,true,,false +587,BOSS,,,,,,227.0644531,49.10395050048828,,,,,,23.638107,23.931614,23.060629,22.392725,22.023705,,,,,,,,true,,3,5,true,,false +588,BOSS,,,,,,277.0101623535156,15.756054878234863,,,,,,22.579525,20.902927,19.831696,19.278772,19.013058,,,,,,,,true,,3,5,true,,false +589,APOGEE,,,,,,299.2218933105469,9.587837219238281,1.6732532,-4.823099,2016,1.3187172,,,,,,,,,,14.314518,,,,true,,3,5,true,,false +590,BOSS,,,,,,199.70242309570312,-21.50641251,,,,,,22.470417,23.785404,23.345318,22.064705,22.21405,,,,,,,,true,,3,5,true,,false +591,BOSS,,,,,,106.49585723876953,38.66529465,,,,,,24.655643,25.694834,23.794178,23.430641,21.030912,,,,,,,,true,,3,5,true,,false +592,BOSS,,,,,,191.12155151367188,-58.74043274,-14.054205,-1.8982073,2016,0.5953409,,,,,,,,,,15.946905,,,,true,,3,5,true,,false +593,BOSS,,,,,,230.97974873799265,81.91890328,,,,,,,,,,,,,,16.022886,,,,true,,3,5,true,,false +594,BOSS,,,,,,333.0979438193703,43.34826432743651,,,,,,16.536528,16.536528,16.536528,16.536528,16.536528,,,,,,,,true,,3,5,true,,false +595,APOGEE,,,,,,36.92597198486328,-9.481547356,,,,,,21.51008,25.525845,24.066328,24.874651,23.628117,,,,,,,,true,,3,5,true,,false +596,APOGEE,,,,,,136.3432159423828,11.85999584197998,-3.3056214,-20.785198,2016,2.4267426,,,,,,,,,,15.015554,,,,true,,3,5,true,,false +597,APOGEE,,,6072269606866109568,,,180.5696563720703,-57.89603806,-8.258524,-2.108727,2016,0.6256141,,,,,,,,16.425415,15.313402,15.961051,,,,true,,3,5,true,,false +598,BOSS,,,,,,172.10556796678347,52.213691080823196,,,,,,,,,,,,,,17.292759,,,,true,,3,5,true,,false +599,BOSS,,,,,,308.5118575971303,-88.15452268,,,,,,,,,,,,,,11.506551,,,,true,,3,5,true,,false +600,APOGEE,,,3600777130722863872,,,180.72576904296875,-3.90166378,0.87073725,-6.369217,2016,0.056507546,,,,,,,,16.155737,15.129116,15.734906,,,,true,,3,5,true,,false +601,BOSS,,,4588828378578064512,,,279.00982666015625,31.381546020507812,-3.7257905,-0.43531606,2016,0.72062147,,,,,,,,14.855146,13.886403,14.455603,,,,true,,3,5,true,,false +602,APOGEE,,,,,,228.26356506347656,12.836915016174316,,,,,,25.191187,24.143372,23.14978,22.287895,22.215757,,,,,,,,true,,3,5,true,,false +603,BOSS,,,,,,307.9385681152344,40.515167236328125,,,,,,25.457565,24.434338,23.711103,21.556734,20.596796,,,,,,,,true,,3,5,true,,false +604,BOSS,,,1134127006894244864,,,156.71664428710938,81.37867736816406,-22.739155,-15.370893,2016,1.4457008,,,,,,,,16.510887,14.83679,15.711702,,,,true,,3,5,true,,false +605,APOGEE,,,4051104314375722624,,,275.8066406,-28.99839401,-25.137615,-38.71895,2016,3.1232026,,,,,,,,15.635555,13.988061,14.903377,,,,true,,3,5,true,,false +606,BOSS,,,6397403922546834560,,,334.4548645019531,-68.83404541,7.30069,-3.5894535,2016,0.65371484,,,,,,,,15.498588,14.68272,15.171135,,,,true,,3,5,true,,false +607,APOGEE,,,,,,207.62131716682893,83.04333570364008,,,,,,13.409409,13.409409,13.409409,13.409409,13.409409,,,,,,,,true,,3,5,true,,false +608,BOSS,,,,,,217.67165868597732,-4.75792923,,,,,,,,,,,,,,16.463583,,,,true,,3,5,true,,false +609,APOGEE,,,5970284096599739264,,,255.2919158935547,-38.64410019,-4.2219257,-0.86019576,2016,0.6511395,,,,,,,,14.497218,13.260371,13.964248,,,,true,,3,5,true,,false +610,APOGEE,,,,,,279.1627197265625,8.361335754394531,0.20971021,-0.09347485,2016,0.28397104,,,,,,,,,,13.373921,,,,true,,3,5,true,,false +611,BOSS,,,,,,277.77508544921875,-39.73245621,1.2394111,-1.7869297,2016,0.44159433,,,,,,,,,,15.682914,,,,true,,3,5,true,,false +612,APOGEE,,,,,,315.05214221173446,-62.65926236,,,,,,,,,,,,,,15.141437,,,,true,,3,5,true,,false +613,BOSS,,,,,,22.481986231797944,-8.800868508,,,,,,13.176018,13.176018,13.176018,13.176018,13.176018,,,,,,,,true,,3,5,true,,false +614,APOGEE,63050395369812012,,4084132372272683904,,,287.9451599121094,-19.08610725,-1.6798651,-3.0819092,2016,0.075133964,,,,,,,,16.37009,15.227784,15.883465,,,,true,,3,5,true,,false +615,APOGEE,,,,,,62.54847587,-55.45812368,,,,,,14.650881,14.650881,14.650881,14.650881,14.650881,,,,,,,,true,,3,5,true,,false +616,APOGEE,,,2173631069614006144,,,327.6081237792969,53.543739318847656,5.3605022,1.1588656,2016,0.30402076,,,,,,,,16.50248,14.142976,15.24269,,,,true,,3,5,true,,false +617,BOSS,,,5992688810695153152,,,246.26866149902344,-42.50436783,-2.7679923,-3.4089236,2016,0.19945455,,,,,,,,16.90359,14.514334,15.623055,,,,true,,3,5,true,,false +618,BOSS,,,,,,148.62391969873076,-15.24915892,,,,,,,,,,,,,,15.668767,,,,true,,3,5,true,,false +619,APOGEE,,,,,,240.5555228370686,-64.44999483,,,,,,15.338513,15.338513,15.338513,15.338513,15.338513,,,,,,,,true,,3,5,true,,false +620,APOGEE,,,,,,207.4317169189453,-63.18018341,2.5988085,-4.0306993,2016,0.5574236,,,,,,,,,,15.711347,,,,true,,3,5,true,,false +621,BOSS,,,,,,351.3095397949219,-4.950001717,,,,,,22.788647,21.134224,20.1476,19.721521,19.440414,,,,,,,,true,,3,5,true,,false +622,APOGEE,,,,,,237.81698608398438,-47.19733429,-2.2073853,-3.5437603,2016,0.17941312,,,,,,,,,,15.982281,,,,true,,3,5,true,,false +623,APOGEE,,,,,,313.03530178726766,-84.54701263,,,,,,16.22595,16.22595,16.22595,16.22595,16.22595,,,,,,,,true,,3,5,true,,false +624,BOSS,,,,,,237.94847106933594,59.448421478271484,,,,,,22.91465,22.957521,22.674917,22.394033,21.743563,,,,,,,,true,,3,5,true,,false +625,APOGEE,,,,,,109.1257985355177,53.63878926585443,,,,,,18.140932,18.140932,18.140932,18.140932,18.140932,,,,,,,,true,,3,5,true,,false +626,APOGEE,,,,,,47.022446822343824,74.93967657730437,,,,,,12.593231,12.593231,12.593231,12.593231,12.593231,,,,,,,,true,,3,5,true,,false +627,BOSS,,,6717068820745728896,,,283.67120361328125,-39.48267365,-11.293724,-15.585056,2016,0.31332073,,,,,,,,15.808131,14.679681,15.325939,,,,true,,3,5,true,,false +628,APOGEE,,,5239910820428681600,,,160.40521240234375,-63.92519379,-18.086557,10.412901,2016,0.65690804,,,,,,,,15.47039,14.305795,14.979796,,,,true,,3,5,true,,false +629,BOSS,,,,,,180.7693634033203,1.5889219045639038,,,,,,22.264975,20.518604,19.548244,19.115389,18.742502,,,,,,,,true,,3,5,true,,false +630,BOSS,,,,,,292.8914794921875,-34.98809052,-5.2540927,-6.1297646,2016,0.30386332,,,,,,,,,,13.269703,,,,true,,3,5,true,,false +631,APOGEE,,,1828067621730994176,,,298.7998352050781,23.10990333557129,-4.361742,-4.4423203,2016,0.3628621,,,,,,,,15.180392,13.0500555,14.08248,,,,true,,3,5,true,,false +632,BOSS,,,1437513429279909888,,,257.1270751953125,60.06772232055664,-1.443397,-28.834328,2016,2.7050111,,,,,,,,14.673526,13.450518,14.134826,,,,true,,3,5,true,,false +633,APOGEE,,,1624140581608443136,,,249.01657104492188,59.466522216796875,-3.55073,15.570146,2016,6.0966334,,,,,,,,14.151682,12.556417,13.398576,,,,true,,3,5,true,,false +634,BOSS,63050396580706445,,280788061119781248,,,76.26654052734375,57.86122131347656,-1.7969649,-5.7395463,2016,1.4884235,,,,,,,,15.631335,14.377442,15.083575,,,,true,,3,5,true,,false +635,BOSS,,,,,,222.7592773,-59.18612671,-4.2488303,-2.3025928,2016,0.38976878,,,,,,,,,,12.312154,,,,true,,3,5,true,,false +636,APOGEE,,,,,,322.54848873268315,-57.47709268,,,,,,,,,,,,,,15.082321,,,,true,,3,5,true,,false +637,BOSS,,,,,,271.96917724609375,-33.23094177,0.75122035,-3.8097816,2016,0.5921568,,,,,,,,,,14.068474,,,,true,,3,5,true,,false +638,APOGEE,,,,,,95.54370880126953,4.876046180725098,-9.378868,-29.56437,2016,3.2606373,,,,,,,,,,12.708214,,,,true,,3,5,true,,false +639,APOGEE,,,3818265272340159488,,,166.7407684326172,7.130058288574219,-1.3629947,-6.9724464,2016,0.22826472,,,,,,,,15.51967,14.326375,14.997889,,,,true,,3,5,true,,false +640,BOSS,,,4240706779431051136,,,299.4292297363281,1.317088246,-14.469922,-3.223084,2016,2.9701314,,,,,,,,16.710316,14.714756,15.709409,,,,true,,3,5,true,,false +641,APOGEE,,,1109255194880907904,,,106.37728881835938,69.67102051,0.51022106,-3.6206582,2016,0.54947853,,,,,,,,14.378126,13.609616,14.075171,,,,true,,3,5,true,,false +642,BOSS,,,,,,110.0755526273399,44.07568803915038,,,,,,,,,,,,,,12.781383,,,,true,,3,5,true,,false +643,APOGEE,,,,,,246.60586547851562,77.92977905273438,,,,,,21.171444,25.668007,25.896032,25.68073,23.355572,,,,,,,,true,,3,5,true,,false +644,BOSS,,,,,,53.16736448742243,-0.359860154,,,,,,,,,,,,,,13.013135,,,,true,,3,5,true,,false +645,APOGEE,,,,,,196.5104522705078,-54.84932709,-7.368508,-0.9708531,2016,0.45204172,,,,,,,,,,15.622104,,,,true,,3,5,true,,false +646,APOGEE,63050395395142672,84081936,4093215369178648576,,,278.3622741699219,-19.27349091,-4.96884,-6.458835,2016,0.10351104,,,,,,,,15.780024,13.405675,14.505188,,,,true,,3,5,true,,false +647,APOGEE,,,4531169542151985920,,,281.2217712402344,21.701467514038086,-1.0566115,-11.775431,2016,-2.5769944,,,,,,,,15.853795,14.943877,15.9167385,,,,true,,3,5,true,,false +648,BOSS,63050396348720310,,6008871732037501824,,,237.3400421142578,-37.95759964,-4.0620246,-1.6649269,2016,0.28386253,,,,,,,,15.759646,14.176156,15.023356,,,,true,,3,5,true,,false +649,APOGEE,,,,,,264.8172607421875,-43.66769409,2.2217822,-3.4967396,2016,0.36767536,,,,,,,,,,12.472592,,,,true,,3,5,true,,false +650,BOSS,,,,,,163.0165557861328,33.80036926269531,,,,,,22.978676,21.43995,20.62619,20.35532,20.020502,,,,,,,,true,,3,5,true,,false +651,BOSS,,,,,,97.71913146972656,-11.46373558,-2.1852167,0.2869014,2016,0.38194057,,,,,,,,,,14.568674,,,,true,,3,5,true,,false +652,BOSS,63050396311293802,,,186118489,,260.1236572265625,-33.23654175,,,,,,,,,,,,,,,13.381,,,true,,3,5,true,,false +653,APOGEE,,,,1130285009,,269.9403076171875,4.377375126,,,,,,,,,,,,,,,13.256,,,true,,3,5,true,,false +654,APOGEE,,,,,,245.4011688232422,-49.87039948,-1.9234682,-5.8600526,2016,1.1432875,,,,,,,,,,15.273315,,,,true,,3,5,true,,false +655,APOGEE,,,,,,47.969597179348916,59.55456899311369,,,,,,,,,,,,,,14.545984,,,,true,,3,5,true,,false +656,BOSS,,,,,,153.13397216796875,23.541107177734375,,,,,,24.72344,23.822668,23.088736,22.425251,22.091562,,,,,,,,true,,3,5,true,,false +657,APOGEE,,,4323322502614346240,,,292.5484313964844,18.46716309,1.8744264,-4.1307507,2016,1.2584507,,,,,,,,15.888413,14.439618,15.231233,,,,true,,3,5,true,,false +658,BOSS,,,,,,288.3132019042969,49.30097198486328,-0.24305704,-4.982285,2016,0.40894723,,,,,,,,,,15.271489,,,,true,,3,5,true,,false +659,BOSS,,,1929844052953481856,,,346.4954833984375,39.57917404174805,-0.14140293,-3.681939,2016,0.34070587,,,,,,,,16.119486,15.188096,15.736088,,,,true,,3,5,true,,false +660,APOGEE,,,,,,106.47402954101562,-30.83817101,-1.729902,6.425692,2016,0.3843502,,,,,,,,,,12.659388,,,,true,,3,5,true,,false +661,BOSS,,,1766165838597968512,,,328.8971252441406,12.091068267822266,-0.65562296,-6.398968,2016,0.44918057,,,,,,,,15.6873665,14.757081,15.307294,,,,true,,3,5,true,,false +662,APOGEE,,,,,,73.14367958262281,-40.14045529,,,,,,16.987528,16.987528,16.987528,16.987528,16.987528,,,,,,,,true,,3,5,true,,false +663,BOSS,,,,,,84.07003021240234,19.79519271850586,,,,,,21.463827,19.828781,18.931585,18.528864,18.322441,,,,,,,,true,,3,5,true,,false +664,APOGEE,,,,,,50.91654586791992,-6.819466591,,,,,,23.06522,23.622742,22.36015,21.311632,20.6874,,,,,,,,true,,3,5,true,,false +665,APOGEE,,,,,,165.99316070380303,-6.453546362,,,,,,,,,,,,,,12.16694,,,,true,,3,5,true,,false +666,BOSS,,,,,,318.1880187988281,53.715415954589844,,,,,,25.535301,24.789057,22.254484,20.68076,19.682112,,,,,,,,true,,3,5,true,,false +667,APOGEE,,,,,,255.06405639648438,-31.3215847,-0.24710181,-1.2864136,2016,0.15464613,,,,,,,,,,14.468799,,,,true,,3,5,true,,false +668,APOGEE,,,5882457890962812544,,,236.52565002441406,-57.5420723,-6.6589403,-7.1031914,2016,0.74118584,,,,,,,,16.555948,15.239271,15.972748,,,,true,,3,5,true,,false +669,BOSS,,,,,,122.61570773706015,-28.94082615,,,,,,,,,,,,,,17.066856,,,,true,,3,5,true,,false +670,BOSS,,,3132997124234483584,,,103.61636352539062,6.994454860687256,-0.059630644,-1.2991401,2016,0.345966,,,,,,,,15.865173,15.143417,15.593595,,,,true,,3,5,true,,false +671,BOSS,,,,,,126.40337938693514,-72.38305319,,,,,,,,,,,,,,16.297142,,,,true,,3,5,true,,false +672,BOSS,,,,,,261.15211040498104,-60.27667738,,,,,,11.887927,11.887927,11.887927,11.887927,11.887927,,,,,,,,true,,3,5,true,,false +673,BOSS,63050394814635134,55602755,545050904852218752,,,38.80365753173828,70.46918487548828,-1.1128917,0.74980956,2016,0.6162754,,,,,,,,13.592728,11.697813,12.6525755,,,,true,,3,5,true,,false +674,APOGEE,,,5249032059625742080,,,145.55194091796875,-65.58695984,-1.0743951,4.856339,2016,0.27172175,,,,,,,,14.70392,13.293571,14.116903,,,,true,,3,5,true,,false +675,APOGEE,,,,,,275.9591064453125,49.99051284790039,-3.2505305,8.570398,2016,1.2883335,,,,,,,,,,12.525419,,,,true,,3,5,true,,false +676,BOSS,,,,,,226.7289581298828,-71.52174377,-5.265412,-4.791294,2016,0.02509018,,,,,,,,,,15.974443,,,,true,,3,5,true,,false +677,APOGEE,,,,,,11.762564659118652,34.70375442504883,,,,,,22.03019,21.416128,20.94479,20.539503,20.456787,,,,,,,,true,,3,5,true,,false +678,APOGEE,,,,,,240.90713899274846,-56.66832304,,,,,,16.380571,16.380571,16.380571,16.380571,16.380571,,,,,,,,true,,3,5,true,,false +679,APOGEE,,,,,,288.5784714648988,-78.72000494,,,,,,16.639513,16.639513,16.639513,16.639513,16.639513,,,,,,,,true,,3,5,true,,false +680,BOSS,63050396284544512,105570651,5964965105999673984,,,253.16136169433594,-42.75876236,-0.72600865,-2.210445,2016,0.55161256,,,,,,,,16.241434,14.476761,15.389992,,,,true,,3,5,true,,false +681,BOSS,,,1830889346490600960,,,307.6405944824219,23.03294563293457,-4.6288095,-6.200954,2016,0.36149803,,,,,,,,15.521128,14.753385,15.218862,,,,true,,3,5,true,,false +682,APOGEE,,,,,,268.88909912109375,38.70267868041992,-0.090308264,-2.4719143,2016,0.092193425,,,,,,,,,,14.748493,,,,true,,3,5,true,,false +683,APOGEE,,,,,,281.0074462890625,36.27869415283203,-3.0290263,-3.2106783,2016,0.15975347,,,,,,,,,,15.70615,,,,true,,3,5,true,,false +684,BOSS,,,,,,143.25886563099223,23.64804358821003,,,,,,18.342402,18.342402,18.342402,18.342402,18.342402,,,,,,,,true,,3,5,true,,false +685,BOSS,,,,,,126.0080566,56.96689987182617,,,,,,23.543585,23.344305,21.947147,21.15077,20.555872,,,,,,,,true,,3,5,true,,false +686,APOGEE,,,5373515982979209344,,,172.9967803955078,-48.67851257,-4.2144256,3.8864522,2016,0.5731298,,,,,,,,15.40565,14.378716,14.978219,,,,true,,3,5,true,,false +687,APOGEE,,,6716103174659184512,,,282.1134338378906,-42.4707756,7.0793095,-6.7159753,2016,0.7386296,,,,,,,,11.950217,10.31549,11.172389,,,,true,,3,5,true,,false +688,BOSS,63050395947352095,,,336987893,,122.17324829101562,-44.22309494,,,,,,,,,,,,,,,14.591,,,true,,3,5,true,,false +689,BOSS,,,3121901260906583936,,,93.93719482421875,0.072815478,-2.132785,-5.7796674,2016,0.8108896,,,,,,,,16.400904,15.308849,15.938829,,,,true,,3,5,true,,false +690,APOGEE,,,,,,137.59443235027825,-23.89913837,,,,,,,,,,,,,,18.569742,,,,true,,3,5,true,,false +691,BOSS,,,,,,65.65604456280583,-62.26898483,,,,,,,,,,,,,,10.814568,,,,true,,3,5,true,,false +692,APOGEE,,,,,,179.89828491210938,18.013010025024414,,,,,,22.589579,22.722742,22.34042,23.097742,22.631636,,,,,,,,true,,3,5,true,,false +693,BOSS,63050395172847232,,3931733497937010304,,,188.03741455078125,12.633756637573242,-16.343481,-19.970377,2016,0.34295577,,,,,,,,15.611786,14.874605,15.328423,,,,true,,3,5,true,,false +694,BOSS,,,,,,167.84895602297226,-15.7388085,,,,,,16.320738,16.320738,16.320738,16.320738,16.320738,,,,,,,,true,,3,5,true,,false +695,APOGEE,,,,,,138.51329040527344,13.971419334411621,,,,,,25.634636,25.051765,25.311922,22.630032,24.02609,,,,,,,,true,,3,5,true,,false +696,BOSS,,,,,,299.9789123535156,-0.046156041,,,,,,20.656265,19.206242,18.452616,18.158573,18.06457,,,,,,,,true,,3,5,true,,false +697,BOSS,,,,,,25.855222702026367,61.590553283691406,1.3871891,0.07404502,2016,0.34814754,,,,,,,,,,14.339257,,,,true,,3,5,true,,false +698,BOSS,,,,,,168.72567001446882,-0.619465641,,,,,,,,,,,,,,18.394283,,,,true,,3,5,true,,false +699,BOSS,,,,,,268.70269775390625,-30.15050316,-6.437551,-9.275833,2016,-0.10276061,,,,,,,,,,15.5457735,,,,true,,3,5,true,,false +700,APOGEE,,,,,,34.926255052624015,-36.19858422,,,,,,,,,,,,,,16.466764,,,,true,,3,5,true,,false +701,BOSS,,,,,,25.606897354125977,49.938133239746094,,,,,,23.928705,22.335455,21.270618,20.89132,20.500801,,,,,,,,true,,3,5,true,,false +702,BOSS,63050395066828946,70316989,2539074546729616384,,,16.27984046936035,2.2418770790100098,-1.5687217,-47.84853,2016,7.1026936,,,,,,,,16.288002,13.908887,15.021954,,,,true,,3,5,true,,false +703,BOSS,,,,,,193.019043,19.056764602661133,,,,,,22.776123,23.021446,22.67031,22.255188,21.997519,,,,,,,,true,,3,5,true,,false +704,BOSS,,,,,,329.76963715425313,40.133929462273755,,,,,,,,,,,,,,13.3590145,,,,true,,3,5,true,,false +705,BOSS,,,,,,306.0335792212571,28.636935964376093,,,,,,11.069528,11.069528,11.069528,11.069528,11.069528,,,,,,,,true,,3,5,true,,false +706,BOSS,,,,,,332.1538296,-44.8502313,,,,,,17.29722,17.29722,17.29722,17.29722,17.29722,,,,,,,,true,,3,5,true,,false +707,APOGEE,,,,,,212.5724078595871,38.80531474751638,,,,,,,,,,,,,,18.252222,,,,true,,3,5,true,,false +708,BOSS,,,,,,254.51085625541538,17.986795420590113,,,,,,11.880822,11.880822,11.880822,11.880822,11.880822,,,,,,,,true,,3,5,true,,false +709,APOGEE,63050396004544868,,5759658586838123904,,,138.12020874023438,-3.854115963,-0.5739141,6.2576075,2016,1.0293179,,,,,,,,16.40944,15.327415,15.949825,,,,true,,3,5,true,,false +710,BOSS,,,,,,273.72955322265625,13.53879451751709,,,,,,23.495577,24.596123,23.687021,21.852497,20.699657,,,,,,,,true,,3,5,true,,false +711,APOGEE,,,,,,71.64082336425781,25.99337387084961,,,,,,23.749523,23.775595,22.014788,21.51998,20.929379,,,,,,,,true,,3,5,true,,false +712,APOGEE,,,,,,186.08087660510873,-36.6525981,,,,,,16.571892,16.571892,16.571892,16.571892,16.571892,,,,,,,,true,,3,5,true,,false +713,APOGEE,,,6025706320208414464,,,247.59063720703125,-30.79616356,4.3588715,-2.420482,2016,0.69343734,,,,,,,,15.471722,14.216216,14.925211,,,,true,,3,5,true,,false +714,BOSS,,,3241144430807626624,,,80.60289001464844,7.367914677,-0.8969869,-7.7346926,2016,1.382505,,,,,,,,16.009401,14.566895,15.355196,,,,true,,3,5,true,,false +715,BOSS,,,,,,271.39300082543144,46.55634094368199,,,,,,,,,,,,,,10.244609,,,,true,,3,5,true,,false +716,BOSS,,,,,,23.66095733642578,15.261680603027344,,,,,,23.644846,22.435852,20.862713,19.294363,18.41552,,,,,,,,true,,3,5,true,,false +717,APOGEE,,,,,,322.2274169921875,-0.590832531,,,,,,23.805775,24.429989,22.949827,21.126722,20.545622,,,,,,,,true,,3,5,true,,false +718,APOGEE,,,,,,304.1852359948902,34.06479406598626,,,,,,13.64525,13.64525,13.64525,13.64525,13.64525,,,,,,,,true,,3,5,true,,false +719,BOSS,,,,,,251.86422729492188,-51.3959465,-5.093829,-8.169218,2016,0.2131737,,,,,,,,,,15.3645,,,,true,,3,5,true,,false +720,BOSS,,,2835488484847979392,,,343.54437255859375,21.41486167907715,-5.741491,-7.258939,2016,0.47317186,,,,,,,,16.050394,15.072262,15.64481,,,,true,,3,5,true,,false +721,APOGEE,,,,,,116.81072998046875,11.095338821411133,,,,,,23.387857,21.081778,19.675722,18.33133,17.594755,,,,,,,,true,,3,5,true,,false +722,BOSS,,,,,,246.3214111328125,11.24138069152832,,,,,,23.751179,23.2066,21.43003,20.974337,20.259226,,,,,,,,true,,3,5,true,,false +723,BOSS,,,2010512609746444800,,,349.7590026855469,58.80140305,4.0483913,5.9489098,2016,1.707869,,,,,,,,13.616804,12.218917,12.989533,,,,true,,3,5,true,,false +724,APOGEE,63050395915842861,,,364298133,,158.62567138671875,-46.50204086,,,,,,,,,,,,,,,13.845,,,true,,3,5,true,,false +725,APOGEE,,,,,,50.450740814208984,-10.05507278,7.3589134,3.1742864,2016,1.4537246,,,,,,,,,,13.9649515,,,,true,,3,5,true,,false +726,APOGEE,63050396257446878,,,509542949,,265.7121582,-42.94263458,,,,,,,,,,,,,,,15.605,,,true,,3,5,true,,false +727,APOGEE,,,,,,213.36016729262968,66.36469028116284,,,,,,,,,,,,,,13.7149935,,,,true,,3,5,true,,false +728,BOSS,63050395310110525,82846404,4062650251620456320,,,269.51629638671875,-28.18788719,-3.4247487,-3.192317,2016,0.12746431,,,,,,,,16.594908,13.877666,15.1447935,,,,true,,3,5,true,,false +729,BOSS,,,6850123368518983296,,,301.7012634277344,-26.34278488,-12.844619,-8.975983,2016,1.8555686,,,,,,,,14.2311325,13.245338,13.821969,,,,true,,3,5,true,,false +730,APOGEE,,,,,,136.85687255859375,-78.54324341,-4.0846767,5.270097,2016,0.9188102,,,,,,,,,,14.022322,,,,true,,3,5,true,,false +731,APOGEE,,,,,,23.797475795686076,40.64391002155443,,,,,,,,,,,,,,18.911325,,,,true,,3,5,true,,false +732,APOGEE,,,,,,282.5932312011719,-43.28892517,-0.66710424,-4.556592,2016,0.6196578,,,,,,,,,,15.696882,,,,true,,3,5,true,,false +733,BOSS,,,,,,225.7871993265267,-32.32782521,,,,,,,,,,,,,,17.2334,,,,true,,3,5,true,,false +734,BOSS,,,5353313728148466560,,,163.94558715820312,-54.34112549,-12.664168,3.5706484,2016,0.90668046,,,,,,,,15.208982,14.314089,14.859728,,,,true,,3,5,true,,false +735,APOGEE,,,3106999103078443392,,,100.87773132324219,-1.859912157,-2.5714169,-4.888764,2016,0.59306073,,,,,,,,15.75083,14.598829,15.258438,,,,true,,3,5,true,,false +736,BOSS,,,,,,340.4651794433594,7.045726299285889,,,,,,24.19283,24.443758,23.48346,21.964752,20.670155,,,,,,,,true,,3,5,true,,false +737,APOGEE,,,5642574239297432960,,,132.06312561035156,-28.95905495,-5.906987,10.43581,2016,0.57630783,,,,,,,,15.203885,14.449873,14.916971,,,,true,,3,5,true,,false +738,APOGEE,,,,,,99.78807067871094,6.5213704109191895,-0.74904996,-1.4589043,2016,0.47667935,,,,,,,,,,15.317928,,,,true,,3,5,true,,false +739,BOSS,,,,,,149.8709716796875,-60.6295166,-6.522493,3.663718,2016,0.5783178,,,,,,,,,,13.791664,,,,true,,3,5,true,,false +740,APOGEE,,,3329569290516933760,,,90.73058319091797,9.094842910766602,-0.2895797,-0.57927567,2016,0.25136864,,,,,,,,16.27239,15.3428545,15.898054,,,,true,,3,5,true,,false +741,APOGEE,,,6650671443847691136,,,284.35382080078125,-53.11709213,-1.9808316,-46.54312,2016,2.1789443,,,,,,,,13.494103,12.559968,13.111522,,,,true,,3,5,true,,false +742,BOSS,,,4050325787194680704,,,271.6543884277344,-29.4303894,-3.6120505,-2.06348,2016,0.08820779,,,,,,,,16.695887,14.519068,15.693476,,,,true,,3,5,true,,false +743,BOSS,,,,,,268.9346898086833,12.454465266752877,,,,,,17.274124,17.274124,17.274124,17.274124,17.274124,,,,,,,,true,,3,5,true,,false +744,APOGEE,,,,,,55.946238333998224,-41.70299554,,,,,,,,,,,,,,13.916159,,,,true,,3,5,true,,false +745,APOGEE,,,4366621442288269440,,,257.72357177734375,-3.452363014,2.5626132,-5.779537,2016,0.710851,,,,,,,,16.010384,14.618831,15.388045,,,,true,,3,5,true,,false +746,BOSS,,,,,,8.895346481236501,-78.97528164,,,,,,,,,,,,,,11.143398,,,,true,,3,5,true,,false +747,BOSS,,,6005670538289801728,,,230.7232666015625,-40.60255051,-7.1774054,-3.5817986,2016,0.24272409,,,,,,,,13.762442,12.181204,13.018794,,,,true,,3,5,true,,false +748,APOGEE,,,,,,193.96628059546197,-35.80317586,,,,,,13.671679,13.671679,13.671679,13.671679,13.671679,,,,,,,,true,,3,5,true,,false +749,APOGEE,,,5800415803577100544,,,223.76812744140625,-67.8188324,-0.9367328,-2.0261197,2016,0.522676,,,,,,,,16.297068,15.160863,15.819065,,,,true,,3,5,true,,false +750,APOGEE,,,,,,165.55442810058594,4.765070438,,,,,,24.99194,22.64101,22.191637,21.646763,21.101414,,,,,,,,true,,3,5,true,,false +751,APOGEE,,,,,,75.59630352722719,-73.01058809,,,,,,12.21661,12.21661,12.21661,12.21661,12.21661,,,,,,,,true,,3,5,true,,false +752,BOSS,,,,,,304.6621510869511,9.333332280652385,,,,,,13.373174,13.373174,13.373174,13.373174,13.373174,,,,,,,,true,,3,5,true,,false +753,BOSS,,,,,,301.1188659667969,56.62852859,-1.8412336,-4.444554,2016,0.8093027,,,,,,,,,,15.050184,,,,true,,3,5,true,,false +754,APOGEE,,,4103933477262374144,,,277.0104064941406,-15.29951668,-2.4243894,-0.16768308,2016,0.5393106,,,,,,,,16.309261,13.985131,15.139687,,,,true,,3,5,true,,false +755,BOSS,,,,,,244.52293395996094,-56.94312286,-1.0634936,-2.0093563,2016,0.71365845,,,,,,,,,,15.908218,,,,true,,3,5,true,,false +756,BOSS,,,,,,354.3045316,-71.65132399,,,,,,16.974426,16.974426,16.974426,16.974426,16.974426,,,,,,,,true,,3,5,true,,false +757,APOGEE,,,,,,233.6106719970703,-0.575558662,,,,,,24.291021,24.859365,23.096926,21.948692,21.210947,,,,,,,,true,,3,5,true,,false +758,APOGEE,63050395167347742,,3692529314475852800,,,196.85980224609375,3.5517666339874268,-7.696554,-8.360602,2016,0.5476423,,,,,,,,16.189621,15.3672285,15.860579,,,,true,,3,5,true,,false +759,APOGEE,,,,,,52.352375529282156,-32.16997465,,,,,,,,,,,,,,10.239092,,,,true,,3,5,true,,false +760,APOGEE,,,,,,126.1578140258789,4.685936928,,,,,,21.436756,20.520584,20.100576,19.975004,19.89709,,,,,,,,true,,3,5,true,,false +761,APOGEE,,,,,,258.6173793527478,-26.71359459,,,,,,,,,,,,,,13.605102,,,,true,,3,5,true,,false +762,APOGEE,,,,,,301.83258056640625,-56.92250061,1.4338254,-7.74661,2016,1.2888033,,,,,,,,,,15.930237,,,,true,,3,5,true,,false +763,APOGEE,,,,256080257,,112.41814422607422,-31.36370468,,,,,,,,,,,,,,,13.681,,,true,,3,5,true,,false +764,BOSS,,,,,,234.03001403808594,-44.81321335,-5.3285155,-8.016707,2016,0.15444714,,,,,,,,,,15.243349,,,,true,,3,5,true,,false +765,APOGEE,,,,,,246.27325439453125,38.879390716552734,,,,,,21.77627,24.869308,24.273453,23.471102,23.201963,,,,,,,,true,,3,5,true,,false +766,BOSS,63050395298059403,82542340,4059839624986299776,,,260.8334655761719,-28.30197716,-8.155158,-4.8619094,2016,0.33258292,,,,,,,,17.670832,13.963033,15.50557,,,,true,,3,5,true,,false +767,APOGEE,,,2222177222384352000,,,321.9098205566406,67.72821044921875,-8.73959,-10.185197,2016,0.73321354,,,,,,,,16.572014,14.993909,15.838233,,,,true,,3,5,true,,false +768,APOGEE,,,,,,100.13993072509766,5.776090145111084,-1.2480513,-0.25820345,2016,0.3522603,,,,,,,,,,13.700542,,,,true,,3,5,true,,false +769,APOGEE,,,,,,80.89618225,-1.530449465,,,,,,15.530667,15.530667,15.530667,15.530667,15.530667,,,,,,,,true,,3,5,true,,false +770,BOSS,,,5253794491193589632,,,158.1056671142578,-61.82350922,-10.507338,5.430892,2016,0.32742828,,,,,,,,16.36453,14.898926,15.708527,,,,true,,3,5,true,,false +771,BOSS,63050395108801371,,3089013944703201920,,,118.09583282470703,3.1013076305389404,0.8932194,-4.4493136,2016,0.41042665,,,,,,,,16.108273,15.160632,15.715683,,,,true,,3,5,true,,false +772,BOSS,63050394836852432,,1106931170899675648,,,95.13321685791016,69.16665649414062,-3.4835591,2.615431,2016,0.8466822,,,,,,,,13.999116,13.255476,13.708236,,,,true,,3,5,true,,false +773,APOGEE,,,532415420307585408,,,22.01511573791504,69.57236481,-5.973365,0.9934996,2016,1.8994496,,,,,,,,14.764286,13.474416,14.207004,,,,true,,3,5,true,,false +774,BOSS,,,,,,254.4734569735469,-66.75162717,,,,,,,,,,,,,,16.042562,,,,true,,3,5,true,,false +775,APOGEE,,,5957751175917593984,,,267.6961669921875,-40.93287659,-3.610069,-2.5184033,2016,0.18943155,,,,,,,,16.68221,15.043168,15.968863,,,,true,,3,5,true,,false +776,BOSS,,,5950577137393019520,,,259.8725280761719,-48.1771431,0.5076111,0.080944814,2016,1.146699,,,,,,,,16.27199,15.054531,15.740855,,,,true,,3,5,true,,false +777,APOGEE,,,,,,13.569993019104004,44.72898864746094,,,,,,23.05872,20.15581,18.638502,17.778656,17.30898,,,,,,,,true,,3,5,true,,false +778,APOGEE,,,,,,255.78040235274045,-79.52085637,,,,,,,,,,,,,,16.433317,,,,true,,3,5,true,,false +779,BOSS,,,5317412371389704960,,,132.6694336,-54.0884285,-5.328707,6.5619383,2016,0.4005361,,,,,,,,15.3143,14.568138,15.026148,,,,true,,3,5,true,,false +780,APOGEE,,,,,,205.52264404296875,-56.49792862,-6.700245,-2.529205,2016,0.3872656,,,,,,,,,,15.862718,,,,true,,3,5,true,,false +781,APOGEE,,,3399759428485256192,,,86.80228424072266,20.352781295776367,3.9532323,-3.7368124,2016,1.2150983,,,,,,,,15.201894,14.061503,14.766629,,,,true,,3,5,true,,false +782,BOSS,,,,,,24.03541527,-52.91961793,,,,,,,,,,,,,,16.652773,,,,true,,3,5,true,,false +783,BOSS,,,,,,132.52371215820312,15.946521759033203,,,,,,23.84147,24.764883,24.269144,22.293911,22.202833,,,,,,,,true,,3,5,true,,false +784,APOGEE,,,,,,153.7585449,47.547340393066406,,,,,,23.834654,23.156162,22.704203,23.131952,22.117332,,,,,,,,true,,3,5,true,,false +785,APOGEE,,,2024553201487183488,,,293.7408752441406,25.84939956665039,-1.9128126,-5.9064736,2016,0.21269822,,,,,,,,16.574862,15.043033,15.877583,,,,true,,3,5,true,,false +786,BOSS,,,4533811496793607552,,,284.1548767089844,24.64291763305664,-6.30955,-7.516169,2016,0.7343395,,,,,,,,16.031225,14.924446,15.559327,,,,true,,3,5,true,,false +787,APOGEE,,,,,,196.10600096823717,30.42774756996988,,,,,,,,,,,,,,12.401994,,,,true,,3,5,true,,false +788,BOSS,,,,,,155.43150329589844,7.982448577880859,,,,,,22.887093,20.663868,18.86156,17.914333,17.460485,,,,,,,,true,,3,5,true,,false +789,APOGEE,,,801525078792717440,,,146.08404541015625,40.71202850341797,1.7396067,-6.3567643,2016,2.3426385,,,,,,,,16.283178,14.694183,15.534995,,,,true,,3,5,true,,false +790,APOGEE,,,,,,270.8950195,42.47181701660156,,,,,,23.028482,22.906828,22.497776,22.145445,21.882572,,,,,,,,true,,3,5,true,,false +791,BOSS,,,,,,113.57111358642578,52.438392639160156,-10.084149,-13.398781,2016,1.6448087,,,,,,,,,,11.23024,,,,true,,3,5,true,,false +792,APOGEE,,,,,,48.75842521777839,2.208194653606057,,,,,,,,,,,,,,15.592444,,,,true,,3,5,true,,false +793,BOSS,,,,,,233.41962876296577,-63.85614067,,,,,,,,,,,,,,12.812766,,,,true,,3,5,true,,false +794,BOSS,,,,,,325.08162304432614,-17.66507096,,,,,,,,,,,,,,10.472257,,,,true,,3,5,true,,false +795,APOGEE,,,4309360251111698560,,,288.3396301269531,10.467550277709961,1.2449459,-5.590638,2016,0.3985687,,,,,,,,15.572867,12.687796,13.911891,,,,true,,3,5,true,,false +796,APOGEE,,,,,,120.92656707763672,40.75513458251953,,,,,,25.000875,22.744751,22.13908,21.245354,20.707298,,,,,,,,true,,3,5,true,,false +797,APOGEE,,,5957069100745047680,,,268.3627624511719,-41.21985245,-3.1028187,-6.8580713,2016,0.83811677,,,,,,,,16.098347,15.018975,15.646892,,,,true,,3,5,true,,false +798,APOGEE,,,3121894152735989632,,,93.79180145263672,-0.032937858,2.7673404,-11.718679,2016,1.3626878,,,,,,,,14.6131,13.709219,14.259199,,,,true,,3,5,true,,false +799,APOGEE,,,,,,271.35870361328125,-29.74879646,-0.7567753,-6.453576,2016,-0.19243439,,,,,,,,,,15.31647,,,,true,,3,5,true,,false +800,BOSS,,,3028374332251762176,,,113.12367248535156,-15.42679214,-1.3960686,1.4897659,2016,0.11068156,,,,,,,,15.846987,15.064188,15.544374,,,,true,,3,5,true,,false +801,APOGEE,,,,,,239.6676720639459,46.77160738291735,,,,,,17.055542,17.055542,17.055542,17.055542,17.055542,,,,,,,,true,,3,5,true,,false +802,BOSS,,,,,,287.3391522792582,-20.67360385,,,,,,15.956153,15.956153,15.956153,15.956153,15.956153,,,,,,,,true,,3,5,true,,false +803,BOSS,,,,,,130.95111083984375,33.23208999633789,,,,,,22.452312,22.315716,21.21974,20.973742,20.652742,,,,,,,,true,,3,5,true,,false +804,BOSS,,,,,,281.83184814453125,-12.60692883,1.1073191,1.3469371,2016,0.44919375,,,,,,,,,,15.485104,,,,true,,3,5,true,,false +805,BOSS,,,,,,258.3380432128906,-18.88710403,-3.421522,-13.380658,2016,1.7412304,,,,,,,,,,13.196708,,,,true,,3,5,true,,false +806,APOGEE,,,,,,192.64864024569766,-9.872282117,,,,,,10.142276,10.142276,10.142276,10.142276,10.142276,,,,,,,,true,,3,5,true,,false +807,APOGEE,,,,,,169.92286682128906,-77.38050079,-7.513756,-0.40849134,2016,0.84274817,,,,,,,,,,14.766368,,,,true,,3,5,true,,false +808,APOGEE,,,538655320592056192,,,11.629175186157227,74.46846771240234,16.907072,-6.954044,2016,2.4310358,,,,,,,,14.285413,13.070892,13.752793,,,,true,,3,5,true,,false +809,APOGEE,,,,,,166.42210292975085,11.742627028804222,,,,,,17.542307,17.542307,17.542307,17.542307,17.542307,,,,,,,,true,,3,5,true,,false +810,BOSS,,,4185343551488047488,,,287.1260986328125,-14.4353075,9.3459835,-10.295002,2016,1.4185852,,,,,,,,14.975418,13.87078,14.504778,,,,true,,3,5,true,,false +811,APOGEE,,,,,,150.14651143170548,-40.06652249,,,,,,,,,,,,,,18.607433,,,,true,,3,5,true,,false +812,BOSS,,,,1090352196,,276.33624267578125,-14.78479767,,,,,,,,,,,,,,,13.966,,,true,,3,5,true,,false +813,APOGEE,,,4479512561747137152,,,279.9573669433594,9.312574387,-1.3640226,-4.6221285,2016,0.2340585,,,,,,,,15.375045,13.7733755,14.693845,,,,true,,3,5,true,,false +814,BOSS,,,4325998473372822912,,,249.8457489013672,-16.09867477,-2.8365448,-5.4691405,2016,0.150293,,,,,,,,16.376457,14.950775,15.73552,,,,true,,3,5,true,,false +815,APOGEE,,,,,,292.6046162451381,-20.16451739,,,,,,,,,,,,,,16.693607,,,,true,,3,5,true,,false +816,APOGEE,63050395795501141,91786315,,225025134,,61.384639739990234,-63.11683655,,,,,,,,,,,,,,,12.582,,,true,,3,5,true,,false +817,BOSS,,,1824139891332943104,,,296.2657775878906,18.069467544555664,1.1000558,-3.6570144,2016,0.20892118,,,,,,,,16.252104,14.1906185,15.209786,,,,true,,3,5,true,,false +818,BOSS,,,5834787877105379072,,,240.25296020507812,-58.92823029,,,,,,,,,,,,15.387312,14.314261,15.477927,,,,true,,3,5,true,,false +819,BOSS,,,,,,331.8670349121094,-3.550149202,,,,,,23.840542,22.81143,21.585352,21.020584,20.408998,,,,,,,,true,,3,5,true,,false +820,BOSS,,,,,,240.17209582878849,-7.077866834,,,,,,14.142173,14.142173,14.142173,14.142173,14.142173,,,,,,,,true,,3,5,true,,false +821,BOSS,,,,,,310.98699951171875,8.595468521118164,,,,,,24.744999,25.306381,24.72135,24.352837,20.84755,,,,,,,,true,,3,5,true,,false +822,APOGEE,,,,,,289.7470019308899,-5.513556584,,,,,,,,,,,,,,16.010817,,,,true,,3,5,true,,false +823,BOSS,,,6631902295027281152,,,279.63006591796875,-62.30256271,-17.26827,6.0385456,2016,1.8873161,,,,,,,,13.776419,12.713684,13.327854,,,,true,,3,5,true,,false +824,APOGEE,63050396578112355,116412220,269263323833677824,,,84.54377746582031,57.22608947753906,-2.710385,-3.539322,2016,2.0058625,,,,,,,,11.79949,10.958752,11.463433,,,,true,,3,5,true,,false +825,BOSS,,,,,,242.25550842285156,0.6621702313423157,,,,,,23.165731,22.948185,22.099463,21.607983,21.264668,,,,,,,,true,,3,5,true,,false +826,BOSS,,,5835160164903055488,,,244.90847778320312,-57.50353622,-4.5852513,-4.28177,2016,1.4302354,,,,,,,,14.76296,13.686371,14.305989,,,,true,,3,5,true,,false +827,BOSS,,,,,,289.2111511230469,12.924077987670898,18.876566,41.345543,2016,3.1928048,,,,,,,,,,12.914953,,,,true,,3,5,true,,false +828,APOGEE,,,,,,93.91448211669922,5.896914958953857,,,,,,23.884748,24.253302,23.630447,21.100746,20.161945,,,,,,,,true,,3,5,true,,false +829,BOSS,,,,,,241.7146453857422,-44.9950676,-4.076332,-2.5806413,2016,0.5298474,,,,,,,,,,15.867353,,,,true,,3,5,true,,false +830,APOGEE,,,4090629420896152960,,,274.2969970703125,-21.98418236,-0.1920034,0.4303768,2016,0.745865,,,,,,,,16.304123,15.048969,15.834902,,,,true,,3,5,true,,false +831,BOSS,,,4038388015698296448,,,273.82037353515625,-35.54051208,-1.0901982,-8.841643,2016,0.08712596,,,,,,,,16.208761,15.015092,15.693535,,,,true,,3,5,true,,false +832,APOGEE,,,4230703177821347840,,,306.6768798828125,0.9977842569351196,0.67360157,0.8641425,2016,1.1450562,,,,,,,,14.524802,13.650281,14.171318,,,,true,,3,5,true,,false +833,APOGEE,,,,,,273.24041099700867,48.86412739576511,,,,,,,,,,,,,,16.497862,,,,true,,3,5,true,,false +834,BOSS,,,2127566961236195584,,,291.56817626953125,46.394805908203125,-0.8416701,-6.0715327,2016,1.105096,,,,,,,,13.416513,12.657302,13.114871,,,,true,,3,5,true,,false +835,APOGEE,,,,,,199.37965393066406,-63.02163696,-6.9534864,-0.09298336,2016,0.2799558,,,,,,,,,,14.961357,,,,true,,3,5,true,,false +836,APOGEE,,,,,,105.27275990650804,31.473969461005623,,,,,,17.536287,17.536287,17.536287,17.536287,17.536287,,,,,,,,true,,3,5,true,,false +837,APOGEE,,,,,,126.63403320449271,-47.60348862,,,,,,,,,,,,,,11.311796,,,,true,,3,5,true,,false +838,APOGEE,,,,,,267.65069580078125,-35.84619522,0.92872685,-1.7227448,2016,0.27681127,,,,,,,,,,15.736281,,,,true,,3,5,true,,false +839,BOSS,,,4070623699390394880,,,268.39337158203125,-21.54141617,1.9520178,-2.941673,2016,0.81353617,,,,,,,,14.806136,13.58757,14.282885,,,,true,,3,5,true,,false +840,BOSS,,,,,,251.5992889404297,-51.33579254,-2.3177342,-3.568394,2016,0.19257905,,,,,,,,,,15.272731,,,,true,,3,5,true,,false +841,BOSS,,,,,,286.14437903018757,-24.9979844,,,,,,,,,,,,,,11.184234,,,,true,,3,5,true,,false +842,APOGEE,,,858959103757656320,,,179.2848663330078,60.98826981,4.113509,6.264822,2016,3.4246259,,,,,,,,10.751525,9.914839,10.414737,,,,true,,3,5,true,,false +843,APOGEE,,,,,,232.5943784882169,45.80142967610081,,,,,,,,,,,,,,11.633426,,,,true,,3,5,true,,false +844,BOSS,,,,,,42.76535139,-19.76875498,,,,,,19.864174,19.864174,19.864174,19.864174,19.864174,,,,,,,,true,,3,5,true,,false +845,APOGEE,,,,,,101.7719557075585,41.50031234,,,,,,,,,,,,,,16.182959,,,,true,,3,5,true,,false +846,BOSS,,,,,,206.38156127929688,-58.95700836,-8.336351,-2.372365,2016,0.3966283,,,,,,,,,,15.693983,,,,true,,3,5,true,,false +847,BOSS,,,,,,216.42003656015012,-67.7686219,,,,,,,,,,,,,,14.6776705,,,,true,,3,5,true,,false +848,BOSS,,,,,,129.3360320065731,-13.7081642,,,,,,17.933521,17.933521,17.933521,17.933521,17.933521,,,,,,,,true,,3,5,true,,false +849,BOSS,,,,,,12.950535774230957,-24.60267258,-2.8400078,1.120561,2016,1.4010972,,,,,,,,,,15.049036,,,,true,,3,5,true,,false +850,BOSS,,,4112596185734946816,,,258.0343322753906,-24.55488014,-4.4423676,-2.6517355,2016,0.2631433,,,,,,,,14.720979,12.111779,13.280781,,,,true,,3,5,true,,false +851,BOSS,,,,,,109.89338684082031,-14.16659641,,,,,,24.618567,22.422737,21.86813,21.455025,22.074617,,,,,,,,true,,3,5,true,,false +852,APOGEE,,,,,,257.7170104980469,-59.21847153,1.5426306,-8.476257,2016,0.8560386,,,,,,,,,,15.4671955,,,,true,,3,5,true,,false +853,BOSS,,,4103857095536393344,,,279.2171325683594,-13.90309525,-4.3481903,-5.739468,2016,0.120621294,,,,,,,,16.955921,14.338213,15.541387,,,,true,,3,5,true,,false +854,APOGEE,,,,,,178.95907592773438,0.348806232,,,,,,24.287344,23.179579,22.773827,22.78833,21.859497,,,,,,,,true,,3,5,true,,false +855,APOGEE,,,,,,239.3433654636356,-79.85042787,,,,,,,,,,,,,,17.473711,,,,true,,3,5,true,,false +856,APOGEE,,,,1235192115,,283.1319580078125,17.298070907592773,,,,,,,,,,,,,,,15.88,,,true,,3,5,true,,false +857,APOGEE,,,,,,254.16176228921006,50.62956157553981,,,,,,14.421979,14.421979,14.421979,14.421979,14.421979,,,,,,,,true,,3,5,true,,false +858,APOGEE,,,,,,47.66599494912272,-14.09777627,,,,,,,,,,,,,,17.247301,,,,true,,3,5,true,,false +859,BOSS,,,,,,128.84603881835938,4.458049297332764,,,,,,24.01289,22.734953,21.41248,20.979431,20.518864,,,,,,,,true,,3,5,true,,false +860,BOSS,,,,,,235.550148,-7.037564424,,,,,,,,,,,,,,16.876478,,,,true,,3,5,true,,false +861,APOGEE,,,5904922597083990400,,,223.34385681152344,-48.18967438,-3.97462,-1.4591044,2016,0.07536201,,,,,,,,14.780618,11.396391,12.7208605,,,,true,,3,5,true,,false +862,APOGEE,63050395262517558,,4050953956144255232,,,272.7914123535156,-27.86912727,0.42760798,-6.5873666,2016,0.1333057,,,,,,,,16.689833,15.001422,15.926193,,,,true,,3,5,true,,false +863,BOSS,,,,,,104.90880075151009,-84.79717805,,,,,,,,,,,,,,10.292146,,,,true,,3,5,true,,false +864,BOSS,,,,,,332.5770568847656,0.3497856855392456,,,,,,22.63277,23.477345,22.441896,22.286156,22.000551,,,,,,,,true,,3,5,true,,false +865,APOGEE,,,170206740741624064,,,61.45916748046875,32.74042510986328,-0.47325984,-1.2710149,2016,0.45788494,,,,,,,,16.297436,15.199878,15.83653,,,,true,,3,5,true,,false +866,APOGEE,,,,,,357.12236988732064,29.574373893731178,,,,,,,,,,,,,,16.331451,,,,true,,3,5,true,,false +867,BOSS,63050395111395708,,,129375170,,96.77893829345703,-4.479106903,,,,,,,,,,,,,,,13.783,,,true,,3,5,true,,false +868,APOGEE,,,,,,17.61603546142578,6.484511852264404,,,,,,22.928564,23.156717,22.375666,21.779774,21.0714,,,,,,,,true,,3,5,true,,false +869,APOGEE,,,,,,344.9284973144531,35.06570053100586,-9.143999,-24.117666,2016,4.896954,,,,,,,,,,15.85635,,,,true,,3,5,true,,false +870,APOGEE,,,,,,213.28352343423714,-77.03669432,,,,,,,,,,,,,,16.771076,,,,true,,3,5,true,,false +871,BOSS,,,,,,150.4371337890625,39.67680740356445,,,,,,25.711784,23.43227,22.232285,22.192497,22.805454,,,,,,,,true,,3,5,true,,false +872,APOGEE,,,6760286912002334464,,,282.8978576660156,-31.2216053,-4.813286,-5.5857024,2016,0.3182749,,,,,,,,16.319586,15.029354,15.745424,,,,true,,3,5,true,,false +873,APOGEE,,,,,,350.0603884490101,30.60254284165589,,,,,,,,,,,,,,13.089112,,,,true,,3,5,true,,false +874,BOSS,,,,,,168.63392639160156,0.28046420216560364,,,,,,24.629711,22.848324,22.557253,21.866255,22.415123,,,,,,,,true,,3,5,true,,false +875,APOGEE,,,,,,341.8027648925781,2.4120230674743652,24.182482,-2.7091172,2016,1.1305094,,,,,,,,,,15.290855,,,,true,,3,5,true,,false +876,BOSS,,,,,,338.56253429170334,-47.80954417,,,,,,17.804657,17.804657,17.804657,17.804657,17.804657,,,,,,,,true,,3,5,true,,false +877,BOSS,,,,,,266.1629943847656,-70.47168732,-0.3700021,-7.442837,2016,0.19168074,,,,,,,,,,14.006102,,,,true,,3,5,true,,false +878,APOGEE,,,,,,275.0453186035156,17.53877830505371,-3.109776,-7.403608,2016,0.7228079,,,,,,,,,,14.434531,,,,true,,3,5,true,,false +879,APOGEE,,,,,,143.20983322689278,5.535992198960386,,,,,,13.134068,13.134068,13.134068,13.134068,13.134068,,,,,,,,true,,3,5,true,,false +880,BOSS,,,5929354913707653632,,,251.09344482421875,-55.86211014,-3.490731,-4.488674,2016,0.47799397,,,,,,,,15.480678,14.193657,14.918941,,,,true,,3,5,true,,false +881,APOGEE,63050396552585018,,52888265939905024,,,63.19460678100586,22.863086700439453,5.8576875,-4.1161404,2016,1.1472226,,,,,,,,16.07513,14.632395,15.429842,,,,true,,3,5,true,,false +882,APOGEE,,,,,,185.3742218017578,-61.11683273,-6.962159,0.1386338,2016,0.20793065,,,,,,,,,,15.527899,,,,true,,3,5,true,,false +883,APOGEE,,,,,,351.6130897658644,68.46384810966384,,,,,,13.850211,13.850211,13.850211,13.850211,13.850211,,,,,,,,true,,3,5,true,,false +884,BOSS,,,2188983653541511424,,,315.0875549316406,55.84925079345703,-3.6966698,-4.25695,2016,0.25859675,,,,,,,,16.162766,13.89645,14.965179,,,,true,,3,5,true,,false +885,BOSS,,,4112897108318417152,,,257.2795104980469,-23.68830872,-0.71550995,-6.1061873,2016,0.26978156,,,,,,,,14.960374,13.333724,14.189638,,,,true,,3,5,true,,false +886,APOGEE,,,3061904626528077824,,,112.4217300415039,-2.138832331,18.38133,-25.75958,2016,2.6865485,,,,,,,,13.15904,12.26785,12.794762,,,,true,,3,5,true,,false +887,BOSS,,,,,,315.0568874357906,88.56266917515495,,,,,,18.00937,18.00937,18.00937,18.00937,18.00937,,,,,,,,true,,3,5,true,,false +888,APOGEE,,,4353773099161717888,,,251.80307006835938,-4.159920692,-11.092981,-2.5124733,2016,1.3597438,,,,,,,,14.45369,13.247324,13.932805,,,,true,,3,5,true,,false +889,APOGEE,,,,,,297.1035461425781,-47.0927887,-0.3156617,-6.292669,2016,0.14056955,,,,,,,,,,14.129204,,,,true,,3,5,true,,false +890,BOSS,,,,,,191.39051475831613,-28.89367508,,,,,,,,,,,,,,18.24594,,,,true,,3,5,true,,false +891,APOGEE,,,,,,344.7470703,23.877243041992188,,,,,,23.982058,23.185135,21.935707,20.619392,19.89212,,,,,,,,true,,3,5,true,,false +892,APOGEE,,,3833360158239884800,,,150.57752990722656,-0.007587385,-21.563665,-0.9384771,2016,1.6161392,,,,,,,,15.633874,14.492047,15.142449,,,,true,,3,5,true,,false +893,APOGEE,,,6038958390254564096,,,245.63526916503906,-28.71643639,-4.1403327,-3.2592616,2016,0.655538,,,,,,,,16.060799,14.4560995,15.34438,,,,true,,3,5,true,,false +894,BOSS,,,,,,69.04888814270753,-78.700914,,,,,,11.75486,11.75486,11.75486,11.75486,11.75486,,,,,,,,true,,3,5,true,,false +895,APOGEE,,,4256218208469095936,,,277.74908447265625,-5.993944645,-0.37536165,-1.744794,2016,0.3882203,,,,,,,,17.41702,14.307373,15.571431,,,,true,,3,5,true,,false +896,BOSS,,,5598611469451823488,,,116.4054183959961,-30.8344059,-2.4098809,3.3117878,2016,0.31596464,,,,,,,,16.097937,15.418643,15.84276,,,,true,,3,5,true,,false +897,APOGEE,63050395194903446,,4039287622406474624,,,273.04193115234375,-34.49690628,-3.9136634,-5.8426304,2016,0.14426517,,,,,,,,16.210026,14.658854,15.486781,,,,true,,3,5,true,,false +898,APOGEE,,,,,,241.0905114511767,-9.524710887,,,,,,10.078729,10.078729,10.078729,10.078729,10.078729,,,,,,,,true,,3,5,true,,false +899,APOGEE,,,4529701591041885056,,,275.36492919921875,22.216169357299805,2.3423257,-14.382083,2016,0.69129163,,,,,,,,15.260972,14.278021,14.8558035,,,,true,,3,5,true,,false +900,APOGEE,,,,,,239.46617126464844,11.823068618774414,,,,,,24.363153,23.99309,23.789478,22.47952,21.79503,,,,,,,,true,,3,5,true,,false +901,APOGEE,,,5605213731842192000,,,110.05709838867188,-30.65170479,-1.1348412,6.1828103,2016,0.6718026,,,,,,,,13.781239,13.280834,13.601935,,,,true,,3,5,true,,false +902,APOGEE,63050394878125098,,,1099136457,,299.4357604980469,19.292179107666016,,,,,,,,,,,,,,,14.85,,,true,,3,5,true,,false +903,APOGEE,,,,,,106.02689361572266,-5.807257652,-2.0236325,0.17150497,2016,0.35845667,,,,,,,,,,15.9829,,,,true,,3,5,true,,false +904,APOGEE,63050395120062964,75122958,3137179975704781696,,,115.3438491821289,3.639747381210327,-5.2738905,-2.3318956,2016,0.99217075,,,,,,,,14.209567,13.433655,13.904402,,,,true,,3,5,true,,false +905,BOSS,,,,,,104.47174072265625,6.656782150268555,-6.0917935,-8.244963,2016,0.43486342,,,,,,,,,,15.933841,,,,true,,3,5,true,,false +906,APOGEE,,,,,,315.8370548817254,-50.94035019,,,,,,14.461813,14.461813,14.461813,14.461813,14.461813,,,,,,,,true,,3,5,true,,false +907,BOSS,,,5241911106919893888,,,162.96871948242188,-62.54104996,-7.210754,2.6756608,2016,0.3440247,,,,,,,,14.869354,14.271011,14.669558,,,,true,,3,5,true,,false +908,APOGEE,,,,,,128.02798461914062,13.603619575500488,,,,,,22.423151,21.871357,21.12993,20.88642,20.442284,,,,,,,,true,,3,5,true,,false +909,BOSS,,,,,,25.179156638713923,-30.91257829,,,,,,12.923904,12.923904,12.923904,12.923904,12.923904,,,,,,,,true,,3,5,true,,false +910,BOSS,,,,,,267.2798156738281,-79.41946411,3.1277423,-9.363432,2016,0.58969927,,,,,,,,,,15.621861,,,,true,,3,5,true,,false +911,BOSS,,,,,,69.75717006818138,79.58543028,,,,,,13.416117,13.416117,13.416117,13.416117,13.416117,,,,,,,,true,,3,5,true,,false +912,BOSS,,,,,,181.27206420898438,-62.09513092,-7.752234,0.81886333,2016,0.27622315,,,,,,,,,,15.829043,,,,true,,3,5,true,,false +913,APOGEE,,,5970035641357152512,,,252.67510986328125,-39.4069519,10.419095,-11.482424,2016,1.4367099,,,,,,,,15.709904,14.284756,15.067823,,,,true,,3,5,true,,false +914,APOGEE,,,,,,258.3322448730469,-71.53631592,-1.1245981,-1.6338904,2016,0.14228217,,,,,,,,,,12.377637,,,,true,,3,5,true,,false +915,APOGEE,,,,,,279.24625786286634,-43.630443,,,,,,11.148791,11.148791,11.148791,11.148791,11.148791,,,,,,,,true,,3,5,true,,false +916,BOSS,,,5259754359580504704,,,150.9435272216797,-56.34089661,3.5148335,-1.9878436,2016,1.2405018,,,,,,,,14.731065,13.858827,14.380158,,,,true,,3,5,true,,false +917,BOSS,,,,,,19.20097245499865,-24.05500617,,,,,,10.391047,10.391047,10.391047,10.391047,10.391047,,,,,,,,true,,3,5,true,,false +918,BOSS,,,,,,33.01911889309294,18.097420352029758,,,,,,,,,,,,,,18.975893,,,,true,,3,5,true,,false +919,APOGEE,,,,,,308.2547611,80.16363110332537,,,,,,19.393427,19.393427,19.393427,19.393427,19.393427,,,,,,,,true,,3,5,true,,false +920,APOGEE,,,,,,169.7850173533284,37.33708615116301,,,,,,,,,,,,,,15.074795,,,,true,,3,5,true,,false +921,BOSS,,,,,,269.2797852,-32.46685791,-7.7620144,-1.8232079,2016,0.15793274,,,,,,,,,,15.871359,,,,true,,3,5,true,,false +922,APOGEE,,,,,,96.2308034,87.78098440633926,,,,,,,,,,,,,,17.175756,,,,true,,3,5,true,,false +923,BOSS,63050395044487649,,,738612456,,310.9505310058594,61.74651336669922,,,,,,,,,,,,,,,14.645,,,true,,3,5,true,,false +924,APOGEE,,,,,,39.64012908935547,-8.56165123,,,,,,24.010778,22.607023,21.522726,21.076353,20.891064,,,,,,,,true,,3,5,true,,false +925,APOGEE,,,,,,200.0910262488222,-52.68056451,,,,,,,,,,,,,,17.603024,,,,true,,3,5,true,,false +926,APOGEE,,,,,,131.1952667236328,27.386764526367188,,,,,,21.7776,20.653898,20.132408,19.625088,19.664072,,,,,,,,true,,3,5,true,,false +927,BOSS,,,4478829146535620224,,,275.58074951171875,9.528278350830078,3.0217552,-11.03084,2016,1.1537447,,,,,,,,14.636052,13.602466,14.204163,,,,true,,3,5,true,,false +928,BOSS,,,,,,339.3148498535156,24.71223258972168,,,,,,19.519648,17.915838,17.363842,17.126333,17.042051,,,,,,,,true,,3,5,true,,false +929,APOGEE,,,,,,274.7460021972656,-35.33782196,-3.604351,-5.2971497,2016,0.09439389,,,,,,,,,,13.343664,,,,true,,3,5,true,,false +930,APOGEE,,,,,,195.18368530273438,35.73964309692383,,,,,,22.659458,23.038898,22.015358,21.626303,22.335,,,,,,,,true,,3,5,true,,false +931,APOGEE,,,,,,331.0319824,-48.13788605,37.891155,-2.5633848,2016,3.4679208,,,,,,,,,,15.991901,,,,true,,3,5,true,,false +932,APOGEE,,,,,,81.90642555411596,-38.5680233,,,,,,15.352032,15.352032,15.352032,15.352032,15.352032,,,,,,,,true,,3,5,true,,false +933,APOGEE,,,,,,326.9231872558594,9.166776657104492,,,,,,25.242296,23.046564,21.765423,20.521229,19.76796,,,,,,,,true,,3,5,true,,false +934,APOGEE,63050395086439106,72883834,2939915426332706304,,,98.17352294921875,-19.45599174,-0.673839,-1.3961484,2016,2.218705,,,,,,,,11.573012,10.951271,11.339647,,,,true,,3,5,true,,false +935,APOGEE,,,,590244304,,241.90451049804688,-43.34813309,,,,,,,,,,,,,,,15.338,,,true,,3,5,true,,false +936,APOGEE,63050394813953528,,540109905754475904,,,5.900785923,76.98787689208984,-7.003332,3.7822993,2016,0.044018105,,,,,,,,15.581039,14.216597,15.586018,,,,true,,3,5,true,,false +937,BOSS,,,,,,267.52972412109375,53.33525085449219,11.539139,-57.049255,2016,5.0973244,,,,,,,,,,14.586147,,,,true,,3,5,true,,false +938,APOGEE,,,,,,116.85189056396484,13.385916709899902,,,,,,22.640453,20.577484,19.838839,19.52869,19.284267,,,,,,,,true,,3,5,true,,false +939,BOSS,,,,,,218.2891905492362,11.695768966341944,,,,,,,,,,,,,,18.280252,,,,true,,3,5,true,,false +940,BOSS,,,5315803133032880640,,,124.89336395263672,-57.11537552,-2.5791333,4.7820325,2016,0.72399664,,,,,,,,14.7885275,13.750988,14.357203,,,,true,,3,5,true,,false +941,BOSS,,,220229400203620224,,,59.18840789794922,36.73500061035156,2.2846332,0.80692226,2016,0.5813353,,,,,,,,15.547011,14.0614195,14.866968,,,,true,,3,5,true,,false +942,BOSS,,,,489625952,,237.9829102,-52.94974899,,,,,,,,,,,,,,,14.512,,,true,,3,5,true,,false +943,BOSS,,,4021534529587585664,,,176.02943420410156,31.526151657104492,-14.19122,-10.607481,2016,1.1380758,,,,,,,,15.935618,14.901812,15.500678,,,,true,,3,5,true,,false +944,APOGEE,63050395729149852,,4483872984324173696,,,275.9568176269531,11.725010871887207,-1.6634729,-1.5949261,2016,0.18337691,,,,,,,,15.910221,14.5252,15.283721,,,,true,,3,5,true,,false +945,APOGEE,,,,,,276.6789855957031,48.93211364746094,-6.888229,11.975583,2016,0.99248666,,,,,,,,,,15.774844,,,,true,,3,5,true,,false +946,APOGEE,,,,,,232.9378028332862,-29.9267317,,,,,,,,,,,,,,10.585612,,,,true,,3,5,true,,false +947,BOSS,,,,,,147.76600646972656,0.8712112903594971,,,,,,23.374975,24.59667,22.401163,21.721073,21.621645,,,,,,,,true,,3,5,true,,false +948,APOGEE,,,,,,111.11753295482876,-59.45835248,,,,,,,,,,,,,,17.956556,,,,true,,3,5,true,,false +949,APOGEE,63050396068822504,,,945906288,,218.8966064453125,-65.08974457,,,,,,,,,,,,,,,14.917,,,true,,3,5,true,,false +950,APOGEE,,,,,,261.42599538638444,48.16675916317527,,,,,,11.751232,11.751232,11.751232,11.751232,11.751232,,,,,,,,true,,3,5,true,,false +951,APOGEE,,,,,,357.9269104003906,-5.918411732,,,,,,22.744791,23.428076,21.993385,21.2826,21.085152,,,,,,,,true,,3,5,true,,false +952,APOGEE,,,,,,351.62188720703125,65.50370025634766,45.005985,-0.734764,2016,1.8225596,,,,,,,,,,15.964727,,,,true,,3,5,true,,false +953,BOSS,,,5310843992024958080,,,140.7042236328125,-53.30128098,-6.4459105,4.784749,2016,0.4393334,,,,,,,,15.481124,14.470877,15.068039,,,,true,,3,5,true,,false +954,BOSS,,,,,,214.1499481201172,-38.8212471,-18.454441,-9.63907,2016,1.9700277,,,,,,,,,,13.150431,,,,true,,3,5,true,,false +955,APOGEE,63050395325735904,83124557,4065905076512966656,,,272.0969238,-24.0616703,10.503358,-1.3700593,2016,1.0766963,,,,,,,,13.085819,11.683794,12.459914,,,,true,,3,5,true,,false +956,BOSS,,,930651694294719104,,,126.53436279296875,47.44715881347656,-3.7982104,-6.5683365,2016,0.49439967,,,,,,,,15.846878,15.005006,15.511344,,,,true,,3,5,true,,false +957,BOSS,,,,,,229.81707364998886,-8.664139631,,,,,,16.042799,16.042799,16.042799,16.042799,16.042799,,,,,,,,true,,3,5,true,,false +958,APOGEE,,,,,,290.27798522614677,14.461860722736773,,,,,,14.7008,14.7008,14.7008,14.7008,14.7008,,,,,,,,true,,3,5,true,,false +959,APOGEE,63050396030983619,,5825496247929907328,,,234.89596557617188,-65.70996857,-4.9341226,-2.4333732,2016,0.35306183,,,,,,,,15.338764,14.455578,14.983033,,,,true,,3,5,true,,false +960,BOSS,,,,,,250.5493164,17.48832893371582,,,,,,23.17105,23.680649,22.359728,22.35243,22.831812,,,,,,,,true,,3,5,true,,false +961,APOGEE,63050396209519974,,5932712925328241152,,,241.48829650878906,-54.11332703,-3.0678728,-6.0684285,2016,0.6473175,,,,,,,,14.483506,13.050811,13.836803,,,,true,,3,5,true,,false +962,APOGEE,,,,,,283.8191223144531,-13.48061371,-1.869061,-0.634658,2016,0.21127893,,,,,,,,,,15.580607,,,,true,,3,5,true,,false +963,BOSS,,,2935237691555318784,,,105.61466217041016,-17.82543373,-2.177266,-3.1439455,2016,0.4822651,,,,,,,,15.9318695,14.736865,15.419585,,,,true,,3,5,true,,false +964,APOGEE,,,4507506883696913536,,,282.6756896972656,15.200173377990723,-0.25196442,-5.3741407,2016,0.5400792,,,,,,,,15.965502,14.905372,15.521168,,,,true,,3,5,true,,false +965,APOGEE,,,,,,276.5800827613549,-87.56539758,,,,,,17.267292,17.267292,17.267292,17.267292,17.267292,,,,,,,,true,,3,5,true,,false +966,APOGEE,,,,,,8.124952316,15.009519577026367,,,,,,24.285433,23.97733,22.56597,21.467615,20.344866,,,,,,,,true,,3,5,true,,false +967,BOSS,,,,,,344.0227993984977,21.72764511343388,,,,,,,,,,,,,,14.40221,,,,true,,3,5,true,,false +968,BOSS,,,,,,80.43190424713535,-19.22246467,,,,,,,,,,,,,,11.478988,,,,true,,3,5,true,,false +969,BOSS,,,,,,246.81004333496094,-25.98641396,1.1111625,-8.138172,2016,0.7857863,,,,,,,,,,15.716153,,,,true,,3,5,true,,false +970,APOGEE,,,,,,273.6872132,-29.84170809,,,,,,,,,,,,,,15.762213,,,,true,,3,5,true,,false +971,BOSS,,,,,,78.76181539731226,-30.97573685,,,,,,,,,,,,,,18.901337,,,,true,,3,5,true,,false +972,BOSS,,,5616544027373107840,,,109.65764617919922,-24.89844131,-2.9394205,3.1703668,2016,0.7258741,,,,,,,,15.586793,14.404826,15.078097,,,,true,,3,5,true,,false +973,APOGEE,,,2123071229985348224,,,273.30670166015625,49.635005950927734,18.896616,9.749008,2016,4.166161,,,,,,,,15.015386,13.518826,14.322646,,,,true,,3,5,true,,false +974,APOGEE,,,,,,302.2156982421875,46.80413818359375,-2.9726932,-3.6378117,2016,0.16334681,,,,,,,,,,15.982075,,,,true,,3,5,true,,false +975,APOGEE,,,4120327878431219328,,,266.8277587890625,-18.78831673,-3.1928937,-5.007303,2016,0.16952704,,,,,,,,17.10169,14.23565,15.473866,,,,true,,3,5,true,,false +976,BOSS,,,,,,109.86047505334886,2.400742350814312,,,,,,,,,,,,,,12.822466,,,,true,,3,5,true,,false +977,APOGEE,,,,,,151.67854094632628,-14.19495477,,,,,,,,,,,,,,12.861285,,,,true,,3,5,true,,false +978,BOSS,,,,,,223.48760986328125,-52.71503067,-4.1167645,-3.1320472,2016,0.024767304,,,,,,,,,,15.784547,,,,true,,3,5,true,,false +979,APOGEE,,,5959319865404667520,,,262.6002197265625,-41.25452805,-2.952774,-0.60279495,2016,0.2327445,,,,,,,,14.559116,11.403349,12.686344,,,,true,,3,5,true,,false +980,BOSS,,,6127250651435196416,,,187.41477966308594,-50.26376343,-2.895175,10.019287,2016,1.1706499,,,,,,,,15.268555,14.296057,14.869961,,,,true,,3,5,true,,false +981,BOSS,,,,,,123.83009078808513,-50.39364311,,,,,,11.47214,11.47214,11.47214,11.47214,11.47214,,,,,,,,true,,3,5,true,,false +982,APOGEE,,,,,,232.3089599609375,-59.57844543,-7.108618,-4.284143,2016,0.5077867,,,,,,,,,,15.386257,,,,true,,3,5,true,,false +983,BOSS,,,,,,161.2154083251953,49.994773864746094,,,,,,25.606544,23.80732,22.06862,20.767447,19.834185,,,,,,,,true,,3,5,true,,false +984,APOGEE,,,,,,232.0019989013672,-23.51311111,1.0240436,-9.517354,2016,1.2165018,,,,,,,,,,15.068976,,,,true,,3,5,true,,false +985,APOGEE,,,,,,198.06077266430475,-21.66710133,,,,,,,,,,,,,,19.310125,,,,true,,3,5,true,,false +986,BOSS,,,,,,95.14650148531813,31.55930326972893,,,,,,13.440146,13.440146,13.440146,13.440146,13.440146,,,,,,,,true,,3,5,true,,false +987,APOGEE,,,,,,135.5488281,-36.97105408,-5.7079997,2.01366,2016,0.8640847,,,,,,,,,,14.303811,,,,true,,3,5,true,,false +988,BOSS,,,,799237458,,357.1575622558594,61.12431335449219,,,,,,,,,,,,,,,16.255,,,true,,3,5,true,,false +989,BOSS,,,,,,59.28349685668945,12.678717613220215,,,,,,25.763632,25.15737,24.801907,24.204172,18.3594,,,,,,,,true,,3,5,true,,false +990,BOSS,,,,,,159.37468660356677,-89.1207102,,,,,,,,,,,,,,10.986762,,,,true,,3,5,true,,false +991,BOSS,,,,,,85.62360910313627,-30.69191248,,,,,,,,,,,,,,11.84522,,,,true,,3,5,true,,false +992,BOSS,,,,945371526,,217.4279785,-61.13077164,,,,,,,,,,,,,,,14.693,,,true,,3,5,true,,false +993,APOGEE,,,,,,180.28981434651655,46.104693512913286,,,,,,19.63566,19.63566,19.63566,19.63566,19.63566,,,,,,,,true,,3,5,true,,false +994,APOGEE,,,,,,236.95313147145586,11.754803041201313,,,,,,16.987535,16.987535,16.987535,16.987535,16.987535,,,,,,,,true,,3,5,true,,false +995,BOSS,,,,512394860,,227.46453857421875,-58.14958954,,,,,,,,,,,,,,,14.903,,,true,,3,5,true,,false +996,APOGEE,,,,,,204.24234229114955,62.787785797964546,,,,,,,,,,,,,,16.939175,,,,true,,3,5,true,,false +997,BOSS,,,,,,46.127068416738105,-1.063977816,,,,,,15.935718,15.935718,15.935718,15.935718,15.935718,,,,,,,,true,,3,5,true,,false +998,APOGEE,,,,,,336.0591125488281,57.78157424926758,6.129362,2.1856046,2016,1.0745684,,,,,,,,,,15.988846,,,,true,,3,5,true,,false +999,BOSS,63050395806899015,,4878514748638974976,,,71.46774291992188,-28.87862206,9.606046,-3.6115289,2016,1.7186465,,,,,,,,15.019477,13.924454,14.603652,,,,true,,3,5,true,,false +1000,APOGEE,,,5373979770729287680,,,169.5585938,-48.88965225,-16.181047,0.35555366,2016,1.3835307,,,,,,,,15.382621,14.314879,14.92956,,,,true,,3,5,true,,false From 64323af8292ef3d3fbec36166dd30397b90c6bfa Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 13:58:04 -0500 Subject: [PATCH 12/16] ran poetry update --- poetry.lock | 1398 ++++++++++++++++++++++++++------------------------- 1 file changed, 702 insertions(+), 696 deletions(-) diff --git a/poetry.lock b/poetry.lock index a9ccda8..f506d03 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2,33 +2,40 @@ [[package]] name = "adbc-driver-manager" -version = "0.9.0" +version = "0.11.0" description = "A generic entrypoint for ADBC drivers." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" files = [ - {file = "adbc_driver_manager-0.9.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:9c7ee38855d4b4ebd6c83f14ab1b44bb8dc47173cb26f165a3d7b3a7a5dc39b6"}, - {file = "adbc_driver_manager-0.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e67781edb19f1b76d06a1aa099987a801b5e4298842acac1b0f123934ac7e180"}, - {file = "adbc_driver_manager-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58921cc1c82e1583f5faa5f65d6bc5e18a0428dd837db2a039cfa90f6c411cdf"}, - {file = "adbc_driver_manager-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7adca37f8e4a0bb164c3c43b603013f85df30a75bbdf3329c15fa4ae463736c0"}, - {file = "adbc_driver_manager-0.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ec4e49ae23fb4b8f8938d78bcca262722fdf78799b114928fda80bba8dada541"}, - {file = "adbc_driver_manager-0.9.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:638e5bdbb86abc1745679ed350266394d1478d53628a3f06d69a7778a280201d"}, - {file = "adbc_driver_manager-0.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:33380cebfe909e78ad7a47faf0d204541e8640ac479ebe3e2dc4e152bc68dc51"}, - {file = "adbc_driver_manager-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95f29b7fa75ddebe34406a28f23df0ffe2ff861bd4d1a2c916ca46946e344d5b"}, - {file = "adbc_driver_manager-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f38e098b0d02d03e6c1c612167ad2e589141f6ee6c513ef1321edac90bf66f2"}, - {file = "adbc_driver_manager-0.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:dcdc7fbe1bb91be61a53cf6693ed70d2018e66cc520eaa4e57f1b425260a4ff4"}, - {file = "adbc_driver_manager-0.9.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:31e508b908f3b5c9183beb3b3528ff936f7429b82271346718d2be06103093ba"}, - {file = "adbc_driver_manager-0.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7b2d6137025dc2aaa1a03777c25107d98f5d904c9edf18d6ed743c89bf89a0a4"}, - {file = "adbc_driver_manager-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f2de9536954881f0b6b7211742b54d4ce02c8b86b011de840a96948cdde4668"}, - {file = "adbc_driver_manager-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b4cecbf4196fe06e6f8d6bcaddbff56f8e8dfd95b3443c2640de7d9c19d2f0"}, - {file = "adbc_driver_manager-0.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:7c3e589f70830887523607aa93dcb01a822dbdb63d55cc8fed54f5da53174e4b"}, - {file = "adbc_driver_manager-0.9.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:52e96957f08723b28b37b52084c6fb9d61251144cfab30645563c5f60db5b6a1"}, - {file = "adbc_driver_manager-0.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9fd41d26d60f2189543d32b1484f99d89285da345c6552ce85e820402fe2ca9e"}, - {file = "adbc_driver_manager-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2feb0290058b553b454b9bf145cc262cc29c4f18f076058a219ceeb95f5f505a"}, - {file = "adbc_driver_manager-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ab7cd84d2dc5574eae03d0e8f713b3eb75c929cb01fae80bf877ee06cc3ef86"}, - {file = "adbc_driver_manager-0.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:5fe5d9ee9eb382da378d727052a685b6196c587df75964f29d8bd0b46e1fd63e"}, + {file = "adbc_driver_manager-0.11.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:719dc68c39f4b4ceb7ab6608aeddf58321d0d75fe6059d07d879a319aa250c24"}, + {file = "adbc_driver_manager-0.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b07c695350b52df8a23ecef9de4b5c4a7571eaa62e036ad0a49d8ff839e091b8"}, + {file = "adbc_driver_manager-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0df66ae1888f3a0a5edfba69396c8e57b35ef8e2794db5b7669ab63e7039803a"}, + {file = "adbc_driver_manager-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13fbe76890f6405fa2554f20a5c08ee27bb66047a25ffb31b8ae04b4c6559bf3"}, + {file = "adbc_driver_manager-0.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:54c0c6f61c7a6eb359621eeb9a4a43d42a1521e8de55dfd127f84413be990c00"}, + {file = "adbc_driver_manager-0.11.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:350baa2618e425b95c0a91d4994c97a5f595f5f6deffbb16be9871beac23cb06"}, + {file = "adbc_driver_manager-0.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cd54c6eebca86f6bf577db54e37ba0e6b2f8eceb903b284fb72a746510fa4295"}, + {file = "adbc_driver_manager-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a2df402e80f18d51642e428a029d41eea6e59ccfb8f15918f5b03bcd78f0623"}, + {file = "adbc_driver_manager-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e1582eb4532ba9c5c0e13c7dec610026dc6dc83c050cee9b33209d68f08b05e"}, + {file = "adbc_driver_manager-0.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:8a141c1720c8163bfabdb27e7268e7013805f8aabf2e6897cf04e92fbd8e81fa"}, + {file = "adbc_driver_manager-0.11.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:69ffc5b95b8245ff8871d7fd0baaffac46d898446e428a4d6b4be73e0f50ca09"}, + {file = "adbc_driver_manager-0.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b6cad3a7aa3c0a8caa1e5912e47ed9d4a9cbf7708258ad2a4b2d1cdfe5406cf"}, + {file = "adbc_driver_manager-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfe03c6a37aa09c56b702d83760c11c4c691fef38e2818657b705d3d105326fd"}, + {file = "adbc_driver_manager-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f21f9f718ad9ed3e91d17f276232db9d4f7b3e99c57ddd29e79df64993e0b17"}, + {file = "adbc_driver_manager-0.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:51f2ae6a1dc6fdc56ef19594fdff326eed73c1aa9be33cf0699804c9029bd480"}, + {file = "adbc_driver_manager-0.11.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:599c81094a12d5138ed2acf99bf67e071a894279f4d585911e23f6ec752d875b"}, + {file = "adbc_driver_manager-0.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e35fbe6f4edaf2faf260818746da036289c5675a1ca2043d04bb95b9e2e03978"}, + {file = "adbc_driver_manager-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6909a3d2539c1f9cb4c2376f9623c87e4d7c6b70aad2e1e7cefd49c63d117c4e"}, + {file = "adbc_driver_manager-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05ddabed57061e88dba2d89ef145ef01b0bda1fe8eb46927e4f7c729ecdbcb72"}, + {file = "adbc_driver_manager-0.11.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:704359cece880982a9649650aefec8187dfc340872f84c15a450dba6bca478ce"}, + {file = "adbc_driver_manager-0.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bf0433fd64f27263399da53c05bc968b60acffc9eb7c274b5790a7e3615d8af3"}, + {file = "adbc_driver_manager-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d752ae712b35f5cd03f17b64384739bdb922b7d677e2fdb85dd874c03db19ac6"}, + {file = "adbc_driver_manager-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:982c7aa58cfeadb0d477bdbb02624f4d597d029e989e4222908f5919688e053e"}, + {file = "adbc_driver_manager-0.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:b9a47089782b53faac8819b33ac975ac6a2e935248724bb44a7d9ea3db8810b0"}, ] +[package.dependencies] +typing-extensions = "*" + [package.extras] dbapi = ["pandas", "pyarrow (>=8.0.0)"] test = ["duckdb", "pandas", "pyarrow (>=8.0.0)", "pytest"] @@ -67,13 +74,13 @@ files = [ [[package]] name = "anyio" -version = "4.2.0" +version = "4.3.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.8" files = [ - {file = "anyio-4.2.0-py3-none-any.whl", hash = "sha256:745843b39e829e108e518c489b31dc757de7d2131d53fac32bd8df268227bfee"}, - {file = "anyio-4.2.0.tar.gz", hash = "sha256:e1875bb4b4e2de1669f4bc7869b6d3f54231cdced71605e6e64c9be77e3be50f"}, + {file = "anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8"}, + {file = "anyio-4.3.0.tar.gz", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"}, ] [package.dependencies] @@ -185,33 +192,33 @@ test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] [[package]] name = "black" -version = "24.2.0" +version = "24.3.0" description = "The uncompromising code formatter." optional = false python-versions = ">=3.8" files = [ - {file = "black-24.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6981eae48b3b33399c8757036c7f5d48a535b962a7c2310d19361edeef64ce29"}, - {file = "black-24.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d533d5e3259720fdbc1b37444491b024003e012c5173f7d06825a77508085430"}, - {file = "black-24.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61a0391772490ddfb8a693c067df1ef5227257e72b0e4108482b8d41b5aee13f"}, - {file = "black-24.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:992e451b04667116680cb88f63449267c13e1ad134f30087dec8527242e9862a"}, - {file = "black-24.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:163baf4ef40e6897a2a9b83890e59141cc8c2a98f2dda5080dc15c00ee1e62cd"}, - {file = "black-24.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e37c99f89929af50ffaf912454b3e3b47fd64109659026b678c091a4cd450fb2"}, - {file = "black-24.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9de21bafcba9683853f6c96c2d515e364aee631b178eaa5145fc1c61a3cc92"}, - {file = "black-24.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:9db528bccb9e8e20c08e716b3b09c6bdd64da0dd129b11e160bf082d4642ac23"}, - {file = "black-24.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d84f29eb3ee44859052073b7636533ec995bd0f64e2fb43aeceefc70090e752b"}, - {file = "black-24.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e08fb9a15c914b81dd734ddd7fb10513016e5ce7e6704bdd5e1251ceee51ac9"}, - {file = "black-24.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:810d445ae6069ce64030c78ff6127cd9cd178a9ac3361435708b907d8a04c693"}, - {file = "black-24.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:ba15742a13de85e9b8f3239c8f807723991fbfae24bad92d34a2b12e81904982"}, - {file = "black-24.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7e53a8c630f71db01b28cd9602a1ada68c937cbf2c333e6ed041390d6968faf4"}, - {file = "black-24.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:93601c2deb321b4bad8f95df408e3fb3943d85012dddb6121336b8e24a0d1218"}, - {file = "black-24.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0057f800de6acc4407fe75bb147b0c2b5cbb7c3ed110d3e5999cd01184d53b0"}, - {file = "black-24.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:faf2ee02e6612577ba0181f4347bcbcf591eb122f7841ae5ba233d12c39dcb4d"}, - {file = "black-24.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:057c3dc602eaa6fdc451069bd027a1b2635028b575a6c3acfd63193ced20d9c8"}, - {file = "black-24.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:08654d0797e65f2423f850fc8e16a0ce50925f9337fb4a4a176a7aa4026e63f8"}, - {file = "black-24.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca610d29415ee1a30a3f30fab7a8f4144e9d34c89a235d81292a1edb2b55f540"}, - {file = "black-24.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:4dd76e9468d5536abd40ffbc7a247f83b2324f0c050556d9c371c2b9a9a95e31"}, - {file = "black-24.2.0-py3-none-any.whl", hash = "sha256:e8a6ae970537e67830776488bca52000eaa37fa63b9988e8c487458d9cd5ace6"}, - {file = "black-24.2.0.tar.gz", hash = "sha256:bce4f25c27c3435e4dace4815bcb2008b87e167e3bf4ee47ccdc5ce906eb4894"}, + {file = "black-24.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7d5e026f8da0322b5662fa7a8e752b3fa2dac1c1cbc213c3d7ff9bdd0ab12395"}, + {file = "black-24.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9f50ea1132e2189d8dff0115ab75b65590a3e97de1e143795adb4ce317934995"}, + {file = "black-24.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2af80566f43c85f5797365077fb64a393861a3730bd110971ab7a0c94e873e7"}, + {file = "black-24.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:4be5bb28e090456adfc1255e03967fb67ca846a03be7aadf6249096100ee32d0"}, + {file = "black-24.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4f1373a7808a8f135b774039f61d59e4be7eb56b2513d3d2f02a8b9365b8a8a9"}, + {file = "black-24.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:aadf7a02d947936ee418777e0247ea114f78aff0d0959461057cae8a04f20597"}, + {file = "black-24.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c02e4ea2ae09d16314d30912a58ada9a5c4fdfedf9512d23326128ac08ac3d"}, + {file = "black-24.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:bf21b7b230718a5f08bd32d5e4f1db7fc8788345c8aea1d155fc17852b3410f5"}, + {file = "black-24.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:2818cf72dfd5d289e48f37ccfa08b460bf469e67fb7c4abb07edc2e9f16fb63f"}, + {file = "black-24.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4acf672def7eb1725f41f38bf6bf425c8237248bb0804faa3965c036f7672d11"}, + {file = "black-24.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7ed6668cbbfcd231fa0dc1b137d3e40c04c7f786e626b405c62bcd5db5857e4"}, + {file = "black-24.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:56f52cfbd3dabe2798d76dbdd299faa046a901041faf2cf33288bc4e6dae57b5"}, + {file = "black-24.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79dcf34b33e38ed1b17434693763301d7ccbd1c5860674a8f871bd15139e7837"}, + {file = "black-24.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e19cb1c6365fd6dc38a6eae2dcb691d7d83935c10215aef8e6c38edee3f77abd"}, + {file = "black-24.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65b76c275e4c1c5ce6e9870911384bff5ca31ab63d19c76811cb1fb162678213"}, + {file = "black-24.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:b5991d523eee14756f3c8d5df5231550ae8993e2286b8014e2fdea7156ed0959"}, + {file = "black-24.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c45f8dff244b3c431b36e3224b6be4a127c6aca780853574c00faf99258041eb"}, + {file = "black-24.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6905238a754ceb7788a73f02b45637d820b2f5478b20fec82ea865e4f5d4d9f7"}, + {file = "black-24.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7de8d330763c66663661a1ffd432274a2f92f07feeddd89ffd085b5744f85e7"}, + {file = "black-24.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:7bb041dca0d784697af4646d3b62ba4a6b028276ae878e53f6b4f74ddd6db99f"}, + {file = "black-24.3.0-py3-none-any.whl", hash = "sha256:41622020d7120e01d377f74249e677039d20e6344ff5851de8a10f11f513bf93"}, + {file = "black-24.3.0.tar.gz", hash = "sha256:a0c9c4a0771afc6919578cec71ce82a3e31e054904e7197deacbc9382671c41f"}, ] [package.dependencies] @@ -245,45 +252,39 @@ wcwidth = ">=0.1.4" [[package]] name = "blosc2" -version = "2.5.1" +version = "2.6.1" description = "Python wrapper for the C-Blosc2 library" optional = false -python-versions = "<4,>=3.8" -files = [ - {file = "blosc2-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c861262b7fe317c1614a9b59b6c9edf409532b4a6aaf5b2f4ad0d79c6f800b57"}, - {file = "blosc2-2.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f35b5d69a7a41e9d5054297d2540c25f8af5ea3c62e4a80ca7359292d783c04"}, - {file = "blosc2-2.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:546fa39f397dd54b13d7c42a4f890afaf16c70fe478712070942d464c440ce03"}, - {file = "blosc2-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5455af77e7e94159bb4966cae554f232ca2d52bb80cd3f878ecef39cf569da2a"}, - {file = "blosc2-2.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b4dc4f595bf95c350c50bb77a8749cdd08a5dc2bdf3bdb18983d49a52d60b595"}, - {file = "blosc2-2.5.1-cp310-cp310-win32.whl", hash = "sha256:873483bd5c6afb8d139039180ee57b74373232e87b032cb80389fd8bb883ea8e"}, - {file = "blosc2-2.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:d5a7ef00b82fbca069e949335f9c92ce7cbe2039a9fa2e2bd4f5f418043d6262"}, - {file = "blosc2-2.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:da826d42d616f8a939f27e1501b40e764fded66bc80177eeaefcebdbf3b3afb8"}, - {file = "blosc2-2.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ae2e0c5dc8561a6b17842ee4320b49621434c20e622c9e9f5c67c9c6eb3b06a3"}, - {file = "blosc2-2.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af3cab9c12a4364c643266ee7d9583b526c0f484a291d72ec6efb09ea7ffbbf9"}, - {file = "blosc2-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f03a723130cf07e4309fe34b1360c868f4376e862f8ff664eb40d019fdd3f6"}, - {file = "blosc2-2.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0fd109eef815ea1e50fde4f676388aa2f3bb5543502d125fb63f16ec7a014464"}, - {file = "blosc2-2.5.1-cp311-cp311-win32.whl", hash = "sha256:1a3edc3256bad04d3db30c9de7eac3a820f96e741fc754cdabb6a9991e5c37e8"}, - {file = "blosc2-2.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:e7499e277c13334d54f84e74f429f32341f99f7b978deaf9a7c2e963904cb48c"}, - {file = "blosc2-2.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ab849d3adaeb035f2f16cf495cff1792b28d58dfb3de21b9459ee355c6bb8df3"}, - {file = "blosc2-2.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dd66e60dafcc93d4c1f815d726d76f9fb067ecc9106a6c661010e709135c79ce"}, - {file = "blosc2-2.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb5fcd1775b3884d9825aa51fb45253f45cfa21c77f4135fad5dc5db710c2a34"}, - {file = "blosc2-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19f79071a336fcf1eda01cd0171291a4ab82b16cf9a15d2b4d26c010146f13b5"}, - {file = "blosc2-2.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:956a63231f1b448803e9b4bc3e704ea424c89fc14418d99093472c74f19c19e1"}, - {file = "blosc2-2.5.1-cp312-cp312-win32.whl", hash = "sha256:5856e57e0e81f9018f1a12e803b9f768fa5533175092d72d165ac60069c7d2ab"}, - {file = "blosc2-2.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:585d780c5e85f251dec72b75a47666e4a261dbfe1d228769bca545e9fe07f480"}, - {file = "blosc2-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0cb9a6ac1abc466c12bdc90052f17545512de8f854e672a1ea4d2b40292323f5"}, - {file = "blosc2-2.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3def4650faa1db43143d821228ef58797108cc95d6698c4b1581909cc2b149ca"}, - {file = "blosc2-2.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf6efecc1a22da26c73ff5c60d0dc086db1e7edcceb6b360dd193cda893bef28"}, - {file = "blosc2-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b473472b977b770aab3bf20d0feeee84ecd5bb8b15a675287e090ce818c1cd40"}, - {file = "blosc2-2.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7afe59d35d93bf8da7db8de43f4d8aef277514de43953c1e5e416ca839b9023a"}, - {file = "blosc2-2.5.1-cp39-cp39-win32.whl", hash = "sha256:4315ae8d467fe91efa0dbe22004e967008f5fe021ebb3945518f5213d7c4511f"}, - {file = "blosc2-2.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:73eb5e569a91fbe67f7dd78efe6a1ca9a54afff2c847db5dfa675bfd6a424f60"}, - {file = "blosc2-2.5.1.tar.gz", hash = "sha256:47d5df50e7286edf81e629ece35f87f13f55c13c5e8545832188c420c75d1659"}, +python-versions = "<4,>=3.10" +files = [ + {file = "blosc2-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a4be4398b2f39a336958e1e1ce8aa59923d1137ebdd46dd7821390e725168300"}, + {file = "blosc2-2.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ebb85bd1b0864d5abe53fef3319306b9a89231d5295a31c50d845bba37c985c1"}, + {file = "blosc2-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1af499394ce852d66e9f819d8333fbe52e4bb7a6010d744cf68b912fc9e91c"}, + {file = "blosc2-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a476534baafe332db4997bcf53b5c83716d857af05ab1abace24a5c69c968b6"}, + {file = "blosc2-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a6959271f336059ad6d3164e0c6643ba05c4753d42a119c42ddb68d06c26a3e7"}, + {file = "blosc2-2.6.1-cp310-cp310-win32.whl", hash = "sha256:38552c52cd043962e6d2990dc7a398d4f946c1cb9c009e5cb0b4a9601e896e95"}, + {file = "blosc2-2.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:0bbd23c793c5ceee5b0ce4a2f77e0cf7fc095bc1b2071ce271278524f96ceee7"}, + {file = "blosc2-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5de94c6d05caf4df69e215d4522d1645aacecad05deeb34293f21fb0017f3454"}, + {file = "blosc2-2.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d1f55567884b6c24da1c39985109266253579e432c2530994765e9e6e1fd9011"}, + {file = "blosc2-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e06eea3f81ef9ac15490b97f8153601c7baf9bdc6b31968f2312650ec5b2e31"}, + {file = "blosc2-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95d8dcb1c6e565ebda1119e60c4a87a3cd6a49c821bef519fb88581eecb12a15"}, + {file = "blosc2-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:df38c013b26cf0f6c5a6cb344420bb496ba0ce99f2fe3fac5aecfc9fc5969d91"}, + {file = "blosc2-2.6.1-cp311-cp311-win32.whl", hash = "sha256:30eb55008b45d1e4047143fd0f4e1866993d59c03eb11c9966ec25ca3973bd02"}, + {file = "blosc2-2.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:c23087b13693cb6a55437dfb8c025752f5eb0a1d63a65f4a15d5e8bb416d303b"}, + {file = "blosc2-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1e2bf289a867b346d240838eb4a8bd83de759be2b719c5ec581b7e4bcbb6c99d"}, + {file = "blosc2-2.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:09f31a31237dfc58fb6f05d61dcf5f8ead5bd84cb3ada7a2b64adab62b4ce53a"}, + {file = "blosc2-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f251ffcf12db2f27428512223c63a40e881a659c72d729bd22ad2ce2f4f38df"}, + {file = "blosc2-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:decdaba2ef3fbfcf6d1c276c8c9de37bbe0275daefc3bb27a5234800bcb77c8d"}, + {file = "blosc2-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:28286e8977e5b92068df181db69546e4a31269b01794df1d3f6b9ee592bf0c2f"}, + {file = "blosc2-2.6.1-cp312-cp312-win32.whl", hash = "sha256:f7d0b0db44d54ee90889d4f9b2e76892ad0437d87bf01602d254c8912886e47a"}, + {file = "blosc2-2.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:cabf6d9d96f25741d78348d1485dbdae963f98a464e953fbf645a103f7742e8a"}, + {file = "blosc2-2.6.1.tar.gz", hash = "sha256:eee6e321ace1f41db3d3290f92d97d86c235f2c43a873e83f9ad0281b7f1c007"}, ] [package.dependencies] msgpack = "*" ndindex = ">=1.4" +numexpr = "*" numpy = ">=1.20.3" py-cpuinfo = "*" @@ -501,126 +502,126 @@ files = [ [[package]] name = "contourpy" -version = "1.2.0" +version = "1.2.1" description = "Python library for calculating contours of 2D quadrilateral grids" optional = false python-versions = ">=3.9" files = [ - {file = "contourpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0274c1cb63625972c0c007ab14dd9ba9e199c36ae1a231ce45d725cbcbfd10a8"}, - {file = "contourpy-1.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab459a1cbbf18e8698399c595a01f6dcc5c138220ca3ea9e7e6126232d102bb4"}, - {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fdd887f17c2f4572ce548461e4f96396681212d858cae7bd52ba3310bc6f00f"}, - {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d16edfc3fc09968e09ddffada434b3bf989bf4911535e04eada58469873e28e"}, - {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c203f617abc0dde5792beb586f827021069fb6d403d7f4d5c2b543d87edceb9"}, - {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b69303ceb2e4d4f146bf82fda78891ef7bcd80c41bf16bfca3d0d7eb545448aa"}, - {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:884c3f9d42d7218304bc74a8a7693d172685c84bd7ab2bab1ee567b769696df9"}, - {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a1b1208102be6e851f20066bf0e7a96b7d48a07c9b0cfe6d0d4545c2f6cadab"}, - {file = "contourpy-1.2.0-cp310-cp310-win32.whl", hash = "sha256:34b9071c040d6fe45d9826cbbe3727d20d83f1b6110d219b83eb0e2a01d79488"}, - {file = "contourpy-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:bd2f1ae63998da104f16a8b788f685e55d65760cd1929518fd94cd682bf03e41"}, - {file = "contourpy-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dd10c26b4eadae44783c45ad6655220426f971c61d9b239e6f7b16d5cdaaa727"}, - {file = "contourpy-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5c6b28956b7b232ae801406e529ad7b350d3f09a4fde958dfdf3c0520cdde0dd"}, - {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebeac59e9e1eb4b84940d076d9f9a6cec0064e241818bcb6e32124cc5c3e377a"}, - {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:139d8d2e1c1dd52d78682f505e980f592ba53c9f73bd6be102233e358b401063"}, - {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e9dc350fb4c58adc64df3e0703ab076f60aac06e67d48b3848c23647ae4310e"}, - {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18fc2b4ed8e4a8fe849d18dce4bd3c7ea637758c6343a1f2bae1e9bd4c9f4686"}, - {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:16a7380e943a6d52472096cb7ad5264ecee36ed60888e2a3d3814991a0107286"}, - {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8d8faf05be5ec8e02a4d86f616fc2a0322ff4a4ce26c0f09d9f7fb5330a35c95"}, - {file = "contourpy-1.2.0-cp311-cp311-win32.whl", hash = "sha256:67b7f17679fa62ec82b7e3e611c43a016b887bd64fb933b3ae8638583006c6d6"}, - {file = "contourpy-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:99ad97258985328b4f207a5e777c1b44a83bfe7cf1f87b99f9c11d4ee477c4de"}, - {file = "contourpy-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:575bcaf957a25d1194903a10bc9f316c136c19f24e0985a2b9b5608bdf5dbfe0"}, - {file = "contourpy-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9e6c93b5b2dbcedad20a2f18ec22cae47da0d705d454308063421a3b290d9ea4"}, - {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:464b423bc2a009088f19bdf1f232299e8b6917963e2b7e1d277da5041f33a779"}, - {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:68ce4788b7d93e47f84edd3f1f95acdcd142ae60bc0e5493bfd120683d2d4316"}, - {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d7d1f8871998cdff5d2ff6a087e5e1780139abe2838e85b0b46b7ae6cc25399"}, - {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e739530c662a8d6d42c37c2ed52a6f0932c2d4a3e8c1f90692ad0ce1274abe0"}, - {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:247b9d16535acaa766d03037d8e8fb20866d054d3c7fbf6fd1f993f11fc60ca0"}, - {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:461e3ae84cd90b30f8d533f07d87c00379644205b1d33a5ea03381edc4b69431"}, - {file = "contourpy-1.2.0-cp312-cp312-win32.whl", hash = "sha256:1c2559d6cffc94890b0529ea7eeecc20d6fadc1539273aa27faf503eb4656d8f"}, - {file = "contourpy-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:491b1917afdd8638a05b611a56d46587d5a632cabead889a5440f7c638bc6ed9"}, - {file = "contourpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5fd1810973a375ca0e097dee059c407913ba35723b111df75671a1976efa04bc"}, - {file = "contourpy-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:999c71939aad2780f003979b25ac5b8f2df651dac7b38fb8ce6c46ba5abe6ae9"}, - {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7caf9b241464c404613512d5594a6e2ff0cc9cb5615c9475cc1d9b514218ae8"}, - {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:266270c6f6608340f6c9836a0fb9b367be61dde0c9a9a18d5ece97774105ff3e"}, - {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbd50d0a0539ae2e96e537553aff6d02c10ed165ef40c65b0e27e744a0f10af8"}, - {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11f8d2554e52f459918f7b8e6aa20ec2a3bce35ce95c1f0ef4ba36fbda306df5"}, - {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ce96dd400486e80ac7d195b2d800b03e3e6a787e2a522bfb83755938465a819e"}, - {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6d3364b999c62f539cd403f8123ae426da946e142312a514162adb2addd8d808"}, - {file = "contourpy-1.2.0-cp39-cp39-win32.whl", hash = "sha256:1c88dfb9e0c77612febebb6ac69d44a8d81e3dc60f993215425b62c1161353f4"}, - {file = "contourpy-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:78e6ad33cf2e2e80c5dfaaa0beec3d61face0fb650557100ee36db808bfa6843"}, - {file = "contourpy-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be16975d94c320432657ad2402f6760990cb640c161ae6da1363051805fa8108"}, - {file = "contourpy-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b95a225d4948b26a28c08307a60ac00fb8671b14f2047fc5476613252a129776"}, - {file = "contourpy-1.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0d7e03c0f9a4f90dc18d4e77e9ef4ec7b7bbb437f7f675be8e530d65ae6ef956"}, - {file = "contourpy-1.2.0.tar.gz", hash = "sha256:171f311cb758de7da13fc53af221ae47a5877be5a0843a9fe150818c51ed276a"}, + {file = "contourpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bd7c23df857d488f418439686d3b10ae2fbf9bc256cd045b37a8c16575ea1040"}, + {file = "contourpy-1.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5b9eb0ca724a241683c9685a484da9d35c872fd42756574a7cfbf58af26677fd"}, + {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c75507d0a55378240f781599c30e7776674dbaf883a46d1c90f37e563453480"}, + {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11959f0ce4a6f7b76ec578576a0b61a28bdc0696194b6347ba3f1c53827178b9"}, + {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb3315a8a236ee19b6df481fc5f997436e8ade24a9f03dfdc6bd490fea20c6da"}, + {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39f3ecaf76cd98e802f094e0d4fbc6dc9c45a8d0c4d185f0f6c2234e14e5f75b"}, + {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:94b34f32646ca0414237168d68a9157cb3889f06b096612afdd296003fdd32fd"}, + {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:457499c79fa84593f22454bbd27670227874cd2ff5d6c84e60575c8b50a69619"}, + {file = "contourpy-1.2.1-cp310-cp310-win32.whl", hash = "sha256:ac58bdee53cbeba2ecad824fa8159493f0bf3b8ea4e93feb06c9a465d6c87da8"}, + {file = "contourpy-1.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9cffe0f850e89d7c0012a1fb8730f75edd4320a0a731ed0c183904fe6ecfc3a9"}, + {file = "contourpy-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6022cecf8f44e36af10bd9118ca71f371078b4c168b6e0fab43d4a889985dbb5"}, + {file = "contourpy-1.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef5adb9a3b1d0c645ff694f9bca7702ec2c70f4d734f9922ea34de02294fdf72"}, + {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6150ffa5c767bc6332df27157d95442c379b7dce3a38dff89c0f39b63275696f"}, + {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4c863140fafc615c14a4bf4efd0f4425c02230eb8ef02784c9a156461e62c965"}, + {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:00e5388f71c1a0610e6fe56b5c44ab7ba14165cdd6d695429c5cd94021e390b2"}, + {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d4492d82b3bc7fbb7e3610747b159869468079fe149ec5c4d771fa1f614a14df"}, + {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:49e70d111fee47284d9dd867c9bb9a7058a3c617274900780c43e38d90fe1205"}, + {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b59c0ffceff8d4d3996a45f2bb6f4c207f94684a96bf3d9728dbb77428dd8cb8"}, + {file = "contourpy-1.2.1-cp311-cp311-win32.whl", hash = "sha256:7b4182299f251060996af5249c286bae9361fa8c6a9cda5efc29fe8bfd6062ec"}, + {file = "contourpy-1.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2855c8b0b55958265e8b5888d6a615ba02883b225f2227461aa9127c578a4922"}, + {file = "contourpy-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:62828cada4a2b850dbef89c81f5a33741898b305db244904de418cc957ff05dc"}, + {file = "contourpy-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:309be79c0a354afff9ff7da4aaed7c3257e77edf6c1b448a779329431ee79d7e"}, + {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e785e0f2ef0d567099b9ff92cbfb958d71c2d5b9259981cd9bee81bd194c9a4"}, + {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cac0a8f71a041aa587410424ad46dfa6a11f6149ceb219ce7dd48f6b02b87a7"}, + {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af3f4485884750dddd9c25cb7e3915d83c2db92488b38ccb77dd594eac84c4a0"}, + {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ce6889abac9a42afd07a562c2d6d4b2b7134f83f18571d859b25624a331c90b"}, + {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a1eea9aecf761c661d096d39ed9026574de8adb2ae1c5bd7b33558af884fb2ce"}, + {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:187fa1d4c6acc06adb0fae5544c59898ad781409e61a926ac7e84b8f276dcef4"}, + {file = "contourpy-1.2.1-cp312-cp312-win32.whl", hash = "sha256:c2528d60e398c7c4c799d56f907664673a807635b857df18f7ae64d3e6ce2d9f"}, + {file = "contourpy-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:1a07fc092a4088ee952ddae19a2b2a85757b923217b7eed584fdf25f53a6e7ce"}, + {file = "contourpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bb6834cbd983b19f06908b45bfc2dad6ac9479ae04abe923a275b5f48f1a186b"}, + {file = "contourpy-1.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1d59e739ab0e3520e62a26c60707cc3ab0365d2f8fecea74bfe4de72dc56388f"}, + {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd3db01f59fdcbce5b22afad19e390260d6d0222f35a1023d9adc5690a889364"}, + {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a12a813949e5066148712a0626895c26b2578874e4cc63160bb007e6df3436fe"}, + {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe0ccca550bb8e5abc22f530ec0466136379c01321fd94f30a22231e8a48d985"}, + {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1d59258c3c67c865435d8fbeb35f8c59b8bef3d6f46c1f29f6123556af28445"}, + {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f32c38afb74bd98ce26de7cc74a67b40afb7b05aae7b42924ea990d51e4dac02"}, + {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d31a63bc6e6d87f77d71e1abbd7387ab817a66733734883d1fc0021ed9bfa083"}, + {file = "contourpy-1.2.1-cp39-cp39-win32.whl", hash = "sha256:ddcb8581510311e13421b1f544403c16e901c4e8f09083c881fab2be80ee31ba"}, + {file = "contourpy-1.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:10a37ae557aabf2509c79715cd20b62e4c7c28b8cd62dd7d99e5ed3ce28c3fd9"}, + {file = "contourpy-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a31f94983fecbac95e58388210427d68cd30fe8a36927980fab9c20062645609"}, + {file = "contourpy-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef2b055471c0eb466033760a521efb9d8a32b99ab907fc8358481a1dd29e3bd3"}, + {file = "contourpy-1.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b33d2bc4f69caedcd0a275329eb2198f560b325605810895627be5d4b876bf7f"}, + {file = "contourpy-1.2.1.tar.gz", hash = "sha256:4d8908b3bee1c889e547867ca4cdc54e5ab6be6d3e078556814a22457f49423c"}, ] [package.dependencies] -numpy = ">=1.20,<2.0" +numpy = ">=1.20" [package.extras] bokeh = ["bokeh", "selenium"] docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] -mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.6.1)", "types-Pillow"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.8.0)", "types-Pillow"] test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] [[package]] name = "coverage" -version = "7.4.1" +version = "7.4.4" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:077d366e724f24fc02dbfe9d946534357fda71af9764ff99d73c3c596001bbd7"}, - {file = "coverage-7.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0193657651f5399d433c92f8ae264aff31fc1d066deee4b831549526433f3f61"}, - {file = "coverage-7.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d17bbc946f52ca67adf72a5ee783cd7cd3477f8f8796f59b4974a9b59cacc9ee"}, - {file = "coverage-7.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3277f5fa7483c927fe3a7b017b39351610265308f5267ac6d4c2b64cc1d8d25"}, - {file = "coverage-7.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6dceb61d40cbfcf45f51e59933c784a50846dc03211054bd76b421a713dcdf19"}, - {file = "coverage-7.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6008adeca04a445ea6ef31b2cbaf1d01d02986047606f7da266629afee982630"}, - {file = "coverage-7.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c61f66d93d712f6e03369b6a7769233bfda880b12f417eefdd4f16d1deb2fc4c"}, - {file = "coverage-7.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b9bb62fac84d5f2ff523304e59e5c439955fb3b7f44e3d7b2085184db74d733b"}, - {file = "coverage-7.4.1-cp310-cp310-win32.whl", hash = "sha256:f86f368e1c7ce897bf2457b9eb61169a44e2ef797099fb5728482b8d69f3f016"}, - {file = "coverage-7.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:869b5046d41abfea3e381dd143407b0d29b8282a904a19cb908fa24d090cc018"}, - {file = "coverage-7.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b8ffb498a83d7e0305968289441914154fb0ef5d8b3157df02a90c6695978295"}, - {file = "coverage-7.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3cacfaefe6089d477264001f90f55b7881ba615953414999c46cc9713ff93c8c"}, - {file = "coverage-7.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d6850e6e36e332d5511a48a251790ddc545e16e8beaf046c03985c69ccb2676"}, - {file = "coverage-7.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18e961aa13b6d47f758cc5879383d27b5b3f3dcd9ce8cdbfdc2571fe86feb4dd"}, - {file = "coverage-7.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfd1e1b9f0898817babf840b77ce9fe655ecbe8b1b327983df485b30df8cc011"}, - {file = "coverage-7.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6b00e21f86598b6330f0019b40fb397e705135040dbedc2ca9a93c7441178e74"}, - {file = "coverage-7.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:536d609c6963c50055bab766d9951b6c394759190d03311f3e9fcf194ca909e1"}, - {file = "coverage-7.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7ac8f8eb153724f84885a1374999b7e45734bf93a87d8df1e7ce2146860edef6"}, - {file = "coverage-7.4.1-cp311-cp311-win32.whl", hash = "sha256:f3771b23bb3675a06f5d885c3630b1d01ea6cac9e84a01aaf5508706dba546c5"}, - {file = "coverage-7.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:9d2f9d4cc2a53b38cabc2d6d80f7f9b7e3da26b2f53d48f05876fef7956b6968"}, - {file = "coverage-7.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f68ef3660677e6624c8cace943e4765545f8191313a07288a53d3da188bd8581"}, - {file = "coverage-7.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:23b27b8a698e749b61809fb637eb98ebf0e505710ec46a8aa6f1be7dc0dc43a6"}, - {file = "coverage-7.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e3424c554391dc9ef4a92ad28665756566a28fecf47308f91841f6c49288e66"}, - {file = "coverage-7.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0860a348bf7004c812c8368d1fc7f77fe8e4c095d661a579196a9533778e156"}, - {file = "coverage-7.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe558371c1bdf3b8fa03e097c523fb9645b8730399c14fe7721ee9c9e2a545d3"}, - {file = "coverage-7.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3468cc8720402af37b6c6e7e2a9cdb9f6c16c728638a2ebc768ba1ef6f26c3a1"}, - {file = "coverage-7.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:02f2edb575d62172aa28fe00efe821ae31f25dc3d589055b3fb64d51e52e4ab1"}, - {file = "coverage-7.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ca6e61dc52f601d1d224526360cdeab0d0712ec104a2ce6cc5ccef6ed9a233bc"}, - {file = "coverage-7.4.1-cp312-cp312-win32.whl", hash = "sha256:ca7b26a5e456a843b9b6683eada193fc1f65c761b3a473941efe5a291f604c74"}, - {file = "coverage-7.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:85ccc5fa54c2ed64bd91ed3b4a627b9cce04646a659512a051fa82a92c04a448"}, - {file = "coverage-7.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8bdb0285a0202888d19ec6b6d23d5990410decb932b709f2b0dfe216d031d218"}, - {file = "coverage-7.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:918440dea04521f499721c039863ef95433314b1db00ff826a02580c1f503e45"}, - {file = "coverage-7.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:379d4c7abad5afbe9d88cc31ea8ca262296480a86af945b08214eb1a556a3e4d"}, - {file = "coverage-7.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b094116f0b6155e36a304ff912f89bbb5067157aff5f94060ff20bbabdc8da06"}, - {file = "coverage-7.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2f5968608b1fe2a1d00d01ad1017ee27efd99b3437e08b83ded9b7af3f6f766"}, - {file = "coverage-7.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:10e88e7f41e6197ea0429ae18f21ff521d4f4490aa33048f6c6f94c6045a6a75"}, - {file = "coverage-7.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a4a3907011d39dbc3e37bdc5df0a8c93853c369039b59efa33a7b6669de04c60"}, - {file = "coverage-7.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6d224f0c4c9c98290a6990259073f496fcec1b5cc613eecbd22786d398ded3ad"}, - {file = "coverage-7.4.1-cp38-cp38-win32.whl", hash = "sha256:23f5881362dcb0e1a92b84b3c2809bdc90db892332daab81ad8f642d8ed55042"}, - {file = "coverage-7.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:a07f61fc452c43cd5328b392e52555f7d1952400a1ad09086c4a8addccbd138d"}, - {file = "coverage-7.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8e738a492b6221f8dcf281b67129510835461132b03024830ac0e554311a5c54"}, - {file = "coverage-7.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:46342fed0fff72efcda77040b14728049200cbba1279e0bf1188f1f2078c1d70"}, - {file = "coverage-7.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9641e21670c68c7e57d2053ddf6c443e4f0a6e18e547e86af3fad0795414a628"}, - {file = "coverage-7.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aeb2c2688ed93b027eb0d26aa188ada34acb22dceea256d76390eea135083950"}, - {file = "coverage-7.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d12c923757de24e4e2110cf8832d83a886a4cf215c6e61ed506006872b43a6d1"}, - {file = "coverage-7.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0491275c3b9971cdbd28a4595c2cb5838f08036bca31765bad5e17edf900b2c7"}, - {file = "coverage-7.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8dfc5e195bbef80aabd81596ef52a1277ee7143fe419efc3c4d8ba2754671756"}, - {file = "coverage-7.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1a78b656a4d12b0490ca72651fe4d9f5e07e3c6461063a9b6265ee45eb2bdd35"}, - {file = "coverage-7.4.1-cp39-cp39-win32.whl", hash = "sha256:f90515974b39f4dea2f27c0959688621b46d96d5a626cf9c53dbc653a895c05c"}, - {file = "coverage-7.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:64e723ca82a84053dd7bfcc986bdb34af8d9da83c521c19d6b472bc6880e191a"}, - {file = "coverage-7.4.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:32a8d985462e37cfdab611a6f95b09d7c091d07668fdc26e47a725ee575fe166"}, - {file = "coverage-7.4.1.tar.gz", hash = "sha256:1ed4b95480952b1a26d863e546fa5094564aa0065e1e5f0d4d0041f293251d04"}, + {file = "coverage-7.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0be5efd5127542ef31f165de269f77560d6cdef525fffa446de6f7e9186cfb2"}, + {file = "coverage-7.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ccd341521be3d1b3daeb41960ae94a5e87abe2f46f17224ba5d6f2b8398016cf"}, + {file = "coverage-7.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fa497a8ab37784fbb20ab699c246053ac294d13fc7eb40ec007a5043ec91f8"}, + {file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b1a93009cb80730c9bca5d6d4665494b725b6e8e157c1cb7f2db5b4b122ea562"}, + {file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:690db6517f09336559dc0b5f55342df62370a48f5469fabf502db2c6d1cffcd2"}, + {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:09c3255458533cb76ef55da8cc49ffab9e33f083739c8bd4f58e79fecfe288f7"}, + {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ce1415194b4a6bd0cdcc3a1dfbf58b63f910dcb7330fe15bdff542c56949f87"}, + {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b91cbc4b195444e7e258ba27ac33769c41b94967919f10037e6355e998af255c"}, + {file = "coverage-7.4.4-cp310-cp310-win32.whl", hash = "sha256:598825b51b81c808cb6f078dcb972f96af96b078faa47af7dfcdf282835baa8d"}, + {file = "coverage-7.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:09ef9199ed6653989ebbcaacc9b62b514bb63ea2f90256e71fea3ed74bd8ff6f"}, + {file = "coverage-7.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f9f50e7ef2a71e2fae92774c99170eb8304e3fdf9c8c3c7ae9bab3e7229c5cf"}, + {file = "coverage-7.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:623512f8ba53c422fcfb2ce68362c97945095b864cda94a92edbaf5994201083"}, + {file = "coverage-7.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0513b9508b93da4e1716744ef6ebc507aff016ba115ffe8ecff744d1322a7b63"}, + {file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40209e141059b9370a2657c9b15607815359ab3ef9918f0196b6fccce8d3230f"}, + {file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a2b2b78c78293782fd3767d53e6474582f62443d0504b1554370bde86cc8227"}, + {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:73bfb9c09951125d06ee473bed216e2c3742f530fc5acc1383883125de76d9cd"}, + {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f384c3cc76aeedce208643697fb3e8437604b512255de6d18dae3f27655a384"}, + {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:54eb8d1bf7cacfbf2a3186019bcf01d11c666bd495ed18717162f7eb1e9dd00b"}, + {file = "coverage-7.4.4-cp311-cp311-win32.whl", hash = "sha256:cac99918c7bba15302a2d81f0312c08054a3359eaa1929c7e4b26ebe41e9b286"}, + {file = "coverage-7.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:b14706df8b2de49869ae03a5ccbc211f4041750cd4a66f698df89d44f4bd30ec"}, + {file = "coverage-7.4.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:201bef2eea65e0e9c56343115ba3814e896afe6d36ffd37bab783261db430f76"}, + {file = "coverage-7.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:41c9c5f3de16b903b610d09650e5e27adbfa7f500302718c9ffd1c12cf9d6818"}, + {file = "coverage-7.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d898fe162d26929b5960e4e138651f7427048e72c853607f2b200909794ed978"}, + {file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ea79bb50e805cd6ac058dfa3b5c8f6c040cb87fe83de10845857f5535d1db70"}, + {file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce4b94265ca988c3f8e479e741693d143026632672e3ff924f25fab50518dd51"}, + {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:00838a35b882694afda09f85e469c96367daa3f3f2b097d846a7216993d37f4c"}, + {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fdfafb32984684eb03c2d83e1e51f64f0906b11e64482df3c5db936ce3839d48"}, + {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:69eb372f7e2ece89f14751fbcbe470295d73ed41ecd37ca36ed2eb47512a6ab9"}, + {file = "coverage-7.4.4-cp312-cp312-win32.whl", hash = "sha256:137eb07173141545e07403cca94ab625cc1cc6bc4c1e97b6e3846270e7e1fea0"}, + {file = "coverage-7.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:d71eec7d83298f1af3326ce0ff1d0ea83c7cb98f72b577097f9083b20bdaf05e"}, + {file = "coverage-7.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d5ae728ff3b5401cc320d792866987e7e7e880e6ebd24433b70a33b643bb0384"}, + {file = "coverage-7.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cc4f1358cb0c78edef3ed237ef2c86056206bb8d9140e73b6b89fbcfcbdd40e1"}, + {file = "coverage-7.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8130a2aa2acb8788e0b56938786c33c7c98562697bf9f4c7d6e8e5e3a0501e4a"}, + {file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf271892d13e43bc2b51e6908ec9a6a5094a4df1d8af0bfc360088ee6c684409"}, + {file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4cdc86d54b5da0df6d3d3a2f0b710949286094c3a6700c21e9015932b81447e"}, + {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae71e7ddb7a413dd60052e90528f2f65270aad4b509563af6d03d53e979feafd"}, + {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:38dd60d7bf242c4ed5b38e094baf6401faa114fc09e9e6632374388a404f98e7"}, + {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa5b1c1bfc28384f1f53b69a023d789f72b2e0ab1b3787aae16992a7ca21056c"}, + {file = "coverage-7.4.4-cp38-cp38-win32.whl", hash = "sha256:dfa8fe35a0bb90382837b238fff375de15f0dcdb9ae68ff85f7a63649c98527e"}, + {file = "coverage-7.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:b2991665420a803495e0b90a79233c1433d6ed77ef282e8e152a324bbbc5e0c8"}, + {file = "coverage-7.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3b799445b9f7ee8bf299cfaed6f5b226c0037b74886a4e11515e569b36fe310d"}, + {file = "coverage-7.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b4d33f418f46362995f1e9d4f3a35a1b6322cb959c31d88ae56b0298e1c22357"}, + {file = "coverage-7.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aadacf9a2f407a4688d700e4ebab33a7e2e408f2ca04dbf4aef17585389eff3e"}, + {file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c95949560050d04d46b919301826525597f07b33beba6187d04fa64d47ac82e"}, + {file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff7687ca3d7028d8a5f0ebae95a6e4827c5616b31a4ee1192bdfde697db110d4"}, + {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5fc1de20b2d4a061b3df27ab9b7c7111e9a710f10dc2b84d33a4ab25065994ec"}, + {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c74880fc64d4958159fbd537a091d2a585448a8f8508bf248d72112723974cbd"}, + {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:742a76a12aa45b44d236815d282b03cfb1de3b4323f3e4ec933acfae08e54ade"}, + {file = "coverage-7.4.4-cp39-cp39-win32.whl", hash = "sha256:d89d7b2974cae412400e88f35d86af72208e1ede1a541954af5d944a8ba46c57"}, + {file = "coverage-7.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:9ca28a302acb19b6af89e90f33ee3e1906961f94b54ea37de6737b7ca9d8827c"}, + {file = "coverage-7.4.4-pp38.pp39.pp310-none-any.whl", hash = "sha256:b2c5edc4ac10a7ef6605a966c58929ec6c1bd0917fb8c15cb3363f65aa40e677"}, + {file = "coverage-7.4.4.tar.gz", hash = "sha256:c901df83d097649e257e803be22592aedfd5182f07b3cc87d640bbb9afd50f49"}, ] [package.extras] @@ -643,69 +644,69 @@ tests = ["pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "cython" -version = "3.0.8" +version = "3.0.10" description = "The Cython compiler for writing C extensions in the Python language." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Cython-3.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a846e0a38e2b24e9a5c5dc74b0e54c6e29420d88d1dafabc99e0fc0f3e338636"}, - {file = "Cython-3.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45523fdc2b78d79b32834cc1cc12dc2ca8967af87e22a3ee1bff20e77c7f5520"}, - {file = "Cython-3.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa0b7f3f841fe087410cab66778e2d3fb20ae2d2078a2be3dffe66c6574be39"}, - {file = "Cython-3.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e87294e33e40c289c77a135f491cd721bd089f193f956f7b8ed5aa2d0b8c558f"}, - {file = "Cython-3.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a1df7a129344b1215c20096d33c00193437df1a8fcca25b71f17c23b1a44f782"}, - {file = "Cython-3.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:13c2a5e57a0358da467d97667297bf820b62a1a87ae47c5f87938b9bb593acbd"}, - {file = "Cython-3.0.8-cp310-cp310-win32.whl", hash = "sha256:96b028f044f5880e3cb18ecdcfc6c8d3ce9d0af28418d5ab464509f26d8adf12"}, - {file = "Cython-3.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:8140597a8b5cc4f119a1190f5a2228a84f5ca6d8d9ec386cfce24663f48b2539"}, - {file = "Cython-3.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aae26f9663e50caf9657148403d9874eea41770ecdd6caf381d177c2b1bb82ba"}, - {file = "Cython-3.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:547eb3cdb2f8c6f48e6865d5a741d9dd051c25b3ce076fbca571727977b28ac3"}, - {file = "Cython-3.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a567d4b9ba70b26db89d75b243529de9e649a2f56384287533cf91512705bee"}, - {file = "Cython-3.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51d1426263b0e82fb22bda8ea60dc77a428581cc19e97741011b938445d383f1"}, - {file = "Cython-3.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c26daaeccda072459b48d211415fd1e5507c06bcd976fa0d5b8b9f1063467d7b"}, - {file = "Cython-3.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:289ce7838208211cd166e975865fd73b0649bf118170b6cebaedfbdaf4a37795"}, - {file = "Cython-3.0.8-cp311-cp311-win32.whl", hash = "sha256:c8aa05f5e17f8042a3be052c24f2edc013fb8af874b0bf76907d16c51b4e7871"}, - {file = "Cython-3.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:000dc9e135d0eec6ecb2b40a5b02d0868a2f8d2e027a41b0fe16a908a9e6de02"}, - {file = "Cython-3.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:90d3fe31db55685d8cb97d43b0ec39ef614fcf660f83c77ed06aa670cb0e164f"}, - {file = "Cython-3.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e24791ddae2324e88e3c902a765595c738f19ae34ee66bfb1a6dac54b1833419"}, - {file = "Cython-3.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f020fa1c0552052e0660790b8153b79e3fc9a15dbd8f1d0b841fe5d204a6ae6"}, - {file = "Cython-3.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18bfa387d7a7f77d7b2526af69a65dbd0b731b8d941aaff5becff8e21f6d7717"}, - {file = "Cython-3.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fe81b339cffd87c0069c6049b4d33e28bdd1874625ee515785bf42c9fdff3658"}, - {file = "Cython-3.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:80fd94c076e1e1b1ee40a309be03080b75f413e8997cddcf401a118879863388"}, - {file = "Cython-3.0.8-cp312-cp312-win32.whl", hash = "sha256:85077915a93e359a9b920280d214dc0cf8a62773e1f3d7d30fab8ea4daed670c"}, - {file = "Cython-3.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:0cb2dcc565c7851f75d496f724a384a790fab12d1b82461b663e66605bec429a"}, - {file = "Cython-3.0.8-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:870d2a0a7e3cbd5efa65aecdb38d715ea337a904ea7bb22324036e78fb7068e7"}, - {file = "Cython-3.0.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e8f2454128974905258d86534f4fd4f91d2f1343605657ecab779d80c9d6d5e"}, - {file = "Cython-3.0.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1949d6aa7bc792554bee2b67a9fe41008acbfe22f4f8df7b6ec7b799613a4b3"}, - {file = "Cython-3.0.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9f2c6e1b8f3bcd6cb230bac1843f85114780bb8be8614855b1628b36bb510e0"}, - {file = "Cython-3.0.8-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:05d7eddc668ae7993643f32c7661f25544e791edb745758672ea5b1a82ecffa6"}, - {file = "Cython-3.0.8-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bfabe115deef4ada5d23c87bddb11289123336dcc14347011832c07db616dd93"}, - {file = "Cython-3.0.8-cp36-cp36m-win32.whl", hash = "sha256:0c38c9f0bcce2df0c3347285863621be904ac6b64c5792d871130569d893efd7"}, - {file = "Cython-3.0.8-cp36-cp36m-win_amd64.whl", hash = "sha256:6c46939c3983217d140999de7c238c3141f56b1ea349e47ca49cae899969aa2c"}, - {file = "Cython-3.0.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:115f0a50f752da6c99941b103b5cb090da63eb206abbc7c2ad33856ffc73f064"}, - {file = "Cython-3.0.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9c0f29246734561c90f36e70ed0506b61aa3d044e4cc4cba559065a2a741fae"}, - {file = "Cython-3.0.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ab75242869ff71e5665fe5c96f3378e79e792fa3c11762641b6c5afbbbbe026"}, - {file = "Cython-3.0.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6717c06e9cfc6c1df18543cd31a21f5d8e378a40f70c851fa2d34f0597037abc"}, - {file = "Cython-3.0.8-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9d3f74388db378a3c6fd06e79a809ed98df3f56484d317b81ee762dbf3c263e0"}, - {file = "Cython-3.0.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ae7ac561fd8253a9ae96311e91d12af5f701383564edc11d6338a7b60b285a6f"}, - {file = "Cython-3.0.8-cp37-cp37m-win32.whl", hash = "sha256:97b2a45845b993304f1799664fa88da676ee19442b15fdcaa31f9da7e1acc434"}, - {file = "Cython-3.0.8-cp37-cp37m-win_amd64.whl", hash = "sha256:9e2be2b340fea46fb849d378f9b80d3c08ff2e81e2bfbcdb656e2e3cd8c6b2dc"}, - {file = "Cython-3.0.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2cde23c555470db3f149ede78b518e8274853745289c956a0e06ad8d982e4db9"}, - {file = "Cython-3.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7990ca127e1f1beedaf8fc8bf66541d066ef4723ad7d8d47a7cbf842e0f47580"}, - {file = "Cython-3.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b983c8e6803f016146c26854d9150ddad5662960c804ea7f0c752c9266752f0"}, - {file = "Cython-3.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a973268d7ca1a2bdf78575e459a94a78e1a0a9bb62a7db0c50041949a73b02ff"}, - {file = "Cython-3.0.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:61a237bc9dd23c7faef0fcfce88c11c65d0c9bb73c74ccfa408b3a012073c20e"}, - {file = "Cython-3.0.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3a3d67f079598af49e90ff9655bf85bd358f093d727eb21ca2708f467c489cae"}, - {file = "Cython-3.0.8-cp38-cp38-win32.whl", hash = "sha256:17a642bb01a693e34c914106566f59844b4461665066613913463a719e0dd15d"}, - {file = "Cython-3.0.8-cp38-cp38-win_amd64.whl", hash = "sha256:2cdfc32252f3b6dc7c94032ab744dcedb45286733443c294d8f909a4854e7f83"}, - {file = "Cython-3.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa97893d99385386925d00074654aeae3a98867f298d1e12ceaf38a9054a9bae"}, - {file = "Cython-3.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f05c0bf9d085c031df8f583f0d506aa3be1692023de18c45d0aaf78685bbb944"}, - {file = "Cython-3.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de892422582f5758bd8de187e98ac829330ec1007bc42c661f687792999988a7"}, - {file = "Cython-3.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:314f2355a1f1d06e3c431eaad4708cf10037b5e91e4b231d89c913989d0bdafd"}, - {file = "Cython-3.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:78825a3774211e7d5089730f00cdf7f473042acc9ceb8b9eeebe13ed3a5541de"}, - {file = "Cython-3.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:df8093deabc55f37028190cf5e575c26aad23fc673f34b85d5f45076bc37ce39"}, - {file = "Cython-3.0.8-cp39-cp39-win32.whl", hash = "sha256:1aca1b97e0095b3a9a6c33eada3f661a4ed0d499067d121239b193e5ba3bb4f0"}, - {file = "Cython-3.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:16873d78be63bd38ffb759da7ab82814b36f56c769ee02b1d5859560e4c3ac3c"}, - {file = "Cython-3.0.8-py2.py3-none-any.whl", hash = "sha256:171b27051253d3f9108e9759e504ba59ff06e7f7ba944457f94deaf9c21bf0b6"}, - {file = "Cython-3.0.8.tar.gz", hash = "sha256:8333423d8fd5765e7cceea3a9985dd1e0a5dfeb2734629e1a2ed2d6233d39de6"}, +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" +files = [ + {file = "Cython-3.0.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e876272548d73583e90babda94c1299537006cad7a34e515a06c51b41f8657aa"}, + {file = "Cython-3.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:adc377aa33c3309191e617bf675fdbb51ca727acb9dc1aa23fc698d8121f7e23"}, + {file = "Cython-3.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:401aba1869a57aba2922ccb656a6320447e55ace42709b504c2f8e8b166f46e1"}, + {file = "Cython-3.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:541fbe725d6534a90b93f8c577eb70924d664b227a4631b90a6e0506d1469591"}, + {file = "Cython-3.0.10-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:86998b01f6a6d48398df8467292c7637e57f7e3a2ca68655367f13f66fed7734"}, + {file = "Cython-3.0.10-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d092c0ddba7e9e530a5c5be4ac06db8360258acc27675d1fc86294a5dc8994c5"}, + {file = "Cython-3.0.10-cp310-cp310-win32.whl", hash = "sha256:3cffb666e649dba23810732497442fb339ee67ba4e0be1f0579991e83fcc2436"}, + {file = "Cython-3.0.10-cp310-cp310-win_amd64.whl", hash = "sha256:9ea31184c7b3a728ef1f81fccb161d8948c05aa86c79f63b74fb6f3ddec860ec"}, + {file = "Cython-3.0.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:051069638abfb076900b0c2bcb6facf545655b3f429e80dd14365192074af5a4"}, + {file = "Cython-3.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:712760879600907189c7d0d346851525545484e13cd8b787e94bfd293da8ccf0"}, + {file = "Cython-3.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38d40fa1324ac47c04483d151f5e092406a147eac88a18aec789cf01c089c3f2"}, + {file = "Cython-3.0.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bd49a3a9fdff65446a3e1c2bfc0ec85c6ce4c3cad27cd4ad7ba150a62b7fb59"}, + {file = "Cython-3.0.10-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e8df79b596633b8295eaa48b1157d796775c2bb078f32267d32f3001b687f2fd"}, + {file = "Cython-3.0.10-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bcc9795990e525c192bc5c0775e441d7d56d7a7d02210451e9e13c0448dba51b"}, + {file = "Cython-3.0.10-cp311-cp311-win32.whl", hash = "sha256:09f2000041db482cad3bfce94e1fa3a4c82b0e57390a164c02566cbbda8c4f12"}, + {file = "Cython-3.0.10-cp311-cp311-win_amd64.whl", hash = "sha256:3919a55ec9b6c7db6f68a004c21c05ed540c40dbe459ced5d801d5a1f326a053"}, + {file = "Cython-3.0.10-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:8f2864ab5fcd27a346f0b50f901ebeb8f60b25a60a575ccfd982e7f3e9674914"}, + {file = "Cython-3.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:407840c56385b9c085826fe300213e0e76ba15d1d47daf4b58569078ecb94446"}, + {file = "Cython-3.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a036d00caa73550a3a976432ef21c1e3fa12637e1616aab32caded35331ae96"}, + {file = "Cython-3.0.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9cc6a0e7e23a96dec3f3c9d39690d4281beabd5297855140d0d30855f950275e"}, + {file = "Cython-3.0.10-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a5e14a8c6a8157d2b0cdc2e8e3444905d20a0e78e19d2a097e89fb8b04b51f6b"}, + {file = "Cython-3.0.10-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f8a2b8fa0fd8358bccb5f3304be563c4750aae175100463d212d5ea0ec74cbe0"}, + {file = "Cython-3.0.10-cp312-cp312-win32.whl", hash = "sha256:2d29e617fd23cf4b83afe8f93f2966566c9f565918ad1e86a4502fe825cc0a79"}, + {file = "Cython-3.0.10-cp312-cp312-win_amd64.whl", hash = "sha256:6c5af936940a38c300977b81598d9c0901158f220a58c177820e17e1774f1cf1"}, + {file = "Cython-3.0.10-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:5f465443917d5c0f69825fca3b52b64c74ac3de0143b1fff6db8ba5b48c9fb4a"}, + {file = "Cython-3.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4fadb84193c25641973666e583df8df4e27c52cdc05ddce7c6f6510d690ba34a"}, + {file = "Cython-3.0.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fa9e7786083b6aa61594c16979d621b62e61fcd9c2edd4761641b95c7fb34b2"}, + {file = "Cython-3.0.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4780d0f98ce28191c4d841c4358b5d5e79d96520650910cd59904123821c52d"}, + {file = "Cython-3.0.10-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:32fbad02d1189be75eb96456d9c73f5548078e5338d8fa153ecb0115b6ee279f"}, + {file = "Cython-3.0.10-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:90e2f514fc753b55245351305a399463103ec18666150bb1c36779b9862388e9"}, + {file = "Cython-3.0.10-cp36-cp36m-win32.whl", hash = "sha256:a9c976e9ec429539a4367cb4b24d15a1e46b925976f4341143f49f5f161171f5"}, + {file = "Cython-3.0.10-cp36-cp36m-win_amd64.whl", hash = "sha256:a9bb402674788a7f4061aeef8057632ec440123e74ed0fb425308a59afdfa10e"}, + {file = "Cython-3.0.10-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:206e803598010ecc3813db8748ed685f7beeca6c413f982df9f8a505fce56563"}, + {file = "Cython-3.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15b6d397f4ee5ad54e373589522af37935a32863f1b23fa8c6922adf833e28e2"}, + {file = "Cython-3.0.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a181144c2f893ed8e6a994d43d0b96300bc99873f21e3b7334ca26c61c37b680"}, + {file = "Cython-3.0.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b74b700d6a793113d03fb54b63bdbadba6365379424bac7c0470605672769260"}, + {file = "Cython-3.0.10-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:076e9fd4e0ca33c5fa00a7479180dbfb62f17fe928e2909f82da814536e96d2b"}, + {file = "Cython-3.0.10-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:269f06e6961e8591d56e30b46e1a51b6ccb42cab04c29fa3b30d3e8723485fb4"}, + {file = "Cython-3.0.10-cp37-cp37m-win32.whl", hash = "sha256:d4e83a8ceff7af60064da4ccfce0ac82372544dd5392f1b350c34f1b04d0fae6"}, + {file = "Cython-3.0.10-cp37-cp37m-win_amd64.whl", hash = "sha256:40fac59c3a7fbcd9c25aea64c342c890a5e2270ce64a1525e840807800167799"}, + {file = "Cython-3.0.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f43a58bf2434870d2fc42ac2e9ff8138c9e00c6251468de279d93fa279e9ba3b"}, + {file = "Cython-3.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e9a885ec63d3955a08cefc4eec39fefa9fe14989c6e5e2382bd4aeb6bdb9bc3"}, + {file = "Cython-3.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acfbe0fff364d54906058fc61f2393f38cd7fa07d344d80923937b87e339adcf"}, + {file = "Cython-3.0.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8adcde00a8a88fab27509b558cd8c2959ab0c70c65d3814cfea8c68b83fa6dcd"}, + {file = "Cython-3.0.10-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2c9c1e3e78909488f3b16fabae02308423fa6369ed96ab1e250807d344cfffd7"}, + {file = "Cython-3.0.10-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fc6e0faf5b57523b073f0cdefadcaef3a51235d519a0594865925cadb3aeadf0"}, + {file = "Cython-3.0.10-cp38-cp38-win32.whl", hash = "sha256:35f6ede7c74024ed1982832ae61c9fad7cf60cc3f5b8c6a63bb34e38bc291936"}, + {file = "Cython-3.0.10-cp38-cp38-win_amd64.whl", hash = "sha256:950c0c7b770d2a7cec74fb6f5ccc321d0b51d151f48c075c0d0db635a60ba1b5"}, + {file = "Cython-3.0.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:077b61ee789e48700e25d4a16daa4258b8e65167136e457174df400cf9b4feab"}, + {file = "Cython-3.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f1f8bba9d8f37c0cffc934792b4ac7c42d0891077127c11deebe9fa0a0f7e4"}, + {file = "Cython-3.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:651a15a8534ebfb9b58cb0b87c269c70984b6f9c88bfe65e4f635f0e3f07dfcd"}, + {file = "Cython-3.0.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d10fc9aa82e5e53a0b7fd118f9771199cddac8feb4a6d8350b7d4109085aa775"}, + {file = "Cython-3.0.10-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4f610964ab252a83e573a427e28b103e2f1dd3c23bee54f32319f9e73c3c5499"}, + {file = "Cython-3.0.10-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8c9c4c4f3ab8f8c02817b0e16e8fa7b8cc880f76e9b63fe9c010e60c1a6c2b13"}, + {file = "Cython-3.0.10-cp39-cp39-win32.whl", hash = "sha256:0bac3ccdd4e03924028220c62ae3529e17efa8ca7e9df9330de95de02f582b26"}, + {file = "Cython-3.0.10-cp39-cp39-win_amd64.whl", hash = "sha256:81f356c1c8c0885b8435bfc468025f545c5d764aa9c75ab662616dd1193c331e"}, + {file = "Cython-3.0.10-py2.py3-none-any.whl", hash = "sha256:fcbb679c0b43514d591577fd0d20021c55c240ca9ccafbdb82d3fb95e5edfee2"}, + {file = "Cython-3.0.10.tar.gz", hash = "sha256:dcc96739331fb854dcf503f94607576cfe8488066c61ca50dfd55836f132de99"}, ] [[package]] @@ -788,53 +789,53 @@ tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipyth [[package]] name = "fonttools" -version = "4.49.0" +version = "4.50.0" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.49.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d970ecca0aac90d399e458f0b7a8a597e08f95de021f17785fb68e2dc0b99717"}, - {file = "fonttools-4.49.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac9a745b7609f489faa65e1dc842168c18530874a5f5b742ac3dd79e26bca8bc"}, - {file = "fonttools-4.49.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ba0e00620ca28d4ca11fc700806fd69144b463aa3275e1b36e56c7c09915559"}, - {file = "fonttools-4.49.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdee3ab220283057e7840d5fb768ad4c2ebe65bdba6f75d5d7bf47f4e0ed7d29"}, - {file = "fonttools-4.49.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ce7033cb61f2bb65d8849658d3786188afd80f53dad8366a7232654804529532"}, - {file = "fonttools-4.49.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:07bc5ea02bb7bc3aa40a1eb0481ce20e8d9b9642a9536cde0218290dd6085828"}, - {file = "fonttools-4.49.0-cp310-cp310-win32.whl", hash = "sha256:86eef6aab7fd7c6c8545f3ebd00fd1d6729ca1f63b0cb4d621bccb7d1d1c852b"}, - {file = "fonttools-4.49.0-cp310-cp310-win_amd64.whl", hash = "sha256:1fac1b7eebfce75ea663e860e7c5b4a8831b858c17acd68263bc156125201abf"}, - {file = "fonttools-4.49.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:edc0cce355984bb3c1d1e89d6a661934d39586bb32191ebff98c600f8957c63e"}, - {file = "fonttools-4.49.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:83a0d9336de2cba86d886507dd6e0153df333ac787377325a39a2797ec529814"}, - {file = "fonttools-4.49.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36c8865bdb5cfeec88f5028e7e592370a0657b676c6f1d84a2108e0564f90e22"}, - {file = "fonttools-4.49.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33037d9e56e2562c710c8954d0f20d25b8386b397250d65581e544edc9d6b942"}, - {file = "fonttools-4.49.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8fb022d799b96df3eaa27263e9eea306bd3d437cc9aa981820850281a02b6c9a"}, - {file = "fonttools-4.49.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33c584c0ef7dc54f5dd4f84082eabd8d09d1871a3d8ca2986b0c0c98165f8e86"}, - {file = "fonttools-4.49.0-cp311-cp311-win32.whl", hash = "sha256:cbe61b158deb09cffdd8540dc4a948d6e8f4d5b4f3bf5cd7db09bd6a61fee64e"}, - {file = "fonttools-4.49.0-cp311-cp311-win_amd64.whl", hash = "sha256:fc11e5114f3f978d0cea7e9853627935b30d451742eeb4239a81a677bdee6bf6"}, - {file = "fonttools-4.49.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d647a0e697e5daa98c87993726da8281c7233d9d4ffe410812a4896c7c57c075"}, - {file = "fonttools-4.49.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f3bbe672df03563d1f3a691ae531f2e31f84061724c319652039e5a70927167e"}, - {file = "fonttools-4.49.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bebd91041dda0d511b0d303180ed36e31f4f54b106b1259b69fade68413aa7ff"}, - {file = "fonttools-4.49.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4145f91531fd43c50f9eb893faa08399816bb0b13c425667c48475c9f3a2b9b5"}, - {file = "fonttools-4.49.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ea329dafb9670ffbdf4dbc3b0e5c264104abcd8441d56de77f06967f032943cb"}, - {file = "fonttools-4.49.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c076a9e548521ecc13d944b1d261ff3d7825048c338722a4bd126d22316087b7"}, - {file = "fonttools-4.49.0-cp312-cp312-win32.whl", hash = "sha256:b607ea1e96768d13be26d2b400d10d3ebd1456343eb5eaddd2f47d1c4bd00880"}, - {file = "fonttools-4.49.0-cp312-cp312-win_amd64.whl", hash = "sha256:a974c49a981e187381b9cc2c07c6b902d0079b88ff01aed34695ec5360767034"}, - {file = "fonttools-4.49.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b85ec0bdd7bdaa5c1946398cbb541e90a6dfc51df76dfa88e0aaa41b335940cb"}, - {file = "fonttools-4.49.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:af20acbe198a8a790618ee42db192eb128afcdcc4e96d99993aca0b60d1faeb4"}, - {file = "fonttools-4.49.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d418b1fee41a1d14931f7ab4b92dc0bc323b490e41d7a333eec82c9f1780c75"}, - {file = "fonttools-4.49.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b44a52b8e6244b6548851b03b2b377a9702b88ddc21dcaf56a15a0393d425cb9"}, - {file = "fonttools-4.49.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7c7125068e04a70739dad11857a4d47626f2b0bd54de39e8622e89701836eabd"}, - {file = "fonttools-4.49.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:29e89d0e1a7f18bc30f197cfadcbef5a13d99806447c7e245f5667579a808036"}, - {file = "fonttools-4.49.0-cp38-cp38-win32.whl", hash = "sha256:9d95fa0d22bf4f12d2fb7b07a46070cdfc19ef5a7b1c98bc172bfab5bf0d6844"}, - {file = "fonttools-4.49.0-cp38-cp38-win_amd64.whl", hash = "sha256:768947008b4dc552d02772e5ebd49e71430a466e2373008ce905f953afea755a"}, - {file = "fonttools-4.49.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:08877e355d3dde1c11973bb58d4acad1981e6d1140711230a4bfb40b2b937ccc"}, - {file = "fonttools-4.49.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fdb54b076f25d6b0f0298dc706acee5052de20c83530fa165b60d1f2e9cbe3cb"}, - {file = "fonttools-4.49.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0af65c720520710cc01c293f9c70bd69684365c6015cc3671db2b7d807fe51f2"}, - {file = "fonttools-4.49.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f255ce8ed7556658f6d23f6afd22a6d9bbc3edb9b96c96682124dc487e1bf42"}, - {file = "fonttools-4.49.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d00af0884c0e65f60dfaf9340e26658836b935052fdd0439952ae42e44fdd2be"}, - {file = "fonttools-4.49.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:263832fae27481d48dfafcc43174644b6706639661e242902ceb30553557e16c"}, - {file = "fonttools-4.49.0-cp39-cp39-win32.whl", hash = "sha256:0404faea044577a01bb82d47a8fa4bc7a54067fa7e324785dd65d200d6dd1133"}, - {file = "fonttools-4.49.0-cp39-cp39-win_amd64.whl", hash = "sha256:b050d362df50fc6e38ae3954d8c29bf2da52be384649ee8245fdb5186b620836"}, - {file = "fonttools-4.49.0-py3-none-any.whl", hash = "sha256:af281525e5dd7fa0b39fb1667b8d5ca0e2a9079967e14c4bfe90fd1cd13e0f18"}, - {file = "fonttools-4.49.0.tar.gz", hash = "sha256:ebf46e7f01b7af7861310417d7c49591a85d99146fc23a5ba82fdb28af156321"}, + {file = "fonttools-4.50.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effd303fb422f8ce06543a36ca69148471144c534cc25f30e5be752bc4f46736"}, + {file = "fonttools-4.50.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7913992ab836f621d06aabac118fc258b9947a775a607e1a737eb3a91c360335"}, + {file = "fonttools-4.50.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e0a1c5bd2f63da4043b63888534b52c5a1fd7ae187c8ffc64cbb7ae475b9dab"}, + {file = "fonttools-4.50.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d40fc98540fa5360e7ecf2c56ddf3c6e7dd04929543618fd7b5cc76e66390562"}, + {file = "fonttools-4.50.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9fff65fbb7afe137bac3113827855e0204482727bddd00a806034ab0d3951d0d"}, + {file = "fonttools-4.50.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b1aeae3dd2ee719074a9372c89ad94f7c581903306d76befdaca2a559f802472"}, + {file = "fonttools-4.50.0-cp310-cp310-win32.whl", hash = "sha256:e9623afa319405da33b43c85cceb0585a6f5d3a1d7c604daf4f7e1dd55c03d1f"}, + {file = "fonttools-4.50.0-cp310-cp310-win_amd64.whl", hash = "sha256:778c5f43e7e654ef7fe0605e80894930bc3a7772e2f496238e57218610140f54"}, + {file = "fonttools-4.50.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3dfb102e7f63b78c832e4539969167ffcc0375b013080e6472350965a5fe8048"}, + {file = "fonttools-4.50.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e58fe34cb379ba3d01d5d319d67dd3ce7ca9a47ad044ea2b22635cd2d1247fc"}, + {file = "fonttools-4.50.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c673ab40d15a442a4e6eb09bf007c1dda47c84ac1e2eecbdf359adacb799c24"}, + {file = "fonttools-4.50.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b3ac35cdcd1a4c90c23a5200212c1bb74fa05833cc7c14291d7043a52ca2aaa"}, + {file = "fonttools-4.50.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8844e7a2c5f7ecf977e82eb6b3014f025c8b454e046d941ece05b768be5847ae"}, + {file = "fonttools-4.50.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f849bd3c5c2249b49c98eca5aaebb920d2bfd92b3c69e84ca9bddf133e9f83f0"}, + {file = "fonttools-4.50.0-cp311-cp311-win32.whl", hash = "sha256:39293ff231b36b035575e81c14626dfc14407a20de5262f9596c2cbb199c3625"}, + {file = "fonttools-4.50.0-cp311-cp311-win_amd64.whl", hash = "sha256:c33d5023523b44d3481624f840c8646656a1def7630ca562f222eb3ead16c438"}, + {file = "fonttools-4.50.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b4a886a6dbe60100ba1cd24de962f8cd18139bd32808da80de1fa9f9f27bf1dc"}, + {file = "fonttools-4.50.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b2ca1837bfbe5eafa11313dbc7edada79052709a1fffa10cea691210af4aa1fa"}, + {file = "fonttools-4.50.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0493dd97ac8977e48ffc1476b932b37c847cbb87fd68673dee5182004906828"}, + {file = "fonttools-4.50.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77844e2f1b0889120b6c222fc49b2b75c3d88b930615e98893b899b9352a27ea"}, + {file = "fonttools-4.50.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3566bfb8c55ed9100afe1ba6f0f12265cd63a1387b9661eb6031a1578a28bad1"}, + {file = "fonttools-4.50.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:35e10ddbc129cf61775d58a14f2d44121178d89874d32cae1eac722e687d9019"}, + {file = "fonttools-4.50.0-cp312-cp312-win32.whl", hash = "sha256:cc8140baf9fa8f9b903f2b393a6c413a220fa990264b215bf48484f3d0bf8710"}, + {file = "fonttools-4.50.0-cp312-cp312-win_amd64.whl", hash = "sha256:0ccc85fd96373ab73c59833b824d7a73846670a0cb1f3afbaee2b2c426a8f931"}, + {file = "fonttools-4.50.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e270a406219af37581d96c810172001ec536e29e5593aa40d4c01cca3e145aa6"}, + {file = "fonttools-4.50.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac2463de667233372e9e1c7e9de3d914b708437ef52a3199fdbf5a60184f190c"}, + {file = "fonttools-4.50.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47abd6669195abe87c22750dbcd366dc3a0648f1b7c93c2baa97429c4dc1506e"}, + {file = "fonttools-4.50.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:074841375e2e3d559aecc86e1224caf78e8b8417bb391e7d2506412538f21adc"}, + {file = "fonttools-4.50.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0743fd2191ad7ab43d78cd747215b12033ddee24fa1e088605a3efe80d6984de"}, + {file = "fonttools-4.50.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3d7080cce7be5ed65bee3496f09f79a82865a514863197ff4d4d177389e981b0"}, + {file = "fonttools-4.50.0-cp38-cp38-win32.whl", hash = "sha256:a467ba4e2eadc1d5cc1a11d355abb945f680473fbe30d15617e104c81f483045"}, + {file = "fonttools-4.50.0-cp38-cp38-win_amd64.whl", hash = "sha256:f77e048f805e00870659d6318fd89ef28ca4ee16a22b4c5e1905b735495fc422"}, + {file = "fonttools-4.50.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b6245eafd553c4e9a0708e93be51392bd2288c773523892fbd616d33fd2fda59"}, + {file = "fonttools-4.50.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a4062cc7e8de26f1603323ef3ae2171c9d29c8a9f5e067d555a2813cd5c7a7e0"}, + {file = "fonttools-4.50.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34692850dfd64ba06af61e5791a441f664cb7d21e7b544e8f385718430e8f8e4"}, + {file = "fonttools-4.50.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:678dd95f26a67e02c50dcb5bf250f95231d455642afbc65a3b0bcdacd4e4dd38"}, + {file = "fonttools-4.50.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4f2ce7b0b295fe64ac0a85aef46a0f2614995774bd7bc643b85679c0283287f9"}, + {file = "fonttools-4.50.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d346f4dc2221bfb7ab652d1e37d327578434ce559baf7113b0f55768437fe6a0"}, + {file = "fonttools-4.50.0-cp39-cp39-win32.whl", hash = "sha256:a51eeaf52ba3afd70bf489be20e52fdfafe6c03d652b02477c6ce23c995222f4"}, + {file = "fonttools-4.50.0-cp39-cp39-win_amd64.whl", hash = "sha256:8639be40d583e5d9da67795aa3eeeda0488fb577a1d42ae11a5036f18fb16d93"}, + {file = "fonttools-4.50.0-py3-none-any.whl", hash = "sha256:48fa36da06247aa8282766cfd63efff1bb24e55f020f29a335939ed3844d20d3"}, + {file = "fonttools-4.50.0.tar.gz", hash = "sha256:fa5cf61058c7dbb104c2ac4e782bf1b2016a8cf2f69de6e4dd6a865d2c969bb5"}, ] [package.extras] @@ -1039,13 +1040,13 @@ test = ["pytest", "pytest-cython", "pytest-doctestplus", "requests"] [[package]] name = "httpcore" -version = "1.0.3" +version = "1.0.5" description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpcore-1.0.3-py3-none-any.whl", hash = "sha256:9a6a501c3099307d9fd76ac244e08503427679b1e81ceb1d922485e2f2462ad2"}, - {file = "httpcore-1.0.3.tar.gz", hash = "sha256:5c0f9546ad17dac4d0772b0808856eb616eb8b48ce94f49ed819fd6982a8a544"}, + {file = "httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5"}, + {file = "httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61"}, ] [package.dependencies] @@ -1056,7 +1057,7 @@ h11 = ">=0.13,<0.15" asyncio = ["anyio (>=4.0,<5.0)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<0.24.0)"] +trio = ["trio (>=0.22.0,<0.26.0)"] [[package]] name = "httpx" @@ -1164,13 +1165,13 @@ ipython = {version = ">=7.31.1", markers = "python_version >= \"3.11\""} [[package]] name = "ipython" -version = "8.21.0" +version = "8.23.0" description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.10" files = [ - {file = "ipython-8.21.0-py3-none-any.whl", hash = "sha256:1050a3ab8473488d7eee163796b02e511d0735cf43a04ba2a8348bd0f2eaf8a5"}, - {file = "ipython-8.21.0.tar.gz", hash = "sha256:48fbc236fbe0e138b88773fa0437751f14c3645fb483f1d4c5dee58b37e5ce73"}, + {file = "ipython-8.23.0-py3-none-any.whl", hash = "sha256:07232af52a5ba146dc3372c7bf52a0f890a23edf38d77caef8d53f9cdc2584c1"}, + {file = "ipython-8.23.0.tar.gz", hash = "sha256:7468edaf4f6de3e1b912e57f66c241e6fd3c7099f2ec2136e239e142e800274d"}, ] [package.dependencies] @@ -1178,24 +1179,25 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} decorator = "*" jedi = ">=0.16" matplotlib-inline = "*" -pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""} prompt-toolkit = ">=3.0.41,<3.1.0" pygments = ">=2.4.0" stack-data = "*" -traitlets = ">=5" +traitlets = ">=5.13.0" [package.extras] -all = ["black", "curio", "docrepr", "exceptiongroup", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.23)", "pandas", "pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] black = ["black"] -doc = ["docrepr", "exceptiongroup", "ipykernel", "matplotlib", "pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] +doc = ["docrepr", "exceptiongroup", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "stack-data", "typing-extensions"] kernel = ["ipykernel"] +matplotlib = ["matplotlib"] nbconvert = ["nbconvert"] nbformat = ["nbformat"] notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] test = ["pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "testpath"] -test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "testpath", "trio"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] [[package]] name = "jedi" @@ -1384,39 +1386,39 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] name = "matplotlib" -version = "3.8.3" +version = "3.8.4" description = "Python plotting package" optional = false python-versions = ">=3.9" files = [ - {file = "matplotlib-3.8.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:cf60138ccc8004f117ab2a2bad513cc4d122e55864b4fe7adf4db20ca68a078f"}, - {file = "matplotlib-3.8.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f557156f7116be3340cdeef7f128fa99b0d5d287d5f41a16e169819dcf22357"}, - {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f386cf162b059809ecfac3bcc491a9ea17da69fa35c8ded8ad154cd4b933d5ec"}, - {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3c5f96f57b0369c288bf6f9b5274ba45787f7e0589a34d24bdbaf6d3344632f"}, - {file = "matplotlib-3.8.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:83e0f72e2c116ca7e571c57aa29b0fe697d4c6425c4e87c6e994159e0c008635"}, - {file = "matplotlib-3.8.3-cp310-cp310-win_amd64.whl", hash = "sha256:1c5c8290074ba31a41db1dc332dc2b62def469ff33766cbe325d32a3ee291aea"}, - {file = "matplotlib-3.8.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5184e07c7e1d6d1481862ee361905b7059f7fe065fc837f7c3dc11eeb3f2f900"}, - {file = "matplotlib-3.8.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d7e7e0993d0758933b1a241a432b42c2db22dfa37d4108342ab4afb9557cbe3e"}, - {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04b36ad07eac9740fc76c2aa16edf94e50b297d6eb4c081e3add863de4bb19a7"}, - {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c42dae72a62f14982f1474f7e5c9959fc4bc70c9de11cc5244c6e766200ba65"}, - {file = "matplotlib-3.8.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf5932eee0d428192c40b7eac1399d608f5d995f975cdb9d1e6b48539a5ad8d0"}, - {file = "matplotlib-3.8.3-cp311-cp311-win_amd64.whl", hash = "sha256:40321634e3a05ed02abf7c7b47a50be50b53ef3eaa3a573847431a545585b407"}, - {file = "matplotlib-3.8.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:09074f8057917d17ab52c242fdf4916f30e99959c1908958b1fc6032e2d0f6d4"}, - {file = "matplotlib-3.8.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5745f6d0fb5acfabbb2790318db03809a253096e98c91b9a31969df28ee604aa"}, - {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b97653d869a71721b639714b42d87cda4cfee0ee74b47c569e4874c7590c55c5"}, - {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:242489efdb75b690c9c2e70bb5c6550727058c8a614e4c7716f363c27e10bba1"}, - {file = "matplotlib-3.8.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:83c0653c64b73926730bd9ea14aa0f50f202ba187c307a881673bad4985967b7"}, - {file = "matplotlib-3.8.3-cp312-cp312-win_amd64.whl", hash = "sha256:ef6c1025a570354297d6c15f7d0f296d95f88bd3850066b7f1e7b4f2f4c13a39"}, - {file = "matplotlib-3.8.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c4af3f7317f8a1009bbb2d0bf23dfaba859eb7dd4ccbd604eba146dccaaaf0a4"}, - {file = "matplotlib-3.8.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4c6e00a65d017d26009bac6808f637b75ceade3e1ff91a138576f6b3065eeeba"}, - {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7b49ab49a3bea17802df6872f8d44f664ba8f9be0632a60c99b20b6db2165b7"}, - {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6728dde0a3997396b053602dbd907a9bd64ec7d5cf99e728b404083698d3ca01"}, - {file = "matplotlib-3.8.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:813925d08fb86aba139f2d31864928d67511f64e5945ca909ad5bc09a96189bb"}, - {file = "matplotlib-3.8.3-cp39-cp39-win_amd64.whl", hash = "sha256:cd3a0c2be76f4e7be03d34a14d49ded6acf22ef61f88da600a18a5cd8b3c5f3c"}, - {file = "matplotlib-3.8.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fa93695d5c08544f4a0dfd0965f378e7afc410d8672816aff1e81be1f45dbf2e"}, - {file = "matplotlib-3.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9764df0e8778f06414b9d281a75235c1e85071f64bb5d71564b97c1306a2afc"}, - {file = "matplotlib-3.8.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5e431a09e6fab4012b01fc155db0ce6dccacdbabe8198197f523a4ef4805eb26"}, - {file = "matplotlib-3.8.3.tar.gz", hash = "sha256:7b416239e9ae38be54b028abbf9048aff5054a9aba5416bef0bd17f9162ce161"}, + {file = "matplotlib-3.8.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:abc9d838f93583650c35eca41cfcec65b2e7cb50fd486da6f0c49b5e1ed23014"}, + {file = "matplotlib-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f65c9f002d281a6e904976007b2d46a1ee2bcea3a68a8c12dda24709ddc9106"}, + {file = "matplotlib-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce1edd9f5383b504dbc26eeea404ed0a00656c526638129028b758fd43fc5f10"}, + {file = "matplotlib-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd79298550cba13a43c340581a3ec9c707bd895a6a061a78fa2524660482fc0"}, + {file = "matplotlib-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:90df07db7b599fe7035d2f74ab7e438b656528c68ba6bb59b7dc46af39ee48ef"}, + {file = "matplotlib-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:ac24233e8f2939ac4fd2919eed1e9c0871eac8057666070e94cbf0b33dd9c338"}, + {file = "matplotlib-3.8.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:72f9322712e4562e792b2961971891b9fbbb0e525011e09ea0d1f416c4645661"}, + {file = "matplotlib-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:232ce322bfd020a434caaffbd9a95333f7c2491e59cfc014041d95e38ab90d1c"}, + {file = "matplotlib-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6addbd5b488aedb7f9bc19f91cd87ea476206f45d7116fcfe3d31416702a82fa"}, + {file = "matplotlib-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc4ccdc64e3039fc303defd119658148f2349239871db72cd74e2eeaa9b80b71"}, + {file = "matplotlib-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b7a2a253d3b36d90c8993b4620183b55665a429da8357a4f621e78cd48b2b30b"}, + {file = "matplotlib-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:8080d5081a86e690d7688ffa542532e87f224c38a6ed71f8fbed34dd1d9fedae"}, + {file = "matplotlib-3.8.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6485ac1f2e84676cff22e693eaa4fbed50ef5dc37173ce1f023daef4687df616"}, + {file = "matplotlib-3.8.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c89ee9314ef48c72fe92ce55c4e95f2f39d70208f9f1d9db4e64079420d8d732"}, + {file = "matplotlib-3.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50bac6e4d77e4262c4340d7a985c30912054745ec99756ce213bfbc3cb3808eb"}, + {file = "matplotlib-3.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f51c4c869d4b60d769f7b4406eec39596648d9d70246428745a681c327a8ad30"}, + {file = "matplotlib-3.8.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b12ba985837e4899b762b81f5b2845bd1a28f4fdd1a126d9ace64e9c4eb2fb25"}, + {file = "matplotlib-3.8.4-cp312-cp312-win_amd64.whl", hash = "sha256:7a6769f58ce51791b4cb8b4d7642489df347697cd3e23d88266aaaee93b41d9a"}, + {file = "matplotlib-3.8.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:843cbde2f0946dadd8c5c11c6d91847abd18ec76859dc319362a0964493f0ba6"}, + {file = "matplotlib-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1c13f041a7178f9780fb61cc3a2b10423d5e125480e4be51beaf62b172413b67"}, + {file = "matplotlib-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb44f53af0a62dc80bba4443d9b27f2fde6acfdac281d95bc872dc148a6509cc"}, + {file = "matplotlib-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:606e3b90897554c989b1e38a258c626d46c873523de432b1462f295db13de6f9"}, + {file = "matplotlib-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9bb0189011785ea794ee827b68777db3ca3f93f3e339ea4d920315a0e5a78d54"}, + {file = "matplotlib-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:6209e5c9aaccc056e63b547a8152661324404dd92340a6e479b3a7f24b42a5d0"}, + {file = "matplotlib-3.8.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c7064120a59ce6f64103c9cefba8ffe6fba87f2c61d67c401186423c9a20fd35"}, + {file = "matplotlib-3.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0e47eda4eb2614300fc7bb4657fced3e83d6334d03da2173b09e447418d499f"}, + {file = "matplotlib-3.8.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:493e9f6aa5819156b58fce42b296ea31969f2aab71c5b680b4ea7a3cb5c07d94"}, + {file = "matplotlib-3.8.4.tar.gz", hash = "sha256:8aac397d5e9ec158960e31c381c5ffc52ddd52bd9a47717e2a694038167dffea"}, ] [package.dependencies] @@ -1424,7 +1426,7 @@ contourpy = ">=1.0.1" cycler = ">=0.10" fonttools = ">=4.22.0" kiwisolver = ">=1.3.1" -numpy = ">=1.21,<2" +numpy = ">=1.21" packaging = ">=20.0" pillow = ">=8" pyparsing = ">=2.3.1" @@ -1524,67 +1526,67 @@ query-fits = ["requests"] [[package]] name = "msgpack" -version = "1.0.7" +version = "1.0.8" description = "MessagePack serializer" optional = false python-versions = ">=3.8" files = [ - {file = "msgpack-1.0.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:04ad6069c86e531682f9e1e71b71c1c3937d6014a7c3e9edd2aa81ad58842862"}, - {file = "msgpack-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cca1b62fe70d761a282496b96a5e51c44c213e410a964bdffe0928e611368329"}, - {file = "msgpack-1.0.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e50ebce52f41370707f1e21a59514e3375e3edd6e1832f5e5235237db933c98b"}, - {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a7b4f35de6a304b5533c238bee86b670b75b03d31b7797929caa7a624b5dda6"}, - {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28efb066cde83c479dfe5a48141a53bc7e5f13f785b92ddde336c716663039ee"}, - {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4cb14ce54d9b857be9591ac364cb08dc2d6a5c4318c1182cb1d02274029d590d"}, - {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b573a43ef7c368ba4ea06050a957c2a7550f729c31f11dd616d2ac4aba99888d"}, - {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ccf9a39706b604d884d2cb1e27fe973bc55f2890c52f38df742bc1d79ab9f5e1"}, - {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cb70766519500281815dfd7a87d3a178acf7ce95390544b8c90587d76b227681"}, - {file = "msgpack-1.0.7-cp310-cp310-win32.whl", hash = "sha256:b610ff0f24e9f11c9ae653c67ff8cc03c075131401b3e5ef4b82570d1728f8a9"}, - {file = "msgpack-1.0.7-cp310-cp310-win_amd64.whl", hash = "sha256:a40821a89dc373d6427e2b44b572efc36a2778d3f543299e2f24eb1a5de65415"}, - {file = "msgpack-1.0.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:576eb384292b139821c41995523654ad82d1916da6a60cff129c715a6223ea84"}, - {file = "msgpack-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:730076207cb816138cf1af7f7237b208340a2c5e749707457d70705715c93b93"}, - {file = "msgpack-1.0.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:85765fdf4b27eb5086f05ac0491090fc76f4f2b28e09d9350c31aac25a5aaff8"}, - {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3476fae43db72bd11f29a5147ae2f3cb22e2f1a91d575ef130d2bf49afd21c46"}, - {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d4c80667de2e36970ebf74f42d1088cc9ee7ef5f4e8c35eee1b40eafd33ca5b"}, - {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b0bf0effb196ed76b7ad883848143427a73c355ae8e569fa538365064188b8e"}, - {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f9a7c509542db4eceed3dcf21ee5267ab565a83555c9b88a8109dcecc4709002"}, - {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:84b0daf226913133f899ea9b30618722d45feffa67e4fe867b0b5ae83a34060c"}, - {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ec79ff6159dffcc30853b2ad612ed572af86c92b5168aa3fc01a67b0fa40665e"}, - {file = "msgpack-1.0.7-cp311-cp311-win32.whl", hash = "sha256:3e7bf4442b310ff154b7bb9d81eb2c016b7d597e364f97d72b1acc3817a0fdc1"}, - {file = "msgpack-1.0.7-cp311-cp311-win_amd64.whl", hash = "sha256:3f0c8c6dfa6605ab8ff0611995ee30d4f9fcff89966cf562733b4008a3d60d82"}, - {file = "msgpack-1.0.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f0936e08e0003f66bfd97e74ee530427707297b0d0361247e9b4f59ab78ddc8b"}, - {file = "msgpack-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:98bbd754a422a0b123c66a4c341de0474cad4a5c10c164ceed6ea090f3563db4"}, - {file = "msgpack-1.0.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b291f0ee7961a597cbbcc77709374087fa2a9afe7bdb6a40dbbd9b127e79afee"}, - {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebbbba226f0a108a7366bf4b59bf0f30a12fd5e75100c630267d94d7f0ad20e5"}, - {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e2d69948e4132813b8d1131f29f9101bc2c915f26089a6d632001a5c1349672"}, - {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bdf38ba2d393c7911ae989c3bbba510ebbcdf4ecbdbfec36272abe350c454075"}, - {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:993584fc821c58d5993521bfdcd31a4adf025c7d745bbd4d12ccfecf695af5ba"}, - {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:52700dc63a4676669b341ba33520f4d6e43d3ca58d422e22ba66d1736b0a6e4c"}, - {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e45ae4927759289c30ccba8d9fdce62bb414977ba158286b5ddaf8df2cddb5c5"}, - {file = "msgpack-1.0.7-cp312-cp312-win32.whl", hash = "sha256:27dcd6f46a21c18fa5e5deed92a43d4554e3df8d8ca5a47bf0615d6a5f39dbc9"}, - {file = "msgpack-1.0.7-cp312-cp312-win_amd64.whl", hash = "sha256:7687e22a31e976a0e7fc99c2f4d11ca45eff652a81eb8c8085e9609298916dcf"}, - {file = "msgpack-1.0.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5b6ccc0c85916998d788b295765ea0e9cb9aac7e4a8ed71d12e7d8ac31c23c95"}, - {file = "msgpack-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:235a31ec7db685f5c82233bddf9858748b89b8119bf4538d514536c485c15fe0"}, - {file = "msgpack-1.0.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cab3db8bab4b7e635c1c97270d7a4b2a90c070b33cbc00c99ef3f9be03d3e1f7"}, - {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bfdd914e55e0d2c9e1526de210f6fe8ffe9705f2b1dfcc4aecc92a4cb4b533d"}, - {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36e17c4592231a7dbd2ed09027823ab295d2791b3b1efb2aee874b10548b7524"}, - {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38949d30b11ae5f95c3c91917ee7a6b239f5ec276f271f28638dec9156f82cfc"}, - {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ff1d0899f104f3921d94579a5638847f783c9b04f2d5f229392ca77fba5b82fc"}, - {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dc43f1ec66eb8440567186ae2f8c447d91e0372d793dfe8c222aec857b81a8cf"}, - {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dd632777ff3beaaf629f1ab4396caf7ba0bdd075d948a69460d13d44357aca4c"}, - {file = "msgpack-1.0.7-cp38-cp38-win32.whl", hash = "sha256:4e71bc4416de195d6e9b4ee93ad3f2f6b2ce11d042b4d7a7ee00bbe0358bd0c2"}, - {file = "msgpack-1.0.7-cp38-cp38-win_amd64.whl", hash = "sha256:8f5b234f567cf76ee489502ceb7165c2a5cecec081db2b37e35332b537f8157c"}, - {file = "msgpack-1.0.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfef2bb6ef068827bbd021017a107194956918ab43ce4d6dc945ffa13efbc25f"}, - {file = "msgpack-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:484ae3240666ad34cfa31eea7b8c6cd2f1fdaae21d73ce2974211df099a95d81"}, - {file = "msgpack-1.0.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3967e4ad1aa9da62fd53e346ed17d7b2e922cba5ab93bdd46febcac39be636fc"}, - {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dd178c4c80706546702c59529ffc005681bd6dc2ea234c450661b205445a34d"}, - {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6ffbc252eb0d229aeb2f9ad051200668fc3a9aaa8994e49f0cb2ffe2b7867e7"}, - {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:822ea70dc4018c7e6223f13affd1c5c30c0f5c12ac1f96cd8e9949acddb48a61"}, - {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:384d779f0d6f1b110eae74cb0659d9aa6ff35aaf547b3955abf2ab4c901c4819"}, - {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f64e376cd20d3f030190e8c32e1c64582eba56ac6dc7d5b0b49a9d44021b52fd"}, - {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ed82f5a7af3697b1c4786053736f24a0efd0a1b8a130d4c7bfee4b9ded0f08f"}, - {file = "msgpack-1.0.7-cp39-cp39-win32.whl", hash = "sha256:f26a07a6e877c76a88e3cecac8531908d980d3d5067ff69213653649ec0f60ad"}, - {file = "msgpack-1.0.7-cp39-cp39-win_amd64.whl", hash = "sha256:1dc93e8e4653bdb5910aed79f11e165c85732067614f180f70534f056da97db3"}, - {file = "msgpack-1.0.7.tar.gz", hash = "sha256:572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87"}, + {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868"}, + {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c"}, + {file = "msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659"}, + {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2"}, + {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982"}, + {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa"}, + {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128"}, + {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d"}, + {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653"}, + {file = "msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693"}, + {file = "msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a"}, + {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836"}, + {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad"}, + {file = "msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b"}, + {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba"}, + {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85"}, + {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950"}, + {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a"}, + {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b"}, + {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce"}, + {file = "msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305"}, + {file = "msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e"}, + {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee"}, + {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b"}, + {file = "msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8"}, + {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3"}, + {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc"}, + {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58"}, + {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f"}, + {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04"}, + {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543"}, + {file = "msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c"}, + {file = "msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd"}, + {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0ceea77719d45c839fd73abcb190b8390412a890df2f83fb8cf49b2a4b5c2f40"}, + {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1ab0bbcd4d1f7b6991ee7c753655b481c50084294218de69365f8f1970d4c151"}, + {file = "msgpack-1.0.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1cce488457370ffd1f953846f82323cb6b2ad2190987cd4d70b2713e17268d24"}, + {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3923a1778f7e5ef31865893fdca12a8d7dc03a44b33e2a5f3295416314c09f5d"}, + {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a22e47578b30a3e199ab067a4d43d790249b3c0587d9a771921f86250c8435db"}, + {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd739c9251d01e0279ce729e37b39d49a08c0420d3fee7f2a4968c0576678f77"}, + {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d3420522057ebab1728b21ad473aa950026d07cb09da41103f8e597dfbfaeb13"}, + {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5845fdf5e5d5b78a49b826fcdc0eb2e2aa7191980e3d2cfd2a30303a74f212e2"}, + {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a0e76621f6e1f908ae52860bdcb58e1ca85231a9b0545e64509c931dd34275a"}, + {file = "msgpack-1.0.8-cp38-cp38-win32.whl", hash = "sha256:374a8e88ddab84b9ada695d255679fb99c53513c0a51778796fcf0944d6c789c"}, + {file = "msgpack-1.0.8-cp38-cp38-win_amd64.whl", hash = "sha256:f3709997b228685fe53e8c433e2df9f0cdb5f4542bd5114ed17ac3c0129b0480"}, + {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a"}, + {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596"}, + {file = "msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d"}, + {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f"}, + {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228"}, + {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18"}, + {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8"}, + {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746"}, + {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273"}, + {file = "msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d"}, + {file = "msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011"}, + {file = "msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3"}, ] [[package]] @@ -1632,44 +1634,44 @@ test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"] [[package]] name = "numexpr" -version = "2.9.0" +version = "2.10.0" description = "Fast numerical expression evaluator for NumPy" optional = false python-versions = ">=3.9" files = [ - {file = "numexpr-2.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c52b4ac54514f5d4d8ead66768810cd5f77aa198e6064213d9b5c7b2e1c97c35"}, - {file = "numexpr-2.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:50f57bc333f285e8c46b1ce61c6e94ec9bb74e4ea0d674d1c6c6f4a286f64fe4"}, - {file = "numexpr-2.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:943ba141f3884ffafa3fa1a3ebf3cdda9e9688a67a3c91986e6eae13dc073d43"}, - {file = "numexpr-2.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee48acd6339748a65c0e32403b802ebfadd9cb0e3b602ba5889896238eafdd61"}, - {file = "numexpr-2.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:972e29b5cecc21466c5b177e38568372ab66aab1f053ae04690a49cea09e747d"}, - {file = "numexpr-2.9.0-cp310-cp310-win32.whl", hash = "sha256:520e55d75bd99c76e376b6326e35ecf44c5ce2635a5caed72799a3885fc49173"}, - {file = "numexpr-2.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:5615497c3f34b637fda9b571f7774b6a82f2367cc1364b7a4573068dd1aabcaa"}, - {file = "numexpr-2.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bffcbc55dea5a5f5255e2586da08f00929998820e6592ee717273a08ad021eb3"}, - {file = "numexpr-2.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:374dc6ca54b2af813cb15c2b34e85092dfeac1f73d51ec358dd81876bd9adcec"}, - {file = "numexpr-2.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:549afc1622296cca3478a132c6e0fb5e55a19e08d32bc0d5a415434824a9c157"}, - {file = "numexpr-2.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c618a5895e34db0a364dcdb9960084c080f93f9d377c45b1ca9c394c24b4e77"}, - {file = "numexpr-2.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:37a7dd36fd79a2b69c3fd2bc2b51ac8270bebc69cc96e6d78f1148e147fcbfa8"}, - {file = "numexpr-2.9.0-cp311-cp311-win32.whl", hash = "sha256:00dab81d49239ea5423861ad627097b44d10d802df5f883d1b00f742139c3349"}, - {file = "numexpr-2.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:0e2574cafb18373774f351cac45ed23b5b360d9ecd1dbf3c12dac6d6eefefc87"}, - {file = "numexpr-2.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9761195526a228e05eba400b8c484c94bbabfea853b9ea35ab8fa1bf415331b1"}, - {file = "numexpr-2.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f619e91034b346ea85a4e1856ff06011dcb7dce10a60eda75e74db90120f880"}, - {file = "numexpr-2.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2749bce1c48706d58894992634a43b8458c4ba9411191471c4565fa41e9979ec"}, - {file = "numexpr-2.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1c31f621a625c7be602f92b027d90f2d3d60dcbc19b106e77fb04a4362152af"}, - {file = "numexpr-2.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1a78b937861d13de67d440d54c85a835faed7572be5a6fd10d4f3bd4e66e157f"}, - {file = "numexpr-2.9.0-cp312-cp312-win32.whl", hash = "sha256:aa6298fb46bd7ec69911b5b80927a00663d066e719b29f48eb952d559bdd8371"}, - {file = "numexpr-2.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:8efd879839572bde5a38a1aa3ac23fd4dd9b956fb969bc5e43d1c403419e1e8c"}, - {file = "numexpr-2.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b04f12a6130094a251e3a8fff40130589c1c83be6d4eb223873bea14d8c8b630"}, - {file = "numexpr-2.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:977537f2a1cc843f888fb5f0507626f956ada674e4b3847168214a3f3c7446fa"}, - {file = "numexpr-2.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6eae6c0c2d5682c02e8ac9c4287c2232c2443c9148b239df22500eaa3c5d73b7"}, - {file = "numexpr-2.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fae6828042b70c2f52a132bfcb9139da704274ed11b982fbf537f91c075d2ef"}, - {file = "numexpr-2.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7c77392aea53f0700d60eb270ad63174b4ff10b04f8de92861101ca2129fee51"}, - {file = "numexpr-2.9.0-cp39-cp39-win32.whl", hash = "sha256:3b03a6cf37a72f5b52f2b962d7ac7f565bea8eaba83c3c4e5fcf8fbb6a938153"}, - {file = "numexpr-2.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:d655b6eacc4e81006b662cba014e4615a9ddd96881b8b4db4ad0d7f6d38069af"}, - {file = "numexpr-2.9.0.tar.gz", hash = "sha256:f21d12f6c432ce349089eb95342babf6629aebb3fddf187a4492d3aadaadaaf0"}, + {file = "numexpr-2.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1af6dc6b3bd2e11a802337b352bf58f30df0b70be16c4f863b70a3af3a8ef95e"}, + {file = "numexpr-2.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c66dc0188358cdcc9465b6ee54fd5eef2e83ac64b1d4ba9117c41df59bf6fca"}, + {file = "numexpr-2.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83f1e7a7f7ee741b8dcd20c56c3f862a3a3ec26fa8b9fcadb7dcd819876d2f35"}, + {file = "numexpr-2.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f0b045e1831953a47cc9fabae76a6794c69cbb60921751a5cf2d555034c55bf"}, + {file = "numexpr-2.10.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1d8eb88b0ae3d3c609d732a17e71096779b2bf47b3a084320ffa93d9f9132786"}, + {file = "numexpr-2.10.0-cp310-cp310-win32.whl", hash = "sha256:629b66cc1b750671e7fb396506b3f9410612e5bd8bc1dd55b5a0a0041d839f95"}, + {file = "numexpr-2.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:78e0a8bc4417c3dedcbae3c473505b69080535246edc977c7dccf3ec8454a685"}, + {file = "numexpr-2.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a602692cd52ce923ce8a0a90fb1d6cf186ebe8706eed83eee0de685e634b9aa9"}, + {file = "numexpr-2.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:745b46a1fb76920a3eebfaf26e50bc94a9c13b5aee34b256ab4b2d792dbaa9ca"}, + {file = "numexpr-2.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10789450032357afaeda4ac4d06da9542d1535c13151e8d32b49ae1a488d1358"}, + {file = "numexpr-2.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4feafc65ea3044b8bf8f305b757a928e59167a310630c22b97a57dff07a56490"}, + {file = "numexpr-2.10.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:937d36c6d3cf15601f26f84f0f706649f976491e9e0892d16cd7c876d77fa7dc"}, + {file = "numexpr-2.10.0-cp311-cp311-win32.whl", hash = "sha256:03d0ba492e484a5a1aeb24b300c4213ed168f2c246177be5733abb4e18cbb043"}, + {file = "numexpr-2.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:6b5f8242c075477156d26b3a6b8e0cd0a06d4c8eb68d907bde56dd3c9c683e92"}, + {file = "numexpr-2.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b276e2ba3e87ace9a30fd49078ad5dcdc6a1674d030b1ec132599c55465c0346"}, + {file = "numexpr-2.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cb5e12787101f1216f2cdabedc3417748f2e1f472442e16bbfabf0bab2336300"}, + {file = "numexpr-2.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05278bad96b5846d712eba58b44e5cec743bdb3e19ca624916c921d049fdbcf6"}, + {file = "numexpr-2.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6cdf9e64c5b3dbb61729edb505ea75ee212fa02b85c5b1d851331381ae3b0e1"}, + {file = "numexpr-2.10.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e3a973265591b0a875fd1151c4549e468959c7192821aac0bb86937694a08efa"}, + {file = "numexpr-2.10.0-cp312-cp312-win32.whl", hash = "sha256:416e0e9f0fc4cced67767585e44cb6b301728bdb9edbb7c534a853222ec62cac"}, + {file = "numexpr-2.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:748e8d4cde22d9a5603165293fb293a4de1a4623513299416c64fdab557118c2"}, + {file = "numexpr-2.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc3506c30c03b082da2cadef43747d474e5170c1f58a6dcdf882b3dc88b1e849"}, + {file = "numexpr-2.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:efa63ecdc9fcaf582045639ddcf56e9bdc1f4d9a01729be528f62df4db86c9d6"}, + {file = "numexpr-2.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96a64d0dd8f8e694da3f8582d73d7da8446ff375f6dd239b546010efea371ac3"}, + {file = "numexpr-2.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d47bb567e330ebe86781864219a36cbccb3a47aec893bd509f0139c6b23e8104"}, + {file = "numexpr-2.10.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c7517b774d309b1f0896c89bdd1ddd33c4418a92ecfbe5e1df3ac698698f6fcf"}, + {file = "numexpr-2.10.0-cp39-cp39-win32.whl", hash = "sha256:04e8620e7e676504201d4082e7b3ee2d9b561d1cb9470b47a6104e10c1e2870e"}, + {file = "numexpr-2.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:56d0d96b130f7cd4d78d0017030d6a0e9d9fc2a717ac51d4cf4860b39637e86a"}, + {file = "numexpr-2.10.0.tar.gz", hash = "sha256:c89e930752639df040539160326d8f99a84159bbea41943ab8e960591edaaef0"}, ] [package.dependencies] -numpy = ">=1.13.3" +numpy = ">=1.19.3" [[package]] name = "numpy" @@ -1718,51 +1720,51 @@ files = [ [[package]] name = "packaging" -version = "23.2" +version = "24.0" description = "Core utilities for Python packages" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, + {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"}, + {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"}, ] [[package]] name = "pandas" -version = "2.2.0" +version = "2.2.1" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.9" files = [ - {file = "pandas-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8108ee1712bb4fa2c16981fba7e68b3f6ea330277f5ca34fa8d557e986a11670"}, - {file = "pandas-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:736da9ad4033aeab51d067fc3bd69a0ba36f5a60f66a527b3d72e2030e63280a"}, - {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38e0b4fc3ddceb56ec8a287313bc22abe17ab0eb184069f08fc6a9352a769b18"}, - {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20404d2adefe92aed3b38da41d0847a143a09be982a31b85bc7dd565bdba0f4e"}, - {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ea3ee3f125032bfcade3a4cf85131ed064b4f8dd23e5ce6fa16473e48ebcaf5"}, - {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f9670b3ac00a387620489dfc1bca66db47a787f4e55911f1293063a78b108df1"}, - {file = "pandas-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a946f210383c7e6d16312d30b238fd508d80d927014f3b33fb5b15c2f895430"}, - {file = "pandas-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a1b438fa26b208005c997e78672f1aa8138f67002e833312e6230f3e57fa87d5"}, - {file = "pandas-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ce2fbc8d9bf303ce54a476116165220a1fedf15985b09656b4b4275300e920b"}, - {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2707514a7bec41a4ab81f2ccce8b382961a29fbe9492eab1305bb075b2b1ff4f"}, - {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85793cbdc2d5bc32620dc8ffa715423f0c680dacacf55056ba13454a5be5de88"}, - {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cfd6c2491dc821b10c716ad6776e7ab311f7df5d16038d0b7458bc0b67dc10f3"}, - {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a146b9dcacc3123aa2b399df1a284de5f46287a4ab4fbfc237eac98a92ebcb71"}, - {file = "pandas-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbc1b53c0e1fdf16388c33c3cca160f798d38aea2978004dd3f4d3dec56454c9"}, - {file = "pandas-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a41d06f308a024981dcaa6c41f2f2be46a6b186b902c94c2674e8cb5c42985bc"}, - {file = "pandas-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:159205c99d7a5ce89ecfc37cb08ed179de7783737cea403b295b5eda8e9c56d1"}, - {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1e1f3861ea9132b32f2133788f3b14911b68102d562715d71bd0013bc45440"}, - {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:761cb99b42a69005dec2b08854fb1d4888fdf7b05db23a8c5a099e4b886a2106"}, - {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a20628faaf444da122b2a64b1e5360cde100ee6283ae8effa0d8745153809a2e"}, - {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f5be5d03ea2073627e7111f61b9f1f0d9625dc3c4d8dda72cc827b0c58a1d042"}, - {file = "pandas-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:a626795722d893ed6aacb64d2401d017ddc8a2341b49e0384ab9bf7112bdec30"}, - {file = "pandas-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9f66419d4a41132eb7e9a73dcec9486cf5019f52d90dd35547af11bc58f8637d"}, - {file = "pandas-2.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:57abcaeda83fb80d447f28ab0cc7b32b13978f6f733875ebd1ed14f8fbc0f4ab"}, - {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e60f1f7dba3c2d5ca159e18c46a34e7ca7247a73b5dd1a22b6d59707ed6b899a"}, - {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb61dc8567b798b969bcc1fc964788f5a68214d333cade8319c7ab33e2b5d88a"}, - {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:52826b5f4ed658fa2b729264d63f6732b8b29949c7fd234510d57c61dbeadfcd"}, - {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bde2bc699dbd80d7bc7f9cab1e23a95c4375de615860ca089f34e7c64f4a8de7"}, - {file = "pandas-2.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:3de918a754bbf2da2381e8a3dcc45eede8cd7775b047b923f9006d5f876802ae"}, - {file = "pandas-2.2.0.tar.gz", hash = "sha256:30b83f7c3eb217fb4d1b494a57a2fda5444f17834f5df2de6b2ffff68dc3c8e2"}, + {file = "pandas-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8df8612be9cd1c7797c93e1c5df861b2ddda0b48b08f2c3eaa0702cf88fb5f88"}, + {file = "pandas-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0f573ab277252ed9aaf38240f3b54cfc90fff8e5cab70411ee1d03f5d51f3944"}, + {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f02a3a6c83df4026e55b63c1f06476c9aa3ed6af3d89b4f04ea656ccdaaaa359"}, + {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38ce92cb22a4bea4e3929429aa1067a454dcc9c335799af93ba9be21b6beb51"}, + {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c2ce852e1cf2509a69e98358e8458775f89599566ac3775e70419b98615f4b06"}, + {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53680dc9b2519cbf609c62db3ed7c0b499077c7fefda564e330286e619ff0dd9"}, + {file = "pandas-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:94e714a1cca63e4f5939cdce5f29ba8d415d85166be3441165edd427dc9f6bc0"}, + {file = "pandas-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f821213d48f4ab353d20ebc24e4faf94ba40d76680642fb7ce2ea31a3ad94f9b"}, + {file = "pandas-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c70e00c2d894cb230e5c15e4b1e1e6b2b478e09cf27cc593a11ef955b9ecc81a"}, + {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97fbb5387c69209f134893abc788a6486dbf2f9e511070ca05eed4b930b1b02"}, + {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101d0eb9c5361aa0146f500773395a03839a5e6ecde4d4b6ced88b7e5a1a6403"}, + {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d2ed41c319c9fb4fd454fe25372028dfa417aacb9790f68171b2e3f06eae8cd"}, + {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:af5d3c00557d657c8773ef9ee702c61dd13b9d7426794c9dfeb1dc4a0bf0ebc7"}, + {file = "pandas-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:06cf591dbaefb6da9de8472535b185cba556d0ce2e6ed28e21d919704fef1a9e"}, + {file = "pandas-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:88ecb5c01bb9ca927ebc4098136038519aa5d66b44671861ffab754cae75102c"}, + {file = "pandas-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04f6ec3baec203c13e3f8b139fb0f9f86cd8c0b94603ae3ae8ce9a422e9f5bee"}, + {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a935a90a76c44fe170d01e90a3594beef9e9a6220021acfb26053d01426f7dc2"}, + {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c391f594aae2fd9f679d419e9a4d5ba4bce5bb13f6a989195656e7dc4b95c8f0"}, + {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9d1265545f579edf3f8f0cb6f89f234f5e44ba725a34d86535b1a1d38decbccc"}, + {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11940e9e3056576ac3244baef2fedade891977bcc1cb7e5cc8f8cc7d603edc89"}, + {file = "pandas-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4acf681325ee1c7f950d058b05a820441075b0dd9a2adf5c4835b9bc056bf4fb"}, + {file = "pandas-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9bd8a40f47080825af4317d0340c656744f2bfdb6819f818e6ba3cd24c0e1397"}, + {file = "pandas-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:df0c37ebd19e11d089ceba66eba59a168242fc6b7155cba4ffffa6eccdfb8f16"}, + {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:739cc70eaf17d57608639e74d63387b0d8594ce02f69e7a0b046f117974b3019"}, + {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d3558d263073ed95e46f4650becff0c5e1ffe0fc3a015de3c79283dfbdb3df"}, + {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4aa1d8707812a658debf03824016bf5ea0d516afdea29b7dc14cf687bc4d4ec6"}, + {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:76f27a809cda87e07f192f001d11adc2b930e93a2b0c4a236fde5429527423be"}, + {file = "pandas-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:1ba21b1d5c0e43416218db63037dbe1a01fc101dc6e6024bcad08123e48004ab"}, + {file = "pandas-2.2.1.tar.gz", hash = "sha256:0ab90f87093c13f3e8fa45b48ba9f39181046e8f3317d3aadb2fffbb1b978572"}, ] [package.dependencies] @@ -1790,6 +1792,7 @@ parquet = ["pyarrow (>=10.0.1)"] performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] plot = ["matplotlib (>=3.6.3)"] postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] spss = ["pyreadstat (>=1.2.0)"] sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] @@ -1797,13 +1800,13 @@ xml = ["lxml (>=4.9.2)"] [[package]] name = "pandas-stubs" -version = "2.1.4.231227" +version = "2.2.1.240316" description = "Type annotations for pandas" optional = false python-versions = ">=3.9" files = [ - {file = "pandas_stubs-2.1.4.231227-py3-none-any.whl", hash = "sha256:211fc23e6ae87073bdf41dbf362c4a4d85e1e3477cb078dbac3da6c7fdaefba8"}, - {file = "pandas_stubs-2.1.4.231227.tar.gz", hash = "sha256:3ea29ef001e9e44985f5ebde02d4413f94891ef6ec7e5056fb07d125be796c23"}, + {file = "pandas_stubs-2.2.1.240316-py3-none-any.whl", hash = "sha256:0126a26451a37cb893ea62357ca87ba3d181bd999ec8ba2ca5602e20207d6682"}, + {file = "pandas_stubs-2.2.1.240316.tar.gz", hash = "sha256:236a4f812fb6b1922e9607ff09e427f6d8540c421c9e5a40e3e4ddf7adac7f05"}, ] [package.dependencies] @@ -1873,79 +1876,80 @@ files = [ [[package]] name = "pillow" -version = "10.2.0" +version = "10.3.0" description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.8" files = [ - {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, - {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, - {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"}, - {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"}, - {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"}, - {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"}, - {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"}, - {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"}, - {file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"}, - {file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"}, - {file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"}, - {file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"}, - {file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"}, - {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"}, - {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"}, - {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"}, - {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"}, - {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"}, - {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"}, - {file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"}, - {file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"}, - {file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"}, - {file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"}, - {file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"}, - {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"}, - {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"}, - {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"}, - {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"}, - {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"}, - {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"}, - {file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"}, - {file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"}, - {file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"}, - {file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"}, - {file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"}, - {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"}, - {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"}, - {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"}, - {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"}, - {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"}, - {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"}, - {file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"}, - {file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"}, - {file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"}, - {file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"}, - {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"}, - {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"}, - {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"}, - {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13"}, - {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7"}, - {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591"}, - {file = "pillow-10.2.0-cp39-cp39-win32.whl", hash = "sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516"}, - {file = "pillow-10.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8"}, - {file = "pillow-10.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869"}, - {file = "pillow-10.2.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a"}, - {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2"}, - {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04"}, - {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2"}, - {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a"}, - {file = "pillow-10.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6"}, - {file = "pillow-10.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7"}, - {file = "pillow-10.2.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f"}, - {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e"}, - {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5"}, - {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b"}, - {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a"}, - {file = "pillow-10.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868"}, - {file = "pillow-10.2.0.tar.gz", hash = "sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e"}, + {file = "pillow-10.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45"}, + {file = "pillow-10.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c"}, + {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf"}, + {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599"}, + {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475"}, + {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf"}, + {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3"}, + {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5"}, + {file = "pillow-10.3.0-cp310-cp310-win32.whl", hash = "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2"}, + {file = "pillow-10.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f"}, + {file = "pillow-10.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b"}, + {file = "pillow-10.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795"}, + {file = "pillow-10.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57"}, + {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27"}, + {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994"}, + {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451"}, + {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd"}, + {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad"}, + {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c"}, + {file = "pillow-10.3.0-cp311-cp311-win32.whl", hash = "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09"}, + {file = "pillow-10.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d"}, + {file = "pillow-10.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f"}, + {file = "pillow-10.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84"}, + {file = "pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19"}, + {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338"}, + {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1"}, + {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462"}, + {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a"}, + {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef"}, + {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3"}, + {file = "pillow-10.3.0-cp312-cp312-win32.whl", hash = "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d"}, + {file = "pillow-10.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b"}, + {file = "pillow-10.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a"}, + {file = "pillow-10.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b"}, + {file = "pillow-10.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2"}, + {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa"}, + {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383"}, + {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d"}, + {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd"}, + {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d"}, + {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3"}, + {file = "pillow-10.3.0-cp38-cp38-win32.whl", hash = "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b"}, + {file = "pillow-10.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999"}, + {file = "pillow-10.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936"}, + {file = "pillow-10.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002"}, + {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60"}, + {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375"}, + {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57"}, + {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8"}, + {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9"}, + {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb"}, + {file = "pillow-10.3.0-cp39-cp39-win32.whl", hash = "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572"}, + {file = "pillow-10.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb"}, + {file = "pillow-10.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3"}, + {file = "pillow-10.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a"}, + {file = "pillow-10.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591"}, + {file = "pillow-10.3.0.tar.gz", hash = "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d"}, ] [package.extras] @@ -1988,25 +1992,27 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "polars" -version = "0.20.9" +version = "0.20.18" description = "Blazingly fast DataFrame library" optional = false python-versions = ">=3.8" files = [ - {file = "polars-0.20.9-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:fac0cac8fc734a434990f78ff1f21fa3ddcd00965c6b6c39996e189d406e3f19"}, - {file = "polars-0.20.9-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:bdeeb77738a6a5e92c27ff791c12fb51896be5949a25c82023ce066010b50c2a"}, - {file = "polars-0.20.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88112c329b4aaaead05df8758b433b243d6aab99c1f3b1e75c1f22ba4b13f47d"}, - {file = "polars-0.20.9-cp38-abi3-manylinux_2_24_aarch64.whl", hash = "sha256:a382b59095691b482ae64ba3a66e982778d98e916b929e31a4aad4ad9304486f"}, - {file = "polars-0.20.9-cp38-abi3-win_amd64.whl", hash = "sha256:298a942b61eb71110c36961682562c69996ec6c22c538f77e96a19c54f9e3461"}, - {file = "polars-0.20.9.tar.gz", hash = "sha256:6633b94a21cec728e6079cc400822731f6702f4dc599b37657dcdb6178c3788d"}, + {file = "polars-0.20.18-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:e305f5e6c0b8dc37fe0ff3bb1143a8bf0341134e0b23dec7c50a148f426acceb"}, + {file = "polars-0.20.18-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:26716f074301f583da9af93108d57da631622d6496cbcbb8c08476180953f408"}, + {file = "polars-0.20.18-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b3843f69228df68cb82e39647c212fde58671c064c25a0c4d544f9446160a7e"}, + {file = "polars-0.20.18-cp38-abi3-manylinux_2_24_aarch64.whl", hash = "sha256:4b775e9677d0050775243400def1f5de4dd02b5ee220873406abc4028228525e"}, + {file = "polars-0.20.18-cp38-abi3-win_amd64.whl", hash = "sha256:73b81b9582c48f0ca4ae08c0adc56917b0c55682044bedf0eccd3f94e4e39169"}, + {file = "polars-0.20.18.tar.gz", hash = "sha256:8a321cbdbb459e3c0cc1af2ce6ac930d0d3b5ccbeb2dd3e4237ad07d487fd290"}, ] [package.extras] -adbc = ["adbc_driver_sqlite"] -all = ["polars[adbc,cloudpickle,connectorx,deltalake,fsspec,gevent,numpy,pandas,plot,pyarrow,pydantic,pyiceberg,sqlalchemy,timezone,xlsx2csv,xlsxwriter]"] +adbc = ["adbc-driver-manager", "adbc-driver-sqlite"] +all = ["polars[adbc,async,cloudpickle,connectorx,deltalake,fastexcel,fsspec,gevent,numpy,pandas,plot,pyarrow,pydantic,pyiceberg,sqlalchemy,timezone,xlsx2csv,xlsxwriter]"] +async = ["nest-asyncio"] cloudpickle = ["cloudpickle"] connectorx = ["connectorx (>=0.3.2)"] deltalake = ["deltalake (>=0.14.0)"] +fastexcel = ["fastexcel (>=0.9)"] fsspec = ["fsspec"] gevent = ["gevent"] matplotlib = ["matplotlib"] @@ -2019,7 +2025,7 @@ pydantic = ["pydantic"] pyiceberg = ["pyiceberg (>=0.5.0)"] pyxlsb = ["pyxlsb (>=1.0)"] sqlalchemy = ["pandas", "sqlalchemy"] -timezone = ["backports.zoneinfo", "tzdata"] +timezone = ["backports-zoneinfo", "tzdata"] xlsx2csv = ["xlsx2csv (>=0.8.0)"] xlsxwriter = ["xlsxwriter"] @@ -2036,13 +2042,13 @@ files = [ [[package]] name = "progressbar2" -version = "4.3.2" +version = "4.4.2" description = "A Python Progressbar library to provide visual (yet text based) progress to long running operations." optional = false python-versions = ">=3.8" files = [ - {file = "progressbar2-4.3.2-py3-none-any.whl", hash = "sha256:036fa3bd35ae27c92e73fce4fb18aa4ba5090a1880d880cf954ecb75ccd6f3fb"}, - {file = "progressbar2-4.3.2.tar.gz", hash = "sha256:c37e6e1b4e57ab43f95c3d0e8d90061bec140e4fed56b8343183db3aa1e19a52"}, + {file = "progressbar2-4.4.2-py3-none-any.whl", hash = "sha256:ec157391635b008b8a422326fb05c27045ffbb2dc8dab5e4d90d4d412c4ffd39"}, + {file = "progressbar2-4.4.2.tar.gz", hash = "sha256:3fda2e0c60693600a6585a784c9d3bc4e1dac57e99e133f8c0f5c8cf3df374a2"}, ] [package.dependencies] @@ -2050,7 +2056,7 @@ python-utils = ">=3.8.1" [package.extras] docs = ["sphinx (>=1.8.5)", "sphinx-autodoc-typehints (>=1.6.0)"] -tests = ["dill (>=0.3.6)", "flake8 (>=3.7.7)", "freezegun (>=0.3.11)", "pytest (>=4.6.9)", "pytest-cov (>=2.6.1)", "pytest-mypy", "sphinx (>=1.8.5)"] +tests = ["dill (>=0.3.6)", "flake8 (>=3.7.7)", "freezegun (>=0.3.11)", "pytest (>=4.6.9)", "pytest-cov (>=2.6.1)", "pytest-mypy", "pywin32", "sphinx (>=1.8.5)"] [[package]] name = "prompt-toolkit" @@ -2213,47 +2219,47 @@ files = [ [[package]] name = "pyarrow" -version = "15.0.0" +version = "15.0.2" description = "Python library for Apache Arrow" optional = false python-versions = ">=3.8" files = [ - {file = "pyarrow-15.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:0a524532fd6dd482edaa563b686d754c70417c2f72742a8c990b322d4c03a15d"}, - {file = "pyarrow-15.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:60a6bdb314affa9c2e0d5dddf3d9cbb9ef4a8dddaa68669975287d47ece67642"}, - {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66958fd1771a4d4b754cd385835e66a3ef6b12611e001d4e5edfcef5f30391e2"}, - {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f500956a49aadd907eaa21d4fff75f73954605eaa41f61cb94fb008cf2e00c6"}, - {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6f87d9c4f09e049c2cade559643424da84c43a35068f2a1c4653dc5b1408a929"}, - {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:85239b9f93278e130d86c0e6bb455dcb66fc3fd891398b9d45ace8799a871a1e"}, - {file = "pyarrow-15.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5b8d43e31ca16aa6e12402fcb1e14352d0d809de70edd185c7650fe80e0769e3"}, - {file = "pyarrow-15.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:fa7cd198280dbd0c988df525e50e35b5d16873e2cdae2aaaa6363cdb64e3eec5"}, - {file = "pyarrow-15.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8780b1a29d3c8b21ba6b191305a2a607de2e30dab399776ff0aa09131e266340"}, - {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe0ec198ccc680f6c92723fadcb97b74f07c45ff3fdec9dd765deb04955ccf19"}, - {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:036a7209c235588c2f07477fe75c07e6caced9b7b61bb897c8d4e52c4b5f9555"}, - {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2bd8a0e5296797faf9a3294e9fa2dc67aa7f10ae2207920dbebb785c77e9dbe5"}, - {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e8ebed6053dbe76883a822d4e8da36860f479d55a762bd9e70d8494aed87113e"}, - {file = "pyarrow-15.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:17d53a9d1b2b5bd7d5e4cd84d018e2a45bc9baaa68f7e6e3ebed45649900ba99"}, - {file = "pyarrow-15.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9950a9c9df24090d3d558b43b97753b8f5867fb8e521f29876aa021c52fda351"}, - {file = "pyarrow-15.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:003d680b5e422d0204e7287bb3fa775b332b3fce2996aa69e9adea23f5c8f970"}, - {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f75fce89dad10c95f4bf590b765e3ae98bcc5ba9f6ce75adb828a334e26a3d40"}, - {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca9cb0039923bec49b4fe23803807e4ef39576a2bec59c32b11296464623dc2"}, - {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ed5a78ed29d171d0acc26a305a4b7f83c122d54ff5270810ac23c75813585e4"}, - {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6eda9e117f0402dfcd3cd6ec9bfee89ac5071c48fc83a84f3075b60efa96747f"}, - {file = "pyarrow-15.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:9a3a6180c0e8f2727e6f1b1c87c72d3254cac909e609f35f22532e4115461177"}, - {file = "pyarrow-15.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:19a8918045993349b207de72d4576af0191beef03ea655d8bdb13762f0cd6eac"}, - {file = "pyarrow-15.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d0ec076b32bacb6666e8813a22e6e5a7ef1314c8069d4ff345efa6246bc38593"}, - {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5db1769e5d0a77eb92344c7382d6543bea1164cca3704f84aa44e26c67e320fb"}, - {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2617e3bf9df2a00020dd1c1c6dce5cc343d979efe10bc401c0632b0eef6ef5b"}, - {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:d31c1d45060180131caf10f0f698e3a782db333a422038bf7fe01dace18b3a31"}, - {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:c8c287d1d479de8269398b34282e206844abb3208224dbdd7166d580804674b7"}, - {file = "pyarrow-15.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:07eb7f07dc9ecbb8dace0f58f009d3a29ee58682fcdc91337dfeb51ea618a75b"}, - {file = "pyarrow-15.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:47af7036f64fce990bb8a5948c04722e4e3ea3e13b1007ef52dfe0aa8f23cf7f"}, - {file = "pyarrow-15.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93768ccfff85cf044c418bfeeafce9a8bb0cee091bd8fd19011aff91e58de540"}, - {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6ee87fd6892700960d90abb7b17a72a5abb3b64ee0fe8db6c782bcc2d0dc0b4"}, - {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:001fca027738c5f6be0b7a3159cc7ba16a5c52486db18160909a0831b063c4e4"}, - {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:d1c48648f64aec09accf44140dccb92f4f94394b8d79976c426a5b79b11d4fa7"}, - {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:972a0141be402bb18e3201448c8ae62958c9c7923dfaa3b3d4530c835ac81aed"}, - {file = "pyarrow-15.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:f01fc5cf49081426429127aa2d427d9d98e1cb94a32cb961d583a70b7c4504e6"}, - {file = "pyarrow-15.0.0.tar.gz", hash = "sha256:876858f549d540898f927eba4ef77cd549ad8d24baa3207cf1b72e5788b50e83"}, + {file = "pyarrow-15.0.2-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:88b340f0a1d05b5ccc3d2d986279045655b1fe8e41aba6ca44ea28da0d1455d8"}, + {file = "pyarrow-15.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eaa8f96cecf32da508e6c7f69bb8401f03745c050c1dd42ec2596f2e98deecac"}, + {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23c6753ed4f6adb8461e7c383e418391b8d8453c5d67e17f416c3a5d5709afbd"}, + {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f639c059035011db8c0497e541a8a45d98a58dbe34dc8fadd0ef128f2cee46e5"}, + {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:290e36a59a0993e9a5224ed2fb3e53375770f07379a0ea03ee2fce2e6d30b423"}, + {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:06c2bb2a98bc792f040bef31ad3e9be6a63d0cb39189227c08a7d955db96816e"}, + {file = "pyarrow-15.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:f7a197f3670606a960ddc12adbe8075cea5f707ad7bf0dffa09637fdbb89f76c"}, + {file = "pyarrow-15.0.2-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:5f8bc839ea36b1f99984c78e06e7a06054693dc2af8920f6fb416b5bca9944e4"}, + {file = "pyarrow-15.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f5e81dfb4e519baa6b4c80410421528c214427e77ca0ea9461eb4097c328fa33"}, + {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a4f240852b302a7af4646c8bfe9950c4691a419847001178662a98915fd7ee7"}, + {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e7d9cfb5a1e648e172428c7a42b744610956f3b70f524aa3a6c02a448ba853e"}, + {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2d4f905209de70c0eb5b2de6763104d5a9a37430f137678edfb9a675bac9cd98"}, + {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:90adb99e8ce5f36fbecbbc422e7dcbcbed07d985eed6062e459e23f9e71fd197"}, + {file = "pyarrow-15.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:b116e7fd7889294cbd24eb90cd9bdd3850be3738d61297855a71ac3b8124ee38"}, + {file = "pyarrow-15.0.2-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:25335e6f1f07fdaa026a61c758ee7d19ce824a866b27bba744348fa73bb5a440"}, + {file = "pyarrow-15.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:90f19e976d9c3d8e73c80be84ddbe2f830b6304e4c576349d9360e335cd627fc"}, + {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a22366249bf5fd40ddacc4f03cd3160f2d7c247692945afb1899bab8a140ddfb"}, + {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2a335198f886b07e4b5ea16d08ee06557e07db54a8400cc0d03c7f6a22f785f"}, + {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e6d459c0c22f0b9c810a3917a1de3ee704b021a5fb8b3bacf968eece6df098f"}, + {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:033b7cad32198754d93465dcfb71d0ba7cb7cd5c9afd7052cab7214676eec38b"}, + {file = "pyarrow-15.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:29850d050379d6e8b5a693098f4de7fd6a2bea4365bfd073d7c57c57b95041ee"}, + {file = "pyarrow-15.0.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:7167107d7fb6dcadb375b4b691b7e316f4368f39f6f45405a05535d7ad5e5058"}, + {file = "pyarrow-15.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e85241b44cc3d365ef950432a1b3bd44ac54626f37b2e3a0cc89c20e45dfd8bf"}, + {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:248723e4ed3255fcd73edcecc209744d58a9ca852e4cf3d2577811b6d4b59818"}, + {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ff3bdfe6f1b81ca5b73b70a8d482d37a766433823e0c21e22d1d7dde76ca33f"}, + {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:f3d77463dee7e9f284ef42d341689b459a63ff2e75cee2b9302058d0d98fe142"}, + {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:8c1faf2482fb89766e79745670cbca04e7018497d85be9242d5350cba21357e1"}, + {file = "pyarrow-15.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:28f3016958a8e45a1069303a4a4f6a7d4910643fc08adb1e2e4a7ff056272ad3"}, + {file = "pyarrow-15.0.2-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:89722cb64286ab3d4daf168386f6968c126057b8c7ec3ef96302e81d8cdb8ae4"}, + {file = "pyarrow-15.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cd0ba387705044b3ac77b1b317165c0498299b08261d8122c96051024f953cd5"}, + {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad2459bf1f22b6a5cdcc27ebfd99307d5526b62d217b984b9f5c974651398832"}, + {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58922e4bfece8b02abf7159f1f53a8f4d9f8e08f2d988109126c17c3bb261f22"}, + {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:adccc81d3dc0478ea0b498807b39a8d41628fa9210729b2f718b78cb997c7c91"}, + {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:8bd2baa5fe531571847983f36a30ddbf65261ef23e496862ece83bdceb70420d"}, + {file = "pyarrow-15.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6669799a1d4ca9da9c7e06ef48368320f5856f36f9a4dd31a11839dda3f6cc8c"}, + {file = "pyarrow-15.0.2.tar.gz", hash = "sha256:9c9bc803cb3b7bfacc1e96ffbfd923601065d9d3f911179d81e72d99fd74a3d9"}, ] [package.dependencies] @@ -2365,13 +2371,13 @@ files = [ [[package]] name = "pyparsing" -version = "3.1.1" +version = "3.1.2" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false python-versions = ">=3.6.8" files = [ - {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, - {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, + {file = "pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742"}, + {file = "pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad"}, ] [package.extras] @@ -2379,23 +2385,23 @@ diagrams = ["jinja2", "railroad-diagrams"] [[package]] name = "pytest" -version = "8.0.1" +version = "8.1.1" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.0.1-py3-none-any.whl", hash = "sha256:3e4f16fe1c0a9dc9d9389161c127c3edc5d810c38d6793042fb81d9f48a59fca"}, - {file = "pytest-8.0.1.tar.gz", hash = "sha256:267f6563751877d772019b13aacbe4e860d73fe8f651f28112e9ac37de7513ae"}, + {file = "pytest-8.1.1-py3-none-any.whl", hash = "sha256:2a8386cfc11fa9d2c50ee7b2a57e7d898ef90470a7a34c4b949ff59662bb78b7"}, + {file = "pytest-8.1.1.tar.gz", hash = "sha256:ac978141a75948948817d360297b7aae0fcb9d6ff6bc9ec6d514b85d5a65c044"}, ] [package.dependencies] colorama = {version = "*", markers = "sys_platform == \"win32\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.3.0,<2.0" +pluggy = ">=1.4,<2.0" [package.extras] -testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +testing = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-cov" @@ -2436,13 +2442,13 @@ dev = ["black", "flake8", "pre-commit"] [[package]] name = "python-dateutil" -version = "2.8.2" +version = "2.9.0.post0" description = "Extensions to the standard Python datetime module" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, ] [package.dependencies] @@ -2571,13 +2577,13 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "rich" -version = "13.7.0" +version = "13.7.1" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.7.0" files = [ - {file = "rich-13.7.0-py3-none-any.whl", hash = "sha256:6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235"}, - {file = "rich-13.7.0.tar.gz", hash = "sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa"}, + {file = "rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222"}, + {file = "rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432"}, ] [package.dependencies] @@ -2589,28 +2595,28 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] name = "ruff" -version = "0.2.1" +version = "0.3.5" description = "An extremely fast Python linter and code formatter, written in Rust." optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.2.1-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:dd81b911d28925e7e8b323e8d06951554655021df8dd4ac3045d7212ac4ba080"}, - {file = "ruff-0.2.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:dc586724a95b7d980aa17f671e173df00f0a2eef23f8babbeee663229a938fec"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c92db7101ef5bfc18e96777ed7bc7c822d545fa5977e90a585accac43d22f18a"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:13471684694d41ae0f1e8e3a7497e14cd57ccb7dd72ae08d56a159d6c9c3e30e"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a11567e20ea39d1f51aebd778685582d4c56ccb082c1161ffc10f79bebe6df35"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:00a818e2db63659570403e44383ab03c529c2b9678ba4ba6c105af7854008105"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be60592f9d218b52f03384d1325efa9d3b41e4c4d55ea022cd548547cc42cd2b"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbd2288890b88e8aab4499e55148805b58ec711053588cc2f0196a44f6e3d855"}, - {file = "ruff-0.2.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ef052283da7dec1987bba8d8733051c2325654641dfe5877a4022108098683"}, - {file = "ruff-0.2.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7022d66366d6fded4ba3889f73cd791c2d5621b2ccf34befc752cb0df70f5fad"}, - {file = "ruff-0.2.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:0a725823cb2a3f08ee743a534cb6935727d9e47409e4ad72c10a3faf042ad5ba"}, - {file = "ruff-0.2.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:0034d5b6323e6e8fe91b2a1e55b02d92d0b582d2953a2b37a67a2d7dedbb7acc"}, - {file = "ruff-0.2.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e5cb5526d69bb9143c2e4d2a115d08ffca3d8e0fddc84925a7b54931c96f5c02"}, - {file = "ruff-0.2.1-py3-none-win32.whl", hash = "sha256:6b95ac9ce49b4fb390634d46d6ece32ace3acdd52814671ccaf20b7f60adb232"}, - {file = "ruff-0.2.1-py3-none-win_amd64.whl", hash = "sha256:e3affdcbc2afb6f5bd0eb3130139ceedc5e3f28d206fe49f63073cb9e65988e0"}, - {file = "ruff-0.2.1-py3-none-win_arm64.whl", hash = "sha256:efababa8e12330aa94a53e90a81eb6e2d55f348bc2e71adbf17d9cad23c03ee6"}, - {file = "ruff-0.2.1.tar.gz", hash = "sha256:3b42b5d8677cd0c72b99fcaf068ffc62abb5a19e71b4a3b9cfa50658a0af02f1"}, + {file = "ruff-0.3.5-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:aef5bd3b89e657007e1be6b16553c8813b221ff6d92c7526b7e0227450981eac"}, + {file = "ruff-0.3.5-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:89b1e92b3bd9fca249153a97d23f29bed3992cff414b222fcd361d763fc53f12"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e55771559c89272c3ebab23326dc23e7f813e492052391fe7950c1a5a139d89"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dabc62195bf54b8a7876add6e789caae0268f34582333cda340497c886111c39"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a05f3793ba25f194f395578579c546ca5d83e0195f992edc32e5907d142bfa3"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:dfd3504e881082959b4160ab02f7a205f0fadc0a9619cc481982b6837b2fd4c0"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87258e0d4b04046cf1d6cc1c56fadbf7a880cc3de1f7294938e923234cf9e498"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:712e71283fc7d9f95047ed5f793bc019b0b0a29849b14664a60fd66c23b96da1"}, + {file = "ruff-0.3.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a532a90b4a18d3f722c124c513ffb5e5eaff0cc4f6d3aa4bda38e691b8600c9f"}, + {file = "ruff-0.3.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:122de171a147c76ada00f76df533b54676f6e321e61bd8656ae54be326c10296"}, + {file = "ruff-0.3.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d80a6b18a6c3b6ed25b71b05eba183f37d9bc8b16ace9e3d700997f00b74660b"}, + {file = "ruff-0.3.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a7b6e63194c68bca8e71f81de30cfa6f58ff70393cf45aab4c20f158227d5936"}, + {file = "ruff-0.3.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a759d33a20c72f2dfa54dae6e85e1225b8e302e8ac655773aff22e542a300985"}, + {file = "ruff-0.3.5-py3-none-win32.whl", hash = "sha256:9d8605aa990045517c911726d21293ef4baa64f87265896e491a05461cae078d"}, + {file = "ruff-0.3.5-py3-none-win_amd64.whl", hash = "sha256:dc56bb16a63c1303bd47563c60482a1512721053d93231cf7e9e1c6954395a0e"}, + {file = "ruff-0.3.5-py3-none-win_arm64.whl", hash = "sha256:faeeae9905446b975dcf6d4499dc93439b131f1443ee264055c5716dd947af55"}, + {file = "ruff-0.3.5.tar.gz", hash = "sha256:a067daaeb1dc2baf9b82a32dae67d154d95212080c80435eb052d95da647763d"}, ] [[package]] @@ -2663,45 +2669,45 @@ test = ["asv", "matplotlib (>=3.5)", "numpydoc (>=1.5)", "pooch (>=1.6.0)", "pyt [[package]] name = "scipy" -version = "1.12.0" +version = "1.13.0" description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.9" files = [ - {file = "scipy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:78e4402e140879387187f7f25d91cc592b3501a2e51dfb320f48dfb73565f10b"}, - {file = "scipy-1.12.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5f00ebaf8de24d14b8449981a2842d404152774c1a1d880c901bf454cb8e2a1"}, - {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e53958531a7c695ff66c2e7bb7b79560ffdc562e2051644c5576c39ff8efb563"}, - {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e32847e08da8d895ce09d108a494d9eb78974cf6de23063f93306a3e419960c"}, - {file = "scipy-1.12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4c1020cad92772bf44b8e4cdabc1df5d87376cb219742549ef69fc9fd86282dd"}, - {file = "scipy-1.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:75ea2a144096b5e39402e2ff53a36fecfd3b960d786b7efd3c180e29c39e53f2"}, - {file = "scipy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:408c68423f9de16cb9e602528be4ce0d6312b05001f3de61fe9ec8b1263cad08"}, - {file = "scipy-1.12.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5adfad5dbf0163397beb4aca679187d24aec085343755fcdbdeb32b3679f254c"}, - {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3003652496f6e7c387b1cf63f4bb720951cfa18907e998ea551e6de51a04467"}, - {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b8066bce124ee5531d12a74b617d9ac0ea59245246410e19bca549656d9a40a"}, - {file = "scipy-1.12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8bee4993817e204d761dba10dbab0774ba5a8612e57e81319ea04d84945375ba"}, - {file = "scipy-1.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:a24024d45ce9a675c1fb8494e8e5244efea1c7a09c60beb1eeb80373d0fecc70"}, - {file = "scipy-1.12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e7e76cc48638228212c747ada851ef355c2bb5e7f939e10952bc504c11f4e372"}, - {file = "scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f7ce148dffcd64ade37b2df9315541f9adad6efcaa86866ee7dd5db0c8f041c3"}, - {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c39f92041f490422924dfdb782527a4abddf4707616e07b021de33467f917bc"}, - {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7ebda398f86e56178c2fa94cad15bf457a218a54a35c2a7b4490b9f9cb2676c"}, - {file = "scipy-1.12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:95e5c750d55cf518c398a8240571b0e0782c2d5a703250872f36eaf737751338"}, - {file = "scipy-1.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:e646d8571804a304e1da01040d21577685ce8e2db08ac58e543eaca063453e1c"}, - {file = "scipy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:913d6e7956c3a671de3b05ccb66b11bc293f56bfdef040583a7221d9e22a2e35"}, - {file = "scipy-1.12.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:bba1b0c7256ad75401c73e4b3cf09d1f176e9bd4248f0d3112170fb2ec4db067"}, - {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:730badef9b827b368f351eacae2e82da414e13cf8bd5051b4bdfd720271a5371"}, - {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6546dc2c11a9df6926afcbdd8a3edec28566e4e785b915e849348c6dd9f3f490"}, - {file = "scipy-1.12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:196ebad3a4882081f62a5bf4aeb7326aa34b110e533aab23e4374fcccb0890dc"}, - {file = "scipy-1.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:b360f1b6b2f742781299514e99ff560d1fe9bd1bff2712894b52abe528d1fd1e"}, - {file = "scipy-1.12.0.tar.gz", hash = "sha256:4bf5abab8a36d20193c698b0f1fc282c1d083c94723902c447e5d2f1780936a3"}, + {file = "scipy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba419578ab343a4e0a77c0ef82f088238a93eef141b2b8017e46149776dfad4d"}, + {file = "scipy-1.13.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:22789b56a999265431c417d462e5b7f2b487e831ca7bef5edeb56efe4c93f86e"}, + {file = "scipy-1.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f1432ba070e90d42d7fd836462c50bf98bd08bed0aa616c359eed8a04e3922"}, + {file = "scipy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8434f6f3fa49f631fae84afee424e2483289dfc30a47755b4b4e6b07b2633a4"}, + {file = "scipy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:dcbb9ea49b0167de4167c40eeee6e167caeef11effb0670b554d10b1e693a8b9"}, + {file = "scipy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:1d2f7bb14c178f8b13ebae93f67e42b0a6b0fc50eba1cd8021c9b6e08e8fb1cd"}, + {file = "scipy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fbcf8abaf5aa2dc8d6400566c1a727aed338b5fe880cde64907596a89d576fa"}, + {file = "scipy-1.13.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5e4a756355522eb60fcd61f8372ac2549073c8788f6114449b37e9e8104f15a5"}, + {file = "scipy-1.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5acd8e1dbd8dbe38d0004b1497019b2dbbc3d70691e65d69615f8a7292865d7"}, + {file = "scipy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ff7dad5d24a8045d836671e082a490848e8639cabb3dbdacb29f943a678683d"}, + {file = "scipy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4dca18c3ffee287ddd3bc8f1dabaf45f5305c5afc9f8ab9cbfab855e70b2df5c"}, + {file = "scipy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:a2f471de4d01200718b2b8927f7d76b5d9bde18047ea0fa8bd15c5ba3f26a1d6"}, + {file = "scipy-1.13.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d0de696f589681c2802f9090fff730c218f7c51ff49bf252b6a97ec4a5d19e8b"}, + {file = "scipy-1.13.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:b2a3ff461ec4756b7e8e42e1c681077349a038f0686132d623fa404c0bee2551"}, + {file = "scipy-1.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bf9fe63e7a4bf01d3645b13ff2aa6dea023d38993f42aaac81a18b1bda7a82a"}, + {file = "scipy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e7626dfd91cdea5714f343ce1176b6c4745155d234f1033584154f60ef1ff42"}, + {file = "scipy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:109d391d720fcebf2fbe008621952b08e52907cf4c8c7efc7376822151820820"}, + {file = "scipy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:8930ae3ea371d6b91c203b1032b9600d69c568e537b7988a3073dfe4d4774f21"}, + {file = "scipy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5407708195cb38d70fd2d6bb04b1b9dd5c92297d86e9f9daae1576bd9e06f602"}, + {file = "scipy-1.13.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:ac38c4c92951ac0f729c4c48c9e13eb3675d9986cc0c83943784d7390d540c78"}, + {file = "scipy-1.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09c74543c4fbeb67af6ce457f6a6a28e5d3739a87f62412e4a16e46f164f0ae5"}, + {file = "scipy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28e286bf9ac422d6beb559bc61312c348ca9b0f0dae0d7c5afde7f722d6ea13d"}, + {file = "scipy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:33fde20efc380bd23a78a4d26d59fc8704e9b5fd9b08841693eb46716ba13d86"}, + {file = "scipy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:45c08bec71d3546d606989ba6e7daa6f0992918171e2a6f7fbedfa7361c2de1e"}, + {file = "scipy-1.13.0.tar.gz", hash = "sha256:58569af537ea29d3f78e5abd18398459f195546bb3be23d16677fb26616cc11e"}, ] [package.dependencies] -numpy = ">=1.22.4,<1.29.0" +numpy = ">=1.22.4,<2.3" [package.extras] -dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] -doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] -test = ["asv", "gmpy2", "hypothesis", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] +dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.12.0)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0)", "sphinx-design (>=0.4.0)"] +test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] [[package]] name = "sdss-coordio" @@ -2872,7 +2878,7 @@ docs = ["Sphinx (>=7.0.0)", "releases (>=2.0.0)", "sphinx_bootstrap_theme (>=0.4 type = "git" url = "https://github.com/sdss/sdssdb.git" reference = "albireox/too_target" -resolved_reference = "cf51611013928a616d47bae71c30c9532618b55e" +resolved_reference = "a2a18f77ae91f5e3595ccd9a8ec7e2550cf02872" [[package]] name = "sdsstools" @@ -2931,71 +2937,71 @@ files = [ [[package]] name = "sniffio" -version = "1.3.0" +version = "1.3.1" description = "Sniff out which async library your code is running under" optional = false python-versions = ">=3.7" files = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, ] [[package]] name = "sqlalchemy" -version = "2.0.27" +version = "2.0.29" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.27-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d04e579e911562f1055d26dab1868d3e0bb905db3bccf664ee8ad109f035618a"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fa67d821c1fd268a5a87922ef4940442513b4e6c377553506b9db3b83beebbd8"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c7a596d0be71b7baa037f4ac10d5e057d276f65a9a611c46970f012752ebf2d"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:954d9735ee9c3fa74874c830d089a815b7b48df6f6b6e357a74130e478dbd951"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5cd20f58c29bbf2680039ff9f569fa6d21453fbd2fa84dbdb4092f006424c2e6"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:03f448ffb731b48323bda68bcc93152f751436ad6037f18a42b7e16af9e91c07"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-win32.whl", hash = "sha256:d997c5938a08b5e172c30583ba6b8aad657ed9901fc24caf3a7152eeccb2f1b4"}, - {file = "SQLAlchemy-2.0.27-cp310-cp310-win_amd64.whl", hash = "sha256:eb15ef40b833f5b2f19eeae65d65e191f039e71790dd565c2af2a3783f72262f"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6c5bad7c60a392850d2f0fee8f355953abaec878c483dd7c3836e0089f046bf6"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3012ab65ea42de1be81fff5fb28d6db893ef978950afc8130ba707179b4284a"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbcd77c4d94b23e0753c5ed8deba8c69f331d4fd83f68bfc9db58bc8983f49cd"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d177b7e82f6dd5e1aebd24d9c3297c70ce09cd1d5d37b43e53f39514379c029c"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:680b9a36029b30cf063698755d277885d4a0eab70a2c7c6e71aab601323cba45"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1306102f6d9e625cebaca3d4c9c8f10588735ef877f0360b5cdb4fdfd3fd7131"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-win32.whl", hash = "sha256:5b78aa9f4f68212248aaf8943d84c0ff0f74efc65a661c2fc68b82d498311fd5"}, - {file = "SQLAlchemy-2.0.27-cp311-cp311-win_amd64.whl", hash = "sha256:15e19a84b84528f52a68143439d0c7a3a69befcd4f50b8ef9b7b69d2628ae7c4"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:0de1263aac858f288a80b2071990f02082c51d88335a1db0d589237a3435fe71"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce850db091bf7d2a1f2fdb615220b968aeff3849007b1204bf6e3e50a57b3d32"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dfc936870507da96aebb43e664ae3a71a7b96278382bcfe84d277b88e379b18"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4fbe6a766301f2e8a4519f4500fe74ef0a8509a59e07a4085458f26228cd7cc"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4535c49d961fe9a77392e3a630a626af5baa967172d42732b7a43496c8b28876"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0fb3bffc0ced37e5aa4ac2416f56d6d858f46d4da70c09bb731a246e70bff4d5"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-win32.whl", hash = "sha256:7f470327d06400a0aa7926b375b8e8c3c31d335e0884f509fe272b3c700a7254"}, - {file = "SQLAlchemy-2.0.27-cp312-cp312-win_amd64.whl", hash = "sha256:f9374e270e2553653d710ece397df67db9d19c60d2647bcd35bfc616f1622dcd"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e97cf143d74a7a5a0f143aa34039b4fecf11343eed66538610debc438685db4a"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7b5a3e2120982b8b6bd1d5d99e3025339f7fb8b8267551c679afb39e9c7c7f1"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e36aa62b765cf9f43a003233a8c2d7ffdeb55bc62eaa0a0380475b228663a38f"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:5ada0438f5b74c3952d916c199367c29ee4d6858edff18eab783b3978d0db16d"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:b1d9d1bfd96eef3c3faedb73f486c89e44e64e40e5bfec304ee163de01cf996f"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-win32.whl", hash = "sha256:ca891af9f3289d24a490a5fde664ea04fe2f4984cd97e26de7442a4251bd4b7c"}, - {file = "SQLAlchemy-2.0.27-cp37-cp37m-win_amd64.whl", hash = "sha256:fd8aafda7cdff03b905d4426b714601c0978725a19efc39f5f207b86d188ba01"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ec1f5a328464daf7a1e4e385e4f5652dd9b1d12405075ccba1df842f7774b4fc"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ad862295ad3f644e3c2c0d8b10a988e1600d3123ecb48702d2c0f26771f1c396"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48217be1de7d29a5600b5c513f3f7664b21d32e596d69582be0a94e36b8309cb"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e56afce6431450442f3ab5973156289bd5ec33dd618941283847c9fd5ff06bf"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:611068511b5531304137bcd7fe8117c985d1b828eb86043bd944cebb7fae3910"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b86abba762ecfeea359112b2bb4490802b340850bbee1948f785141a5e020de8"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-win32.whl", hash = "sha256:30d81cc1192dc693d49d5671cd40cdec596b885b0ce3b72f323888ab1c3863d5"}, - {file = "SQLAlchemy-2.0.27-cp38-cp38-win_amd64.whl", hash = "sha256:120af1e49d614d2525ac247f6123841589b029c318b9afbfc9e2b70e22e1827d"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d07ee7793f2aeb9b80ec8ceb96bc8cc08a2aec8a1b152da1955d64e4825fcbac"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cb0845e934647232b6ff5150df37ceffd0b67b754b9fdbb095233deebcddbd4a"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fc19ae2e07a067663dd24fca55f8ed06a288384f0e6e3910420bf4b1270cc51"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b90053be91973a6fb6020a6e44382c97739736a5a9d74e08cc29b196639eb979"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2f5c9dfb0b9ab5e3a8a00249534bdd838d943ec4cfb9abe176a6c33408430230"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:33e8bde8fff203de50399b9039c4e14e42d4d227759155c21f8da4a47fc8053c"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-win32.whl", hash = "sha256:d873c21b356bfaf1589b89090a4011e6532582b3a8ea568a00e0c3aab09399dd"}, - {file = "SQLAlchemy-2.0.27-cp39-cp39-win_amd64.whl", hash = "sha256:ff2f1b7c963961d41403b650842dc2039175b906ab2093635d8319bef0b7d620"}, - {file = "SQLAlchemy-2.0.27-py3-none-any.whl", hash = "sha256:1ab4e0448018d01b142c916cc7119ca573803a4745cfe341b8f95657812700ac"}, - {file = "SQLAlchemy-2.0.27.tar.gz", hash = "sha256:86a6ed69a71fe6b88bf9331594fa390a2adda4a49b5c06f98e47bf0d392534f8"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4c142852ae192e9fe5aad5c350ea6befe9db14370b34047e1f0f7cf99e63c63b"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:99a1e69d4e26f71e750e9ad6fdc8614fbddb67cfe2173a3628a2566034e223c7"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ef3fbccb4058355053c51b82fd3501a6e13dd808c8d8cd2561e610c5456013c"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d6753305936eddc8ed190e006b7bb33a8f50b9854823485eed3a886857ab8d1"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0f3ca96af060a5250a8ad5a63699180bc780c2edf8abf96c58af175921df847a"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c4520047006b1d3f0d89e0532978c0688219857eb2fee7c48052560ae76aca1e"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-win32.whl", hash = "sha256:b2a0e3cf0caac2085ff172c3faacd1e00c376e6884b5bc4dd5b6b84623e29e4f"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-win_amd64.whl", hash = "sha256:01d10638a37460616708062a40c7b55f73e4d35eaa146781c683e0fa7f6c43fb"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:308ef9cb41d099099fffc9d35781638986870b29f744382904bf9c7dadd08513"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:296195df68326a48385e7a96e877bc19aa210e485fa381c5246bc0234c36c78e"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a13b917b4ffe5a0a31b83d051d60477819ddf18276852ea68037a144a506efb9"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f6d971255d9ddbd3189e2e79d743ff4845c07f0633adfd1de3f63d930dbe673"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:61405ea2d563407d316c63a7b5271ae5d274a2a9fbcd01b0aa5503635699fa1e"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:de7202ffe4d4a8c1e3cde1c03e01c1a3772c92858837e8f3879b497158e4cb44"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-win32.whl", hash = "sha256:b5d7ed79df55a731749ce65ec20d666d82b185fa4898430b17cb90c892741520"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl", hash = "sha256:205f5a2b39d7c380cbc3b5dcc8f2762fb5bcb716838e2d26ccbc54330775b003"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d96710d834a6fb31e21381c6d7b76ec729bd08c75a25a5184b1089141356171f"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:52de4736404e53c5c6a91ef2698c01e52333988ebdc218f14c833237a0804f1b"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c7b02525ede2a164c5fa5014915ba3591730f2cc831f5be9ff3b7fd3e30958e"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dfefdb3e54cd15f5d56fd5ae32f1da2d95d78319c1f6dfb9bcd0eb15d603d5d"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a88913000da9205b13f6f195f0813b6ffd8a0c0c2bd58d499e00a30eb508870c"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fecd5089c4be1bcc37c35e9aa678938d2888845a134dd016de457b942cf5a758"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-win32.whl", hash = "sha256:8197d6f7a3d2b468861ebb4c9f998b9df9e358d6e1cf9c2a01061cb9b6cf4e41"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-win_amd64.whl", hash = "sha256:9b19836ccca0d321e237560e475fd99c3d8655d03da80c845c4da20dda31b6e1"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:87a1d53a5382cdbbf4b7619f107cc862c1b0a4feb29000922db72e5a66a5ffc0"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a0732dffe32333211801b28339d2a0babc1971bc90a983e3035e7b0d6f06b93"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90453597a753322d6aa770c5935887ab1fc49cc4c4fdd436901308383d698b4b"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ea311d4ee9a8fa67f139c088ae9f905fcf0277d6cd75c310a21a88bf85e130f5"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:5f20cb0a63a3e0ec4e169aa8890e32b949c8145983afa13a708bc4b0a1f30e03"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-win32.whl", hash = "sha256:e5bbe55e8552019c6463709b39634a5fc55e080d0827e2a3a11e18eb73f5cdbd"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-win_amd64.whl", hash = "sha256:c2f9c762a2735600654c654bf48dad388b888f8ce387b095806480e6e4ff6907"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7e614d7a25a43a9f54fcce4675c12761b248547f3d41b195e8010ca7297c369c"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:471fcb39c6adf37f820350c28aac4a7df9d3940c6548b624a642852e727ea586"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:988569c8732f54ad3234cf9c561364221a9e943b78dc7a4aaf35ccc2265f1930"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dddaae9b81c88083e6437de95c41e86823d150f4ee94bf24e158a4526cbead01"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:334184d1ab8f4c87f9652b048af3f7abea1c809dfe526fb0435348a6fef3d380"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:38b624e5cf02a69b113c8047cf7f66b5dfe4a2ca07ff8b8716da4f1b3ae81567"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-win32.whl", hash = "sha256:bab41acf151cd68bc2b466deae5deeb9e8ae9c50ad113444151ad965d5bf685b"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-win_amd64.whl", hash = "sha256:52c8011088305476691b8750c60e03b87910a123cfd9ad48576d6414b6ec2a1d"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3071ad498896907a5ef756206b9dc750f8e57352113c19272bdfdc429c7bd7de"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dba622396a3170974f81bad49aacebd243455ec3cc70615aeaef9e9613b5bca5"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b184e3de58009cc0bf32e20f137f1ec75a32470f5fede06c58f6c355ed42a72"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c37f1050feb91f3d6c32f864d8e114ff5545a4a7afe56778d76a9aec62638ba"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bda7ce59b06d0f09afe22c56714c65c957b1068dee3d5e74d743edec7daba552"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:25664e18bef6dc45015b08f99c63952a53a0a61f61f2e48a9e70cec27e55f699"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-win32.whl", hash = "sha256:77d29cb6c34b14af8a484e831ab530c0f7188f8efed1c6a833a2c674bf3c26ec"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-win_amd64.whl", hash = "sha256:04c487305ab035a9548f573763915189fc0fe0824d9ba28433196f8436f1449c"}, + {file = "SQLAlchemy-2.0.29-py3-none-any.whl", hash = "sha256:dc4ee2d4ee43251905f88637d5281a8d52e916a021384ec10758826f5cbae305"}, + {file = "SQLAlchemy-2.0.29.tar.gz", hash = "sha256:bd9566b8e58cabd700bc367b60e90d9349cd16f0984973f98a9a09f9c64e86f0"}, ] [package.dependencies] @@ -3115,18 +3121,18 @@ all = ["defusedxml", "fsspec", "imagecodecs (>=2023.8.12)", "lxml", "matplotlib" [[package]] name = "traitlets" -version = "5.14.1" +version = "5.14.2" description = "Traitlets Python configuration system" optional = false python-versions = ">=3.8" files = [ - {file = "traitlets-5.14.1-py3-none-any.whl", hash = "sha256:2e5a030e6eff91737c643231bfcf04a65b0132078dad75e4936700b213652e74"}, - {file = "traitlets-5.14.1.tar.gz", hash = "sha256:8585105b371a04b8316a43d5ce29c098575c2e477850b62b848b964f1444527e"}, + {file = "traitlets-5.14.2-py3-none-any.whl", hash = "sha256:fcdf85684a772ddeba87db2f398ce00b40ff550d1528c03c14dbf6a02003cd80"}, + {file = "traitlets-5.14.2.tar.gz", hash = "sha256:8cdd83c040dab7d1dee822678e5f5d100b514f7b72b01615b26fc5718916fdf9"}, ] [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<7.5)", "pytest-mock", "pytest-mypy-testing"] +test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.1)", "pytest-mock", "pytest-mypy-testing"] [[package]] name = "types-pytz" @@ -3141,13 +3147,13 @@ files = [ [[package]] name = "typing-extensions" -version = "4.9.0" +version = "4.10.0" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, - {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, + {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, + {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, ] [[package]] @@ -3163,13 +3169,13 @@ files = [ [[package]] name = "urllib3" -version = "2.2.0" +version = "2.2.1" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.0-py3-none-any.whl", hash = "sha256:ce3711610ddce217e6d113a2732fafad960a03fd0318c91faa79481e35c11224"}, - {file = "urllib3-2.2.0.tar.gz", hash = "sha256:051d961ad0c62a94e50ecf1af379c3aba230c66c710493493560c0c223c49f20"}, + {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, + {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, ] [package.extras] From f4b5d83673eed449fb9e27778d400509b3b92db2 Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 14:41:23 -0500 Subject: [PATCH 13/16] add offseting and proper motion correction to bn_validation --- src/too/validate.py | 125 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 121 insertions(+), 4 deletions(-) diff --git a/src/too/validate.py b/src/too/validate.py index 8ad29d6..057f486 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -8,16 +8,113 @@ from astropy_healpix import HEALPix from astropy.coordinates import SkyCoord +from astropy.time import Time import astropy.units as u - +from coordio.utils import (object_offset, Moffat2dInterp, + _offset_radec) +from mugatu.designmode import allDesignModes import numpy as np import os import pickle import polars +from typing import Tuple # load enviornment variable with path to healpix maps BN_HEALPIX = os.getenv('BN_HEALPIX') +# add function for offseting +fmagloss = Moffat2dInterp() + +# grab all designmode values +modes = allDesignModes() + + +def calculate_offsets(targets: polars.DataFrame, + design_mode: str, + offset_min_skybrightness: float = 0., + observatory: str = 'APO') -> Tuple[np.ndarray, + np.ndarray, + np.ndarray]: + """ + Calculate the offsets for the targets + + Parameters + ---------- + targets: polars.DataFrame + DataFrame with the ToO target information + + design_mode: str + The design_mode to run the validation for + + offset_min_skybrightness: float + Minimum skybrightness targets will be offset + + observatory: str + Observatory where observation is taking place, either + 'LCO' or 'APO'. + + Return + ------ + delta_ra: np.array + offset in the R.A. direction + + delta_dec: np.array + offset in the Decl. direction + + offset_flag: np.array + flags associated with the offseting + """ + delta_ra = np.zeros(len(targets), dtype=float) + delta_dec = np.zeros(len(targets), dtype=float) + offset_flag = np.zeros(len(targets), dtype=int) + if 'bright' in design_mode: + boss_mag_lim = modes[design_mode].bright_limit_targets['BOSS'][:, 0] + lunation = 'bright' + skybrightness = 1.0 + else: + boss_mag_lim = modes[design_mode].bright_limit_targets['BOSS'][:, 0] + lunation = 'dark' + skybrightness = 0.35 + apogee_mag_lim = modes[design_mode].bright_limit_targets['APOGEE'][:, 0] + + magnitudes = targets[['g_mag','r_mag', 'i_mag', + 'z_mag', 'gaia_bp_mag', + 'gaia_g_mag', 'gaia_rp_mag']].to_numpy() + # add in the missing 2MASS mags as nan + magnitudes = np.column_stack((magnitudes, + np.zeros(len(targets)) + np.nan, + targets['h_mag'], + np.zeros(len(targets)) + np.nan)) + + ev_boss = targets['fiber_type'] == 'BOSS' + res = object_offset(magnitudes[ev_boss, :], + boss_mag_lim, + lunation, + 'Boss', + observatory, + fmagloss=fmagloss, + can_offset=targets['can_offset'].to_numpy()[ev_boss], + skybrightness=skybrightness, + offset_min_skybrightness=offset_min_skybrightness) + delta_ra[ev_boss] = res[0] + delta_dec[ev_boss] = res[1] + offset_flag[ev_boss] = res[2] + + ev_apogee = targets['fiber_type'] == 'APOGEE' + res = object_offset(magnitudes[ev_apogee, :], + apogee_mag_lim, + lunation, + 'Apogee', + observatory, + fmagloss=fmagloss, + can_offset=targets['can_offset'].to_numpy()[ev_apogee], + skybrightness=skybrightness, + offset_min_skybrightness=offset_min_skybrightness) + delta_ra[ev_apogee] = res[0] + delta_dec[ev_apogee] = res[1] + offset_flag[ev_apogee] = res[2] + return delta_ra, delta_dec, offset_flag + def bn_validation(targets: polars.DataFrame, design_mode: str) -> np.ndarray: @@ -63,10 +160,30 @@ def bn_validation(targets: polars.DataFrame, # create the correct nside healpix object hp = HEALPix(nside=2 ** 18, order='ring', frame='icrs') + # calculate the offsets + delta_ra, delta_dec, offset_flag = calculate_offsets(targets, + design_mode) + # get the new ra and dec + # still need proper motion correction? + ra_off, dec_off = _offset_radec(ra=targets['ra'].to_numpy(), + dec=targets['dec'].to_numpy(), + delta_ra=delta_ra, + delta_dec=delta_dec) + # get proper motions + pmra = targets['pmra'].to_numpy() + pmdec = targets['pmdec'].to_numpy() + epoch = targets['epoch'].to_numpy() + # deal with nulls + ev_pm_null = np.isnan(pmra) + pmra[ev_pm_null] = 0. + pmdec[ev_pm_null] = 0. + epoch[ev_pm_null] = 2016. # get the indicies for all targets - # do I need to account for offsets and proper motions here? - coord = SkyCoord(ra=targets['ra'].to_numpy() * u.deg, - dec=targets['dec'].to_numpy() * u.deg) + coord = SkyCoord(ra=ra_off * u.deg, + dec=dec_off * u.deg, + pm_ra_cosdec=pmra * u.mas/u.yr, + pm_dec=pmdec * u.mas/u.yr, + obstime=Time(epoch, format='decimalyear')).apply_space_motion(Time.now()) hp_inds = hp.skycoord_to_healpix(coord) # check if ToOs in bright neighbor healpixels From aa6f61ebea7e382952f64d4a2aec4bb5397367b7 Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 4 Apr 2024 14:49:52 -0500 Subject: [PATCH 14/16] add observatory to input for validation --- src/too/validate.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/too/validate.py b/src/too/validate.py index 057f486..fb9ff1a 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -117,7 +117,8 @@ def calculate_offsets(targets: polars.DataFrame, def bn_validation(targets: polars.DataFrame, - design_mode: str) -> np.ndarray: + design_mode: str, + observatory: str = 'APO') -> np.ndarray: """ Validate a ToO to see if it is too close to a bright neighbor. This functionm relies on the @@ -134,7 +135,10 @@ def bn_validation(targets: polars.DataFrame, design_mode: str The design_mode to run the validation for - + + observatory: str + Observatory where observation is taking place, either + 'LCO' or 'APO'. Return ------ @@ -162,7 +166,8 @@ def bn_validation(targets: polars.DataFrame, # calculate the offsets delta_ra, delta_dec, offset_flag = calculate_offsets(targets, - design_mode) + design_mode, + observatory=observatory) # get the new ra and dec # still need proper motion correction? ra_off, dec_off = _offset_radec(ra=targets['ra'].to_numpy(), From 5443ab0fadafc9a2493e71c23d75427a60dd106b Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 11 Apr 2024 09:22:53 -0500 Subject: [PATCH 15/16] add magnitude check --- src/too/validate.py | 151 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 142 insertions(+), 9 deletions(-) diff --git a/src/too/validate.py b/src/too/validate.py index fb9ff1a..7e0926d 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -12,7 +12,7 @@ import astropy.units as u from coordio.utils import (object_offset, Moffat2dInterp, _offset_radec) -from mugatu.designmode import allDesignModes +from mugatu.designmode import allDesignModes, check_assign_mag_limit import numpy as np import os import pickle @@ -29,6 +29,34 @@ modes = allDesignModes() +def magnitude_array(targets: polars.DataFrame) -> np.ndarray: + """ + create the magnitude array for the targets + + Parameters + ---------- + targets: polars.DataFrame + DataFrame with the ToO target information + + Returns + ------- + magnitudes: np.array + Magnitude array for the targets. Array is of size (N, 10), + where columns correspond to + g, r, i, z, bp, gaia_g, rp, J, H, K band + magnitudes. + """ + magnitudes = targets[['g_mag','r_mag', 'i_mag', + 'z_mag', 'gaia_bp_mag', + 'gaia_g_mag', 'gaia_rp_mag']].to_numpy() + # add in the missing 2MASS mags as nan + magnitudes = np.column_stack((magnitudes, + np.zeros(len(targets)) + np.nan, + targets['h_mag'], + np.zeros(len(targets)) + np.nan)) + return magnitudes + + def calculate_offsets(targets: polars.DataFrame, design_mode: str, offset_min_skybrightness: float = 0., @@ -77,14 +105,7 @@ def calculate_offsets(targets: polars.DataFrame, skybrightness = 0.35 apogee_mag_lim = modes[design_mode].bright_limit_targets['APOGEE'][:, 0] - magnitudes = targets[['g_mag','r_mag', 'i_mag', - 'z_mag', 'gaia_bp_mag', - 'gaia_g_mag', 'gaia_rp_mag']].to_numpy() - # add in the missing 2MASS mags as nan - magnitudes = np.column_stack((magnitudes, - np.zeros(len(targets)) + np.nan, - targets['h_mag'], - np.zeros(len(targets)) + np.nan)) + magnitudes = magnitude_array(targets) ev_boss = targets['fiber_type'] == 'BOSS' res = object_offset(magnitudes[ev_boss, :], @@ -203,3 +224,115 @@ def bn_validation(targets: polars.DataFrame, # oppisite as True == valid target valid_too[ev_apogee] = ~np.isin(hp_inds[ev_apogee], bn_maps_apogee) return valid_too + + +def mag_limit_check(magnitudes: np.ndarray, + can_offset: np.ndarray, + offset_flag: np.ndarray, + mag_metric: np.ndarray) -> np.ndarray: + """ + perform a specific magnitude check + + Parameters + ---------- + magnitudes: np.array + Magnitude array for the targets. Array is of size (N, 10), + where columns correspond to + g, r, i, z, bp, gaia_g, rp, J, H, K band + magnitudes. + + can_offset: np.array + If target can be offset or not + + offset_flag: np.array + offset_flags from offset function + + mag_metric: np.array + the magnitude limits for the specific designmode + and isntrument + + Return + ------ + valid_too_mag_lim: np.array + magnitude limit validation for specified design_mode. + True means passes check. + """ + valid_too_mag_lim = np.zeros(len(magnitudes), + dtype=bool) + check_inds = [] + for i in range(mag_metric.shape[0]): + if mag_metric[i][0] != -999. or mag_metric[i][1] != -999.: + check_inds.append(i) + + # run checks + for i in range(len(valid_too_mag_lim)): + # don't do check and make true if offset target + if can_offset[i] and offset_flag[i] == 0: + valid_too_mag_lim[i] = True + else: + # check in each band that has check defined + targ_check = np.zeros(len(check_inds), dtype=bool) + for j, ind in enumerate(check_inds): + # check the magntiude for this assignment + targ_check[j], _ = check_assign_mag_limit( + mag_metric[ind][0], + mag_metric[ind][1], + magnitudes[i][ind]) + # if all True, then passes + if np.all(targ_check): + valid_too_mag_lim[i] = True + return valid_too_mag_lim + + +def mag_lim_validation(targets: polars.DataFrame, + design_mode: str, + observatory: str = 'APO') -> np.ndarray: + """ + Perform a magnitude limit check on the ToOs + + Parameters + ---------- + targets: polars.DataFrame + DataFrame with the ToO target information + + design_mode: str + The design_mode to run the validation for + + observatory: str + Observatory where observation is taking place, either + 'LCO' or 'APO'. + + Return + ------ + valid_too_mag_lim: np.array + magnitude limit validation for specified design_mode. + True means passes check. + """ + valid_too_mag_lim = np.zeros(len(targets), + dtype=bool) + + # get the magnitude array + magnitudes = magnitude_array(targets) + + # get offset flags + # calculate the offsets + _, _, offset_flag = calculate_offsets(targets, + design_mode, + observatory=observatory) + + # do check for BOSS + ev_boss = targets['fiber_type'] == 'BOSS' + valid_too_mag_lim[ev_boss] = mag_limit_check( + magnitudes[ev_boss, :], + targets['can_offset'].to_numpy()[ev_boss], + offset_flag[ev_boss], + modes[design_mode].bright_limit_targets['BOSS']) + + # do check for APOGEE + ev_apogee = targets['fiber_type'] == 'APOGEE' + valid_too_mag_lim[ev_boss] = mag_limit_check( + magnitudes[ev_apogee, :], + targets['can_offset'].to_numpy()[ev_apogee], + offset_flag[ev_apogee], + modes[design_mode].bright_limit_targets['APOGEE']) + return valid_too_mag_lim From 764d437c920fb9243d5df2aca173daf29110d51a Mon Sep 17 00:00:00 2001 From: imedan Date: Thu, 11 Apr 2024 09:23:41 -0500 Subject: [PATCH 16/16] rename return for bn check --- src/too/validate.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/too/validate.py b/src/too/validate.py index 7e0926d..5514007 100644 --- a/src/too/validate.py +++ b/src/too/validate.py @@ -163,7 +163,7 @@ def bn_validation(targets: polars.DataFrame, Return ------ - valid_too: np.array + valid_too_bn: np.array bright neighbor validation for specified design_mode. True means passes check. """ @@ -213,17 +213,17 @@ def bn_validation(targets: polars.DataFrame, hp_inds = hp.skycoord_to_healpix(coord) # check if ToOs in bright neighbor healpixels - valid_too = np.zeros(len(targets), dtype=bool) + True + valid_too_bn = np.zeros(len(targets), dtype=bool) + True ev_boss = targets['fiber_type'] == 'BOSS' # oppisite as True == valid target - valid_too[ev_boss] = ~np.isin(hp_inds[ev_boss], bn_maps_boss) + valid_too_bn[ev_boss] = ~np.isin(hp_inds[ev_boss], bn_maps_boss) # in future, is there faster way to do this? would using sets be better? ev_apogee = targets['fiber_type'] == 'APOGEE' # oppisite as True == valid target - valid_too[ev_apogee] = ~np.isin(hp_inds[ev_apogee], bn_maps_apogee) - return valid_too + valid_too_bn[ev_apogee] = ~np.isin(hp_inds[ev_apogee], bn_maps_apogee) + return valid_too_bn def mag_limit_check(magnitudes: np.ndarray,