From 6d983cc0244bfae51880785ebd965e094b77a351 Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Fri, 15 Jun 2018 11:58:44 -0400 Subject: [PATCH 1/8] initial commit of tastis, converted from Pyraf C code version --- lib/stistools/tastis.py | 890 ++++++++++++++++++ lib/stistools/tests/__init__.py | 0 .../tests/data/tastis/o4er06llq_raw.fits | 1 + .../tests/data/tastis/o4er06llq_spt.fits | 10 + .../tests/data/tastis/oc7w11viq_raw.fits | 1 + .../tests/data/tastis/oc7w11viq_spt.fits | 5 + .../tests/data/tastis/ocmv0lw6q_raw.fits | 2 + .../tests/data/tastis/ocmv0lw6q_spt.fits | 13 + .../tests/data/tastis/ocoa03q2q_raw.fits | 4 + .../tests/data/tastis/ocoa03q2q_spt.fits | 21 + .../tests/data/tastis/octka7jeq_raw.fits | 2 + .../tests/data/tastis/octka7jeq_spt.fits | 5 + .../tests/data/tastis/octr11h4q_raw.fits | 4 + .../tests/data/tastis/octr11h4q_spt.fits | 28 + .../tests/data/tastis/octr11hrq_raw.fits | 8 + .../tests/data/tastis/octr11hrq_spt.fits | 7 + .../tests/data/tastis/ocu252cmq_raw.fits | 1 + .../tests/data/tastis/ocu252cmq_spt.fits | 21 + .../tests/data/tastis/ocui04xeq_raw.fits | 1 + .../tests/data/tastis/ocui04xeq_spt.fits | 8 + .../tests/data/tastis/ocyw05afq_raw.fits | 3 + .../tests/data/tastis/ocyw05afq_spt.fits | 7 + .../tests/data/tastis/od3v01bfq_raw.fits | 1 + .../tests/data/tastis/od3v01bfq_spt.fits | 7 + lib/stistools/tests/test_tastis.py | 467 +++++++++ stistools/__init__.py | 1 + 26 files changed, 1518 insertions(+) create mode 100755 lib/stistools/tastis.py create mode 100644 lib/stistools/tests/__init__.py create mode 100644 lib/stistools/tests/data/tastis/o4er06llq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/o4er06llq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/oc7w11viq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/oc7w11viq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits create mode 100644 lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits create mode 100644 lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits create mode 100644 lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits create mode 100644 lib/stistools/tests/data/tastis/octka7jeq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/octka7jeq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/octr11h4q_raw.fits create mode 100644 lib/stistools/tests/data/tastis/octr11h4q_spt.fits create mode 100644 lib/stistools/tests/data/tastis/octr11hrq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/octr11hrq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/ocu252cmq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/ocu252cmq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/ocui04xeq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/ocui04xeq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/ocyw05afq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/ocyw05afq_spt.fits create mode 100644 lib/stistools/tests/data/tastis/od3v01bfq_raw.fits create mode 100644 lib/stistools/tests/data/tastis/od3v01bfq_spt.fits create mode 100644 lib/stistools/tests/test_tastis.py mode change 100644 => 100755 stistools/__init__.py diff --git a/lib/stistools/tastis.py b/lib/stistools/tastis.py new file mode 100755 index 00000000..3421bb86 --- /dev/null +++ b/lib/stistools/tastis.py @@ -0,0 +1,890 @@ +#! /usr/bin/env python + +from math import modf, sqrt +import os +import sys +import argparse + +from astropy.io import fits +import numpy as np + +""" +Analyze STIS target acquisition images. :func:`tastis` will print general +information about each input target acquisition image, and will analyze both +types of STIS target acquisitions: ACQs and ACQ/PEAKs + +ACQ procedure is described in "STIS Onboard CCD Target Acquisitions" in the +STIS Instrument Handbook. The ACQ/PEAK procedure is described in "Onboard +Target-Acquisition Peakups (ACQ/PEAK)" also in the STIS Instrument Handbook. + +Target positions in global and local (subarray) coordinates and the total flux +of the target in the maximum checkbox during both acquistions phases (course +and fine) are displayed. + +If update=True, keywords are added to the header to make problems easier to +locate in batch processing. Warnings are given if the spt file is not present +when :func:`tastis` is run. + +Examples +-------- + +:func:`tastis` with the default of update=False: + +>>> import stistools +>>> stistools.tastis.tastis("ocmv0lw6q_raw.fits") + +:func:`tastis` with update=True: + +>>> import stistools +>>> stistools.tastis.tastis("ocmv0lw6q_raw.fits", update=True) +""" + +__taskname__ = "tastis" +__version__ = "1.0" +__vdate__ = "14-June-2018" +__author__ = "Python: Sara Ogaz. C code: R. Katsanis, R. Downes, " \ + "Phil Hodge. Original IDL code: George Hartig" + +# These are possible values for the bit mask badacq. +BAD_ACQ = 1 # any problem +BAD_SLEW = 2 # ACQ only +BAD_LAMP_LOW = 4 # ACQ only +BAD_RATIO_HIGH = 8 # ACQ or ACQ/PEAK +BAD_RATIO_LOW = 16 # ACQ or ACQ/PEAK +BAD_SATURATED = 32 # ACQ or ACQ/PEAK +BAD_FLUX = 64 # ACQ/PEAK only +BAD_END = 128 # ACQ/PEAK only +BAD_TDF = 256 # take-data flag was down + +FATAL_ERROR = 2 +LOW_FLUX_CUTOFF = 0.8 +HIGH_FLUX_CUTOFF = 2.0 +MAX_GOODMAX = 32000. # higher would be saturated */ +MIN_GOODMAX = 1900. # lower implies lamp was not on */ +MIN_IMAGING_FLUX = 1250. +MIN_SPECTROSCOPIC_FLUX = 20000. + +PLATESCALE = 0.0508 +COSTHETA = 0.70711 +SINTHETA = 0.70711 + + +def prtOptions(): + """Print a list of command-line options and arguments.""" + + print("The command-line options are:") + print(" --version (print the version number and exit)") + print(" -r (print the full version string and exit)") + print(" -v (verbose)") + print(" -u update ") + print("") + print("Following the options, list one or more input files") + print(" (enclosed in quotes if more than one file name is specified") + print(" and/or if wildcards are used) and one output file name.") + + +def tastis(raw_filename, update=False): + """ + Analyze STIS target acquisition images. + + Parameters + ---------- + raw_filename: str + Name of the input raw file. For some raw files you will need a copy of + the spt file in the same directory. + + update: bool + If True, keywords associated with tastis checks will be updated. + Default values is False. + """ + + # filename can take wildcards, worry about this later + # checks for matching files exits if it can't find any + # loops over files + + # build string for raw and spt file + spt_filename = raw_filename.replace("raw", "spt") + spt_exists = os.path.exists(spt_filename) + + # open file + head = fits.getheader(raw_filename) + obsmode = head['OBSMODE'] + + if obsmode == "ACQ" or obsmode == "ACQ/PEAK": + + # Check for spt file if obsmode is ACQ/PEAK + if not spt_exists and obsmode == "ACQ/PEAK": + FileNotFoundError("Can't find {} (required for ACQ/PEAK), " + "exiting".format(spt_filename)) + + keywords = _read_keywords(raw_filename, spt_filename, spt_exists) + + _calculate_slews(keywords) + + # Read dominant & subdominant FGS from keywords DGESTAR & SGESTAR + # in primary header of spt file. + if spt_exists: + spt_head = fits.getheader(spt_filename) + keywords['domfgs'] = spt_head['dgestar'] + keywords['subfgs'] = spt_head['sgestar'] + else: + keywords['domfgs'] = "" + keywords['subfgs'] = "" + + badacq = _print_output(keywords, spt_exists) + + # Update keywords in the input primary header to indicate + # which tests succeeded and which failed. + if update: + with fits.open(raw_filename, mode='update') as raw_hdulist: + if badacq: + raw_hdulist[0].header['acqstat'] = "FAILED" + else: + raw_hdulist[0].header['acqstat'] = "OK" + + if keywords['obsmode'] == "ACQ": + # Bad ratio + if badacq & BAD_RATIO_HIGH: + raw_hdulist[0].header['acq_rat'] = "HIRATIO" + elif badacq & BAD_RATIO_LOW: + raw_hdulist[0].header['acq_rat'] = "LORATIO" + else: + raw_hdulist[0].header['acq_rat'] = "OKRATIO" + + # Bad slew + if badacq & BAD_SLEW: + raw_hdulist[0].header['acq_slew'] = "BIGSLEW" + else: + raw_hdulist[0].header['acq_slew'] = "OK_SLEW" + + # Saturation + if badacq & BAD_SATURATED: + raw_hdulist[0].header['acq_sat'] = "SAT" + else: + raw_hdulist[0].header['acq_sat'] = "UNSAT" + + # Bad Lamp + if badacq & BAD_LAMP_LOW: + raw_hdulist[0].header['acq_lamp'] = "LO_LAMP" + else: + raw_hdulist[0].header['acq_lamp'] = "OK_LAMP" + + # for ACQ/PEAK + else: + # Bad ratio + if badacq & BAD_RATIO_HIGH: + raw_hdulist[0].header['acqp_rat'] = "HIRATIO" + elif badacq & BAD_RATIO_LOW: + raw_hdulist[0].header['acqp_rat'] = "LORATIO" + else: + raw_hdulist[0].header['acqp_rat'] = "OKRATIO" + + # Bad flux + if badacq & BAD_FLUX: + raw_hdulist[0].header['acqp_flx'] = "LO_FLUX" + else: + raw_hdulist[0].header['acqp_flx'] = "OK_FLUX" + + # Saturation + if badacq & BAD_SATURATED: + raw_hdulist[0].header['acqp_sat'] = "SAT" + else: + raw_hdulist[0].header['acqp_sat'] = "UNSAT" + + # Bad end + if badacq & BAD_END: + raw_hdulist[0].header['acqp_end'] = "HI_END" + else: + raw_hdulist[0].header['acqp_end'] = "OK_END" + + # Bad tdf + if badacq & BAD_TDF: + raw_hdulist[0].header['dataflag'] = "TDFDown" + elif not spt_exists: + raw_hdulist[0].header['dataflag'] = "UNKNOWN" + else: + raw_hdulist[0].header['dataflag'] = "TDF_Up" + + +def _read_keywords(raw_filename, spt_filename, spt_exists): + """ + Read in raw and spt FITS file header keywords used in :func:`tastis`, and + store the results in a dictionary returned by the function. + + Parameters + ---------- + raw_filename: str + Name of the FITS input raw file. + + spt_filename: str + Name of the FITS spt file associated with the raw file. + + spt_exists: bool + If True, the `spt_filename` exists in the same directory as the raw + file. + + Returns + ------- + keywords: dict + dictionary containing all keywords and other data needed by + :func:`tastis`. + """ + + keywords = {} + + with fits.open(raw_filename) as raw_hdulist: + + # Read universal primary header keywords + prim_header_keywords = ['rootname', 'obsmode', 'obstype', 'proposid', + 'sizaxis1', 'sizaxis2', 'texptime', 'biaslev', + 'targname', 'tdateobs', 'ttimeobs', 'linenum', + 'centera1', 'centera2'] + + for key in prim_header_keywords: + keywords[key] = raw_hdulist[0].header[key] + + keywords['optelem'] = raw_hdulist[0].header['opt_elem'] + + # For the aperture name, use PROPAPER if its value ends in "E1" + # or "D1"; otherwise, use APERTURE. + propaper = raw_hdulist[0].header['propaper'] + if propaper[-2:] in ['E1', 'D1']: + keywords['aperture'] = propaper + else: + keywords['aperture'] = raw_hdulist[0].header['aperture'] + + # grab from 1st ext (but not into dict) ngoodpix, goodmean + ngoodpix = raw_hdulist[1].header['ngoodpix'] + goodmean = raw_hdulist[1].header['goodmean'] + + # Obsmode dependent header pulls + if keywords['obsmode'] == 'ACQ': + # 0th header + keywords['acqtype'] = raw_hdulist[0].header['acqtype'] + keywords['box_step'] = raw_hdulist[0].header['checkbox'] + + # 1th header + keywords['counts1'] = raw_hdulist[1].header['maxchcnt'] + keywords['targax1'] = raw_hdulist[1].header['targa1'] + keywords['targay1'] = raw_hdulist[1].header['targa2'] + + # 4th header + keywords['counts2'] = raw_hdulist[4].header['maxchcnt'] + keywords['goodmax2'] = raw_hdulist[4].header['goodmax'] + keywords['targax4'] = raw_hdulist[4].header['targa1'] + keywords['targay4'] = raw_hdulist[4].header['targa2'] + + # 7th header + keywords['goodmax3'] = raw_hdulist[7].header['goodmax'] + keywords['apera1'] = raw_hdulist[7].header['apera1'] + keywords['apera2'] = raw_hdulist[7].header['apera2'] + keywords['aperlka1'] = raw_hdulist[7].header['aperlka1'] + keywords['aperlka2'] = raw_hdulist[7].header['aperlka2'] + + # set pedestal and goodmax1 to 0, not used for "ACQ" + keywords['pedestal'] = 0 + keywords['goodmax1'] = 0 + + if keywords['acqtype'] == "POINT": + keywords['search'] = "FLUX CENTROID" + else: + keywords['search'] = raw_hdulist[0].header['centmeth'] + + # Read keywords from the ACQ/PEAK primary header and from the + # spt extension header. + if keywords['obsmode'] == "ACQ/PEAK": + keywords['peakcent'] = raw_hdulist[0].header['peakcent'] + keywords['search'] = raw_hdulist[0].header['pksearch'] + keywords['box_step'] = raw_hdulist[0].header['numsteps'] + keywords['peakstep'] = raw_hdulist[0].header['peakstep'] + keywords['pedestal'] = raw_hdulist[0].header['pedestal'] + + keywords['goodmax1'] = raw_hdulist[1].header['goodmax'] + + # From spt file 1st header + spt_head = fits.getheader(spt_filename, ext=1) + keywords['otaslwa1'] = spt_head['otaslwa1'] + keywords['otaslwa2'] = spt_head['otaslwa2'] + + # Calculate post-slew flux, get pedestal (from raw file) & dwell + # fluxes. For ACQ/PEAKs only. + keywords['counts2'] = 0. # not used for ACQ/PEAK + keywords['goodmax2'] = 0. # not used for ACQ/PEAK + keywords['goodmax3'] = 0. # not used for ACQ/PEAK + keywords['counts1'] = ngoodpix * goodmean + + # Read dwell fluxes from 4th extension of raw file. + # I think this whole section (lines 564-573) are just pulling + # the data array from the 4th image extension (raw file) + keywords['naxis1'] = raw_hdulist[4].data.shape[1] + keywords['naxis2'] = raw_hdulist[4].data.shape[0] + keywords['dwell'] = raw_hdulist[4].data + + raw_hdulist.close() + + # check for spt file + if spt_exists: + spt_head = fits.getheader(spt_filename, ext=1) + keywords['ocstdfx'] = spt_head['ocstdfx'] + else: + keywords['ocstdfx'] = "unknown" + + # Extract visit & expnum from linenum before period goes into keyword dict + # as visit. if this is the end of the string, fill expnum in the keyword + # dict with 0, otherwise fill expnum with rest of linenum value after + # period converted to float + split_linenum = keywords['linenum'].split(".") + keywords['visit'] = split_linenum[0] + if len(split_linenum) == 1: + keywords['expnum'] = 0 + else: + keywords['expnum'] = float(split_linenum[1]) + + # Calculate corner from 'centera' & sizaxis'. + keywords['corner1'] = keywords['centera1'] - keywords['sizaxis1']/2 + keywords['corner2'] = keywords['centera2'] - keywords['sizaxis2']/2 + + # Calculate coarse, fine local axis & reference aperture locations. + # For ACQs only. + if keywords['obsmode'] == 'ACQ': + keywords['coarse1'] = keywords['targax1'] - (keywords['corner1'] - 1) + 1 + keywords['coarse2'] = keywords['targay1'] - (keywords['corner2'] - 1) + 1 + keywords['fine1'] = keywords['targax4'] - (keywords['corner1'] - 1) + 1 + keywords['fine2'] = keywords['targay4'] - (keywords['corner2'] - 1) + 1 + keywords['refaper1'] = keywords['apera1'] - (keywords['corner1'] + 31) +1 + keywords['refaper2'] = keywords['apera2'] - (keywords['corner2'] + 34) +1 + if keywords['box_step'] > 3: + offset = (keywords['box_step'] + 1)/2 + keywords['refaper1'] -= offset + keywords['refaper2'] -= offset + + return keywords + + +def _calculate_slews(keywords): + """ + Calculate slew information used by :func:`tastis` using input data + dictionary. THIS FUNCTION EDITS THE DICTIONARY IN PLACE. + + Parameters + ---------- + keywords: dict + dictionary containing all keywords and other data needed for slew + calculation. DICTIONARY IS EDITED IN PLACE. + """ + + # Slew calculation for ACQs. + if keywords['obsmode'] == 'ACQ': + + # Define all possible apertures for ACQs. + aperture_acq_dict = {"F25NDQ1": -1.24840, + "F25NDQ2": -1.24840, + "F25NDQ3": -1.24840, + "F25NDQ4": -1.24840, + "F28X50LP": -1.26850, + "F28X50OIII": -1.26850, + "F28X50OII": -1.31570, + "F25ND3": -1.24840, + "F25ND5": -1.24840} + + if keywords['aperture'] in aperture_acq_dict: + offset = aperture_acq_dict[keywords['aperture']] + else: + offset = 0.0 + + # Slews in pixels. + keywords['a1coarse_pix'] = keywords['targax1']- offset - keywords['aperlka1'] + 1 + keywords['a2coarse_pix'] = keywords['targay1'] - keywords['aperlka2'] + 1 + keywords['a1fine_pix'] = keywords['targax4'] - offset - keywords['apera1'] + keywords['a2fine_pix'] = keywords['targay4'] - keywords['apera2'] + keywords['a1total_pix'] = keywords['a1coarse_pix'] + keywords['a1fine_pix'] + keywords['a2total_pix'] = keywords['a2coarse_pix'] + keywords['a2fine_pix'] + + # Slews in arcseconds. + keywords['a1coarse_arc'] = _arcseconds(keywords['a1coarse_pix']) + keywords['a2coarse_arc'] = _arcseconds(keywords['a2coarse_pix']) + keywords['a1fine_arc'] = _arcseconds(keywords['a1fine_pix']) + keywords['a2fine_arc'] = _arcseconds(keywords['a2fine_pix']) + keywords['a1total_arc'] = _arcseconds(keywords['a1total_pix']) + keywords['a2total_arc'] = _arcseconds(keywords['a2total_pix']) + + keywords['V2coarse'] = _v2coord(keywords['a2coarse_arc'], + keywords['a1coarse_arc']) + keywords['V3coarse'] = _v3coord(keywords['a1coarse_arc'], + keywords['a2coarse_arc']) + keywords['V2fine'] = _v2coord(keywords['a2fine_arc'], + keywords['a1fine_arc']) + keywords['V3fine'] = _v3coord(keywords['a1fine_arc'], + keywords['a2fine_arc']) + keywords['V2total'] = _v2coord(keywords['a2total_arc'], + keywords['a1total_arc']) + keywords['V3total'] = _v3coord(keywords['a1total_arc'], + keywords['a2total_arc']) + + else: + # Slew calculations for ACQ/PEAKs. + if keywords['search'] == "LINEARAXIS2": + finalx = int(keywords['box_step']/2) * \ + keywords['peakstep']/(PLATESCALE*1000.0) + finaly = 0.0 + + elif keywords['search'] == "LINEARAXIS1": + finalx = 0.0 + finaly = int(keywords['box_step']/2) * \ + keywords['peakstep']/(PLATESCALE*1000.0) + + elif keywords['search'] == 'SPIRAL': + x, finaly = modf(sqrt(keywords['box_step']) / 2) + finaly = -1 * finaly * keywords['peakstep'] / (PLATESCALE*1000.0) + + x, finalx = modf(sqrt(keywords['box_step']) / 2) + finalx = -1 * finalx * keywords['peakstep'] / (PLATESCALE*1000.0) + + # Final slews in pixels. + keywords['a1total_pix'] = keywords['otaslwa1']/10.0 + finaly + keywords['a2total_pix'] = keywords['otaslwa2']/10.0 + finalx + + + if keywords['search'] == "SPIRAL": + if abs(keywords['a2total_pix']) < 0.05: + keywords['a2total_pix'] = 0.0 + + if abs(keywords['a1total_pix']) < 0.05: + keywords['a1total_pix'] = 0.0 + + # Rounding up the pixel values up to the decimal place. + keywords['a1total_pix'] = _ndec(keywords['a1total_pix']) + keywords['a2total_pix'] = _ndec(keywords['a2total_pix']) + + # Slews in arcseconds. + keywords['a1total_arc'] = _arcseconds(keywords['a1total_pix']) + keywords['a2total_arc'] = _arcseconds(keywords['a2total_pix']) + keywords['V2total'] = _v2coord(keywords['a2total_arc'], + keywords['a1total_arc']) + keywords['V3total'] = _v3coord(keywords['a1total_arc'], + keywords['a2total_arc']) + + +def _print_output(keywords, spt_exists): + """ + Print analysis output to stdout for :func:`tastis` report. + + Parameters + ---------- + keywords: dict + dictionary containing all keywords and other data needed by + :func:`tastis`. + + spt_exists: bool + If True, the `spt_filename` exists in the same directory as the raw + file. + + Returns + ------- + badacq: integer (bit flag) + Bit flag integer containing :func:`tastis` error flags. + """ + + # Print to stdout + print('=' * 79) + + if keywords['obsmode'] == "ACQ": + print("{:>8} HST/STIS MIRVIS {:>7} " + "ACQ/{}".format(keywords['rootname'], keywords['aperture'], + keywords['acqtype'])) + else: + print("{:>8} HST/STIS {} {:>7} " + "ACQ/PEAK-UP".format(keywords['rootname'], keywords['optelem'], + keywords['aperture'])) + + print("prop: {:4d} visit: {} line: {:.0f} target: {}".format( + keywords['proposid'], keywords['visit'], keywords['expnum'], + keywords['targname'])) + + print("obs date, time: {:>8} {:>8} exposure time: {:5.2f}".format( + keywords['tdateobs'], keywords['ttimeobs'], keywords['texptime'])) + + if keywords['domfgs'] != "" or keywords['subfgs'] != "": + print("dom GS/FGS: {} sub-dom GS/FGS: {}". + format(keywords['domfgs'], keywords['subfgs'])) + + if keywords['obsmode'] == "ACQ": + print("ACQ params: bias sub: {:.0f} checkbox: {:d} method: " + "{}".format(keywords['biaslev'], keywords['box_step'], + keywords['search'])) + else: + print("ACQ params: bias sub: {:.0f} " + "method: {}".format(keywords['biaslev'], keywords['peakcent'])) + + print("subarray (axis1,axis2): size=({:d},{:d}) " + "corner=({:d},{:d})".format(int(keywords['sizaxis1']), + int(keywords['sizaxis2']), + int(keywords['corner1']), + int(keywords['corner2']))) + + print('-' * 79) + + # Print rest of output according to data type: ACQ or ACQ/PEAK. + if keywords['obsmode'] == "ACQ": + print("Coarse locate phase: Target flux in max checkbox " + "(DN): {:.0f}\n".format(keywords['counts1'])) + print(" global local") + print(" axis1 axis2 axis1 axis2") + print("Target location: {:4.1f} {:4.1f} {:4.1f} {:4.1f}\n". + format(keywords['corner1'] + keywords['coarse1'] - 1, + keywords['corner2'] + keywords['coarse2'] - 1, + keywords['coarse1'], keywords['coarse2'])) + print(" axis1 axis2 axis1 axis2 V2 " + " V3") + print(" (pixels) (arcsec) " + "(arcsec)") + print("Estimated slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " + "{:6.3f} {:6.3f}".format(keywords['a1coarse_pix'], + keywords['a2coarse_pix'], + keywords['a1coarse_arc'], + keywords['a2coarse_arc'], + keywords['V2coarse'], + keywords['V3coarse'])) + + # Print slews + print('-' * 79) + + print("Fine locate phase: Target flux in max checkbox (DN):" + " {:.0f}\n".format(keywords['counts2'])) + print(" global local") + print(" axis1 axis2 axis1 axis2") + print("Target location: {:4.1f} {:4.1f} {:4.1f} {:4.1f}". + format(keywords['corner1'] + keywords['fine1'] - 1, + keywords['corner2'] + keywords['fine2'] - 1, + keywords['fine1'], keywords['fine2'])) + print("Ref ap location: {:4.1f} {:4.1f} {:4.1f} {:4.1f}\n". + format(keywords['apera1'] + 1, keywords['apera2'] + 1, + keywords['refaper1'], keywords['refaper2'])) + print(" axis1 axis2 axis1 axis2 " + "V2 V3") + print(" (pixels) (arcsec) " + "(arcsec)") + print("Estimated slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " + "{:6.3f} {:6.3f}".format(keywords['a1fine_pix'], + keywords['a2fine_pix'], + keywords['a1fine_arc'], + keywords['a2fine_arc'], + keywords['V2fine'], + keywords['V3fine'])) + + # Print slews + print('-' * 79) + + print("Total est. slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " + "{:6.3f} {:6.3f}". format(keywords['a1total_pix'], + keywords['a2total_pix'], + keywords['a1total_arc'], + keywords['a2total_arc'], + keywords['V2total'], + keywords['V3total'])) + + print('-' * 79) + badacq = _print_warnings(keywords, spt_exists) + + else: + print("Scan type: {} Step size (mas): {:.0f}".format( + keywords['search'], keywords['peakstep'])) + + if keywords['search'] == "SPIRAL": + print("axis 1 -->, axis 2 ^\n") + + # Print here the dwell point values + if keywords['search'] == "LINEARAXIS2": + # I think I might actually need to do a transpose here + print("\n", keywords['dwell'].flatten()) + else: + # I think I might actually need to do a transpose here (at least + # for one of these) + print("\n", keywords['dwell'].flatten()) + + print("") + + print(" axis1 axis2 axis1 axis2 V2 " + "V3") + print(" (pixels) (arcsec) " + "(arcsec)") + print("Estimated slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " + "{:6.3f} {:6.3f}".format(keywords['a1total_pix'], + keywords['a2total_pix'], + keywords['a1total_arc'], + keywords['a2total_arc'], + keywords['V2total'], + keywords['V3total'])) + print("Flux in post-slew confirmation image ({:.0f}) - Pedestal " + "({:.0f}) = {:.0f} DN". + format(keywords['counts1'], keywords['pedestal'], + keywords['counts1'] - keywords['pedestal'])) + + print('-' * 79) + badacq = _print_warnings(keywords, spt_exists) + + print('=' * 79) + + return badacq + + +def _print_warnings(keywords, spt_exists): + """ + Print warnings output to stdout for :func:`tastis` report. + + Parameters + ---------- + keywords: dict + dictionary containing all keywords and other data needed by + :func:`tastis`. + + spt_exists: bool + If True, the `spt_filename` exists in the same directory as the raw + file. + + Returns + ------- + badacq: integer (bit flag) + Bit flag integer containing :func:`tastis` error flags. + """ + + badacq = 0 + max_at_end = 0 # initial value + + if keywords['ocstdfx'] == "TDFDown": + print("Telemetry indicates that the intended exposures may not have\n" + "been performed. Check the images for signal.\n") + badacq |= BAD_TDF + + if not spt_exists: + print("This output lacks some information because the spt.fits file\n" + "is not present in the directory.\n") + + # ACQ warnings. + if keywords['obsmode'] == "ACQ": + if abs(keywords['a1fine_pix']) > 4.0 or \ + abs(keywords['a2fine_pix']) > 4.0: + print("The fine slew (to center the target in the reference " + "aperture) is larger\nthan 4 pixels. This may indicate a " + "problem with your acquisition.\n") + badacq |= BAD_SLEW + + # Ratio of flux in max checkbox in fine & coarse stages. + ratio = keywords['counts2'] / keywords['counts1'] + if (ratio < 0.75) or (ratio > 1.25): + print("The fluxes in the maximum checkbox in the fine and coarse " + "stages differ\nby more than 25%. This may indicate a " + "problem with your acquisition.\n") + if ratio < 0.75: + badacq |= BAD_RATIO_LOW + else: + badacq |= BAD_RATIO_HIGH + + if keywords['goodmax2'] > MAX_GOODMAX: + badacq |= BAD_SATURATED + print("Saturation of pixels in the second image may have affected" + "\nthe final centering.\n") + + if keywords['goodmax3'] < MIN_GOODMAX: + badacq |= BAD_LAMP_LOW + print("The flux in the third image of the ACQ is lower than the " + "typical value for\n)the lamp; the image should be checked " + "to see if the lamp was illuminated.\n") + + if badacq == 0: + print("Your ACQ appears to have succeeded, as the fluxes in the " + "coarse\nand fine stages agree within 25% and the fine " + "slews were less than\n4 pixels as expected\n") + + # ACQ/PEAK warnings. + if keywords['obsmode'] == "ACQ/PEAK": + # Calculate maximum flux in the peakup + max_final = 0.0 + i_max = -1 + j_max = -1 + + # I'm not sure if dwell would ever contain all negative values, but + # just in case that's a possibility, to replicate original code + # behaviour also, need to check indexing order + if max(keywords['dwell'].flatten()) > max_final: + max_final = max(keywords['dwell'].flatten()) + max_indexs = np.where(keywords['dwell'] == + max(keywords['dwell'].flatten())) + i_max = max_indexs[1][0] + j_max = max_indexs[0][0] + + # subtract pedestal + flux = keywords['counts1'] - keywords['pedestal'] + flux_ratio = flux / max_final + + if flux_ratio < LOW_FLUX_CUTOFF: + print("The flux in the confirmation image is only {:2.0f}% of the " + "maximum flux\nin the ACQ/PEAK scan. Percentages below " + "{:2.0f}% often indicate problems\nin the ACQ/PEAK.\n". + format(flux_ratio*100, LOW_FLUX_CUTOFF*100)) + badacq |= BAD_RATIO_LOW + + if flux_ratio > HIGH_FLUX_CUTOFF: + print("The flux in the confirmation image is {:2.0f}% greater than" + " the maximum flux\nin the ACQ/PEAK scan. An excess greater" + " than {:3.0f}% indicates\nproblems in the ACQ/PEAK.\n". + format((flux_ratio-1)*100, (HIGH_FLUX_CUTOFF-1)*100)) + badacq |= BAD_RATIO_HIGH + + if keywords['goodmax1'] > MAX_GOODMAX: + badacq |= BAD_SATURATED + print("Some pixels in the confirmation image were saturated. " + "If saturation also\noccurred in any of the peakup steps, " + "it may have affected the centering.\n") + + # Check that the flux level (above pedestal) in the confirmation + # image is above a minimum value. + if keywords['obstype'] == "IMAGING": + if flux < MIN_IMAGING_FLUX: + print("The flux in the confirmation image is {:2.0f}% of the " + "recommended minimum\nof {:.0f} DN for a direct-light " + "ACQ/PEAK. The signal-to-noise in the\nACQ/PEAK may be " + "inadequate for an accurate centering.\n". + format(flux/MIN_IMAGING_FLUX*100, MIN_IMAGING_FLUX)) + badacq |= BAD_FLUX + + else: + if flux < MIN_SPECTROSCOPIC_FLUX: + print("The flux in the confirmation image is {:2.0f}% of the " + "recommended minimum\nof {:.0f} DN for a dispersed-light" + " ACQ/PEAK. The signal-to-noise in\nthe ACQ/PEAK may be" + " inadequate for an accurate centering.\n". + format(flux/MIN_SPECTROSCOPIC_FLUX*100, + MIN_SPECTROSCOPIC_FLUX)) + badacq |= BAD_FLUX + + # Search for the word FAILED in keyword PEAKCENT. + # This will check if flux test failed. + if "FAILED" in keywords['peakcent']: + print("The ACQ/PEAK flux test failed, which means that no point in" + " the peakup\nscan has a flux that is at least 30% higher " + "than any other point. The\nACQ/PEAK has failed, and the " + "telescope has returned to the initial\nposition of the " + "ACQ/PEAK\n") + badacq |= BAD_ACQ + + # If first & last flux values in LINEAR scans are 0. + if keywords['search'] == "LINEARAXIS1": + if i_max == 0 or i_max == (keywords['naxis1']-1): + max_at_end = 1 + badacq |= BAD_END + elif keywords['search'] == "LINEARAXIS2": + if j_max == 0 or j_max == (keywords['naxis2']-1): + max_at_end = 1 + badacq |= BAD_END + + if max_at_end: + print("The maximum flux in the sequence occurred at one end.\n" + "This may indicate that the target was beyond that end\n" + "or that a neighboring object affected the acquisition.") + + if badacq == 0: + print("The confirmation image has a flux between {:3.1f} and " + "{:3.1f} times the\nmaximum flux in the peakup, which is " + "typical of a successful ACQ/PEAK.".format(LOW_FLUX_CUTOFF, + HIGH_FLUX_CUTOFF)) + + return badacq + + +def _arcseconds(x): + """ + Translate pixel values to arcsecond units + + Parameters + ---------- + x: int, float + Input pixel value. + + Returns + ------- + arcsec: float + Pixel translated to arcsecond unit. + """ + + return x * PLATESCALE + + +def _v2coord(x, y): + """ + Translate arcsecond values to v2coordinate system. + + Parameters + ---------- + x: int, float + Input arcsecond value. + + y: int, float + Input arcsecond value. + + Returns + ------- + v2coord: float + v2coord value. + """ + + return COSTHETA * x + SINTHETA * y + + +def _v3coord(x, y): + """ + Translate arcsecond values to v3coordinate system. + + Parameters + ---------- + x: int, float + Input arcsecond value. + + y: int, float + Input arcsecond value. + + Returns + ------- + v3coord: float + v3coord value. + """ + + return COSTHETA * x - SINTHETA * y + + +def _ndec(x): + """ + Return input float value rounded up to nearest tenth decimal place. + + Parameters + ---------- + x: float + Input value to be rounded up. + + Returns + ------- + rounded: float + input value rounded up to nearest tenth decimal place + """ + if x > 0: + return int(x*10 + 0.5) / 10.0 + else: + return int(x*10 - 0.5) / 10.0 + + +if __name__ == "__main__": + + parser = argparse.ArgumentParser( + description="Analyze STIS target acquisition images. :func:`tastis` " + "will print general information about each input target " + "acquisition image, and will analyze both types of STIS " + "target acquisitions: ACQs and ACQ/PEAKs") + parser.add_argument('filename', type=str, + help="Name of the input raw file. For some raw files " + "you will need a copy of the spt file in the " + "same directory.") + parser.add_argument('--update', '-u', action='store_true', + help='update header') + args = vars(parser.parse_args()) + + tastis(args['filename'], args['update']) diff --git a/lib/stistools/tests/__init__.py b/lib/stistools/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/lib/stistools/tests/data/tastis/o4er06llq_raw.fits b/lib/stistools/tests/data/tastis/o4er06llq_raw.fits new file mode 100644 index 00000000..274aa591 --- /dev/null +++ b/lib/stistools/tests/data/tastis/o4er06llq_raw.fits @@ -0,0 +1 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2006-12-08' / date this file was written (yyyy-mm-dd) FILENAME= 'o4er06llq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'o4er06llq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'NGC6752-UIT1 ' / proposer's target name RA_TARG = 2.877270958333E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.999621944444E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 7436 / PEP proposal identifier LINENUM = '6.061 ' / proposal logsheet line number PR_INV_L= 'Landsman ' / last name of principal investigatorPR_INV_F= 'Wayne ' / first name of principal investigator PR_INV_M= 'B. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '1998-03-03' / UT date of start of first exposure in file TTIMEOBS= '04:42:21' / UT start time of first exposure in file TEXPSTRT= 5.087519608305E+04 / start time (MJD) of 1st exposure in file TEXPEND = 50875.19609157 / end time (MJD) of last exposure in the file TEXPTIME= 0.7360935 / total exposure time (seconds) QUALCOM1= 'GUIDE STAR ACQUISITION FAILED. OBSERVATION TAKEN ON GYROS ONLY. 'QUALCOM2= 'DEGRADED GUIDING MODE. GYRO GUIDING. CCD SHUTTER CLOSED. 'QUALCOM3= 'STIS CCD VOLTAGES INCORRECTLY SET DURING THIS EXPOSURE 'QUALITY = 'GSFAIL ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'OPUS 2006_6 ' / OPUS software system version number CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.407730398148E+04 / Pipeline processing time (MJD) / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= '52X0.2 ' / aperture name PROPAPER= '52X0.2 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '52x0.2 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 517 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization ATODCORR= 'OMIT ' / correct for A to D conversion errors BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data SHADCORR= 'OMIT ' / apply shutter shading correction PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$jbo08138o_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name DFLTFILE= 'N/A ' / delta flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table APERTAB = 'oref$n7p1032ao_apt.fits' / relative aperture throughput table CCDTAB = 'oref$q4a1311fo_ccd.fits' / CCD calibration parameters ATODTAB = 'N/A ' / analog to digital correction file BIASFILE= 'oref$k5h1101io_bia.fits' / bias image file name SHADFILE= 'N/A ' / shutter shading correction file CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$q9s1550jo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'A Complete Sample of Hot Post-AGB Stars in Globular Clusters 'OBSET_ID= '06' / observation set id TARDESCR= 'STAR;SDO;POST-AGB STAR 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion NUMSTEPS= 3 / Number of peakup search steps PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 62.828701 / position angle of V3-axis of HST (deg) END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 32 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 0.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.9 / x-coordinate of reference pixel CRPIX2 = 16.67 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.34086E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -4.36512E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -4.36391E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.34123E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -161.972 / position angle of image y axis (deg. e of n) SUNANGLE= 67.539276 / angle between sun and V1 axis MOONANGL= 112.609512 / angle between moon and V1 axis SUN_ALT = 36.545483 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= '3' / observation scheduled with only two gyros (Y/N)REFFRAME= 'GSC1 ' / guide star catalog version DATE-OBS= '1998-03-03' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:42:21' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.087519608305E+04 / exposure start time (Modified Julian Date) EXPEND = 5.087519609157E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.736094 / exposure duration (seconds)--calculated EXPFLAG = 'INTERRUPTED ' / Exposure interruption indicator QUALCOM1= 'GUIDE STAR ACQUISITION FAILED. OBSERVATION TAKEN ON GYROS ONLY. 'QUALCOM2= 'DEGRADED GUIDING MODE. GYRO GUIDING. CCD SHUTTER CLOSED. 'QUALCOM3= 'STIS CCD VOLTAGES INCORRECTLY SET DURING THIS EXPOSURE 'QUALITY = 'GSFAIL ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / ST DDF fill present (T/F) STDCFFP = '0x5569' / ST DDF fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 878392 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 22.0191 / (V) CEB A&B Amp Bias OCBCDAV = 22.0191 / (V) CEB C&D amp bias OCBLGCDV= -6.12307 / (V) CEB last gate C&D OCBSWALV= -7.00805 / (V) CB summing well A Lo OCBRCDLV= 0.0194725 / (V) CB reset gate CD Lo OCCDHTAV= -1.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 0.0 / maximum value of good pixels GOODMEAN= 0.000000 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.9 / x-coordinate of reference pixel CRPIX2 = 16.67 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.34086E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -4.36512E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -4.36391E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.34123E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 0.0 / maximum value of good pixels GOODMEAN= 0.000000 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.9 / x-coordinate of reference pixel CRPIX2 = 16.67 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.34086E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -4.36512E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -4.36391E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.34123E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 3 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 0.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 2.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 3.962105785598E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -1.289507213954E-05 / partial of first axis coordinate w.r.t. y CD2_1 = -1.289507213954E-05 / partial of second axis coordinate w.r.t. x CD2_2 = -3.962105785598E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -161.972 / position angle of image y axis (deg. e of n) SUNANGLE= 67.539276 / angle between sun and V1 axis MOONANGL= 112.609512 / angle between moon and V1 axis SUN_ALT = 36.545483 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= '3' / observation scheduled with only two gyros (Y/N)REFFRAME= 'GSC1 ' / guide star catalog version DATE-OBS= '1998-03-03' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:42:21' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.087519608305E+04 / exposure start time (Modified Julian Date) EXPEND = 5.087519609157E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.736094 / exposure duration (seconds)--calculated EXPFLAG = 'INTERRUPTED ' / Exposure interruption indicator QUALCOM1= 'GUIDE STAR ACQUISITION FAILED. OBSERVATION TAKEN ON GYROS ONLY. 'QUALCOM2= 'DEGRADED GUIDING MODE. GYRO GUIDING. CCD SHUTTER CLOSED. 'QUALCOM3= 'STIS CCD VOLTAGES INCORRECTLY SET DURING THIS EXPOSURE 'QUALITY = 'GSFAIL ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / ST DDF fill present (T/F) STDCFFP = '0x5569' / ST DDF fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 878392 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 22.0191 / (V) CEB A&B Amp Bias OCBCDAV = 22.0191 / (V) CEB C&D amp bias OCBLGCDV= -6.12307 / (V) CEB last gate C&D OCBSWALV= -7.00805 / (V) CB summing well A Lo OCBRCDLV= 0.0194725 / (V) CB reset gate CD Lo OCCDHTAV= -1.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 3 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 0.0 / maximum value of good pixels GOODMEAN= 0.000000 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/o4er06llq_spt.fits b/lib/stistools/tests/data/tastis/o4er06llq_spt.fits new file mode 100644 index 00000000..353d3946 --- /dev/null +++ b/lib/stistools/tests/data/tastis/o4er06llq_spt.fits @@ -0,0 +1,10 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2006-12-08' / date this file was written (yyyy-mm-dd) FILENAME= 'o4er06llq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'o4er06llq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'NGC6752-UIT1 ' / proposer's target name RA_TARG = 2.877270958333E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.999621944444E+01 / declination of the target (deg) (J2000) ECL_LONG= 281.025056 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -37.233590 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 336.481182 / galactic longitude of the target (deg) (J2000) GAL_LAT = -25.635361 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OVL200 ' / aperture used for reference position ELON_REF= 281.025056 / ecliptic longitude at reference position (deg) ELAT_REF= -37.233590 / ecliptic latitude at reference position (deg) GLON_REF= 336.481182 / galactic longitude at reference position (deg) GLAT_REF= -25.635361 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 7436 / PEP proposal identifier LINENUM = '6.061 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '408x ' / flight software version number OPUS_VER= 'OPUS 2006_6 ' / OPUS software system version number / TIME CONVERSION KEYWORDS CLKDRFTR= 3.177507611858E-19 / spacecraft clock drift rate CLKRATE = 1.250000015551E-01 / spacecraft clock rate SPCLINCN= 1.917116197000E+09 / spacecraft clock at UTC0 UTC0 = 5.077957638889E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= '4ER' / program id (base 36) PR_INV_L= 'Landsman ' / last name of principal investigatorPR_INV_F= 'Wayne ' / first name of principal investigator PR_INV_M= 'B. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '06' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'LL ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'SL200 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 3 / proposed number of peakup search steps SS_STPSZ= 150.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 520 / proposed axis1 detector pixel of subarray startSS_A1SZE= 32.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 500 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 26 / word 11/14 (0-255) PSTRTIME= '1998.062:04:40:59 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '1998.062:04:43:53 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OVL200 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '7436_60 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.878924817657E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.002067262062E+01 / declination of v1 axis of st (deg) PA_V3 = 62.828701 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = '0907100497F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = '0877200409F3' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = -1.620518527100E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 2.212941346051E+02 / position of space telescope x axis (km) POSTNSTY= -6.137602338622E+03 / position of space telescope y axis (km) POSTNSTZ= 3.326431287819E+03 / position of space telescope z axis (km) VELOCSTX= 7.548254552711E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= 3.504760465827E-01 / vel of space telescope along y axis (km/sec) VELOCSTZ= 1.445086041097E-01 / vel of space telescope along z axis (km/sec) RA_SUN = 3.438025323525E+02 / right ascension of the sun (deg) DEC_SUN = -6.896091337459E+00 / declination of the sun (deg) RA_MOON = 4.333491743681E+01 / right ascension of the moon (deg) DEC_MOON= 1.159932095736E+01 / declination of the moon (deg) VELABBRA= 12.396160 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.877270958333E+02 / right ascension of reference object (deg) DEC_REF = -5.999621944444E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 4.154976000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.243713242225E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.509412176658E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.904646667956E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.554327868960E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.792587462691E-01 / cosine of inclination ECCENTRY= 1.820544237486E-03 / eccentricity ECCENTX2= 3.641088474972E-03 / eccentricity times 2 ECBDX4D3= 8.045303752171E-09 / eccentricity cubed times 4/3 ESQDX5D2= 8.285953301608E-06 / eccentricity squared times 5/2 ECBDX3 = 1.810193344238E-08 / eccentricity cubed times 3 FDMEANAN= 1.721379765449E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.289750810721E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.052702168831E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 6.644081328846E-02 / argument of perigee (revolutions) MEANANOM= 1.704504435498E+00 / mean anomaly (radians) RCARGPER= 2.593128829936E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 5.164961100092E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.763444731591E-01 / sine of inclination SEMILREC= 6.984629700819E+06 / semi-latus rectum (meters) TIMEFFEC= 4.155010960000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 4.155144590000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'SL200 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;SDO;POST-AGB STAR 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'SDO 'TARKEY2 = 'POST-AGB STAR ' / PROPOSAL INFO: Flux Information MAG_V = 15.390000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = -0.200000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.040000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 1.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 2.877270958333E+02 / target right ascension from proposal (degrees) DEC_PROP= -5.999621944444E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000.0' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'A Complete Sample of Hot Post-AGB Stars in Globular Clusters 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.139441000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248428000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.349762000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369000000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.166700000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -7.063000000000E-05 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076319000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077731000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 7.061000000000E-05 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 2.740126000000E-02 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969927700000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969379700000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -2.739364000000E-02 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.325946300000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -2.060642700000E+02 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.951500900000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -2.434777200000E+02 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -1.952935700000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= -2.436213300000E+02 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.327381100000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= -2.062078800000E+02 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1989 / Number of words NLINES = 3 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 520 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 36 / Slit Number SLITSIZE= '52x0.2 ' / aperture field of view TFPFNAME= 'SL200 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 3 / Number of peakup search steps PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 10.0 / Integ. time NINTERPT= 1 / Number of Exposure Interrupts START1 = 5.087519609157E+04 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 35 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 53514 / Control section last checksum OCBRADT = 19.5563 / (dgC) CEB Radiator temp OCLLMP1T= 7.49519 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 7.13365 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 2.52404 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 2.34327 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 3.925 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 3.51827 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 7.75806 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 21.4714 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 21.4714 / (dgC) calibration lamp motor 2 temp OENCAFTT= 11.3375 / (dgC) Enclosure aft blukhead temp OENCAIPT= 4.72812 / (dgC) Enclosure aft inner panel temp OENCAOPT= 5.25117 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.4813 / (dgC) Enclosure forward internal panel temp OENCFOPT= 214.648 / Enclosure forward outer panel temperature countOFITAT = 11.9938 / (dgC) Fitting A temp OFITBT = 16.825 / (dgC) Fitting B temp OFITCT = 1.26797 / (dgC) Fitting C temp OHDM15V = -15.2518 / (V) Hold Mode Regulator - 15V OHDP15V = 15.0666 / (V) Hold mode regulator +15V OHDP5V = 4.92569 / (V) Hold mode regulator + 5V OKMDITBT= 21.6672 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 22.5857 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 22.725 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 22.7714 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 29.9979 / (dgC) M1 heater control temp OM1HTRW = 0.451125 / (w) M1 heater power OM2HTRT = 30.6417 / (dgC) M2 heater control temp OM2HTRW = 9.96855E-06 / (w) M2 heater power OMB10RV = 9.99006 / (V) SES A/D 10 reference volt OMB1RADT= 8.83203 / (dgC) MEB 1 radiator temp OMB2RADT= 18.8375 / (dgC) MEB 2 radiator temp OMBCSPT = 26.9719 / (dgC) MEB CS processor temp OMBDIG5V= 5.08137 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 22.8797 / (dgC) MEB MIE processor temp OMBP15V = 14.8817 / (V) Operatore mode regulator +15V OMSC1MT = 20.8589 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.4651 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 20.9599 / (dgC) Mode select cylinder 4 temp OOBBH1T = 20.2 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 20.85 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.9 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 23.25 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.125 / (V) LVPS thermal control system zone B volts OSCMTRT = 18.4781 / (dgC) CCD Shutter motor temp OSEMTRT = 21.0609 / (dgC) Echelle blocker motor temp OSMMTRT = 21.8188 / (dgC) Mode isolation shutter motor temp OSWMTRT = 23.3849 / (dgC) Slit wheel motor temp OTCZ1AT = 23.725 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 8.13814 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.4844 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 7.61533 / (w) Thermal controller power, zone 1B OTCZ2AT = 19.325 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 5.20444 / (w) Thermal controller power, zone 2A OTCZ2BT = 23.6375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.6365 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.6125 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 4.25121 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.0 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 4.13097 / (w) Thermal controller power, zone 3B OTECINV = 5.57183 / (V) TEC input voltage OTECTCV = -7.85646 / TEC temp control voltage OMBMC15V= 14.9012 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.25 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.89163 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.9401 / (V) LVPS CEB +15V OPSCB35V= 30.8745 / (V) LVPS CEB +35V OPSCB5V = 5.53867 / (V) LVPS CEB +5V OPSCM15V= -15.6118 / (V) LVPS CEB -15V OM1FLDV = -1500.89 / (V) M1 Field voltage OM1HBIAV= 139.731 / (V) M1 High bias voltage OM1LBIAV= 137.68 / (V) M1 Low bias voltage OM1M15VC= 0.0704274 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.422466 / (A) M1 -2V discriminator current OM1M2DV = -2.00244 / (V) M1 -2V discriminator voltage OM1MCPC = -41.9536 / (uA) M1 MCP current OM1MCPV = -2250.48 / (V) M1 MCP voltage OM1P15VC= 0.0300366 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275702 / (A) M1 +5V discriminator current OM1P5DV = 5.01343 / (V) M1 +5V discriminator voltage OM1P5VC = 0.492063 / (A) M1 +5V current OM1P5V = 5.19902 / (V) M1 +5 volts OM1P8VAC= 0.738462 / (A) M1 +8V amplifier current OM1P8AV = 8.01221 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 33.3213 / (dgC) M1 charge amplifier temp OM1DCDT = 34.0539 / (dgC) M1 decoder temp OM1MCET = 32.3445 / (dgC) M1 MCE temp OM1LVPST= 37.4727 / (dgC) M1 LVPS temp OM1HVPST= 36.0075 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 152.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.928 / (V) M2 High Bias Volotage OM2LBIAV= 157.851 / (V) M2 Low Bias Voltage OM2M15VC= 0.0728205 / (A) M2 -15V current OM2M15V = -15.8388 / (V) M2 - 15 volts OM2M2VDC= 0.422466 / (A) M2 -2V discriminator current OM2M2DV = -2.0 / (V) M2 -2V discriminator voltage OM2MCPC = -77.6068 / (uA) M2 MCP current OM2MCPV = -2052.45 / (V) M2 MCP voltage OM2P15VC= 0.030525 / (A) M2+15V current OM2P15V = 15.9463 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273748 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.483516 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.737973 / (A) M2 +8V amplifier current OM2P8AV = 8.00977 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.483516 / (V) M2 threshold voltage OM2CAT = 33.8097 / (dgC) M2 charge amplifier temp OM2DCDT = 34.7865 / (dgC) M2 decoder temp OM2MCET = 32.5887 / (dgC) M2 MCE temp OM2LVPST= 38.2053 / (dgC) M2 LVPS temp OM2HVPST= 36.4959 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 22.0191 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.38774 / (V) CEB A/D offset A V OCBADOBV= -2.37797 / (V) CEB A/D offset B V OCBADOCV= -2.37309 / (V) CEB A/D offset C V OCBADODV= -2.34379 / (V) CEB A/D offset D V OCBASPCT= 28.086 / CB aspect/bias pwb temp OCBA35A1= 33.3246 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.2399 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.07164 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.1131 / (V) CEB aspect X +15 analog V OCBA35A2= 34.9009 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2691 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.02299 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.1034 / (V) CEB aspect Y +15 analog V OCBCDAV = 22.0191 / (V) CEB C&D amp bias OCBCDODV= 15.8347 / (V) CEB C&D output diode OCBCLKA1= 27.786 / CB clock X pwb temp OCBCLKA2= 29.6539 / CB clock Y pwb temp OCBCMAA1= -14.9696 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.07164 / (V) CB clock drive X +5V OCBCPAA1= 14.8234 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9696 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.07164 / (V) CB clock drive Y +5V OCBCPAA2= 14.8234 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -6.12307 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.056 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0658 / (V) CEB phase 1 upper low V OCBP2LHV= 1.93352 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.92376 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.056 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.05921 / (V) CEB phase 3 upper low V OCBRABHV= 11.8413 / (V) CEB reset gate AB Hi OCBRABLV= -0.00494145 / (V) CB reset gate AB Lo OCBRCDHV= 11.9775 / (V) CB reset gate CD Hi OCBRCDLV= 0.0194725 / (V) CB reset gate CD Lo OCBS1AHV= 4.94766 / (V) CB serial phase 1A Hi V OCBS1ALV= -6.0156 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.95739 / (V) CB serial phase 1B Hi V OCBS1BLV= -6.02046 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.91361 / (V) CB serial phase 1C Hi V OCBS1CLV= -5.9329 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.91361 / (V) CB serial phase 1D Hi V OCBS1DLV= -5.93776 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.96712 / (V) CB serial phase 3A Hi V OCBS3ALV= -6.03019 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.95739 / (V) CB serial phase 3B Hi V OCBS3BLV= -6.03992 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.91361 / (V) CB serial phase 3C Hi V OCBS3CLV= -5.93776 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.90874 / (V) CB serial phase 3D Hi V OCBS3DLV= -4.99882 / (V) CB serial phase 3D Lo V OCBSABHV= 4.95739 / (V) CB serial phase 2 AB Hi OCBSABLV= -6.01074 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.91847 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -5.94263 / (V) CB serial phase 2 CD low V OCBSM1PV= 5.03758 / (V) CB state machine 1 +5V OCBSM2PV= -0.00737781 / (V) CB state machine 2 +5V OCBSWAHV= 4.97199 / (V) CB summing well A Hi OCBSWALV= -7.00805 / (V) CB summing well A Lo OCBSWBHV= 4.95739 / (V) CB summing well B Hi OCBSWBLV= -5.94749 / (V) CB summing well B Lo OCBSWCHV= 4.92334 / (V) CB summing well C Hi OCBSWCLV= -5.9329 / (V) CB summing well C Lo OCBSWDHV= 4.91361 / (V) CB summing well D Hi OCBSWDLV= -6.98859 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.00083 / (V) CEB transfer gate lower Low V OCBTIMT = 24.8426 / CEB timing pwb temp OCLM5V = -5.1691 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00346399 / Calibration lamps -5V current OCLP30V = 29.5317 / (V) Calibration lamps +30V voltage OCLP30VC= 0.0146175 / Calibration lamps +30V current OCLP5V = 5.25651 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 878392 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.2244 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.000337006 / (A) Slit Wheel motor current OSWMVEL = -0.0154701 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 112 / Mode select cylinder 1 shaft position OMSC3SP = 135 / Mode select cylinder 3 shaft position OMSC4SP = 156 / Mode select cylinder 4 shaft position OMSC1CRP= 1848 / Mode select cyl. 1 resolver position OMSC3CRP= 61753 / Mode select cyl. 3 resolver position OMSC4CRP= 24452 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2559 / CCD Shutter resolver position OSCMTRC = -0.0139194 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = -0.0046889 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 36 / Control section slit position OCSDQEXJ= 1280 / Control section data queue extract OCSDQINJ= 1280 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 41 / Control section Expos Que Insert OCSOBSQ = -30565 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'CmdReset ' / Control section reason for reset OCSDUMPJ= 0 / Control section dump pointer OCSFILLJ= 0 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 0 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFDown ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 37 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªª4ER06LLšÅu aðˆ I ô#ÊÑ +©0À0À°ÇÇPŠŰáðÍÀÍÀ´`¾€½°±P×p³p¬ÀÃà€á@¿ÀÑðÌ@ÌÌÎà¢pÏ ž€¿ð¸ ª Ë`ÁÀÐÐpàÒðÒ0¹`ÒкÀ¹ð¸ ¶ðâá Ñ°Ò°ÑÀÏЦ€½ð¦¼¥`­Ð¬¡€©0¯@¦€®Ð™ðpà0á ¿Pàpã Ç 0  - ¢ —Â4[g «ißQ Ð Ñ ÏÆçêãøò +77L q ß  Ó «Â35 àq Áa¼H Î Ð ÑÆéíäûô +ÅðÃapaa b~pë€$àÀàÛ ð $ÐÁ ÛÅðÃ~°‚` @Á߀ PÁ ß°Là1 ˜°À˜° ˜À ˜ ÀF@¦ F@¦@˜ ð™à€@ f``f@~@h€~@h` f`eÀ~@h`~ €€`f€~`h@Á0€`ÀLà`h ~€h€~@M`€ §€À§x>€ÀßP°Ä€` g8cÁp€€Ðb9 +³p‡œ8ñ9_„d Ÿð€ àñ$%)›`!¥áÏ%F‚__–d–d==#ÊÑ +©0À0À°ÇÇ`Å0Å âÍÀÍÀ´`¾€½À±@×p³€¬ÀÃðpÞÀÀ€ÑàÌ@ÌÌÍ@ @Ñ`ŸÀ¿à¸@ª Ë`ÁÀÐÐ`à ÒðÒ ¹pÒàºÐ¹à¸°¶ðâ@áÀѰҰѰÏФ »à§°½P¦à®à¬°¢©`°P¤ð¬0—ððà0á¿ Ü æðÃ0  - ¢ –Â5Zg «iæQ Ð Ñ ÏÆçêãøó +77O q ß  Ó ­Â3= àr ÅaÆI Ï Ð ÑÆéíäûô +ÅðÃapa a b~pë€%Á Û ð$ÐÁÛÅðÃ~À‚` PÁ ß° PÁ ß°Là1°˜°À˜  ˜À€˜ ÀF ¦ F`¦@™ð™À€PÀf``f`~@h€~`h`€f`f ~@h`~`€€`f@~@h`Á€@ÀM f€~@h€~@M€ §€ §x=àPßPƒ ð€p€ g8cÁP€ € b9 +³p‡œ8ñ9_„d Ÿð€ ðñ$%)›`!¥áÏ&F‚__–d–d==`$m°3Ç–æ +u aðˆ"UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/oc7w11viq_raw.fits b/lib/stistools/tests/data/tastis/oc7w11viq_raw.fits new file mode 100644 index 00000000..f2016de3 --- /dev/null +++ b/lib/stistools/tests/data/tastis/oc7w11viq_raw.fits @@ -0,0 +1 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-24' / date this file was written (yyyy-mm-dd) FILENAME= 'oc7w11viq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'oc7w11viq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198673206891E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083250760467E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 13465 / PEP proposal identifier LINENUM = '11.003 ' / proposal logsheet line number PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2014-07-24' / UT date of start of first exposure in file TTIMEOBS= '22:05:06' / UT start time of first exposure in file TEXPSTRT= 5.686292021364E+04 / start time (MJD) of 1st exposure in file TEXPEND = 56862.9202148 / end time (MJD) of last exposure in the file TEXPTIME= 0.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792868061343E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430L ' / optical element in use APERTURE= '0.3X0.05ND ' / aperture name PROPAPER= '0.3X0.05ND ' / proposed aperture name FILTER = 'ND_3 ' / filter in use APER_FOV= '0.33x0.05 ' / aperture field of view CENWAVE = 4300 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 536 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$yal1700po_drk.fits' / dark image file name PFLTFILE= 'oref$x6417094o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$pcc2026jo_lfl.fits' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740no_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 2800.0 / bandwidth of the data SPECRES = 800.0 / approx. resolving power at central wavelength CENTRWV = 4300.0 / central wavelength of the data MINWAVE = 2900.0 / minimum wavelength in spectrum MAXWAVE = 5700.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Alpha Cen: Climbing out of a Coronal Recession? (year 3 continuation'PROPTTL2= ') 'OBSET_ID= '11' / observation set id TARDESCR= 'STAR;G V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 7.470000000000E-01 / target parallax from proposal MU_RA = -3.820000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.100000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2013.4' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS2' / Search method for peakups PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion NUMSTEPS= 3 / Number of peakup search steps PEAKSTEP= 250.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 748587.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 274.962006 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 96.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.723 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 49.9157 / position angle of image y axis (deg. e of n) SUNANGLE= 109.972420 / angle between sun and V1 axis MOONANGL= 120.290939 / angle between moon and V1 axis SUN_ALT = -13.636504 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2014-07-24' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:05:06' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.686292021364E+04 / exposure start time (Modified Julian Date) EXPEND = 5.686292021480E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 33685 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.99128 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 20.192300 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 96.0 / maximum value of good pixels GOODMEAN= 22.986546 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€!€€!€€€€€"€€€€€€€!€€€€€€€€€€ €€€€€€€#€€€ €€€€$€€€ €€€€€€€€€€€!€€€€ €€€€ €€€!€ €€$€€€!€!€ €€"€ €€ € € € €€#€ €€€#€€%€%€€€!€€ € €€ € € €&€€€!€€ €€!€ € €#€€€ € € € €"€€€!€ €€€€"€€!€€!€!€"€"€€!€!€€!€€€ €€!€ € €!€€€€%€€"€"€"€ €€!€!€ € €€ €€€!€ €"€€€€$€ €€ €"€€$€ €%€!€ € € € €"€!€ €%€€ €€%€€ €€ € €€ €€€ €!€€!€ €!€ €#€#€!€€€!€ €€ €#€€"€%€"€€ €%€€ €$€!€€!€€ €!€$€!€$€%€€ €#€$€ €"€%€"€€!€#€#€€#€#€!€€"€#€€ €€ € €#€"€!€"€"€#€ € €#€€#€#€!€€€$€€!€&€€€€!€€!€#€"€ €$€"€€!€#€€ €"€$€!€€&€€"€!€€€€€ €€€€ €€#€"€€$€$€€€#€!€€"€!€!€#€ €!€"€%€€"€$€ €!€"€€!€€€€€!€%€$€#€€)€#€ €#€"€ € €%€'€'€"€"€ € €$€#€€#€#€#€ € €€$€#€ €#€!€ €#€!€ €$€#€#€#€#€!€€€ €$€#€€€%€#€'€!€$€€(€€!€!€!€ €!€€$€ €&€!€"€"€!€€ €#€"€"€!€&€ €€&€ €#€$€#€ €%€#€#€!€"€!€!€€€ €€&€#€€$€#€ €#€$€"€ €%€€ €€$€'€€ €"€ €€"€"€€€$€&€!€!€$€'€!€"€"€ € €"€ €&€"€%€!€&€ €!€!€ €!€#€!€$€#€€#€"€"€€"€"€€ €!€+€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€Y€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€Z€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€#€ €`XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.723 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 96.0 / maximum value of good pixels GOODMEAN= 22.986546 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.723 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1 / length of first data axis NAXIS2 = 3 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 753.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 1.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 2.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.198673206891E+02 / first axis value at reference pixel CRVAL2 = -6.083250760467E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -4.471625030206E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.313179672401E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 5.313179672401E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 4.471625030206E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 49.9157 / position angle of image y axis (deg. e of n) SUNANGLE= 109.972420 / angle between sun and V1 axis MOONANGL= 120.290939 / angle between moon and V1 axis SUN_ALT = -13.636504 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2014-07-24' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:05:06' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.686292021364E+04 / exposure start time (Modified Julian Date) EXPEND = 5.686292021480E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 33685 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.99128 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 20.192300 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 3 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 753.0 / maximum value of good pixels GOODMEAN= 321.000000 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END Òñ \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/oc7w11viq_spt.fits b/lib/stistools/tests/data/tastis/oc7w11viq_spt.fits new file mode 100644 index 00000000..7d1756fa --- /dev/null +++ b/lib/stistools/tests/data/tastis/oc7w11viq_spt.fits @@ -0,0 +1,5 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-24' / date this file was written (yyyy-mm-dd) FILENAME= 'oc7w11viq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'oc7w11viq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198673206891E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083250760467E+01 / declination of the target (deg) (J2000) ECL_LONG= 239.457560 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -42.600007 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 315.719278 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.671453 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV330X050 ' / aperture used for reference position ELON_REF= 239.457560 / ecliptic longitude at reference position (deg) ELAT_REF= -42.600007 / ecliptic latitude at reference position (deg) GLON_REF= 315.719278 / galactic longitude at reference position (deg) GLAT_REF= -0.671453 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 13465 / PEP proposal identifier LINENUM = '11.003 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108333303E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'C7W' / program id (base 36) PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '11' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'VI ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S330X050 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430L ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.300000000000E+03 / central wavelength SS_NSTEP= 3 / proposed number of peakup search steps SS_STPSZ= 250.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 24 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 77 / word 11/14 (0-255) PSTRTIME= '2014.205:22:03:37 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2014.205:22:06:06 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV330X050 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '13465_3 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.197501876358E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.076802331389E+01 / declination of v1 axis of st (deg) PA_V3 = 274.962006 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S7QX000330F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S7QX000694F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 4.991455704346E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 3.145261564486E+02 / position of space telescope x axis (km) POSTNSTY= -6.307810110362E+03 / position of space telescope y axis (km) POSTNSTZ= 2.842386648056E+03 / position of space telescope z axis (km) VELOCSTX= 7.347489178989E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -4.649811046524E-01 / vel of space telescope along y axis (km/sec) VELOCSTZ= -1.844925266142E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.239656883754E+02 / right ascension of the sun (deg) DEC_SUN = 1.977570659161E+01 / declination of the sun (deg) RA_MOON = 9.986293602190E+01 / right ascension of the moon (deg) DEC_MOON= 1.825063479330E+01 / declination of the moon (deg) VELABBRA= 19.952959 / aberration in position of the target ANNPARRA= 0.205775 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.198673206891E+02 / right ascension of reference object (deg) DEC_REF = -6.083250760467E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.326016000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.200436949899E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.609956247047E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.863911088257E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.597386300763E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788431564625E-01 / cosine of inclination ECCENTRY= 4.938209304037E-04 / eccentricity ECCENTX2= 9.876418608075E-04 / eccentricity times 2 ECBDX4D3= 1.605636443093E-10 / eccentricity cubed times 4/3 ESQDX5D2= 6.096477782621E-07 / eccentricity squared times 5/2 ECBDX3 = 3.612681996959E-10 / eccentricity cubed times 3 FDMEANAN= 1.745864255528E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.326285252628E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.110848539056E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 1.603241922496E-01 / argument of perigee (revolutions) MEANANOM= 8.672215377421E-01 / mean anomaly (radians) RCARGPER= 1.086896734316E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 4.664648901807E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.771107904240E-01 / sine of inclination SEMILREC= 6.925811822379E+06 / semi-latus rectum (meters) TIMEFFEC= 9.326613330000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.328538170000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430L ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S330X050 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;G V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'G V-IV 'ALIAS1 = 'ALP-CEN-B ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 1.330000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.100000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 7.470000000000E-01 / target parallax from proposal RA_PROP = 2.198700916667E+02 / target right ascension from proposal (degrees) DEC_PROP= -6.083261833333E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -3.820000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.100000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2013.4' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Alpha Cen: Climbing out of a Coronal Recession? (year 3 continuation'PROPTTL2= ') 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136806000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248360000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350548000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.357230000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -9.660330000000E-07 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 9.657600000000E-07 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 3.747800000000E-04 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -3.750000000000E-04 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.137811000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -3.909200000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.135442000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -4.146700000000E+00 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.135801000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 3.909200000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.138170000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 4.153000000000E+00 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 24 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 784 / Telemetry optical mode number OPTMODE = 'G430L ' / Optical Mode Name MODE_ID = '3.1 ' / IDT Mode identification CENWAVE = 4300 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 62 / Slit Number SLITSIZE= '0.33x0.05 ' / aperture field of view TFPFNAME= 'S330X050' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS2' / Search method for peakups NUMSTEPS= 3 / Number of peakup search steps PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion PEAKSTEP= 250.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 748587.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.3901 / (dgC) CEB Radiator temp OCLLMP1T= 10.3827 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.75481 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.46154 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.63654 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.95865 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.6417 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.8179 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.6938 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.05 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.96367 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.825 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.8313 / (dgC) Fitting A temp OFITBT = 18.8854 / (dgC) Fitting B temp OFITCT = 5.97539 / (dgC) Fitting C temp OHDM15V = -14.9794 / (V) Hold Mode Regulator - 15V OHDP15V = 14.619 / (V) Hold mode regulator +15V OHDP5V = 4.73596 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 34.4333 / (dgC) M1 heater control temp OM1HTRW = 0.250833 / (w) M1 heater power OM2HTRT = 36.5074 / (dgC) M2 heater control temp OM2HTRW = 0.387875 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.8135 / (dgC) MEB 2 radiator temp OMBCSPT = 35.2 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 29.3969 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6672 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6672 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.5766 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.2161 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.3 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.85 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.125 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1445 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.6107 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1427 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 24.7906 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.84455 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.0375 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.98446 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.425 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 12.0911 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.2 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.99214E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.35 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.76426 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.2 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.06 / (w) Thermal controller power, zone 3B OTECINV = 6.0901 / (V) TEC input voltage OTECTCV = -7.74415 / TEC temp control voltage OMBMC15V= 14.6774 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.8802 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.86731 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.8158 / (V) LVPS CEB +15V OPSCB35V= 33.8908 / (V) LVPS CEB +35V OPSCB5V = 5.45597 / (V) LVPS CEB +5V OPSCM15V= -14.308 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.485 / (V) M1 Low bias voltage OM1M15VC= 0.0703785 / (A) M1 -15V current OM1M15V = -15.746 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -42.0513 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.489621 / (A) M1 +5V current OM1P5V = 5.19414 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00488 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.7169 / (dgC) M1 charge amplifier temp OM1DCDT = 37.9611 / (dgC) M1 decoder temp OM1MCET = 36.4959 / (dgC) M1 MCE temp OM1LVPST= 41.3799 / (dgC) M1 LVPS temp OM1HVPST= 40.6473 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 8.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.072967 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0276923 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.473993 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.9843 / (dgC) M2 charge amplifier temp OM2DCDT = 37.9611 / (dgC) M2 decoder temp OM2MCET = 35.7633 / (dgC) M2 MCE temp OM2LVPST= 41.1357 / (dgC) M2 LVPS temp OM2HVPST= 37.9611 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.2339 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.04245 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08137 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.8833 / CB clock X pwb temp OCBCLKA2= 30.7304 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.08137 / (V) CB clock drive X +5V OCBCPAA1= 14.765 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.08137 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.07867 / (V) CEB phase 3 upper low V OCBRABHV= 11.9483 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.90388 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94263 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93307 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.9329 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96712 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03019 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.11542 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.99128 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.03019 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.7998 / CEB timing pwb temp OCLM5V = -5.10585 / (V) Calibration lamps -5V voltage OCLM5VC = -0.000412465 / Calibration lamps -5V current OCLP30V = 29.8236 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0132594 / Calibration lamps +30V current OCLP5V = 5.27597 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 33685 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00763371 / (A) Slit Wheel motor current OSWMVEL = -0.00666193 / (Rad) Slit whell motor velocity OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 137 / Mode select cylinder 3 shaft position OMSC4SP = 221 / Mode select cylinder 4 shaft position OMSC1CRP= 61206 / Mode select cyl. 1 resolver position OMSC3CRP= 2311 / Mode select cyl. 3 resolver position OMSC4CRP= 27873 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 511 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 62 / Control section slit position OCSDQEXJ= 1526 / Control section data queue extract OCSDQINJ= 1526 / Control section data queue insert OCSXQEXJ= 35 / Control section Expos Que Extract OCSXQINJ= 38 / Control section Expos Que Insert OCSOBSQ = -26437 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4300 / Control section optical scan position OCSOPMDP= 784 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 3463 / Control section dump pointer OCSFILLJ= 3463 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 186 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= -50 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªC7W11VIºƒ…#lM±ÐO“ÆI þó"ʤð¼@½ÃÃÐÁ`ÂPß@ËðÌ0ªP°€¿°²@€°Ðª¼ @Þ`½PÎÉÉÉÔ¡@ÖP¢¿Ðþ ¨àÁ Á@ÀÈ`àÑðÑð¹PÐнPµ ¸ð¸°á áÀÍÎàÍðÍ€¨pµp¥@²@¨àÀ`¨€žà¨À¢¨€ œPàÞÀàp¿æíPÆ$  ( +ÿ¡ ˜»3]!d «fÕO Ä Î ÐÆùúô +7b Ø ™Ö »½17 Õ^•G Ã Ì ÑÅöúñúÔÀÃ^À^ð^ð_@„ ê°%PÁ@Úàï€%0ÁÀÚ°ÔàÀˆÀ„€  ÁÀßP  ÁÀß`LàT°˜ `˜°€˜ €˜À`F@¦ F@¦™€€™ð~h@~@h@`f@€f@~Àh@~@h@@f@eà~@h€ f€`Â0~@g~@h`ÀfÀg@€À¦à€ ¦À}à>àà@~Ä@€àƒ•“À°€à€0EU â^‰Ýï lá d ø€„ðñ>öö#&»Ì‘ ‡ ‡¥€ÌàߺÿÿÿÎF‚__–d=ÿ"ʤð¼0½ÃÃÀÁ`Â`ß@ËðÌ0ªP°€¿°²P€°Ðª¼ Àß À ÎÉÉÉÓ0ŸÐÔp¡0¿Ðþ ¨àÁ Á@ÐÈ`àÑàÑà¹PÐнPµ°¸ð¸°â0â@Í ÎàÍàÍ€¨ ¶à¦°²p§@¿€«€¡€¦ð ©¢œ ßPá ¿ß`å Ä€  ( +ÿ¡ —»3Z!d «fáP Ä Î ÐÆøúô +7b Ø ™Ö »½17 Õ^”G Ã Ì ÑÅöúñúÔÀÃ^À^ð^ð_@„ ê°%PÁ@Úàï€%0ÁÀÚ°ÔàÀˆÀ„€  ÁÀßP  ÁÀß`LàT°˜ `˜°€˜ €˜À`F@¦ F@¦™€€™ð~h@~@h@`f@€f@~Àh@~@h@@f@eà~@h€ f€`Â0~@g~@h`ÀfÀg@€À¦à€ ¦À}à> ‚Àß°€ðÃàðƒ•“À €Ð€EU â^‰Ýï lád``€„ðñ>öö#&»Ì‘ ‡ ‡¥€Ìàß»ÿÿÿÎI‚__–d=ÿÌ>m°3Çúæ l+ñÒUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits b/lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits new file mode 100644 index 00000000..dc04d2be --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits @@ -0,0 +1,2 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocmv0lw6q_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'CD-59D3300 ' / proposer's target name RA_TARG = 1.611740875000E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.978243055556E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 13760 / PEP proposal identifier LINENUM = '0L.001 ' / proposal logsheet line number PR_INV_L= 'Massa ' / last name of principal investigatorPR_INV_F= 'Derck ' / first name of principal investigator PR_INV_M= 'L. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-09-29' / UT date of start of first exposure in file TTIMEOBS= '23:43:50' / UT start time of first exposure in file TEXPSTRT= 5.766098877427E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57660.99082468 / end time (MJD) of last exposure in the file TEXPTIME= 1.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792903059028E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F25ND3 ' / aperture name PROPAPER= 'F25ND3 ' / proposed aperture name FILTER = 'ND_3 ' / filter in use APER_FOV= '24.7x24.7 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$0ac1554lo_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 2130.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Filling the gap --near UV, optical and near IR extinction 'OBSET_ID= '0L' / observation set id TARDESCR= 'STAR;MAIN SEQUENCE O 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'POINT ' / type of acquisition CENTMETH= 'N/A ' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 29.240311 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 12.000000 / the minimum value of the data DATAMAX = 394.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 164.437 / position angle of image y axis (deg. e of n) SUNANGLE= 60.164425 / angle between sun and V1 axis MOONANGL= 63.714752 / angle between moon and V1 axis SUN_ALT = 30.925177 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-29' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:43:50' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.766098877427E+04 / exposure start time (Modified Julian Date) EXPEND = 5.766098878005E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 506.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1560.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 270242 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.94749 / (V) CB summing well A Lo OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCCDHTAV= 18.741400 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 394.0 / maximum value of good pixels GOODMEAN= 31.502701 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €$€€€€€€€ €!€€€#€"€€€!€"€€!€€€!€€€€!€€€ €€ €€!€€"€€€ € €€€€€€€€€€!€"€€€"€€€!€ €!€€€€€ €!€€€"€ € € € €€€!€ €€€ €€€€€€€!€ €€€€€€€€"€ €€'€*€€h€ €€!€€€!€€ €#€€€ € €€€ €€€€!€€€ €€€ €"€€ €€€€€€€€ €€€!€!€€ €€€ €!€€€€#€€€!€ €€€€€ € €€€"€ €€ €#€ €€!€€€€€ €€€!€€€!€€€€!€€€ €€€€€€€"€&€&€ €i€€ €€€!€#€€€$€€€€ €€€"€!€ €#€!€€€ €€€€"€€€"€€€€ €€€€€€ €!€€€ €€€€ €€ €!€€€ €!€€ €€€€"€!€€€"€€ € €!€€ €"€€€€€€€!€ €€€ €€€"€€€€€€€€€€€%€&€€j€€€!€"€€ €€€€€€ € €€€€€ €€ €€€€€€€€€€€ €€"€!€!€€€"€€ €€€€!€!€€€$€€€"€€€!€ €€€"€!€€€!€€€"€€€€!€€€!€€€ €€€€!€€€€€€€€€€!€€€€ €€€€*€(€€h€€€!€€€€"€€€ €€€€ €€ € €!€€€!€€€!€€€€€ €!€"€€€!€"€ €€€!€€"€€€!€ €€€!€ €€€!€€€€€€"€ €€€"€ €€€ €€€ €"€ €€ €€€€€€€€€€€€€€ €€!€€€€€€€"€)€)€€h€€€ € € €€#€€€ € €€€€€€€€€€€ €€ €€€€!€€€ €€ € €!€€€!€€ €"€!€€€ €€€€"€ €€€ €€ € €€€"€€€ € €€€€€ € €€€ €€ €€ €"€€€ €€€€€€ €€€€€€€€ €€€'€*€€g€ €€€€€€ €€€€€ € €€€€ €€ €"€ €!€€€ €€€"€€€€€€€€€€ €€€€!€ €!€€€€€"€€ € €€€€€€"€€€€ € €"€€!€€€!€#€€€€€€€€€€€€€€!€€€!€€€€€€€!€ €€(€*€€h€ €€"€ € €€"€€€€€€€€€!€€€ €€€€!€€!€€ €"€€€€"€€€€€€€ €€ € €€ € €€€€€ €€€€€€ €€€€€ €€ €€€!€ €€€€€€ € €€€"€€!€€€€ €€€€€€€€€€ €€ €€'€+€ €g€ €€€€€€€ €€€€€€€"€€€€€€€€€€€€€€€€ €€€€€€€€€€€!€ €€€€ € € €€!€!€€€€!€ €€"€€€!€€€€ € €€!€€ €€ €€!€€ €€€€€€ €€€€€€€€€ €€€€ €(€(€€g€"€!€€€€€€€!€!€ €€€€€€€ € €€€€€ €€€€€ €€€€€€€€€ €€ € €€ €€ €€€€!€ €€ €€"€€€ € €€€€ €€€€ €€!€€€€€€€€€€€ €"€€€"€€€€€€€€€ €€€€€'€*€€j€!€ €€€€€ € €€ €!€€€ €€ €€ € €€"€€€€ €€€€€€€€€ €€€€€"€€ €€!€€€€ €!€€ €€€ €€!€€!€€€ €€ € €€€"€ € €!€ €€€!€ €€€!€€€!€€ €€ €€€€€€€€ €€€€"€'€(€€i€€€€€ €€€€ €€€€€€€€€!€€ € €€€€€€€€€€€ €€€!€€€ €!€ €€€€€€€!€€!€€!€€ €€!€ €€€€€!€€€€€€€€€"€€€€#€€€€€€€€€€ €€€ €€€€€€€€€!€&€'€€i€"€€ € € €"€ € € €€€"€!€€#€€!€€!€€ €€"€€ € €€ €!€"€€ €€ €€€€€!€€€"€"€ €€ €€€€€€€!€ € € €€!€€€€€ € €€€€€ € €!€€€€€€ €€€ € €€€ €€ €€€€€€€€ €€€(€'€€i€€€€ € €€€!€!€€"€ €€€ € €€ € €€€€ €€€ €€€€ €€€€€€ € €€€ €€"€ €€€ €€€€€€€ €€€€!€€€€€€€ €€€!€€€€ €€€€ €€€€€€!€€€€ €€€€€€€€€ €!€€*€'€€i€"€!€€€ €!€€€€€€€€€€ € €€€ €€€!€€€€!€€ €€€€€€€€€€ €€€€!€!€€€€€€"€ € €€"€€€€€€€"€€€!€"€€€"€€€ €€€ €€€€€€€ € € €€€€€€€€€ €€€€€&€)€€f€€€€€€€€€€ €€€€€€"€€€€ €€€€€€$€€"€€!€€€€€ € €€€€€ €€€ €€€ €€€€€€ €!€€ €€!€€€"€€ €€€€ €€!€€€€€€€€€ €€€€€!€ € €€€€ € €€€€€ € €*€(€€j€!€€€€€ € €€€€€€€ €€ €€€€ €€€€€€€€€€"€€€€€€ €€!€€ €!€€€"€€€€€"€€€€ €€€€€ €€€ €€ € €€€€€€€€€€€"€€€ €!€€€!€€€€€€€€ €€€€€€ €&€(€€h€ €€€€€€€€€"€€€!€€€€!€€€ €!€€€ €€"€€€€"€€ €€€€ €€€€"€€€ €"€€€ €€!€€€€€€!€!€€ €!€!€€$€€ € €€€€€€€"€€€ € €€€€€€€€€€€€€€€€€€€€!€'€*€€g€ €€"€ €€€€€ €€€€!€!€€€ €€€€€€ € €€€$€€€€!€€€€€ € € € €€!€€ € €"€€€"€€ € € €€€ €€€€!€€€€€€ €€€€!€€€ € € € €!€€€!€€€€€€€€€€€€€€€€ €!€+€'€€j€ €€ €€€"€ €€€!€€€€ € €€€€€€"€"€€!€€ €€ €€€€€€ €€€€€€€€"€€€€€€!€#€€#€!€ €€!€ €€!€€€ €!€€€€ €€€!€€€€ €€€!€€€€!€€€€€€€€€€€€€€ €€!€(€)€€h€ €€€"€€€€ €€€€€€!€€€!€€€€€€€ €!€€ €!€!€ €€€€€#€€€!€€€€ €€€!€€€€ €€€!€€€!€!€€€#€€€€ €€€€€€€ €€€€ €€€ €€€€ €€ €€€€€€€"€€€!€€€€)€)€ €g€!€€€ €€€€€€ €!€!€€€€€ € €€€€ €€€ €€€!€€€ € €€ €#€€ € €€€€$€ €€ €€€€ €!€€€!€€€€€€€!€!€€ € € €€ €€€ €€€ €"€€€€€ € €€€!€€€€€€€ €€€€€€€'€*€€g€ €€€"€€€€!€€€€€€ €€€€€!€€€€€€!€€"€ €€€ €€ €€€"€!€€€€€€€ €€ €!€€€ €€!€€€€€"€ €€ €"€€ €!€ €€ € €€€#€ €€"€€€ €!€€€ €€€€ €€ €€€€€ €€€€€%€+€€g€€"€€€€ €€€ € €€ €€€"€ €€€€€€ €€€ €#€€€!€"€ €!€€€€"€€€€!€€€!€€ € €!€ €€ €!€€ €"€ €€!€€€ €€€€#€€ €€ €€€€€ €!€ €€€!€€€ €€€ € €€ €€€€€€€€€!€'€+€€h€ €"€€€€€€€€€€!€€€ € €€€"€€€ €€€€#€€€€#€€#€€€€€€€€!€ €€!€€€€"€ €€!€!€€€#€ €€€€€€!€€€€€€€ €€€€€€€ €€€ €€€ € €€€€€€€"€€€€€€€ €(€%€€k€€€ €€"€ € €€!€€€!€€ €!€€ €€ €€ €€€€€ € €€€€€€"€€!€€!€€€€"€€€ €€€!€€€ €€ € € € €€!€"€€€ €!€ €€ € € € €€€€ €"€ €€ € €€€€€"€€€€€€€€€€€ €€€"€)€)€€i€ €#€ €€€!€€€ €€€ €€€€€!€€€!€€€€€€€ €€€ €!€€€€€€"€!€!€€!€€€ €"€€€ € €!€€€€€€€ €€€€€!€€€"€€€ €€€€#€€€€€€ €#€ €€€€€ €€€€€ €€€€ €€€(€(€€k€€ €€ €€ €!€€€ €€ € €€€€ €€€€€€€€€€€€€€€€€ €€ €€€€!€ €€€€ €€€!€!€€ €€€ €!€€€ €€€€€€€!€"€€€!€€€#€€€€€€€"€€€€ €€€€€€€€€€"€€€!€)€$€€k€ €€ €€€!€€€€€€€€!€!€€€ €€€ €€€ €€€€"€€€!€€€€ €€€€ €€€"€€€ € €€€!€ €"€ € €€€ € € € €"€€€!€ €€!€ €€€ € €€€€€€€€"€€€€!€€€€€€€ €€€!€ € €€(€(€€h€€€"€!€€!€ €€€"€ €€€€ €€€€€€"€ €€ € €€€€ € € €€€€ €€ €€!€ €€€€ €€€€ €€€€€€€ €€€€#€€€€ € €€ €€€€€€€"€!€!€€€€€€ €€€€€€ €€ €€€€€€€ €%€&€ €h€€€€ € €€ €€ €$€ €€ €€!€€€ €€€€€ €€€€€ € €€€€€€€€€€ € € €€ €€€ €€€!€€€ €€"€€ €€€€ €€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€€€)€+€ €f€€€ €€€€€!€€€ € €€!€€€€€ €€€€ €€€€€€€!€€€ €€€€!€ €€€€ €€!€€€ €€#€€€€ €€€!€!€€€"€€€€€!€€€€€ €!€€€€ €!€€ €€€€€€€€€€€€€€€€€€€(€)€€f€€€€€€€€ €€€€€€ €€€!€€€ €€€€!€€€€€€€€€€€!€€ € €€ €€€!€€€€"€€€€ €€!€€€€!€!€€€€€ €€€€€€ €€ €€€€€€€€€€€€€ €€€ €€€€ €€ € €€€'€*€€i€€€€ € €€€€€€ €€€ € €€€!€€€€€!€€€€€ €€€ €€ €!€€€€ €!€€€€€!€"€€€#€!€€€"€ €€!€ €€€!€€€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€)€'€€j€€€!€€!€ €€€!€€€€€ €€€€€€€ €€ €€€€!€ €€€€ € €€€€€€ €€ € €€€€!€€#€ €€€€€€"€!€€!€ €€€€€€!€ €€€!€ €€€€€€€€€€€€€€€€€€€€€ €€€ €€€*€'€€i€ € €€€€ €€!€€€€€ €€€ €€€€"€ € €€€€ € €€€€€€€€€€€ €"€!€€!€€€€€ € €!€€€ €€€!€€€"€€€€ €!€€€€€€€€€€€€€€€€€€€€€ €€!€€€€€ €€!€€€€*€)€€h€ €€"€€€€€€€€ € € €€"€€€€ € € €€€€"€€!€€ €"€€€€€€€€€!€€€€€€€!€ € € €"€€#€€€ € €€€€€€€€ €€!€ €€ € €€€!€€€€!€!€€€€€€€€€€€€€€€€"€€ €(€*€€i€ €€€ € €€ € € €€ €€€€ €€€€€€€!€€ €€ € €€ €€ € € € €€€€ € € €€€€€!€#€"€%€&€ €€€"€!€€!€"€€ €#€€€€€ €€ €€€€ €€€€!€€€€ €€€€€€€€€€€€€€€ €€€%€*€€f€€ €€€€€€ €"€€ €€€€€€€€ €€€€€€€€"€€€ €€€ €€€!€€€€€ €€€€ €"€(€+€*€&€$€ € €"€"€€€€€€€€!€ €€€€!€ €€€ €€€ €€"€€€€ €€€€€ €€€€€€€€€€€'€)€€e€ €!€€€€€€€€€€"€€€€ € €€!€€€€"€€€!€"€€€€€ €!€€€€ €€€ €€ €€#€€&€7€<€>€6€)€"€"€"€ €€"€!€€€ €!€€!€€€ €!€€€!€€€€"€€€!€€€€ €€€€€€!€!€€€ € €€€ €%€)€€f€ €€€€€€€€ € €!€!€€ €€!€€€ €€€ €!€€€!€€€€€€€€"€€ €€€€"€€€!€!€&€+€G€œ€†€@€*€!€"€$€ €!€ €€€ €"€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€ €€€!€€€€ €(€(€€j€€ €!€€ € €€€€ €€"€ €€€"€€ €!€ €€€!€€€€ € €€!€!€€"€€!€€€€€€ €€€€'€7€cŠ8€O€1€&€#€'€ €€ €€€€#€€€€"€"€€"€ €€€€€€ €€€€€€€!€€€€€ €€€€€€€€€ €*€)€€i€€€"€€€ €€€€€€€€ €€€€€ €€€€€"€€€ € € €€!€€€ €!€€"€€€€!€€€"€"€7€Z€œ€”€F€4€)€"€"€#€ €€!€!€€€€€€ €€€€€ €€!€ €€€"€€!€€ €€ €€€€!€€€€€€€ €€€!€(€(€€j€€€€€€€"€€ €€ €€ €"€€€€€€ € €€€€€€€€€€€ €€€€ €€ €€!€ €!€ € €$€+€3€6€6€5€'€$€€!€#€€€ €!€€€ €!€€"€€€ € €!€€!€ €€!€ €€€!€ €€€ €!€€€€€€€€€€ €€€*€+€ €j€€€€ €€€!€€€€€€€€ €€ €€€€!€€€€€€€!€€"€€€€€ €€€#€€€!€€€€#€!€"€&€&€ € €"€€€€ €€ € €€€€ €€€€€€€"€€€€ €€€€€€€€€ €!€€ €€€€€€€"€ €€€*€(€€i€"€€ €!€€"€€€€€"€ €€#€€€ €€€€!€€€!€"€€€ €€€€ €€€ €€€€"€€€€€ €"€€€€"€€ € € €€!€!€€€ €€€"€!€€€"€"€€€€€€ €#€€!€!€€€€€€€€€€!€€€€ €€€"€€ €'€*€€i€ €€€ €€€€€€€€€€ €#€€€€"€€€ €!€€"€ € €€€€€€€€€€€€!€€ €!€€€!€!€€€!€"€ € € €€€"€€€€"€€€€ €€ € € €€€€€€!€!€€€€€€ €€ €€€€€€€€"€€€ € €€*€*€ €g€€!€€€€€ €"€€€"€ €€€€€€"€€€€€€€#€ €€ €€€!€"€€€"€ €€€ €€€ €!€€ € €€€€"€€€ € €€€€€€ €€€!€€€€€€€€€€€ €€€ €€€€ €€€€€€ € €€€€€€€ €€)€)€€g€ € €€€!€€€ €€€€ €€€€ €€ €"€€ € € €€"€€€€€€€€ €€€ €€€€ €€€!€€€"€"€€€ €"€€ €#€!€ €!€ €€ € €€€ €€€ €!€€ € € €€"€ €€€€€€€!€€€€€€ €€€€€€€€ €(€+€€h€ €!€€€€€€€€€€€€€€ €€€"€€€€€€€€€€!€€€€!€€€!€!€ €€ €€€!€"€€!€!€€€€ €€ €!€€€€€€ €€€€€"€€€ €€€!€€€€ €€€€€€ €€€€€€€€ €€€ €€€€ €$€)€€h€€ €€€€€ €€!€€€ €!€€€!€!€€ €!€€€€€€!€€€€!€ €€€€€€"€€€!€€€€ €€€€€€€!€€€€€ €€ € €€€€€€ €€€!€€ €€ €€€€€€"€#€€€ €€ € € €€€!€€€€€€€"€'€'€ €g€€€€€€€€ € € €€€€€€€!€€ €€ €€!€!€€€"€€€€€€€!€€€€€€€€€ €€€€€€€€ €€€ €€€€€€€€!€€€€€€€€€ €€"€€ €€€!€!€€€"€€€€$€€€€€€€ €€€!€&€*€€k€ €€€€€€€€€€!€€"€€€ € € €€€€ €€!€ €€ € €€€ €€€!€€ €€€€€€€€€€€€ €€€!€€€€€€€€"€ €€€€€!€€€!€ €€€!€"€€€!€€€"€€€€€€€€€ €€€€€ €€€€)€'€€h€ €€€ €€€€€€€!€€ €!€ €€€"€€€€ €€"€ €€€!€€€!€ €€!€!€€€!€ €€€!€€€€€€€€€€"€€ €€"€€€€ €€€!€€ € €€€€€€€€€€ €€€€€€€!€€€ €€€€€€€€"€€ €(€+€€i€ €€€€€€€€€€€ €€€€!€€€€€€€€€!€€€ €€€€€€€ € €€€€€€ € € €€€€€ €€€ €€!€€"€ €€ €€€ €€ €€€€€ €!€€€€€€€!€€€€€€ €€"€€€€€€€€!€€€ €&€*€€f€ €€€€€€€€€ € €€€€€€€€€€!€€€ € €€€ € €!€€€€€€ €€€ € €€€€ €€€€€€ €€€€€€€ € €€€ €€€€€€"€€ €€€€€€€!€ €€€"€€€€€€€€€ €€€€€ €€"€'€(€ €h€ € €€€€€€€€€€ €€€ €€!€€!€€€€€€€!€ €€€ €€€€€€€ € €€€!€ €€€€€€€€!€€€€!€€€ €€ €€€€€€€€€ €€€ €€€€€€€€€€€ €€€€ € €€€€€€€€€"€(€(€€h€€ € €€€€€€€ €#€€€€€€€€€€!€€ €€!€€€ €€€€!€€€€ € € €€€ €!€€"€€€€ € €"€ €€€ €€€€ €"€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€)€+€ €i€€€€!€€ €€ €€€ €€€€€€€!€€€€€€ €€€€€€€€ € € € €€ €€€ €€€€€€€€€€€€€€"€€ €€€€€ €€"€€!€€€!€€"€€!€€€€€€€€€€€"€€€€€€€€€€€ €€€(€(€€f€ €€€ €€€€ € € €€€#€€ €€€ €€ €€€€€!€ €€€€€€€€€€€€€!€€€ €€€€ €€ €€!€!€€ €€€€ €€€!€€€€"€€€ € €€ €€€€€€€€€€€€€€"€€€€€€€ €€€€ €€*€)€€e€ € €€€ € €€€€€ €!€€ €!€ €€ €€€€ €€€€ €€€€"€€€€€€€€!€€ €€€€€€€!€€€€€€€€€ €€!€€€"€€€ € €€ €€€€!€€ €€€€€!€€€€ €€€ €€€€€€€€€€€€(€(€€g€ €€!€€!€€€€"€€ €"€ €€€€€€"€€€ €€€€€€€€ €€ € € €€ €€ €!€!€€€"€€€€ €€€ €€€€€ €€ €€€€ €€€€!€€€€€€!€€€€€€€€€€€!€ €€€€€€€€€!€€€ €!€'€&€€i€€€€€€ €€!€€€€€"€€€€€€€€€€€€€"€!€€€!€€€ € €€€ €€€ € €€€€€€ €€€€€€€€€ €€"€€ €€!€€ €#€€!€€ €€€ €€ €€€€€€€€€ €€ €€€€ €€€€€€€#€&€&€€i€€!€€€€€€€ € €€€€€€€€!€ €!€€€€!€€€"€€€ € €€€"€€€ €€!€€ €€€ €€€€€ €€ €€€"€ €€€ €€!€ €€€€ €€€ € €€ €€€€"€€€€€ €€€!€€€€€€€€€€!€€€!€*€(€€i€€€€€€ € €€€ €€!€ € €€€€€€#€€€€ €€€€"€€€ €€€€€€€€€€"€€€ €€€€!€ €€€"€!€€€€€#€€€!€"€€€ €€€€ €€€!€!€€€€€€"€€€€€€€ €!€€€ €€€€€€#€(€*€€m€ €€ € € €€€ € € €€€ €!€€€€€€"€€€ €€!€€€€€€€ €€€!€ €€€!€€€!€€€€€€€"€€ €"€€!€ € €€ €€€ €€€€€€€!€€€€ €€€€€ €€!€ €€€ €€€€€€€!€€€!€"€€ €*€&€€i€!€€€€€€€€€€ €€€"€#€€€ €€€ € €€ €#€€€€!€€€ €€€!€€€!€€€ € €€€!€ €€€€€€€!€€€ €€ €€€€€€€"€€€€€!€€€!€€€€€€€ €!€€ €€€€€€€"€€€€!€€€)€(€€h€€€€!€ €€€€€€!€!€€ €!€ €€"€ €€€€€€€€€€€€€€!€€€ €€€#€€€€!€ €€€€€!€!€€€!€€€ € €!€€"€€€!€€€€!€€€!€€€€!€€€ € €€€€€€€€€€ €€€€€€€€€&€*€€h€#€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€ €€€!€€€€€!€€€€€€#€€€ €€€€ €!€€!€€€ €€€€ € €€€#€ €€€€€!€!€€€€€€€€€€€€€€€€€€ €"€*€€h€ €€€€€!€€ € €€€ €€€€€€€ €€€€"€€€ € €€!€ €€€€€€€€€ €!€€€"€€€€ € €€!€€€!€ €€€€€€ € €€€"€€€€€€€!€€€ € €€€!€ €€€€€!€€€€€€€€€€€€!€'€*€€f€€€ €€€€€€!€€€ €€€€€ €€"€"€ €€€!€€€€€€ €€€€€€€ €€€€€!€€ €€!€€€€ € €€ €€€€€!€ € € €€€ € €€€€€€€€€€€ €€€€ €€ €€€€€€€€€€€€€€ €&€&€€i€€!€€€"€€€ €€€€€"€€ €€ €€€ €"€€€!€"€€!€€€!€"€€!€ €€€€!€€€€€€€€€!€€€€€€€ €€€!€!€€€€ €€€ €€€ €€€ € €€€€€€€!€€€€€€€€€€€€€€€ €€ €&€'€€h€€€€€"€ €€€€€€€ €€ €€€€€€€€€!€ €€€€€€€€€€!€ €€€€€€ €€€€ €€!€€€€€ €€€€ €€ €€ €€€€€€€€ €€€€!€€€€€€€€€ €€€€€ €€€€€€€€€ €'€&€€h€ €"€€€€€€€ €€€€ €€€€€ €€€€ €€€€€€ €€€€€ €€ €€ €€ € €€ €€€€€ €€"€ €€€€€€ €€€€€€€ €€ € € €€ €€€€€ €€€ €€€€ €€€€ €€ €€€€€€€€€€(€'€€g€ €€€€ €€€€ €€€€"€€€€€€"€ €€€€€€€€€€"€€€€€€€€€€€"€€€ €€ € €€€€ €€ €€"€€!€€€€!€ €€€€€€"€€€"€!€€€"€!€€ €€€€€€€€€€€€€€€€€€!€'€)€€h€ €€€€€"€€€€ €€€€€€ €€€€"€€€€€€ €€€€ €€€€€€€ € €!€ €!€ €€€€€€€€€ € € €€ €€€€€€€€€€ € €€€ €€ €!€€€€€€€€€€€€€€€€€€€€€€€€ €)€(€€j€ €€"€€€€!€€€ €€€€€€€!€ €€$€!€€€ €€€"€ €€"€€€€€€€€"€ €€ € €€€€€€ €€€ €"€€€€€€€€€€!€€€!€ €€€ € € €€€€ €€€€€ €€ €#€ €€€€€€€€€€ €€€)€)€€l€€ €€ €€!€€€€€€€€€€€"€€€!€"€€€€€€ €€€€€!€€€ €€€€€€€€€€€€€€!€€€€€!€€ €€€ €€ €!€€€€"€€€ €€€ €€€€!€€€!€ €€€ €€€€ €€€#€ €€€ € €€)€,€€g€"€€€ €€ €€ €€€€€€€!€€€€€€€!€€!€€€€€"€€€€€€€€€ € €€€!€ €€€"€€€ € €€€ €€€!€"€€ € €€€€€€€€€€€€€!€€€€€€€ €€€€!€€€€€€€€€€ €€€(€)€€f€ €!€€€€€€!€€€€€ €€ €€€!€€€€ €€€!€ €€€!€€€!€ €€ €€€€ € €€ €€€€"€!€€!€"€€€€€€€ €€€ € €€€ €€€"€ € €€!€€€€€!€€ €€€"€€€€€€!€€€€ € €€€!€€&€+€€e€ € €€€#€€€€€€"€€€ € €€€ € €€€!€ € €€#€€€ €€€€€€€€€€!€#€€€ € €€€ €€€!€€€ € €€€ €€€ €!€€ €€€€ € € €€"€€€€ €€€ €€€ €€€ €€€€€!€€€€€ € € €%€*€€h€ €"€€€€"€€€€€€€€€€"€€€€€€ €€€€"€€€€ €€€ €€"€€ € € €!€ €€€€€ €#€€€€ €€ € €€€€#€€€€€€ €!€€€€€€€ €€ €€€€ €€€€€€€!€€€€€€€€€!€€"€'€(€€i€€ €€€!€€!€€€€"€€€ €€€€€€€€€!€€€€€ €!€€€ €€€€ €!€€€€!€€€€€€€€€ €€€€ €€€€!€€€"€€€€ € €€€ € €€"€€€!€€€ €!€€€ €€€€€€€!€€ €€€€€#€(€(€€j€ €€€€ € €€ €€€€€ €€€ €€€€$€ €€€€€€€€€€"€ €€€ €€€€€€€€€€€€€€€€!€€€€ €€€€€€€ €€€€€€!€€ €!€€ €€€€€€ €€€€€€€€€€€€€€€€!€ €(€+€ €l€ €€€€€€€€ €€ €€€ €€€€ €€!€€€€€€€€€ €"€ €€€€€€ €!€€€€ €€€ € €€€ €€€!€€€€"€€€€!€ €€€ €€€€€€€€#€ €€€!€€ €€ €€€ €€!€€€€€!€€€€€€€(€(€€j€€ € €#€€€€€"€€€€ €€€ € €€€€€€€€€€€"€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€ €€!€€€!€ €€€€€€ €€€€€!€€€ €€€€€€€€€€€€€ € €€€€€€#€*€'€ €j€ €€€€€"€€€€€€€€€€€ €€€€€€ €€€€€€€"€€!€€€€€€€€€ €€€ €€!€€ €€$€!€!€€€ €€€ €€€€€!€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€!€€€€"€&€(€€g€€€ €€€€€€€ €€€€€€€€€€!€€€"€€€ €"€€ €€€€€€€€ €€€€!€ €€!€€€!€!€€€€€€!€€€€€€€€"€€€ €€€!€#€ €€€€€!€€€€€€€"€ € €€€€€!€€€€€€€"€'€'€€j€€ €"€ €€ €€€€€€€ € €€ €€€€ € €€€€"€€!€ €€ €€€€€€€€€€€€€€ €€€ €!€€€€€€€!€ €€!€€€ €#€!€€!€"€€€"€ €€ € €€€€€€"€€€€€ €€€€€€!€€!€€€€"€)€'€€j€€€€"€€€!€€€"€ €€€€€€€€€!€€€€ €€ € €€€€"€ €€!€€€€€€€€ €€€!€"€€!€€€€€€€ € €€€ €€ €!€ €€€€ €€"€€€€ € €€"€€€ €€€€€€€€€€€€€€!€!€€!€*€(€ €k€€€#€!€€€ € €€ €€€€"€ €€€€€€€€€€€ €€ €€€!€€€€ €€€!€ €€"€€€€ €€€€€€€$€ €€€"€€ €!€€€€#€€€#€€€€!€€€!€€€€!€€€!€€€ € €€€€€€€ €€"€€€!€'€*€ €j€ € €€ €€€!€€€€"€!€€ €€€€ €€€€ €€€ €€€€!€€€ € €€€€€€€€€€€€€€€ € €€€€!€€ € €€€€ €€€€€€ € €€€!€€€!€!€€€ €€€€€€€€€€€€€€ €€€€€"€*€(€€h€"€€€!€ €€€!€ €€€ €€€€!€€€ €€€€€ € €€€€€€ € €€€€!€€€ €€ € €€€ €€ €€€€€ €€€€€€€€!€€€€€€€€€€"€€€€€!€€€€€€€€€€€ €€€€€€ €€!€€ €*€(€€i€ € € €€€€€"€"€€ € €€€ €€€€€€€ €!€€€€€€€"€€€€€€€€ €€"€€"€€€€"€ €€€!€€€€€€€ € €€!€€€€!€€€€€€€!€€€€!€€€ €€€€€€!€ €€ €€ €€€€€€€€%€*€€h€€!€€€€ €€€ €€€€ €€€€€€€€€€!€€€€€ €€€€€€€€ € €€€ €€"€ €€€€€€€ €€€"€€€€ €€€€€€€ € €€€ €€ €€ €€€€€€ €€€€€€€€€€€€€€€€€ € €(€)€€j€ €€ €€€€ €€ €€ €€€!€€!€ €€€€ €€€€€€ € €€€€€€€€€ €"€€€€€€€€!€ €€€€€€€€€€€ €€€ €€€€ € €€€€€ €€ €€ € €€€ €€€!€ €€€ €€€ €€€€€€€€%€&€€f€ €€€€€€€€€€€€ €€€ €"€€€€€€ €€ €€€€€!€€€ €€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€ €€€ €€€ €€€ €"€ €€ €€€€ €€€€ €€€€€€€€ € € € € €€ €(€+€ €i€€ €€€"€€!€€ €€ € € €€ €!€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ € €'€*€€h€ €€ €€ €€€€!€ €€!€€€€€€€€ €€€€€€€€€€€€€!€€"€€€€€€€€€€€"€€€€€ €€€€€€!€€€€ €€€ €€€€€€€ €€€€€!€€€€€€€€€ €€€€€€€€€€€"€'€-€€f€€€€€ €€€€ €€€€€!€ €€€ €€€€ €"€ €€ €€ €!€€€€!€€€ € €€€ €€€€ €€€!€ €€€ € €€€€€€!€€!€!€€€ €€€€€€€ €€€€ €€€€€€€#€€€ €€€€€€€€€ €€!€&€)€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 394.0 / maximum value of good pixels GOODMEAN= 31.502701 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 10.000000 / the minimum value of the data DATAMAX = 331.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 164.437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-09-29' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:45:01' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.766098959612E+04 / exposure start time (Modified Julian Date) EXPEND = 5.766098960190E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 515.8 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1559.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 270241 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 331.0 / maximum value of good pixels GOODMEAN= 31.967800 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€ €"€ €€ €€€ €"€€€ € €€"€€€!€ € €€€ €€ €!€"€€!€ €€€€€€ € € €€€€!€€!€€"€!€€ € €€€€"€€!€€€€"€€€!€€€€$€ €€€€€€!€"€€ €!€ €€ €€€€€€€!€ € €€€€ €)€(€€j€ €"€€!€€!€€€€ €€ €€ €€€ € € €€!€!€€"€"€ €€!€€€€ €€€ €!€€"€!€ €€!€#€€ €!€!€€"€€€€#€!€€€ €€€"€€!€!€ €€€ € € €!€€€!€"€€€!€€€ € €€€"€!€€"€ €€€"€€€"€ €€'€+€€i€ €!€ €€!€€€"€ €€ €"€ €€!€€ €€€€!€!€ €€€ €€€!€€€!€€€"€€€€!€€€!€#€"€€€ €€ €!€€€!€€€€ €€€!€!€!€€€€€ €€ €€ €€!€€€€"€€€€€€€€€€ €€€€€"€€€"€€(€+€€g€€"€€€"€ €€€ € €!€"€"€!€€!€€€!€ €€€€€!€!€ €€ € €€€"€€€€"€€ €#€€€#€€€€!€€€"€€€ €!€"€€#€ € €!€ € €€ €"€€ €"€€€ € €€€€ € €€€€ € € €€€€€€€€€€ €€€!€)€*€€j€€!€"€€ €!€ €€$€#€ €€€€€"€€€€€€ €€"€€€"€€€ €€€ €!€€€!€€€"€€€€ €!€ € €"€€€ €€€ €€€ €"€"€€ €!€€€!€€€"€!€!€€€€ €"€!€€ €"€!€€ €€ €€€!€€€€€€€€€"€(€(€€k€€€ €"€€ €!€€€ €!€€€€€€!€ €€"€€€€!€€€ €"€€€"€€€€ €€!€€ € €€€€€!€€"€€€€!€ €€€ €!€ €€!€ € €"€ €€ €!€€€ €€€€ €€€"€ €€"€ €€€€€€ €€ €€€€€€€€ €(€&€€g€ € €€ €€€"€€€ €"€ €€€ €€$€#€€€"€€€"€€€€!€ € € € €€€ € €€!€ €€€!€ €€€$€ €€!€€€€ €€ €"€€ € € €€ €"€€€!€ €€!€#€ €€ €"€€"€€€€!€ €€!€!€€€"€€€€ €€€"€ €"€%€+€€g€ €€ €€#€€€"€ €€€!€ €€!€€ € €€€€"€ € € € €€!€€€€ €€€ € €€€#€€€€!€€€!€"€€ € €€ €!€€€ €"€€€!€ € €€"€€!€€ €!€"€ €€!€€€€ €"€€!€ €€€!€ €€€!€€€€€€€€ €+€,€€f€ € €€€"€ € €!€"€€€ €€€ € €€€€!€ €!€"€€€"€ €€"€€€!€ €€ € €€€ € €€€"€!€€ €!€€ € €€€"€!€€!€"€ €€€€#€ €!€"€€ €!€€€#€!€€€"€€ € €"€ €"€€€€!€€€€€€€€€ €€#€'€+€€h€ €€€€ € €€ € € €€ €€€€#€€€€!€€€#€ €€!€#€€€!€#€€ €"€€€!€"€€ € €€ € €€€€ € €€!€€€€€€ €!€€€!€€€!€#€€€"€"€€€€€€€€€"€€€€ €€€!€!€€€ €€€ €€€€!€)€'€€j€ €€ €€€€!€ €!€!€!€€"€ €€"€!€€!€!€ €€€"€€ €"€ €€"€!€€€ € €€ €€€€!€!€€ €€ €€€€€!€"€€€#€€ €!€!€€€€!€€!€"€€ €€€!€#€ €€!€"€€€!€ €€€!€€€€!€€€ €€ €€€€!€(€'€€i€ €€€#€€€ €!€€!€€€ € € €€!€ €€!€ €€€$€ €€€#€ €€!€ €!€"€ €€€"€ €€€!€€€ €#€€ € €€€€#€€€€€€#€€€€!€ €€!€!€€€"€€€ €€€ €!€€ €!€ €€!€€€€"€€€€!€€€ €€!€(€)€€g€"€€€"€ €€!€€ €€€€ €€ € €€ €€€ €€€€€!€€€ €€€€"€ €"€!€€"€€ €€!€ €€ €€€€ € €€€ €!€€"€€€!€ €€ €"€!€€€#€€€€"€€ €!€!€€ €!€€€ €€€!€€!€€€€€€€!€€ € €)€,€ €h€€!€€"€ € € € € €"€€€€€€!€€"€!€€€ €!€€€#€ €€ €€€€ €"€€ € €€€ € €€!€ € €€ € €"€ €€€ € € €€!€€ € €"€ €€€!€!€€ €€€!€"€€€!€€€ €€€ €€€€!€ €€ €€€ €€€€!€ €'€'€€i€ €!€ €€!€€€"€ €€€ €!€€€"€€€€ € €€ €!€€€ €€"€€ € €€€€€!€€€€€€ €€€€€!€€€€€€€€€!€"€€€!€ €€!€!€€€"€ €€€€€€!€!€€!€€€€€"€ € €!€€€€€€€"€€€!€(€+€€i€ € € €€€€€€€€€€€€ €€€ €!€€€€€!€€€ €!€!€€!€ €€"€€ € €!€€€!€€€€ € € €€€€€ €€€ €#€€€€ €€€"€€€ €!€"€!€ € €€€€!€€€€€€€ €"€€€!€€€€!€€€ €€€!€*€(€€i€ € € € € €€#€!€€!€ €€€"€€ € € €!€€"€€€"€€ €€!€!€ €€!€€€"€ €€€€"€€€€€€#€"€€"€€€€€€"€"€€€€€€€!€€€!€!€€€€ €€€€€ €!€€€!€€€€€!€€ €€€€€€€ €€ €(€(€ €g€ €€ €€ €€€€€€€€€€"€€ €€€€!€!€€€!€€€€€!€€"€€ € € €€€ €!€€€ €€!€!€€€!€!€€€€€ €€€€€"€ €!€€ €€€€€€€€!€€!€ €€€€ €!€€€!€ € €€"€€€ €!€€ €!€€ €&€+€€g€ € €€€ € € €€ €€€ €!€€ €"€"€ €"€€!€"€€"€€€ €€€€!€!€€€€€€€€€€ € €€€€"€€!€!€€€!€€ €€ €€€"€ €€€ €€€€€ € €$€€€€ € €€!€€€€ €€€#€€€ €€€€€€ €€€(€*€€g€ €€ €€!€ €€€€€€€!€€!€ € € €%€€!€ €!€!€€ €€ €€ €€€€€ €€!€€"€€€€€ €€ €€€€€!€€€€!€ €€!€€€€"€€ €€€€€€€€€€ €€€!€€€"€€€€€€ € €€€€€€€€ €"€'€'€€j€ €€ €€€€€€€!€€€€#€!€€!€€!€€€€€"€!€€€!€€€"€€€€ €€€!€"€€€€€!€€ €!€€€ €!€€!€€€€ € €€€€€€€€"€€€€ €€€€€ €€€€ €€€ €€€€€ €€€€€€€€€€(€*€€e€ €€ €€€!€€€#€€€€ €€€€"€€ €!€€€€ €!€€ € €€ € € €€€€€€€ €€ € €€ €€ €€ €!€€!€ € €€€€!€€!€€€ € € €$€€€!€ €€€€€!€#€€€ € € € €€ €!€€€!€€€€ € €€!€€ €'€)€€h€"€ €€€€€€ €"€€€ €€€ € €!€€!€€€€€ €€"€!€€€ €"€€€ €€€ €"€€€ €€€€"€€ € € €€€%€€€€ €€€€€€€!€€ €€€€€!€€€€"€€"€"€€€€€ € €€ €€€€€€€€€€€"€*€)€€j€"€€€€ € €€ €€€€€€"€ €€ € €€€€€ € €€!€!€ €€€€€!€€€ €"€€!€€€€€ € €€ €%€!€€ €!€€€€#€€€€ € €"€€€€ € €€ €!€!€ €€€€€€ €€€€€ €€!€€€ € €€€!€€€€€(€(€€h€€€€!€€ €"€€€€"€€€ €€€€€ €!€"€ €€€€€€€€€€€€€!€ €€€ €€!€€€"€€ €"€!€ € €€€€ € € €€€ €€€$€!€€€€€€ €!€€€€€€€€€€€€€€#€€€€"€!€€€ € €€€"€)€,€€h€€ €€€€€€ €€€€ € €"€€ € € €€€€€€€!€€€€ €€ €€ €€ €!€€€!€!€€€!€€€€€€€ €€ €€€€ € €!€€€"€ €"€€"€€!€"€!€€€"€ €!€€€€ €€ €€€!€€ €€€€€€€€ €€€ €(€(€€j€ €€€€€€€€ €€€€!€"€ €€€€€ €€€"€ € €€€ €€€ € €€€€€€"€€ €!€!€ €!€€€€€€"€€!€€$€ € €$€€€€"€€€!€"€!€ €€ €€€€ €€€€€€€€€€€€€€€€!€ €€€ €€€!€+€+€€f€€€€!€"€ € €€€€ €€€€€€"€€ €#€€€"€!€€ €€€€€€ €"€€€€€€ €€€€€€ €€€€€!€€!€€€€"€€€"€ €€€!€ €!€ €€!€€€€"€€!€ €€€"€€€€€€€€€€€€€€€ €€!€ €'€)€€i€€ €€"€€ €€€!€€ €€€€€€€€€ €#€€€"€ € €"€€€€€€€€ €€!€€€ € €€ €€€€€!€€ €€!€€€€€ €!€ €€€€€€ €€€€€!€€€ €€"€"€€€ €€€€€ €€€€€ €€€€€€€!€*€)€€j€!€€€#€€€%€€ €€"€€€€€"€€€€€ €!€!€!€!€€ €€€!€€€€ €€€€€€€€€€ €€!€ €€€ €€$€ €€€€"€ €!€€"€ €!€"€€€€€€€€"€"€ € €€!€€€€€ €€ €€€€€€€€€ €€€€(€,€€e€€€ €€ €€€ €€€€€!€!€€€€ €!€€ €!€"€ €€ €€€€€€€!€€€ €€€#€ € €€"€€ €€€€"€ €€ €€€€€"€ €"€€!€€€!€€€€ €€!€€€€!€€!€€€ €€€€€!€€€€€€€€€ € €€ €*€)€€g€€!€€!€ €€ €€ € €€€!€ €€!€€!€€€€€ €€!€€ €€€ € € €€"€€ €!€!€€€€€€€€ €€!€!€€€€€!€€€"€"€€€ €€€ €!€!€€!€€"€€ € €€!€€€!€ €€€€€€€ €€€ €€€€!€€€!€*€(€€j€€!€€ €€€ €!€€€ €€€€€ €€€ €!€€!€ € €!€€!€ €!€€ €€€!€ €€€€ €€€€ €€"€ €€€!€ €€"€€€€€€!€€€ €€ €€€"€€"€€ €!€ €€ €€€ €€ €€€ € €€ €€€€€€€ € €€€!€*€)€€l€€€€ €€€!€€€ € €€€€€€€€€€ €€ €€€€€€€ € €€€€!€"€€ € €€ €€€€!€€ €!€ €"€€€€€€ €€€ € €!€€€€€€€€€%€€ € €€€€!€€€€€€ €€€€€€!€€!€€ € € €€&€)€€j€ €!€€€€€€!€ €€€€ €#€€€ €!€€€€€€€ €€€!€ € €€€€ €€€ € € €€ € € € €€€€!€€ €"€€€ €€€€ € €€"€ €€€!€!€ €€"€ €!€ €€€€€!€ €€€ €€€!€€€€€€€€ €€€€#€&€*€€h€!€€ €€€€ €!€€€€€€ €€€"€€€€!€ € € €€€!€!€!€ €€€€€€!€€€€€€€"€€!€ € €!€"€€!€€€€ €€€"€€€"€ €€€%€ €€ €€€€€€ €€!€€€ € €€€€ € €€€ €€€€€€€ €€&€*€€h€ € €€€€ €"€€€€€€ €!€€€ € €€!€€€!€ €€€€ € €€€€ €€€€€€€ €€€€€€€€€"€!€ €€!€€€ €€!€!€€"€€€!€!€€"€€€€€"€"€€€ €€ €€€€€€€€€ €€ €€ €€€ € € €%€'€€f€€€€ €€€€€ €€€€€!€€ €€€€€€€!€€€€€€€€€€€€!€€€€ €€€ €€€€!€ €€"€!€€€!€€€€€€!€€"€ €€€€€!€"€ €!€ € €€€ € €€€€€€!€#€€€"€ €€€€€€ €!€€"€*€+€€h€ €€€€!€€!€€ €€€!€€€€"€€ € €€"€€ €€€!€€"€€ €€€€€!€ €!€€€€€!€ € €€€ €"€€€€!€ €€€!€ € € €€ €€ €€€€!€€ €€€€ €!€€€€ €€!€€"€€€€€€€!€ €€€€€€ €(€)€ €i€ €€€!€€€ €€"€€ €"€ €€!€ €€€€€ €€"€!€€ €€€#€!€€€€"€€€€!€"€ €€€€"€ €!€"€$€"€!€ € €€€ €€€€€€ € €€€ €!€€!€€€ €€€€€€€ €!€ €"€ € €€€€€€€€€€€€€ €'€*€€i€ €!€#€€€ €"€€€ € €€€ €€€"€€€€€ €€ €!€€€€ €€!€ €€€€€ € €!€#€€€€!€€€!€#€€€€"€€€€€€€!€€€ € €€€€€€€€€€ € €€ € € €€!€ € € €€ €€€€!€€€€€ €#€$€'€'€€i€€ € €€€"€€€€€ €€ €€€€"€€€€!€€€ € €€€ €€€€€ €€€ €€ €€€€€ €€€#€ €€€!€€€€$€€ €"€€!€ € € €€ €€"€€€€ €€€ €€#€ €€€€"€€€€€€€!€€€€!€€€ € € €(€)€€i€ € €€€"€!€€€"€€ €!€ €€€€€€€!€€€"€€€€ €€€€€!€€!€€ €€ € €€€ €"€ €!€ €!€!€"€€€€!€€€ €€€€ €€€ €€€€€€€€€ €€!€ €€ €€ €€€ €!€!€€ € €€€€€€€€€ €*€*€€j€€€€ € € €€$€€"€ € €€€€€€ €€€€ €€€€€€€€€€€ €€€ €€€€ €"€!€€!€!€€!€#€€€ €!€ € €€€€ €"€€€€€€€ €€ €€!€€€€!€ €€€€!€ €€€€€€€€!€€€!€€€€€ €*€(€€h€€€ €€€€€€!€€€€€!€ € € € €€€!€€ €€€€€€"€ €€€€€€€€€€!€€!€€"€€"€#€!€#€€"€!€!€"€!€"€€€€ €€$€!€!€ €!€ €€ €€ €€€!€!€€€ €€€ €€€€ €€!€€€€€€!€€€€(€*€€j€ €€!€€€€€€ €€€€"€ €€ € €€€ € €€€ €€ €€ €"€€€€!€ €"€ €€ € € €€ € €"€€!€"€"€ €"€ €"€€€"€€ €€ €€€"€€€ €€ € €€!€ € €€€€ €€€€#€€€€"€ €€€€€€€€ €!€ €€'€)€€i€"€€€€ € €!€€!€€ € €€!€€ €!€€€€ €€€€!€€ €!€€€€€€€ €€€ € €!€€ € €€€ €!€"€"€!€€ €"€€!€€ € € € €€"€€#€ €€€€$€ € €€€€€"€ €"€€€!€€€€!€€€€ €€€€€€ €€*€)€€g€ €€ €€€€€!€€!€€€€€€ €€€ €€€€€!€ €€€ €€€€ €€€!€€€€"€€€ €€!€€"€%€'€!€"€"€ € €€"€ €#€ €€ €"€€€€€ € €€ €€€€€€€€ €€€ €€€€€€€ €€€€€€€€€ €'€+€€h€€€€ €€€€ €"€€€€€€!€ € €€ €€€€ €€ €!€€€€"€€€€ €#€€€€ € €€€€"€#€)€'€3€4€.€#€€€ €"€€ €€#€"€€"€€€€ € €€!€€!€€€ €€!€€!€€€€€€€€€€€!€€ € €€€€ €'€&€€k€"€€ €€ €"€€€"€€ € €€ € €€ € €€!€€€!€€ €€ €!€ €€€€!€€ €€!€€€€!€€€$€ €*€=€S€P€7€*€$€#€!€%€!€ €€ € €€"€€!€ €"€€ €!€€!€€!€ € €€€"€€ €€€€€€€€€€€€€€€€!€&€(€€j€"€€#€€€!€€€€ €€ €€€€ € €!€€€!€ €!€!€€€€ €!€€!€€€€€€€€!€€€€!€ €"€.€U€è€F€)€'€$€"€$€"€ €€€!€!€ €€ €€!€!€€€ € € €€€€ €€€€!€€€€€€ €€€!€€€€€ €€!€%€*€€h€€"€€€"€€ €€!€€€ €"€ €€€!€!€ € €€€€ €"€€€ €€€€!€€"€ €€ € €€€!€!€€ €%€:€aK(€J€,€&€$€'€#€€!€€€€€€€ €€"€€ €!€€€"€ €€!€€€€€€€€€€€€€€€€€ €!€ €€ €(€(€€k€ €!€€ € €€!€€€€!€!€€€€"€€!€€ €€ €€"€€€€ €€€ € €€€€€€€€ €€"€ €€'€6€C€X€T€?€+€$€%€!€ € € €€€"€ €€ €!€€€ €!€ €€€€€!€€€€€€€€€€ €€€€€€ €€€€!€€€'€,€ €g€!€€€"€!€€€€€€ € €€€ €€€€!€€€!€€ €€€€€€€€€€€€!€!€€!€€€€!€€!€'€*€-€0€0€(€%€ €€"€ €!€€ € €€ €!€"€€ €!€!€€€"€€ €#€€€€"€€€"€€€€€€€€€€€€€€€"€'€)€€i€"€ € €€#€ €€€€€€€ €€€ €€€ €€€€#€!€€€€ €!€#€€€!€€€"€ €€ €"€€€!€#€€ €"€$€ €"€"€ €!€#€!€€ €!€€€!€€ €"€€€€"€"€€€!€ € €"€!€€€€ €€!€ €€€€€€€€ €€ €€€"€&€*€€h€ € €€€!€!€€€"€€€€ €€€"€ €€€$€€€!€!€€€!€!€€ €!€€€€!€€#€€ €€ € €€€ €€€#€ € € €€ € €"€€€"€€€ €!€€!€!€€!€ € €€€"€ €€"€ €€€!€€€!€ €€€!€€€€€€€ €€€!€%€'€€i€ € € € € €€"€€!€!€"€ €€!€€"€!€€€"€€€!€€ € €!€"€€ €€€ €€!€€€"€ €€"€€ € €#€"€€"€ € € € €€!€ €€ €€€€ €€€ €€"€€ €€€ € €€€€ € €€"€"€€€€€€€€€€ €€€ €€€"€'€*€ €k€€ € € €€€!€€€€#€€€€€€"€"€€"€ €€€ €!€€!€!€€€ €€€€€€€€ €€ €!€#€€ €€€ €!€ €€!€ €€€"€€€ € €€€!€€!€€ €€€ €€ €€€€€€€!€€€€ €€€€ €€€!€ €€ € € €"€*€*€€j€"€ €€€"€€€ €€€€€€€!€€€"€ € €€!€!€€ €€€!€€€ €€ €€#€€€"€!€€€€€€ €€€€ €#€€ €"€€€#€ € € €!€€€€€€"€!€ €€"€ €€€€€€€ €€€€!€€!€€€€€€€€€€€€€(€'€€g€ € €€ €€ €€ €!€€€ €"€€"€€€ €!€ €€ €#€€€ € €€!€ €€€€€€ €€€€!€€"€€€€€ €€"€ €!€!€ €!€ € €€€€"€€€€#€!€€€!€€"€€€€€€€ €"€€€"€ €€€€€€€ €€€€€€"€€)€&€€f€€"€€!€€"€€"€ €€€$€!€ € € €€€€ €€ €€#€€"€€€ €"€€€€€€€€ €€"€ €€€ €€€€€€€€€€!€€€!€ €€ €€€"€ € €€€ €€€!€€€!€"€ €€"€"€€€ €€€!€ €€€€"€€€€€€!€)€&€€k€€€ €€€!€ € € €€€€ € € €€€€€€€€ € €€€ €€ € €!€€ €!€€€!€€ € €!€€€!€€€€€€€€"€€€ €!€€ €€ €€#€€ €€€"€!€ €€€ € €!€€€ € €€€€€€€ €€€€ €€€!€€€€"€,€&€€j€ € €#€€€ €!€!€€!€€ €€$€!€€ €€"€€ €€€ € €#€€"€€ €€ €€€€€"€€ €€!€!€€€!€!€€€!€€ €€€€€!€€€"€ €€"€€€ €€"€ €"€€€€€!€€!€€€ €€€€ € €€€€€€€€€€!€€!€'€*€€j€ €€ €!€€€ € €€€"€€€"€€!€€ €€€€€€€ €!€€ € €€€"€€€!€ €€€€€€ €€ €€!€€€€€€ €!€€€€!€€€ €€€$€€€ €€€€!€€€#€€€€ €€€ €€€!€!€€€ €€€€€€€!€€€&€+€€k€ €€€ €!€€€€€€€€€€€!€€!€€!€ €!€ € €!€€€€!€ €€!€€€ €€ € €#€€€€€€€ €€€€"€ €€ €€€€!€€€#€€€ €!€€€€€€€"€€€€€€€€€€ €€€ €€€ €€€€€ €€ € €"€(€*€€g€ €#€€€€€!€€!€€€!€€"€!€!€€€!€€ €€!€!€!€ € €€€!€ €€!€ €€€ €€€!€€€!€!€€ €"€ €!€ €€€!€!€ €€ €!€€€ €"€€"€€€!€€"€ €€€€€€€€ €€€"€€€€ € €€€ €€€€€€€€&€)€€f€ €€"€€ € €"€€€"€€€€€€€!€€ €€€€!€!€€ €!€€€ €€€€€€€!€"€€€"€€€€!€€€€€€!€€€€€€!€€€€€ € €€ €€€€!€€€$€ €€€€€!€"€€€#€€€€€!€€€€€€ €€€"€'€)€€k€ €€!€€€!€ €€"€€€€€ €"€€ €€!€!€"€ €€"€€€ €#€€€"€€€ € €€ €€ €€ €€€€€ €€ € €€€€"€€"€"€€€€€€!€€€€"€€€ € €!€€!€€"€€€ €€€€ € € €€"€€€€#€!€€ €€€€(€*€ +€j€#€€€€ €€#€ €€€ € €€ € €!€€ € €!€"€€€€€€€!€ €€€#€€ €"€€€€!€€€!€!€€!€!€ €€!€€€ €!€€"€#€ €€$€!€€ €!€€€!€€€€!€€€ €"€€€"€€€€ €€€"€€€€€€€!€€€ €€€&€+€€h€!€ €€!€€€€!€€€!€ €€€ €€€#€€€€€€"€!€€€€€€€ €€€!€"€ € €€!€€!€€€ € €€€€ €€€ € €€ €"€€ € €€€"€€€€!€"€€€!€€ €!€€€€€€€!€€€!€€€€€€€€ € €!€!€€*€)€€f€"€ €€€ €€€ € €€€ €€€€ €€€!€ € €€€ €€!€€€!€!€€€ €€€€ €€€"€ €€€€€€ €€€!€ €€€€€€"€ €€ €#€€€#€€€€"€€€"€!€€"€€€€!€ €€€€€€€€ €"€€€€€€€"€"€(€*€€h€€!€ €€ €!€€!€ €€€€!€€€"€#€€€ €€€"€!€€!€!€"€ €€ €€!€ €€€€€€€!€!€€ €€ €€€€"€!€€€ €€€!€!€€€!€€€"€ €€!€ €€€"€€€€"€€€!€!€€€!€!€€"€ € €€€ €€€€€ €#€)€(€€l€€€€€!€€€€€ €€!€€"€€ €€€€€€€€€€ €€ €€ €€ €€ €!€€€!€€€!€€€ € €€€€!€€€ €€€"€ €!€€€€ €"€€€ €€€€"€€€"€€€!€!€€ €!€€€€!€€€€ €€"€€€€ €€€#€*€'€€i€€€!€ €€€#€€€€€€€!€€€€€€ €!€€€!€ €€€!€€€!€"€€ €!€!€ €!€ €€!€€€€ €€€€ €!€!€ € €€"€€€ €!€€€ €#€€€€€€ €!€€€"€ €€€€€€€€€#€ €€!€€€€$€€€€!€ €€*€*€€j€#€€€"€€!€"€"€€€€€ €€!€€€€€€€!€€€#€€ €!€!€€€!€€€!€€€€#€"€€ €"€€ € €€€!€€!€ €€€€#€€ €€"€€€€€ €€!€€!€!€ €€"€!€€€€€€ €€€!€ €€€€€€€!€€€ € €€(€,€€h€ € €€€!€€€$€€€ €"€€€€€ €€!€€ €!€ €€€ €€ €!€ €€€!€€€€€€€€€€ €!€€#€!€ €€#€€€!€ €€€ €€€!€ €€€ €€ €!€!€€€!€"€€"€ €€€!€€€€€€€€€€€€€€€€€€ €*€*€€h€ €!€ €€€!€€!€€ €€€€€ € €€€ € €€"€"€!€ € € €€!€€€€ €€€€"€€ €€€€€ €€€€€€€€€€€€€€!€€ €€€€€!€€!€!€€€€€€!€ €€ € €!€€ € € €€ €€€€ €€€ €€€€$€(€)€€h€ € €€€€!€€€€ €€€€€€ €"€€€ €€"€€ € €€"€ €€€ €€€"€€!€€!€€"€!€€€ € €€!€ €€€€€€"€€€€ €€€!€!€€€"€€ €!€"€€ € € €€€!€€€ €€€€€€€€€€!€ €€€€€€€(€)€€i€€€€€!€ € €€ € €€€ €€€€!€€€ €"€€€!€ € €€"€€ €!€"€"€€ €€€€ €€ € €€€"€€!€€€€€ €€ €€€€€ €€€€ € €€ € €!€"€€€ €€ €€€€€"€ € €€"€"€€ €€€€ €€€!€!€€ €(€*€ €i€!€€€ €€ € €"€ €€"€€€€€€ € € €€€€!€€!€ €€€!€€!€ €€€ €€€€€€€€ € € €!€€€!€!€€€!€ € €"€€€ €€€€ € €€"€"€€€"€ €€€€€€€ €€€€€€€ € €€€€€€€ €!€€!€(€(€€i€ €!€€ €#€€€ €€€€€ €€ €€ €€ € €€ € €€€ €€€"€!€€€ €€ €"€ €€ €"€€€ €!€€€€€€€€ €€ € €€ € €€ €€€"€ €€€€"€€€ € €€€€€€€ €€ €€€!€!€ €€"€€€€€€€€ €&€'€€i€€€€€€ €€"€€ €€!€€€€€€€€€€€ €€€!€!€€€€€€!€€€"€€€€€€€!€!€€€ €€€€"€€€!€€€€!€€€ €€!€€!€€€€"€€€€ €€"€ €€ €€€ €!€€€€€€€€€€€€€€!€'€*€€i€€€ €€€!€€€€#€€€€€€ € €€€!€ €€€#€€€€€€€€€ € € €€€#€€€ € €€ €€ €€€€€€!€€€!€€€!€ €€!€!€ €€€ €€€!€€€"€€€€ €€ €!€ € €€!€€€€€€€ €€€!€ €!€ €*€&€€f€€ € €€ €€!€€€€"€€€!€€€€ €€ € € €€€€ € €!€€€!€€€€€€€!€€€€!€"€ €€€€ € € €€€€€"€€€€€€ € €€€€€ €€ €€"€€!€€€€€€€€€€ €€€€"€€€€ € €€ €€ €*€)€€k€€€!€€€€€ €€€ €€€€ €€ € € €!€€€€!€ €€€€ €€ €€€€€ €€ €€€€ €€€€€€€!€!€€€!€€€ €€€€€ €€€€ € €€€€€€ €€€ €€€€$€ €€€ € €€€ € €€€ €€€!€€€)€-€€i€ €€€!€ €€€!€€ €€ €€€!€€€€€€ €€€€€!€ € €€!€€€€ €€ €!€€€€€ €"€€€#€€€!€#€€€!€€€€ € €€€€€€"€€€"€€€€ €€€"€€€€#€!€ €€€ € €€€€€€ € €€€!€€€'€+€€h€€€€!€ € €€€"€€€ €€€€ €€€"€ €€€!€€€"€€€!€"€€€ € € €€€€€€ €€€€€€€€!€€€€€ €€!€ € €€!€ €€€€€€€ € €€€€€€"€ €€ € €€€ €€€ € €€€€€€ € €€€€*€)€€i€!€€!€€€€€€€€ €€"€!€€€€€€ €€€€€€€ €!€ €€€€!€"€€ € €€€€ €€€#€€€€!€€€ €€€€!€€€€€€ €€ €€ €€€€€€€!€€€€€€€€ €€€€€ € €€€€ €€ €€€!€!€*€(€€k€€€!€€€€!€ €€ € €€€!€ €€!€€ €€€€ €€€ €€ €€€€€€€€€€"€€€€€ €"€€€ €€€€"€"€€€"€"€€€ €€€%€€€€!€€€€ €€€€€€$€ €€€€€€€ €€€€€€€ €€€€€€*€'€€k€ €€€%€"€!€ €€€ €!€€€!€ €€"€"€€€!€ €€ €€€€€€!€ €€€€€€ €€€€€ €!€!€€ € €!€€€ €€€"€!€!€€ € €€€€ €€ € €"€€ €!€€ €"€ €€€€ €€ €€€€€ €€!€€€€€ €€€€ €#€(€€k€€€€€€€€€€€€€€#€!€€€€€"€€!€!€€€ €€!€€€€ €€€"€€!€€!€€ €€ € €!€"€€€€ € €€€€ €€ €€€€ €€€"€€€ €€€€€€"€€€!€€€ € €€€€!€€€€ €€€!€€€€€ €(€)€€h€€ €€ €€€€€ €€"€€€€€€€ €!€€€ €€€€"€€€"€€!€ € €€€€€€€€€€€€ € € €€€"€ €€€!€€€ €!€€ €€ €€ € €€"€€€ €€€€€€€€!€€€!€€€€€€€€€!€€!€€ €€!€)€+€€g€ €€!€€€ €€!€€€€€€€€€€€!€€€€!€€€€€€€"€ €€!€ € €€!€ €€ € €€€"€€€€#€ €€€!€€€€ €€!€€€€€ €€ €€€ €€€€ €€€!€€€ €€€ €€€€€€€€€€ €€€€ € €(€(€€i€ €€€€€€!€ €€"€€ €"€€€€€€ €"€€€ €$€€€€€€€€€!€€€€€ €€€!€€€€€€€ €€€ €€€!€!€€€€€€€€€"€ €"€"€ € €€!€€€ €€$€€ €€ €€€ €€!€€ €€€!€€€ €€€"€*€)€€m€€€€€€€!€ €€!€!€€€€€€"€!€!€€!€€€!€€€€ €!€ € € €€ €€€€ € €€€ €€€ €€€"€"€€ €€€€!€€€€"€€€€!€€€"€€€"€ €€€!€!€€€€"€€#€€€€€€€€€€€€€€!€€!€*€(€€h€ €€"€€€€€€ €€ €!€€ € €€€"€ €€!€€€€#€€€#€ €€ € €€€!€ €€€ €€€€!€€€ €€€ €€€€ €€!€ €!€€€€€€!€€€"€"€€€€€€€€€€!€€€ €€€€!€€€€€€€€€€€€€)€(€€j€ €€€€€€ €€€€€ €€€€€€€"€€ €€!€€!€!€€€€€€€€€€#€€€ €!€€!€!€€€€€€€€€ €€!€€ € €€€€€!€€€€"€"€!€€€€€€"€€€ €€ €€€€€€ €€€€€€€ € €€ € €&€,€€g€ €€ €€ € €!€ €!€!€ €€€ €"€€€€€€€€€€"€ €€€ € €€€ €€€ €€€!€!€ €€€ €€ €#€ €€!€!€€€ €"€€#€€€€ € €€ €€€ €!€ € € € €€ € €€€!€€€€ €€€€€€€ €€€€€€"€!€(€+€€f€€"€€€€!€!€€!€ €€€"€ €€ €€€€!€€€€"€€€ €€ € €€€€ €€€!€€€"€€€ €"€ €€!€!€€ € €€€ €!€ €"€!€€!€!€ €€€#€#€€ € € €€€€€€€€€!€€ € €€€€€€€€€€€"€€ €"€)€*€€i€€ € €€€ € €€ €"€€€!€€€ €€!€€!€ €!€€€€€ €€€€!€€€€€€€€ € €!€ €€ €€€!€ €€€!€"€€ € €€€"€ €€€€"€€!€ €€€ €€€ € €€€€€€!€€€ €€€€ €€€€€€€ €€!€€,€,€€iXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 331.0 / maximum value of good pixels GOODMEAN= 31.967800 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 15.000000 / the minimum value of the data DATAMAX = 5962.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 164.437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-09-29' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:46:47' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.766099082352E+04 / exposure start time (Modified Julian Date) EXPEND = 5.766099082468E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1454.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 15.0 / minimum value of good pixels GOODMAX = 5962.0 / maximum value of good pixels GOODMEAN= 103.345558 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€"€€!€€"€ €#€!€€!€€ €#€%€ €!€%€"€"€"€#€€'€#€,€)€€h€€€€€€!€!€€€ €€€!€ €#€€#€!€"€#€#€"€€"€#€!€-€*€€h€€€ €#€ €!€€€"€€€ €€ €#€!€€"€#€%€$€"€%€€€%€*€,€€i€€€€ €€€!€€€€!€€€!€!€#€"€#€!€€$€!€€ €"€"€,€*€€k€!€!€"€€€€€€€€€€€€"€$€"€€ €€"€!€!€!€#€%€*€'€€i€€€€ €€€ € €€ €!€ €€!€"€ €"€$€!€ €#€€€ €"€"€(€*€€j€"€ €"€€€ €€€!€ €€!€ €"€#€!€%€!€!€ €€€!€ €€€-€,€€k€ €€€€€€€ €€€#€€€!€$€!€!€#€€€€€"€ €€€&€)€€d€ €"€"€€€#€€€€ €€€"€#€#€'€'€#€€ € € €€ €€!€(€*€€i€"€!€€!€ € €€"€!€€€ € € €%€&€ €&€$€"€€€"€€ €"€(€+€€j€ €€ €!€€€!€!€ €€ €€!€$€"€&€'€'€€!€!€€€#€€€*€)€€g€ €"€€€ €!€€ €"€€€$€"€€*€/€-€#€%€"€€!€€€€$€+€)€€g€"€€ €!€€"€ €!€€!€"€!€!€&€0€/€0€-€ €€#€ €€ €"€#€,€+€€f€€!€!€€"€!€!€ €"€ €€!€&€1€\€ˆ€€Q€5€#€ €!€!€ €€$€*€&€€l€ €!€€"€ €€ € €"€!€$€&€2„(†…®‚®€p€3€#€!€€ €€(€)€-€€h€ €€ €!€!€!€€ €%€!€)€1€cƒŒö“Ž’:‡Ò€Y€$€ €%€#€ € €,€,€€h€ € € €#€!€€€ € €!€-€7€sƒ?E—J•S‰q-€r€%€&€"€$€ €"€,€(€€j€€ € € € €€"€€$€"€*€*€[‚ÁŒÿ”’‡Ü€ñ€T€"€$€!€ €#€€*€,€€h€ €!€€€€€"€€!€!€ €$€:„ˆ†¯…³‚c€b€2€#€€!€€#€#€*€+€€h€ € € €!€!€€€€€€"€€%€3€Z€Ž€|€I€0€'€ € € €!€€"€(€-€€h€$€€€!€€ €!€ € €€!€#€"€&€$€/€.€&€"€!€€€ €"€€!€*€,€€h€!€€#€€"€€€€€ €!€€!€€$€!€&€€€#€€!€ € €€#€(€+€€i€ €€€!€!€€ € €€€ €€€€€#€ €€ €!€€€!€ €€€(€)€€i€€€ €€ € €€€€ €€€ €€!€€ €!€€!€€€€€ € €*€)€€j€ € €€€€ €€"€€!€€€ €€ €€"€€ €€ € €€€€€%€*€€h€ €€€ €€ €€€€ € €€"€€€ € €€€"€€€!€ €€!€+€+€€h€!€ €€ € €€ €"€!€ €€€€€ €€ €€ €€"€€€"€"€"€(€,€€i€ €€€€€ €€ €€ €!€€€"€€!€ €€€"€ €€ €!€€!€,€*€€j€€€€€ € € € € €€€€ €€ €€€€€ €€ €€€€#€+€*€€j€€€€€ €€!€!€€!€€€€"€€€"€"€€€ €€€!€€€'€,€€eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 15.0 / minimum value of good pixels GOODMAX = 5962.0 / maximum value of good pixels GOODMEAN= 103.345558 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits b/lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits new file mode 100644 index 00000000..a465897e --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits @@ -0,0 +1,13 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocmv0lw6q_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'CD-59D3300 ' / proposer's target name RA_TARG = 1.611740875000E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.978243055556E+01 / declination of the target (deg) (J2000) ECL_LONG= 202.233261 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -59.027771 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 287.602116 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.737521 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV25ND3 ' / aperture used for reference position ELON_REF= 202.233261 / ecliptic longitude at reference position (deg) ELAT_REF= -59.027771 / ecliptic latitude at reference position (deg) GLON_REF= 287.602116 / galactic longitude at reference position (deg) GLAT_REF= -0.737521 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 13760 / PEP proposal identifier LINENUM = '0L.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CMV' / program id (base 36) PR_INV_L= 'Massa ' / last name of principal investigatorPR_INV_F= 'Derck ' / first name of principal investigator PR_INV_M= 'L. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '0L' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'W6 ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F25ND3 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 486 / proposed axis1 detector pixel of subarray startSS_A1SZE= 100.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 465 / proposed axis2 detector pixel of subarray startSS_A2SZE= 100.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'CENTROID ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 39 / word 11/14 (0-255) PSTRTIME= '2016.273:23:42:31 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.273:23:47:40 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV25ND3 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '13760_111 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 1.613375787086E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -5.975703409406E+01 / declination of v1 axis of st (deg) PA_V3 = 29.240311 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S4B0000993F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S4B0000953F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 1.644344694824E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -1.750777146139E+03 / position of space telescope x axis (km) POSTNSTY= 6.690593030542E+03 / position of space telescope y axis (km) POSTNSTZ= 1.124886397001E+02 / position of space telescope z axis (km) VELOCSTX= -6.473422309554E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -1.633075537227E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -3.620600280566E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.864410696663E+02 / right ascension of the sun (deg) DEC_SUN = -2.783848125485E+00 / declination of the sun (deg) RA_MOON = 1.764408152273E+02 / right ascension of the moon (deg) DEC_MOON= 2.841874182440E+00 / declination of the moon (deg) VELABBRA= 19.683411 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 1.611740875000E+02 / right ascension of reference object (deg) DEC_REF = -5.978243055556E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 1.001548800000E+09 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.784068052004E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.636010163814E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.853631929968E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.614767167376E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.799248020440E-01 / cosine of inclination ECCENTRY= 3.227105171117E-04 / eccentricity ECCENTX2= 6.454210342234E-04 / eccentricity times 2 ECBDX4D3= 4.481032506335E-11 / eccentricity cubed times 4/3 ESQDX5D2= 2.603551946362E-07 / eccentricity squared times 5/2 ECBDX3 = 1.008232313925E-10 / eccentricity cubed times 3 FDMEANAN= 1.752153088663E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.338136638014E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.129710604722E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.526221538671E-01 / argument of perigee (revolutions) MEANANOM= 6.158698567423E+00 / mean anomaly (radians) RCARGPER= -2.726006377587E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 8.505563882624E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.751129789300E-01 / sine of inclination SEMILREC= 6.916544091177E+06 / semi-latus rectum (meters) TIMEFFEC= 1.001595622000E+09 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 1.001806951000E+09 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F25ND3 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;MAIN SEQUENCE O 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'MAIN SEQUENCE O ' / PROPOSAL INFO: Flux Information MAG_V = 8.520000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.500000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 1.611740875000E+02 / target right ascension from proposal (degrees) DEC_PROP= -5.978243055556E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Filling the gap --near UV, optical and near IR extinction 'PROP_TYP= 'SNAP ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136348000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247904000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350529000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -2.629790000000E-06 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 2.629100000000E-06 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.020200000000E-03 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.020000000000E-03 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.136609000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -1.978244100000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.958961000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.996041800000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136316000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 1.983376700000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.313964000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 2.001174300000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 57 / Slit Number SLITSIZE= '24.7x24.7 ' / aperture field of view TFPFNAME= 'F25ND6 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'POINT ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 506.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.5385 / (dgC) CEB Radiator temp OCLLMP1T= 10.237 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.52885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.24135 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.60865 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.50673 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.78365 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3735 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5393 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.1604 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.7 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.50937 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3875 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.656 / Enclosure forward outer panel temperature countOFITAT = 13.6125 / (dgC) Fitting A temp OFITBT = 18.5021 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -14.9696 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5412 / (V) Hold mode regulator +15V OHDP5V = 4.90136 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.5125 / (dgC) M1 heater control temp OM1HTRW = 0.461667 / (w) M1 heater power OM2HTRT = 33.2417 / (dgC) M2 heater control temp OM2HTRW = 0.22975 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.5563 / (dgC) MEB 2 radiator temp OMBCSPT = 35.15 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.0938 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2229 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.0232 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.4 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1542 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1931 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 24.3781 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.19871 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.0031 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.18683 / (w) Thermal controller power, zone 1B OTCZ2AT = 19.7 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.2012 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.7625 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.97641E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.575 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.4857 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.5 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.523781 / (w) Thermal controller power, zone 3B OTECINV = 6.52653 / (V) TEC input voltage OTECTCV = -7.73439 / TEC temp control voltage OMBMC15V= 14.6774 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9386 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.88677 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.2979 / (V) LVPS CEB +15V OPSCB35V= 33.4043 / (V) LVPS CEB +35V OPSCB5V = 4.94028 / (V) LVPS CEB +5V OPSCM15V= -15.2032 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710134 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.482784 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.73602 / (A) M1 +8V amplifier current OM1P8AV = 8.0 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.2749 / (dgC) M1 charge amplifier temp OM1DCDT = 35.7633 / (dgC) M1 decoder temp OM1MCET = 34.2981 / (dgC) M1 MCE temp OM1LVPST= 39.1821 / (dgC) M1 LVPS temp OM1HVPST= 35.5191 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0276923 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.472772 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 35.7633 / (dgC) M2 charge amplifier temp OM2DCDT = 36.7401 / (dgC) M2 decoder temp OM2MCET = 34.7865 / (dgC) M2 MCE temp OM2LVPST= 40.1589 / (dgC) M2 LVPS temp OM2HVPST= 36.7401 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.59282 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 30.6615 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1718 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0644 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08137 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.3451 / CB clock X pwb temp OCBCLKA2= 30.0655 / CB clock Y pwb temp OCBCMAA1= -14.9696 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.08623 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9015 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.08137 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.93352 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0487692 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.92803 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91847 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.96226 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.95722 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91847 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.95722 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.94766 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.0156 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02046 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90874 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96226 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.05704 / (V) CB state machine 2 +5V OCBSWAHV= 4.92334 / (V) CB summing well A Hi OCBSWALV= -5.94749 / (V) CB summing well A Lo OCBSWBHV= 4.90874 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96712 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97685 / (V) CB summing well D Hi OCBSWDLV= -5.99128 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.2592 / CEB timing pwb temp OCLM5V = -5.12045 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0278762 / Calibration lamps -5V current OCLP30V = 29.9209 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0252752 / Calibration lamps +30V current OCLP5V = 5.19326 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 270242 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00276924 / (A) Slit Wheel motor current OSWMVEL = -0.0301505 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1791 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3585 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 57 / Control section slit position OCSDQEXJ= 3875 / Control section data queue extract OCSDQINJ= 3875 / Control section data queue insert OCSXQEXJ= 24 / Control section Expos Que Extract OCSXQINJ= 25 / Control section Expos Que Insert OCSOBSQ = -29613 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 587 / Control section dump pointer OCSFILLJ= 587 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 82 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCMV0LW6 R*Õ ŒšžÐ’BIddÑæ"Ê¥à¼p½`İÅÂðÃð߀ÌPÌ0¬P±Ã€²à€ ± ª½p PÝà¿pÎÈðÈàÈðÒð¢€Ò ¡ ¿Ðþ ©0Á0Á0ÐÈÀàÒ Ò ¹`Ñ@½µ€¸ð¹@áÐâÍÐÏÍÐÍ`§°¶À¥0³¦Æ©pž © ¥0©¡°žPÞÀà ¿@ÜPëÀ¿ðÐ& ( +þ® «½3+ ½f¹U Æ Ì ÏÆïñëÿðb Ø ™Ñ »½17 Õ^H Ä Ì ÑÅñõíõÔÀÃ^Ð^ð^ð_@ƒ€ê°%pÁÐÚÐï€%PÁÀÚàÔàÀ‡°ƒ0 PÁÐßp ÀÁÀßpLàT°˜ €˜°€˜À€˜À`F@¦ F@¥à™À€ ™ À~`h ~`h`€f@€f`~`gà~`gà f``f@~ h@€f €`Áp~€h ~ h` f€àg€ ¦à€ ¦à|Ð>°~Àà|€Ã0€p€ ¢cÀ°€ 0b9 +³sŠŸÿñ$_l dàà€„ðñ9## S`ƒKK¥Ìà_RI‚__ÿ"ʥༀ½`ÄÀÅÂðÃðßpÌPÌ0¬P±Ã€²à€±ª½pÀà0ÀPÎÈðÈàÈàÐР0ÒÀŸ ¿Ðþ ©0Á Á@ÀÈÀàÒ Ò¹`Ñ@½µ€¸à¹@áÀáàÍÀÏÍàÍ`§´P§P² ©ÇÀª¡Ð¨¦¦pŸð›° ßàà¿€ä@ë Â0$Ð& ' +þ® «½3+ ½f»U Æ Í ÏÆïñëÿðb Ø ™Ñ »¾18 Õ^“H Ä Ì ÑÅñõìõÔÀÃ^Ð^ð^ð_@ƒ€ê°%pÁÐÚÐï€%PÁÀÚàÔàÀ‡°ƒ0 PÁÐßp ÀÁÀßpLàT°˜ €˜°€˜À€˜À`F@¦ F@¥à™À€ ™ À~`h ~`h`€f@€f`~`gà~`gà f``f@~ h@€f €`Áp~€h ~ h` f€àg€ ¦à€ ¦à|Ð>€`à~`Ä@€~P¢cÀ € Pb9 +³sŠŸÿñ$_ld  €„ðñ9## S`ƒKK¥Ìà_Sa‚__ÿ`9m°3ÁÄÔæUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocmv0lw6q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 57 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 515.8 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.5385 / (dgC) CEB Radiator temp OCLLMP1T= 10.1885 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.52885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.19615 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.60865 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.50673 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.78365 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3735 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.1604 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.7 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.63008 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3875 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.6563 / (dgC) Fitting A temp OFITBT = 18.5021 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -15.0377 / (V) Hold Mode Regulator - 15V OHDP15V = 14.9304 / (V) Hold mode regulator +15V OHDP5V = 4.95974 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0929 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 32.4292 / (dgC) M1 heater control temp OM1HTRW = 0.0250037 / (w) M1 heater power OM2HTRT = 34.9208 / (dgC) M2 heater control temp OM2HTRW = 0.071625 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.5563 / (dgC) MEB 2 radiator temp OMBCSPT = 35.15 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.0938 / (dgC) MEB MIE processor temp OMBP15V = 14.8817 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.25 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.0232 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.4 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1736 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1347 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.4057 / (dgC) Slit wheel motor temp OTCZ1AT = 24.9625 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.77709 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.55 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.60845 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.125 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 15.0823 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.6875 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.427813 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.3375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.55441 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.6625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0112581 / (w) Thermal controller power, zone 3B OTECINV = 5.96735 / (V) TEC input voltage OTECTCV = -7.71974 / TEC temp control voltage OMBMC15V= 14.7455 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0165 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90623 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.8158 / (V) LVPS CEB +15V OPSCB35V= 32.5675 / (V) LVPS CEB +35V OPSCB5V = 5.38299 / (V) LVPS CEB +5V OPSCM15V= -14.6875 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.438 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710134 / (A) M1 -15V current OM1M15V = -15.8339 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483272 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.73602 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.2749 / (dgC) M1 charge amplifier temp OM1DCDT = 36.0075 / (dgC) M1 decoder temp OM1MCET = 34.2981 / (dgC) M1 MCE temp OM1LVPST= 39.1821 / (dgC) M1 LVPS temp OM1HVPST= 35.5191 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.0391 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.473504 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 35.7633 / (dgC) M2 charge amplifier temp OM2DCDT = 36.7401 / (dgC) M2 decoder temp OM2MCET = 34.7865 / (dgC) M2 MCE temp OM2LVPST= 40.1589 / (dgC) M2 LVPS temp OM2HVPST= 36.7401 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.57817 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 30.6615 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 4.9938 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.05218 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.3451 / CB clock X pwb temp OCBCLKA2= 30.0655 / CB clock Y pwb temp OCBCMAA1= -14.9307 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.05218 / (V) CB clock drive X +5V OCBCPAA1= 14.6969 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.05218 / (V) CB clock drive Y +5V OCBCPAA2= 14.7455 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.07867 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9581 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9289 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.9282 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.95739 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.93776 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02533 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.06425 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.0765 / (V) CB state machine 2 +5V OCBSWAHV= 4.9282 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.95236 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.00101 / (V) CB summing well C Lo OCBSWDHV= 4.95739 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.2592 / CEB timing pwb temp OCLM5V = -5.13504 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0072784 / Calibration lamps -5V current OCLP30V = 29.5706 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0132594 / Calibration lamps +30V current OCLP5V = 5.23705 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 270241 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00155312 / (A) Slit Wheel motor current OSWMVEL = 0.0241668 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1791 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1537 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 57 / Control section slit position OCSDQEXJ= 3889 / Control section data queue extract OCSDQINJ= 3889 / Control section data queue insert OCSXQEXJ= 24 / Control section Expos Que Extract OCSXQINJ= 26 / Control section Expos Que Insert OCSOBSQ = 3157 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 587 / Control section dump pointer OCSFILLJ= 587 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 84 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCMV0LW6 T*Õ ŒšžÐ’‡íIddÑæ"ʥༀ½`ÄÀÅÂðÃð߀Ì@Ì0¬P±ÃP²à€±ª½pàà`À0ÎÈàÈàÈàѰŸ Ô 0¿Ðþ ©0Á0Á@ÐÈÀàÒ Ò ¹pÑ0½µ€¸à¹@áðá°ÍÐÏÍàÍP¨Àµ0¨´¨`Èp©P ð§¥p¥ðŸ0›À0ß0àà¿€æéÅ " & ' +þ® ª½3+ ½f»U Æ Í ÏÆïòëÿðb Ø ™Ñ »½18 Ô^“H Ä Ì ÑÅñõíõÔÀÃ^À^ð__Pƒ€ê°%@ÁÐÚÀï€%`ÂÚàÔàÀ‡°ƒ0 Âß` à ßPLÐT°˜ `˜°€˜ €˜À€F@¦F@¥à™ €™@ð~`h€~ h` f``f ~`h`}àh@@f`f ~@h@`e €`Á°~ h`~@h`fÀ`fà€ ¦à€À¦À|Ð>€€pßp~ÃÀ0~ ¡cÀ €€b9 +³sŠŸÿñ$_l d``€„ðñ911 U`ƒKK¥Ìà_TI‚__ÿ"ʥༀ½`İÅÂðÃðßpÌ@Ì0¬P±Ã@²à€± ª½p à¿àÎÈàÈàÈàÒ`ŸÐÔð¡¿àþ ©0Á0ÁPÐÈÀàÒ Ò ¹pÑ0½µ€¸à¹@áðápÍÐÏÍàÍP©@µà§°µ§ðÈ0© `¦à¥¦0žð›°ßàð¿PåPèPÆ0!`& ( +þ® ª½3+ ½f¹T Æ Ì ÏÆïòëÿðb Ø ™Ñ ¼½18 Õ^H Ä Ì ÑÅñõìõÔÀÃ^À_^ð_Pƒ€ê°%PÀ Úàï€%0Á`Ú°ÔàÀ‡ ƒ0 Á`Þà  Á`ß0LÐTÀ˜ à˜°€˜ €˜À€F@¦ F@¥à™à€˜àð~ h@~@h `f@ f@~`h@~@h @eà eà~€h@`f`€pÁÐ~@h`}àhÀ`f€Àf€€À¦à€À¦À|À>0€`ß`}ÃÀ €0¢cÀ°€ Pb9 +³sŠŸÿñ$_ld  @€„ðñ911 U`ƒKK¥Ìà_Ua‚__ÿ`9m°3Á&ÔæUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocmv0lw6q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.5385 / (dgC) CEB Radiator temp OCLLMP1T= 10.237 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.52885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.19615 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.60865 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.50673 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.73846 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3735 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.1604 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.7 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.83125 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3875 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.6563 / (dgC) Fitting A temp OFITBT = 18.5021 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -15.2226 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7163 / (V) Hold mode regulator +15V OHDP5V = 4.94028 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 32.2125 / (dgC) M1 heater control temp OM1HTRW = 0.22975 / (w) M1 heater power OM2HTRT = 32.4833 / (dgC) M2 heater control temp OM2HTRW = 0.0275031 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.5563 / (dgC) MEB 2 radiator temp OMBCSPT = 35.2 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.0432 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5661 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2229 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.0232 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.4 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1542 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.4714 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.4057 / (dgC) Slit wheel motor temp OTCZ1AT = 23.7594 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.79396 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.0719 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.86641 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.675 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.9693 / (w) Thermal controller power, zone 2A OTCZ2BT = 23.0 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.474188 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.6125 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 2.03536 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.4125 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.369187 / (w) Thermal controller power, zone 3B OTECINV = 6.28104 / (V) TEC input voltage OTECTCV = -7.74904 / TEC temp control voltage OMBMC15V= 14.7553 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.1138 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.84298 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.2709 / (V) LVPS CEB +15V OPSCB35V= 33.7935 / (V) LVPS CEB +35V OPSCB5V = 4.96461 / (V) LVPS CEB +5V OPSCM15V= -14.1231 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.438 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710134 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483272 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.73602 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.2749 / (dgC) M1 charge amplifier temp OM1DCDT = 36.0075 / (dgC) M1 decoder temp OM1MCET = 34.2981 / (dgC) M1 MCE temp OM1LVPST= 39.1821 / (dgC) M1 LVPS temp OM1HVPST= 35.5191 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.473016 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 35.7633 / (dgC) M2 charge amplifier temp OM2DCDT = 36.7401 / (dgC) M2 decoder temp OM2MCET = 34.7865 / (dgC) M2 MCE temp OM2LVPST= 40.1589 / (dgC) M2 LVPS temp OM2HVPST= 36.7401 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.60258 / (V) CEB A/D offset A V OCBADOBV= -2.57817 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 30.6933 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.2107 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.06677 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0644 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.04731 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0547 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.3451 / CB clock X pwb temp OCBCLKA2= 30.0655 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.04731 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.04731 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.98929 / (V) CEB last gate A&B OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0585347 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCBS1AHV= 4.93307 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.9329 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02533 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.95253 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.95236 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.0156 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.97199 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90388 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96226 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02046 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.13002 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBSWBHV= 4.89901 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.01074 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.2592 / CEB timing pwb temp OCLM5V = -5.1545 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00346399 / Calibration lamps -5V current OCLP30V = 29.5123 / (V) Calibration lamps +30V voltage OCLP30VC= 0.187646 / Calibration lamps +30V current OCLP5V = 5.20786 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00209523 / (A) Slit Wheel motor current OSWMVEL = -0.0198742 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1791 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3585 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 3904 / Control section data queue extract OCSDQINJ= 3904 / Control section data queue insert OCSXQEXJ= 24 / Control section Expos Que Extract OCSXQINJ= 27 / Control section Expos Que Insert OCSOBSQ = 3159 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 587 / Control section dump pointer OCSFILLJ= 587 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 86 / Control section exposure counter OTAFLUXQ= 1559 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5128 / Target acquisition target x position OTATARA2= 5302 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCMV0LW6 VIŒšžÐ’”ßIô "”¥à¼p½`ÄÀÅÂðÄ߀Ì@Ì0¬P±Ã²à€±ª½p°ß¿ðÎÈðÈàÈàÑp¡ ÑÀŸ°¿Ðþ ©0Á Á0àÈÐàÒ Ò¹`Ñ@½µ€¸à¹@âáÐÍÀÏÍÐÍP¦µ@¥P±Ð§ Åp«€¡©0§0§0¡ 0Ðß@á0¾°âíÀ@%À& ' +þ® «½3+ ½f»U Æ Í ÏÆïòëÿðb Ø ™Ñ ¼½18 Õ^‘H Ä Ì ÑÅñõíõÔÀÃ^°_^ð_Pƒê %`€Úðï€% ÂPÚ°ÔàÀ‡°ƒ0 ÂP߀ ÂPßpLðTÀ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€À™À~Àh@~@h€`f @f@~`h@~@h`f`Àeà~h@€f@€PÂ`~@h€}àh`€f€Àf€€À§€ ¦À|Ð>@€Àß@˜0Ã`Ÿ°~ðÝ¡À°€` b9 +³sŠŸÿñ$_ldàà€„ðñ@@ W`ƒKK¥Ìà_V¶I‚__¸i¸HC"”¥Ð¼€½PÄÀÅÂðÃðßpÌ@Ì@¬@±Ã²à€±ª½p €Þ0¾ðÎÈðÈàÈàÑ0 ÀÒŸP¿àþ ©0Á0Á@ÐÈÀàÒ Ò ¹pÑ0½µ€¸à¹@áàáÀÍÐÏÍàÍP¦`µ¦ ±Ð¨@ÅЫ0¡À¨à§0¦à 0ß`á0¾Àå êPà #Ð& ' +þ® «½3+ ½f¹T Æ Ì ÏÆïòëÿðb Ø ™Ñ ¼¾18 Õ^’I Ä Ì ÑÅñõíõÔÀÃ^À^ð^ð_@ƒê°%0ÁÚÐï€%0ÁPÚÀÔàÀ‡ ƒ0  ÁPß`  ÁPßpLÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™€€™ð~h@~@h@`f`f@~Àh`~ h`}àfg~@h€`f€`À ~@h`~@h€€f@Àfà€À¦à€À¦à|Ð>0‚Àß–ÀàŸ€Ý¡À €Pb9 +³sŠŸÿñ$_ld  €„ðñ@@ W`ƒKK¥Ìà_W¶F‚__¸i¸HC`m°0Å(õæ®UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits b/lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits new file mode 100644 index 00000000..945735b6 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits @@ -0,0 +1,4 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocoa03q2q_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocoa03q2q ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'CERES-2 ' / proposer's target name RA_TARG = 3.019837512434E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.163741093880E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 13693 / PEP proposal identifier LINENUM = '03.001 ' / proposal logsheet line number PR_INV_L= 'Hendrix ' / last name of principal investigatorPR_INV_F= 'Amanda ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2015-08-16' / UT date of start of first exposure in file TTIMEOBS= '16:34:18' / UT start time of first exposure in file TEXPSTRT= 5.725069048968E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57250.69258602 / end time (MJD) of last exposure in the file TEXPTIME= 1.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792905247685E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F28X50LP ' / aperture name PROPAPER= 'F28X50LP ' / proposed aperture name FILTER = 'Long_Pass ' / filter in use APER_FOV= '28x50 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 104 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 104 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$zbi1324bo_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1092.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 7150.0 / central wavelength of the data MINWAVE = 5490.0 / minimum wavelength in spectrum MAXWAVE = 9990.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'The Ultraviolet Spectrum of Ceres 'OBSET_ID= '03' / observation set id TARDESCR= 'DWARF-PLANET; Ceres at 2nd longitude 'MTFLAG = 'T' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'DIFFUSE ' / type of acquisition CENTMETH= 'GEOMETRIC-CENTER' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 214.052200 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 104 / length of first data axis NAXIS2 = 104 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 9.000000 / the minimum value of the data DATAMAX = 9925.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -10.9437 / position angle of image y axis (deg. e of n) SUNANGLE= 151.848297 / angle between sun and V1 axis MOONANGL= 129.889053 / angle between moon and V1 axis SUN_ALT = 22.867542 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2015-08-16' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '16:34:18' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.725069048968E+04 / exposure start time (Modified Julian Date) EXPEND = 5.725069049547E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 527.0 / fsw located subarray axis1 coord. of target TARGA2 = 514.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 87956.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 3824309 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.94263 / (V) CB summing well A Lo OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCCDHTAV= 20.584600 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 9.0 / minimum value of good pixels GOODMAX = 9925.0 / maximum value of good pixels GOODMEAN= 146.611313 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€ €€€€€€ €€"€€€€€€!€€€ €€€€%€ €€€€€€#€€€€€€€#€"€€"€"€€"€"€"€€#€€"€€€ €€€€ €€€ €€€€€€€€€€€€€€ € €€€€€€ €€€€€€!€€ €€€€€€€€€€€&€&€€i€ €€€€€!€€€€€€€ €€€€€ €€ €€ € € € € €€€€"€"€€€!€€ €!€ €€€!€#€€!€$€ €"€€€ € €!€ €!€€€€€!€€€€ €€€ € €€€€€€!€€€€€€€€€€€€€€€€€€!€"€€€€€€€€€&€(€ €e€ €€€ €€€€ €€€"€€€€ €€€ €€€ €€€ €€€ €€€ €"€€ €€!€!€!€$€ €$€€"€ €$€#€€#€ €€!€€€€ € €€ €€€!€ €!€€!€€€€€€ €€€ €!€€ €€€€ €€€ €"€€"€#€€€€€€€€ €€€€€!€(€(€€g€ €€€€€ €!€ €€€€€€$€€€€€€€€!€€€€ €"€€€"€!€€€€€"€€ €!€€!€!€€€$€%€"€"€$€ €€!€ €€€ €#€€!€!€€ €€€€ €€€€ €€€€!€€€€€€€ €€€!€€€ €€ €€€€ €€€€€€€€)€)€€f€ €!€ €€€€€€ €€€€ €€€€€€ € €€€ € €!€!€ €"€#€ €!€ €!€€"€€#€$€#€$€€!€ €!€€€%€#€€%€!€ €€€€!€€!€"€ €€ € €"€€ €€ €€€ €!€€€€€€€€€€€€ €€€ €€€!€€€€€€€€€€€$€$€€e€€€"€"€€€€€€!€€€€€€€!€€€€€€"€ €!€€ €"€€"€!€€€ €€"€%€!€#€"€ €!€"€€$€#€%€#€€$€ € €"€"€!€!€ €€!€€"€€"€€€!€€ €€€€ € €"€€€#€€€ € € € €$€ €"€€€€ € €€€€€€€€€€$€&€€b€ €€#€ €€€€€!€€!€€€€€€€€€ €"€€€€€ €€ €€ €€!€€!€€"€"€!€€#€#€€#€#€$€#€$€"€!€!€€!€"€€"€€€#€#€ €#€€ €!€ € €€!€€€€€ €!€€€€€!€#€€€€€€"€ €€#€€€€€€€€€€€€'€'€ €e€"€€ €!€€ € €€€ €€€€€€€€€ € €€€€€€!€€"€ €€€€%€"€€ € €!€!€#€ €#€"€#€#€#€$€'€#€ €&€!€"€$€"€#€ €€!€ €#€€€€ €!€ €€€€ € €€€€"€"€ € €"€ € € €!€€€€ €#€ €€€€€€€€€€€(€)€ €d€"€"€ €€!€€€ €"€"€€!€€€€€€€ € € €€€€ €!€€!€"€€"€"€ €"€!€!€ €€%€#€#€ €!€%€"€'€%€$€"€$€%€$€!€%€ €#€"€!€€"€"€€€€ €€ €!€ €€!€€#€ €€€€€ €!€%€€€€€ €!€€€€!€ €€€€€€€€€%€$€ €g€$€#€"€ €!€ €"€€#€!€ € €€ €€€€€"€€ €#€€€"€€€ €€$€ €$€€$€"€$€€$€#€$€$€#€!€'€%€$€#€%€!€!€#€$€"€!€ €"€€ €€!€€ €€!€€€#€€€!€ € €€"€€€ €€€"€"€€€!€!€!€ €"€€ €€€€€€€€€€€&€'€€h€€ €&€ €#€ €"€€!€ €€€€!€€€€!€€€€!€ €"€"€€€ € €"€!€ € €!€#€€!€'€%€!€%€ €&€(€&€'€"€#€$€"€(€&€%€"€!€ €#€#€&€!€ €&€"€"€#€€ € € €€€ € €"€!€"€#€#€#€€€!€"€€ €"€!€€!€€€ €€€€€€€€€'€%€€g€$€ €€#€"€#€€!€"€"€ €!€€€!€!€€!€ €!€ €$€€€ € € €€€ € €!€!€#€€$€#€&€$€"€#€#€%€"€$€'€(€+€&€&€!€'€'€$€!€'€#€"€"€"€€ € € €!€€"€€€€€"€€"€ €!€"€ €€€%€#€$€€ €€"€ €€ €€€ €€€€€€€€'€%€€e€!€$€"€$€#€!€%€"€#€"€€!€"€ €"€ €€ €€€"€#€€#€#€!€!€#€€€"€€!€"€!€#€$€&€$€%€#€"€&€%€'€(€&€(€)€"€%€%€'€%€(€#€#€!€€"€!€#€"€"€"€#€!€ € €"€€"€€€!€ €$€!€#€ €€€"€€€!€€€€€€€€€€€€€ €€%€'€€h€%€!€#€"€#€"€"€%€€"€ €€ €!€!€"€€€"€"€!€"€!€€€"€ €"€"€#€ €"€%€ €$€!€ €#€#€'€$€'€)€%€)€(€,€(€&€'€%€&€)€'€'€&€&€"€#€#€"€"€ € € €"€€"€€€€"€€"€#€#€ € €!€€$€€ €!€!€#€€€ €€ €€€€€€€€€€&€&€ €g€$€"€%€#€$€#€ €$€&€"€"€!€€€€"€€"€€"€ €"€ €!€"€%€"€!€$€!€#€€"€!€'€!€%€%€$€'€&€&€)€,€+€(€-€,€*€*€(€-€(€'€)€(€(€!€%€%€%€$€!€!€ €"€ €€#€"€"€#€!€#€ €€&€'€"€(€#€€ €!€"€ €!€€€€€€€€€€€€€€(€'€€f€$€!€"€"€'€"€$€"€#€$€ €€!€"€"€ €"€!€#€€€€!€€ €!€"€€€&€€€#€&€#€(€&€#€)€)€*€(€+€)€+€-€+€-€.€,€)€,€'€)€(€+€(€#€)€#€"€%€"€ €"€#€€ €!€!€&€&€'€"€"€#€$€#€%€"€"€!€"€€!€€ €€€€€€€€€€€€€€&€(€€d€€"€"€!€$€#€$€#€%€'€%€"€$€ €"€ €"€€ €"€ €#€!€€"€€"€%€"€ €$€"€"€$€&€%€'€)€'€(€+€*€+€*€-€0€-€.€)€-€1€-€*€0€,€+€,€*€&€'€&€'€ €#€!€€"€!€ € €*€€€'€#€"€"€!€#€%€%€ €"€!€€€€€€€€€€ € €€€€€€#€'€€f€€&€"€'€%€#€%€%€#€(€&€%€$€%€"€€"€#€ €"€ €"€ €!€ €#€#€€"€%€#€#€$€'€%€&€(€%€*€-€,€+€(€,€0€0€2€2€0€-€)€.€0€2€-€)€*€*€)€(€#€'€"€"€$€#€ €#€#€&€"€€#€%€&€"€%€#€$€ €!€"€"€!€€€€€€€€€€€€€€€€ €&€#€€g€€ €!€#€%€"€*€$€'€#€'€%€&€'€!€#€"€&€!€ €€%€ €#€"€#€!€€$€"€$€$€!€&€"€'€&€(€(€+€*€,€/€2€,€.€1€2€3€-€/€/€/€,€-€-€+€.€-€$€(€&€#€(€#€#€!€)€'€#€#€%€$€$€"€$€"€€$€"€"€$€€€!€€ €€€€€€€€€€€€€€'€&€€g€ €!€!€#€"€#€"€#€)€%€&€&€&€(€"€%€"€$€ €€"€€#€%€%€€#€"€ €"€#€#€&€&€'€%€&€)€(€*€1€-€/€6€2€2€3€6€4€0€2€4€.€0€2€-€-€*€*€)€'€'€(€&€$€"€'€&€%€)€"€(€-€'€#€#€&€"€€"€!€€!€#€€€€€€€€€€€€€€€€€%€&€€f€€#€"€ €"€!€&€"€(€'€'€*€%€%€ €"€%€&€'€€!€€%€!€#€&€"€%€%€&€#€&€&€%€'€(€(€+€.€0€-€3€5€/€4€4€5€3€2€0€6€7€3€1€1€/€2€2€*€(€)€+€(€'€'€%€*€+€&€(€%€(€%€*€&€&€ €"€ €%€ €"€ €"€€€€€€€€€€€€€€€€€%€(€€i€"€ €€€"€"€ €&€'€&€'€*€%€'€'€"€)€%€#€ €$€ €"€$€#€#€€$€#€#€%€'€&€*€%€(€,€.€0€2€5€5€5€8€5€8€6€7€7€5€4€/€2€5€3€2€.€0€*€/€+€)€%€*€*€'€,€%€%€*€(€%€)€$€%€$€&€%€ €#€€!€€€€€€€€€€€€€€€€€ €€%€'€€i€!€"€"€#€"€"€'€"€%€'€'€*€$€'€&€'€(€&€'€%€$€%€%€%€"€$€%€"€%€#€ €(€'€&€.€/€-€2€1€0€4€8€4€1€;€5€;€:€6€7€2€7€6€2€3€5€+€2€1€,€&€,€+€)€+€*€$€*€'€(€*€*€#€%€&€%€$€ €"€!€!€€"€€€€€€€ €€€€€€€€€€€'€(€€i€€ € €"€$€!€#€"€#€%€'€-€#€#€*€+€+€*€&€'€&€'€$€ €%€$€%€$€$€!€#€%€(€(€,€.€+€1€3€4€8€5€2€9€<€4€3€;€3€6€4€0€.€5€1€-€1€4€0€.€.€-€/€-€*€,€,€+€*€(€&€)€&€&€#€$€$€#€#€€€€€ €€ €€€€€€€€€€€€€€€'€%€€h€ €€€!€ €"€€%€'€&€$€%€(€,€'€)€'€&€%€*€%€)€*€(€)€ €#€'€%€(€(€&€)€%€+€1€1€0€6€3€4€6€3€6€:€5€9€5€6€3€3€3€2€1€2€7€-€.€0€0€/€/€0€1€,€0€.€.€.€-€'€&€(€$€(€!€€"€!€!€ €"€ €"€!€€€€ €€€€€€€€€€€€*€&€€h€€ €€€ €€"€%€$€&€%€$€(€"€,€)€*€*€*€)€%€)€$€&€(€'€&€#€'€$€'€*€+€-€+€2€7€5€4€6€=€>€5€;€6€8€:€8€4€5€6€5€1€0€1€5€3€4€6€4€4€0€6€2€1€0€/€-€(€+€*€*€'€*€#€ €!€!€€"€€ €€€€"€ € €€€€€ €€€€€€€!€&€%€€h€ €€"€ €€&€#€#€ €&€%€%€$€+€*€'€.€%€)€)€)€(€#€*€%€'€*€'€(€$€)€*€-€+€/€7€3€5€8€>€<€8€:€=€9€9€4€3€5€1€6€0€4€.€/€7€3€2€/€4€5€8€3€0€/€3€*€0€(€,€)€'€(€#€$€"€!€€"€ €€€€!€€€ €€€€€€€€€€€€€€*€'€€f€€!€€ €"€"€#€€"€"€%€&€%€$€*€+€+€+€*€*€)€-€'€(€&€'€)€)€)€(€*€,€/€/€4€5€;€4€:€:€>€9€9€;€2€9€9€5€.€:€3€0€2€4€4€-€3€0€2€.€-€5€5€0€6€.€2€1€1€(€+€'€)€!€#€"€"€"€!€€ €€ €€ €€!€€€€€€€€€€€€€€(€&€ €e€ €€!€€$€€!€ €€ €!€$€(€'€+€&€*€(€/€.€0€*€,€*€,€.€&€(€&€+€/€-€,€9€8€<€@€=€=€>€A€<€;€8€8€;€1€2€2€4€3€2€1€0€2€1€0€1€0€7€6€0€2€8€2€-€2€0€*€-€-€*€'€(€!€"€!€ € €!€ € €€#€€€€€€€€€€€€€€€€ €&€(€€i€ €$€ €€!€ €!€#€%€%€#€$€*€&€'€+€)€*€*€)€+€,€-€/€,€/€*€+€-€-€-€1€3€3€8€:€?€>€@€?€B€=€?€:€6€:€5€2€2€-€.€.€2€0€5€0€4€5€1€7€6€8€9€4€4€4€0€3€1€-€*€&€#€!€$€€$€ €€!€€ €€€!€€ € €€€€ €€€€ €€€€€*€(€€i€!€ €"€!€"€ €!€ €%€"€#€&€#€'€*€,€/€*€,€1€-€/€.€.€+€*€+€*€-€-€.€1€1€7€<€?€7€=€D€D€B€B€A€@€:€:€8€5€/€2€3€3€/€0€7€1€2€5€5€7€4€9€3€5€6€0€1€,€/€)€*€%€&€"€&€!€€€&€!€€%€€!€€€€ €€€€€€€€€€€€€(€&€€g€ € €€€€%€ € €!€!€ €#€!€(€(€'€'€)€+€)€*€0€0€/€/€1€2€1€3€.€4€0€3€=€=€C€G€I€L€B€B€B€:€<€>€<€8€4€1€5€)€.€4€2€4€4€9€2€;€8€;€8€5€4€5€1€/€3€,€)€'€'€$€%€#€€#€#€€€#€#€ €"€€ €€ €€€€€€€€€€€€€'€)€€h€"€"€€#€€€ €%€"€ €#€'€&€$€'€(€*€*€*€+€(€/€6€.€4€/€1€0€3€5€5€.€7€:€<€B€J€G€J€I€G€@€A€>€;€:€9€5€1€6€.€0€6€5€4€2€7€:€4€:€:€8€3€8€4€1€/€/€/€,€)€&€&€%€!€!€&€€ €"€ € € €#€ €€€€!€€€!€€€€€ €€€€'€%€€f€"€"€ €€!€ €#€"€"€#€$€"€!€%€*€&€*€.€.€+€,€,€-€3€0€3€3€6€6€5€5€<€;€=€J€B€I€P€L€K€H€M€D€?€A€?€8€<€7€:€5€5€9€2€4€6€5€6€:€;€7€:€4€7€3€/€6€4€(€%€*€'€'€$€&€!€%€#€ €€#€€€"€ €€€!€€ €€€€!€€€€€€€(€(€€g€ €"€ €!€!€"€ €!€$€$€ €"€#€$€!€*€'€%€-€/€0€4€1€4€2€2€4€7€7€7€;€:€?€C€E€H€N€O€T€S€O€N€K€F€A€@€:€8€7€4€6€:€5€6€:€8€5€8€>€5€<€:€9€8€3€4€0€*€)€)€&€ €&€$€!€#€#€#€!€#€€€"€€€€€€€€€€€ €€€ €€€€)€&€ €g€!€"€"€€#€€"€&€!€!€%€&€%€%€(€$€&€,€+€-€.€.€1€2€1€6€8€7€=€:€:€A€B€K€L€R€Y€Z€\€X€V€X€M€L€K€A€F€<€B€8€:€6€8€8€6€9€?€>€:€;€:€4€8€7€9€1€4€1€*€)€*€(€(€%€'€$€%€#€#€#€$€$€$€"€#€"€ €!€"€ €€€€€€#€€€€ €'€&€€h€ €"€#€#€€!€#€!€"€$€"€$€'€$€#€)€+€)€(€1€,€-€2€4€4€7€=€9€>€B€@€D€F€J€P€S€U€]€_€b€Z€X€U€[€K€M€J€F€G€E€>€@€=€<€7€=€8€;€;€8€:€9€<€4€5€:€/€,€+€*€&€#€*€$€#€"€!€"€€$€"€€ €€€€€€€€€€€€€€€€€€&€)€€d€ €!€€$€$€€€#€!€&€$€#€$€#€(€)€*€*€+€.€(€3€7€3€8€9€6€6€:€=€D€>€L€Q€\€Z€d€d€g€n€b€g€a€a€U€S€U€Q€G€D€A€A€=€@€B€6€:€;€<€;€B€5€4€5€5€0€/€.€*€(€'€$€&€%€&€'€#€#€ €€€!€$€€ €!€"€€€ €€€€!€€€!€€€€(€(€€j€€!€€ €$€!€"€"€ €#€"€!€!€(€%€&€)€&€,€.€.€/€0€9€3€3€<€;€=€;€I€M€P€Z€a€f€c€i€r€h€r€p€r€k€d€Z€Y€Y€W€J€L€K€D€@€?€?€;€@€@€B€@€:€3€2€0€-€2€,€'€*€(€$€'€'€"€&€%€$€ €"€#€ €!€€!€!€€ €€€€€€€"€€€€€€'€)€€g€ €#€ €!€ € €€ €#€"€"€(€&€'€$€*€)€)€'€+€*€4€.€3€4€7€8€A€E€E€J€Q€X€d€i€q€m€€‰€€„€…€„€‡€t€o€m€i€X€[€V€T€E€I€G€I€B€B€?€=€=€9€5€4€6€0€-€*€/€*€'€'€#€%€%€$€%€#€ €!€!€ €€€€#€ €€€ €€€€€€€€€€€(€$€€i€ €€#€€#€!€&€#€!€$€%€#€&€(€'€'€)€'€%€,€+€.€3€2€6€6€=€A€C€G€M€\€^€_€t€~€…€”€œ€Ÿ€¥€±€±€ž€€‰€„€z€m€b€\€T€L€G€H€K€@€C€>€B€?€>€0€8€2€4€/€.€+€*€)€,€&€%€'€&€#€%€#€!€ €"€€ €#€"€€€€€€€"€€€€€€€€#€*€€h€€"€#€€"€#€$€ €"€$€"€%€'€&€*€(€(€*€*€(€/€/€4€3€6€<€<€B€G€J€U€Z€c€m€†€Œ€€¿€Í€Ö€á€í€È€Ê€Ì€®€¥€“€€p€m€m€Z€U€Q€M€H€F€D€>€>€=€:€5€2€2€.€)€+€*€)€&€)€&€$€#€&€$€€%€!€€!€!€ €"€%€€€€ €€€€€€ €€€€&€'€ €g€$€€$€€ €€%€#€"€#€'€"€)€%€#€,€&€*€(€+€/€,€+€2€4€=€@€>€H€K€V€Y€j€€•€§€Ç€æ:CPM6€é€Ì€»€–€Š€y€m€d€a€Z€T€S€J€?€D€;€;€:€9€1€.€/€-€,€)€%€*€&€$€!€#€$€"€#€ €€#€#€!€!€$€€€€!€€€ €€€€€€€€&€'€€e€€€$€!€€!€$€$€'€%€ €#€#€*€'€&€,€$€+€)€%€0€-€7€7€9€@€F€H€P€V€f€{€Œ€ª€É€ú_¬‚‚n‚k‚G‚¤e€ê€Â€¥€“€…€z€e€d€b€V€R€J€J€B€<€8€5€2€+€(€-€(€)€,€(€#€#€%€ €"€€ €!€"€ €€ € €€!€ €€€€€€€€€€€€€(€'€ €g€ €!€ €"€!€ €$€#€%€#€#€$€%€+€$€&€)€,€+€1€/€.€0€6€6€;€A€<€J€R€Z€k€Š€¢€Â"¾‚šƒË„ƒ……„Ä„5ƒW‚m¶5€ý€Ñ€·€–€…€{€g€_€Z€S€I€B€A€=€;€1€3€1€0€+€'€-€'€)€(€$€"€'€ €€#€"€€€!€"€ €€€€ € €€€!€ €€€ €€€€'€'€€i€€!€€!€€%€%€!€#€"€$€€$€(€%€%€+€'€)€,€0€0€3€2€3€;€B€C€O€X€d€v€Ž€¿‚ƒq…J‡ ˆñŠ|ŠÉŠˆe†š„¨ƒ0ðJ €×€´€¤€‡€t€f€V€U€E€G€?€>€:€:€5€-€/€*€(€,€(€)€%€%€%€"€!€"€#€$€"€"€$€ €"€!€€€ €€€ €€€€€€€€€#€'€€h€€#€ €"€$€&€ €"€&€ €$€$€&€'€&€*€(€&€0€+€.€-€0€4€9€;€A€H€T€W€k€€€¬€ñ׃† ‰öŽü“Õ–N—G•ù“9޵‰?…{ƒe‚X€Ú€°€–€‚€p€i€Y€O€P€F€D€<€4€5€.€.€.€(€(€(€'€%€&€$€%€$€"€#€'€"€"€ €€$€!€!€ €€"€€€€€€€€€€€(€%€€e€#€"€€!€"€%€&€%€#€ €%€&€%€+€(€*€'€*€+€*€/€3€7€5€:€7€B€I€T€c€r€˜€Ü‚ü…ÔŠš“9™FžßŸQŸ]ž,š˜“—ŠÅ…‘ƒõY€Ð€¬€‹€v€f€Z€K€N€F€?€<€:€/€1€-€2€)€$€%€$€(€(€"€"€!€"€ €€#€€$€#€€€€€€€€€€ €€€€€€€'€'€€h€€$€€#€%€#€%€%€%€&€%€'€(€(€&€(€'€(€/€*€2€6€5€<€7€@€F€G€V€a€€·‚ „`‰’š/žq Â¢‚¢«¢ð¢ä¡4Û“ô‰Ÿ„œ‚µ6€ð€¿€Ÿ€‰€l€^€W€N€I€;€:€=€0€0€)€.€*€(€)€+€$€&€&€'€"€%€#€!€"€€"€"€#€ €€€ €€€€€!€€€ € €€€'€%€€h€"€"€€!€%€"€ €&€(€%€%€'€)€)€(€+€+€.€-€2€-€5€:€;€9€@€F€D€X€g€†€¾R‚²…«M—Û …¢´¤f¤Ì¥–¥¤±¡ØœfÀ†•ƒw‚p€Õ€¦€Š€s€`€S€N€G€E€7€4€3€1€0€.€-€+€&€+€(€)€#€#€%€"€%€&€€"€#€#€€€€€€€€€"€€€!€€ €€ €%€(€€g€"€"€#€#€!€"€$€&€(€%€$€%€%€(€)€,€,€.€-€4€2€5€6€:€>€?€G€O€Z€l€€Üvƒ2‡ ®™Øž°¡F£O¤>¥r¥d¦Å¥ß£æ B•pˆŠ„K‚’š!€Ý€©€‹€t€h€T€R€I€A€=€2€2€-€.€.€*€)€'€(€%€$€(€"€$€(€€€!€#€"€ €!€€€ €€€€€€€ €€ €€€€(€'€€h€€ €#€€&€ €%€%€$€%€&€'€*€)€+€(€.€/€.€2€1€;€5€8€:€E€E€Q€V€o€†€Øƒc‡¢‘½šIŸ¡Ü£¤l¦¦¦”¦S¤±¡j˜3Šj„ê‚Ò¯9€ë€´€‘€~€a€U€L€F€B€8€7€2€5€2€.€+€-€(€'€*€'€%€$€$€€%€ €!€"€€€"€ €€€€€€€€€€€€€€€)€(€ €h€€#€!€$€"€%€#€$€%€#€'€(€%€+€,€+€(€/€3€/€6€3€7€;€A€D€I€N€X€n€–€É–ƒ[‡+e™ú¡£4¤$¤·¥½¦Z¦¤ô è—¼Šå….‚è¬-€ñ€«€€p€g€T€L€B€A€6€5€4€2€.€-€,€%€&€)€&€)€$€%€€"€ €!€#€€€!€€€!€€€€ €€€€€€€ €€€&€(€€i€ €#€#€ €"€#€"€'€%€"€'€&€&€'€)€,€+€0€2€.€4€5€:€?€@€C€G€R€Z€k€€Ë_ƒ +†ô–Ùœ· b¡1£z¤]¤ ¥6¥6¢ºžû•‰§„ø‚ÅÁ0€Ð€¢€ˆ€m€\€Z€J€D€=€8€6€-€4€/€-€-€%€(€&€#€%€ €"€#€$€$€$€"€ €€€ €€€€€€€€€€€€€€ € €'€(€€g€!€'€€'€$€%€$€$€%€%€%€&€&€'€*€*€*€0€/€3€2€8€:€;€B€C€H€O€Z€m€~€½,‚j„‰ü““™Äž$ N¡û¢ü£‡£Š¢Ú w›­º‡ž„Y‚ƒ—€Ê€©€€€g€b€P€J€?€:€7€8€5€0€.€*€)€)€'€(€$€&€#€$€$€ € €$€€!€ €"€€ € €€€€€€€€€€€€€€(€)€€h€$€ €"€"€"€"€$€"€&€$€%€$€(€,€&€*€*€.€1€1€2€;€8€5€>€E€E€P€X€l€|€«€ô¾ƒ]†R#”§™ÙyŸ]¡ ¡2 âŸœ$”ÚŠí…胄‚[€ô€ª€”€u€`€V€F€C€<€D€:€6€0€3€-€-€+€)€"€&€&€%€$€#€"€"€#€€#€ €#€!€€€€€€€€€€€€€€€€€'€(€€i€€"€ €#€ €%€#€!€%€$€$€'€$€+€*€+€-€/€*€/€/€:€:€9€@€B€F€H€R€f€{€š€Ç?‚T„‡co”9˜í›œdœÁœ›š+”†ŒJ†Ç„D‚ެ€Ó€™€‚€j€^€P€K€A€:€6€4€3€1€0€*€*€+€)€%€#€(€"€"€€(€ € €"€€€€€€€!€ €€€€ €€€€€€€€€(€&€€f€ €$€ €!€"€%€&€$€%€"€"€#€)€)€)€+€)€,€/€/€1€0€6€=€=€?€G€O€[€a€u€Š€®€ç}‚z„†‰‹\”•ݕⓤºŠP†}„m‚Å­)€Ó€«€€r€f€O€F€?€>€6€0€0€/€/€-€.€-€*€&€%€%€$€ €%€#€€ €!€#€#€ €#€€ €€€€€€€€€€€€€€€€'€'€€f€$€€#€#€!€%€#€%€$€!€$€%€%€$€*€*€(€1€*€*€2€2€<€7€?€=€D€K€V€[€j€s€•€¼€ìf‚=ƒM„Ć鉊(‰õˆ˜†Ý…ƒ¸‚•Í9€Ý€¨€€r€`€X€O€H€C€?€7€2€2€2€1€+€+€,€(€'€%€'€#€$€#€%€€€ €#€€ €€ € €€€€€€€€ €€ €€€€€€$€&€€f€!€"€€€#€ €"€!€%€$€&€%€(€'€%€&€*€*€-€/€+€4€/€>€<€B€L€I€N€N€j€r€‡€£€¶€æ=¿‚X‚þƒ¨„„2ƒÃƒB‚²ô]€Ï€œ€‡€w€i€^€U€Q€@€?€:€6€4€1€/€0€+€+€%€)€+€#€'€&€&€#€#€%€ €"€ €"€"€€ €€€€ €€€€€€€ € €€€€€#€%€€i€$€ €€ €"€%€€#€"€!€€#€(€(€'€(€*€*€,€*€2€2€1€5€<€@€C€G€Q€R€c€i€w€€€—€«€É€ú%„°Ó߬H€ã€¦€”€ƒ€q€e€Z€X€P€I€A€<€9€9€3€/€+€.€(€.€(€'€+€€%€!€ €%€#€ €#€!€€€€€€ €€"€€€ €€€€€€ €€€€€"€'€ €i€€€!€!€€!€'€€ €%€"€ €%€'€(€!€+€&€+€*€*€1€3€5€<€;€F€H€Q€X€]€`€c€q€ˆ€”€˜€±€µ€Ò€â€î€ç€à€È€µ€ž€–€|€t€m€j€^€Q€V€E€G€=€7€:€5€1€4€,€,€(€)€'€&€)€'€%€#€&€#€#€"€€€€ €"€€€€ €€€€€€€€€€€€€€€&€&€€g€ €"€€#€%€€$€$€"€$€$€'€%€#€(€%€*€*€,€0€.€-€4€6€<€@€E€K€I€Q€V€Z€Z€b€n€‚€ƒ€Š€Š€‘€‘€—€š€Ž€€z€}€r€i€_€k€Z€P€F€G€F€@€B€=€7€6€5€/€.€*€)€*€,€'€(€&€(€$€&€&€#€#€#€&€€ € €€€€€€€€€!€€€€€€€€€€'€%€€e€$€!€"€!€ €%€%€"€!€€&€"€'€(€)€"€,€'€,€)€-€0€2€9€7€?€C€E€J€M€N€^€`€`€t€e€o€q€q€q€u€n€t€l€l€g€a€d€[€[€X€U€N€L€G€D€@€A€9€7€-€.€*€,€)€-€*€$€+€(€%€"€"€€ €"€"€€!€#€€ €!€ €€€€€€€ €€€€!€€€€€€'€$€€h€$€€ €!€!€€$€#€"€$€(€$€%€ €)€$€'€*€*€)€-€2€3€8€?€>€@€B€H€L€M€X€U€U€_€\€i€`€b€a€b€Z€b€X€[€W€_€T€P€S€S€H€E€D€E€>€;€6€9€9€8€0€'€+€+€,€*€+€&€&€%€$€'€&€%€€"€€"€€€!€ €€€€€€€€€€€€€€€€€€(€(€€f€ €€€€ €#€€!€€€'€ €&€%€"€'€+€,€*€.€*€/€4€8€6€=€?€C€E€G€P€R€S€O€R€Z€[€P€Y€V€T€W€P€O€K€O€H€B€H€E€O€M€E€C€?€?€@€7€4€2€5€3€-€+€'€*€&€,€$€*€'€$€&€$€!€#€ €€!€!€!€€€€ € €€€€€€€€€€€€€€€%€&€€f€ €€ €"€!€!€ €!€"€!€%€%€%€%€%€%€)€1€*€+€/€/€5€2€=€:€>€@€;€?€G€J€K€J€H€K€M€J€K€S€M€K€J€N€I€H€C€D€B€F€@€=€B€=€>€7€8€7€=€+€-€2€0€/€(€(€(€'€$€(€#€%€#€€!€"€#€ €"€"€ €€!€€ €#€€€€!€€€ €€€€€€€ €'€'€€f€"€"€!€€%€€€#€ €"€$€!€#€#€%€'€&€'€*€.€+€1€1€6€8€8€:€?€:€@€B€D€B€<€G€D€J€?€J€I€B€J€D€A€C€>€D€>€<€?€?€?€<€<€?€:€8€3€7€/€1€1€/€-€,€)€'€)€'€%€'€'€#€"€€!€"€$€!€#€ €!€€€€€€€€!€€€"€€ €€€€€€$€&€€h€€€€!€%€"€"€$€$€$€#€ €$€%€&€'€'€&€,€/€1€2€4€9€:€5€D€>€B€=€?€>€B€>€@€@€?€B€A€C€E€?€?€;€:€6€7€8€:€<€;€7€<€9€7€7€6€6€8€2€2€,€0€/€-€.€(€'€&€%€&€€&€"€"€!€"€ €!€ € €#€ €€!€!€€€€€€€€€€€€€€€'€&€ €c€ € €€ €"€ €€#€#€#€%€&€"€'€$€'€)€(€*€0€.€1€3€5€5€:€8€:€8€;€:€<€8€<€:€9€:€>€:€=€5€8€=€8€6€7€5€0€6€8€1€5€5€2€4€1€2€4€6€3€4€*€/€-€*€)€*€#€+€(€%€%€"€#€"€$€$€ €!€$€€!€€€ €!€ €€€€!€€€€€€€€€ €&€(€€g€ € €€€#€#€€"€$€€ €%€'€'€*€(€*€*€,€/€2€.€2€7€1€3€5€4€:€6€4€6€3€2€9€5€6€7€8€3€5€3€1€5€5€.€0€-€/€,€5€/€0€4€3€2€2€2€0€6€-€0€0€-€0€-€)€(€#€(€&€&€#€!€$€ €€"€!€€ €!€€€!€€€€€€€€€€€€€€€€&€%€ €g€€!€ €€!€#€ €€%€!€"€#€€+€%€)€+€-€,€*€.€.€/€4€1€2€0€7€3€1€0€0€/€5€2€6€0€4€3€4€1€,€1€-€-€-€-€0€,€)€-€*€+€3€-€0€.€3€-€.€1€1€-€0€-€)€+€*€"€&€"€#€!€$€$€ €€#€!€€!€€€€€€ €€€€€€€€€€€€€€%€'€€g€ €!€"€€!€$€€ €#€$€#€&€%€%€'€'€*€)€-€/€0€/€5€1€*€1€/€6€/€/€,€/€/€-€4€/€0€3€-€1€0€2€.€.€0€)€'€*€-€)€*€.€,€+€/€,€.€+€0€0€*€-€-€*€.€*€&€+€(€&€$€$€$€ €!€ €€ €"€!€€!€!€€€ €€€€€€€€#€€€€€€€'€%€ €e€"€!€€#€$€€#€$€ €%€$€&€€'€*€/€)€)€.€1€-€.€1€.€1€/€'€/€.€/€+€/€2€0€0€/€0€1€,€.€-€*€,€*€/€,€,€*€)€,€+€)€(€)€*€+€+€-€*€*€,€*€)€)€-€-€-€*€+€'€&€ €"€$€"€€€€ €€"€$€€€€€€€€€€€€€€€€€€€&€'€€e€ € €!€€€!€"€"€#€&€(€$€$€&€(€&€)€+€.€-€0€)€-€1€2€.€-€+€'€,€-€)€-€-€,€+€*€-€.€-€+€,€,€(€(€*€,€)€*€'€&€(€(€+€$€'€(€)€)€+€-€-€1€,€)€,€-€,€(€(€&€%€$€%€$€ €$€€€€€€€€€€€ €€€€€€€€€€€€€&€'€€g€!€"€ €!€!€ € €"€"€#€'€&€(€'€%€+€(€)€-€-€,€,€*€+€(€)€'€+€)€-€-€(€*€*€,€,€2€+€*€*€*€*€+€)€'€)€*€(€)€)€+€%€'€)€(€#€)€'€,€*€.€.€(€(€-€&€+€&€%€&€'€%€%€!€"€%€€€ € €€ €€€€€€ €€€€€€€€€ €€€€%€%€€i€ €€€€€"€"€"€%€(€&€"€"€'€)€)€*€*€,€*€&€,€(€-€+€(€(€,€+€(€+€(€)€)€*€(€*€(€0€'€)€'€+€(€$€*€(€#€$€(€"€(€'€&€%€&€$€$€(€*€)€+€&€+€'€+€)€%€&€&€&€&€'€&€&€#€"€€€€ €"€€€€€€€€€€€€€€ €€€€€'€'€€f€ €"€€ €€"€#€"€%€!€)€&€'€(€%€'€1€*€*€+€'€(€*€,€&€*€)€&€(€-€'€(€)€*€*€)€,€(€(€)€/€&€&€'€'€(€%€%€&€!€$€%€"€'€(€"€&€)€)€%€"€&€'€(€%€)€%€#€(€+€&€$€)€!€"€$€"€€€!€€€ €"€€€€€€€€€€€€€€€€€%€(€€h€ €€€#€!€"€"€$€"€$€#€'€'€(€-€)€%€+€'€*€)€+€(€%€&€&€&€*€+€&€(€&€(€'€$€*€)€"€*€*€%€!€'€'€%€%€%€%€$€%€%€"€$€&€%€#€%€#€!€%€'€$€$€)€%€)€'€+€$€(€(€#€(€$€&€%€€#€ €€€#€€€€€€€ €€€€€€€€€€€€#€%€€f€ €€#€€€#€%€ €!€(€%€(€+€*€'€)€(€'€!€(€*€)€,€&€%€$€&€'€#€"€'€'€$€%€'€(€$€)€(€%€!€$€%€'€%€)€&€#€'€ €€*€!€"€!€&€"€&€&€ €'€)€&€%€%€)€(€'€'€(€'€%€%€#€&€"€"€"€€€€€€!€€€€€€€€€€€€€€€€€%€)€€g€€"€€€!€!€&€(€%€!€%€+€+€$€)€)€'€'€)€*€%€(€)€"€&€*€ €!€!€(€%€(€*€&€'€(€'€%€'€&€€$€&€#€$€"€$€'€"€ €#€%€€%€"€"€€&€!€#€#€%€%€&€%€$€$€$€)€&€)€&€$€&€&€(€ €€$€!€!€ €#€€ €€€€€€€€€€€€€€€ €*€$€ €g€€€€!€€!€'€%€!€$€&€&€"€+€'€&€'€'€'€$€#€&€"€$€%€#€$€&€#€%€#€#€&€'€*€'€#€$€"€!€%€'€#€%€%€'€#€"€$€'€#€ €#€&€€#€#€#€!€#€$€ €(€'€!€#€'€&€#€(€&€%€$€&€#€"€"€#€"€!€!€!€€€€€€€€€€€€€€€€€€ €#€'€€e€€€ €"€ €&€#€ €'€)€$€%€*€$€&€)€&€#€'€&€$€%€#€#€$€#€&€$€!€#€&€"€*€%€'€"€+€'€ €'€&€$€%€$€'€"€"€$€"€#€%€#€€"€#€"€!€%€&€ € €$€ €!€%€$€!€#€'€*€%€&€(€#€"€'€$€€#€&€€!€"€ €€€€€€€€€€€€€€€€€"€%€€e€ €€!€#€$€"€!€(€(€!€'€*€)€(€(€(€&€)€'€€#€%€"€"€$€#€$€%€'€ €&€%€&€%€%€"€&€"€"€%€#€#€"€!€ €!€%€!€€%€"€ €"€$€€€!€"€€#€&€%€ €$€ €"€&€$€!€$€'€'€!€!€'€"€"€!€%€€!€€€€ €€€€€€€€€€€€€€€ €#€)€€e€€$€#€#€!€ €"€%€(€%€%€*€$€'€#€&€%€!€ €$€&€!€#€ €&€ €#€'€"€!€#€$€"€#€&€$€%€#€#€#€!€"€!€ €"€ € €$€#€#€€"€!€€#€%€!€#€ € €"€"€!€€$€$€!€"€%€*€)€ €"€)€!€#€&€#€€#€€ €€€€€€€€€€€€€!€€€€€€&€&€€h€"€!€€$€#€#€"€$€)€"€#€'€#€#€!€#€€ €!€$€!€%€$€ €!€"€#€!€#€%€%€#€%€%€#€$€#€#€"€$€#€$€€%€"€€"€"€€$€%€ €"€$€!€!€€$€!€"€€€€!€!€"€€"€!€ €#€"€'€"€"€#€%€!€&€€%€€ €€€€€€€€€€€€€ €€€€€)€"€ €i€$€€#€€#€€"€#€%€&€%€%€$€&€#€&€"€"€#€€"€€!€"€#€€$€!€$€#€ €$€$€#€%€%€€%€$€"€€#€ €#€"€"€ € €€#€"€!€!€€ €€"€ €€&€€#€"€#€#€ € €!€"€!€%€#€"€€(€$€$€ €"€"€!€"€€€€"€€€€ €€€€€!€€€€€€&€'€ €e€"€"€#€"€%€%€#€#€$€$€#€"€$€$€#€!€"€ € €"€ €€$€#€ €$€ €"€€"€"€!€$€$€"€!€!€%€€#€ €#€ €"€"€#€!€"€"€€!€$€€ € €€#€!€ €€€#€ €€ €#€"€€!€ € €€%€ €$€!€!€ €!€#€"€"€$€ €€€€€ €€€€€€€ €€€€€&€'€€e€ €$€"€#€$€$€$€$€"€!€#€#€!€%€€!€€ €!€€"€$€$€!€€!€ €"€!€!€#€"€!€"€!€$€'€!€"€$€€€"€"€ €€!€€"€€!€!€!€€#€!€#€€"€€ €€ €!€€€"€!€$€#€ €!€!€"€#€!€#€!€"€$€"€ €!€!€€$€€€€€€€€€€€€€€€$€#€€g€"€!€%€ €%€!€$€(€!€!€!€€€"€"€ € €€€€€€ €$€!€!€€$€€"€€"€%€$€"€ €!€$€ €"€ €€ € €!€!€#€ €!€€€!€€€€€€ € €€!€ €€€"€ €€€ €€"€!€€"€!€ €€!€ €!€#€"€!€€€"€€€€€€€€€€€€€€€'€'€€d€ €$€$€"€$€%€#€€%€€"€€"€€€ €€€€!€!€€ € €"€"€€€€$€!€€ €"€"€#€&€"€€€€ €€#€ € €€€€€!€ €€!€ €€ €€!€ € €"€€€!€€€€€€€"€!€#€!€#€"€#€"€"€#€$€ €€ €€€€ €€€€€€€€€€€€&€%€ €g€"€#€!€$€!€€#€"€!€"€€#€€ €€"€€"€€ €€€€"€ €!€ €€ €!€"€€ €"€€"€!€ €#€€!€!€"€#€€ €€"€€!€ €€€"€€ €€ €#€ € €€!€€€ €€€"€€€€#€ €€!€#€!€€!€ €!€"€ €#€€€€€€€ €€€€€€€€€$€&€€c€"€$€ €"€ €€"€ €€€€€!€!€€€€€€"€!€ €!€€€!€#€ €#€€"€#€"€ € €"€"€€#€€ €€ €€€€!€€€ €€ €€#€€!€€€ €€€€!€!€ €€ € €€€€€ €€€ €€"€ € €€"€!€€€!€€€€ €€ €€€€€€€ €€"€&€€f€"€€"€"€"€#€€#€ € €€€€"€€€ €€€€€€€€ €€!€#€"€€"€ €€!€#€!€"€"€"€ €!€€€€€€€€€!€€€€ € €€€€€€€€!€€€€€€€€€€€€€€#€#€€ €"€ €#€ €#€ €!€"€ €€€ €€€€€€€€€$€*€€f€!€!€!€€"€€ €€€€€€€€"€"€€€€ €€€ € € € €€ €!€ €#€€"€€"€€"€"€€ €€€ €€ €€€€€€ €€€€€€€ €€€€€€€ €€ €€€€€ €€€#€!€€€!€€€ €"€€!€€€ € €€€€€€€€€€€€(€$€€g€€€!€ €€€ €€ €"€€€€€€!€€€€€!€€€€"€€€#€ €€€!€!€€ €!€!€€"€#€€€€!€€€€€€!€€€€!€€€€ €€"€€€ €€ €€ €!€€€!€!€€€ €€!€"€€€"€!€€!€ €€"€€€"€€ €€€€ €€€€€&€$€€d€€#€€€€€€€€ €€€€€€!€€€€€€€!€€€ € €€€€"€€!€!€$€!€!€#€€€!€ €€€€€€!€€€!€#€€€ € €€€€€€€€€€€€€€ €€ €€€€€€€ €€€€€#€ €€€"€€ €€€€€€€€€€€)€%€€e€"€"€!€ €€€€€€€€ €€€ €€€ €€€€ €€€€€€"€ €€#€€"€!€€ €"€€"€!€ €€€€€€€€€ €€€€!€€€€€€ € €€€€ €€€!€€€€€€€ €€€€€€€!€ €€ €"€€€"€€€ €€€€€€€€€"€(€€h€€ €!€€!€€!€€€ €€€€€€€#€€€ €€€€€ €€#€€ €€ € €!€ €!€€€!€ €€€€€€€€€€€€€€€€€!€€€€ €€€€€€€€€€ €€€€€€€€ €€€€ €€€!€€€€!€€€€€€€€€€€€*€&€€e€ € €€ €€€ €€€€€€€€€€€€€€!€€€ €€€ €€€"€€€#€€€ €!€!€€€€€€ €€ € €€€€ €€€€ €€!€€€€€ €€#€€€€€€"€€ €€€€€€€€ €€ €€€ €€€€€ € €€!€ €€€€€€€*€&€€g€€€€€€€€€€€ €€ € €€ €€ €€€€€€!€€€€€€€"€ € €!€#€!€€ € €€€ € €€!€€!€€€€€€"€€€ €€€€€€€ €€€€!€€€€€€€€€€€€€€!€€€€€€€!€€ € €!€€€€€€€"€€'€'€€b€€€€€€€€€"€ €€ €€€€€€€€ €€€€€€ € €€€"€€€!€!€€€!€€€€ €€€€€€€€€€ € €€€€€€ €€€€€€€ € €€€"€€€€ €€€ €€€€€€€ €€€€!€€€€€€€€€€€€€€&€'€€f€€€€€€€€€ €€€€€!€€€€!€€€€€€€€€€€"€€ € €€€€€ €€€!€€€€€€"€€€€ €€€!€ €€€€ €€ €€€€ €€€€"€€€€€€€€€€€€€€€€€€€€€€ €€!€€€€ €€€€€(€*€€e€€€€€€€€€"€"€€€ €€€€!€€€!€€€€"€€ €"€ €€€€€€€€€€ €€€!€€€€ €!€€€€€€€€€ €€€ € € €€€€€ €!€€€"€!€€ €€€€€€€€€€€€ € €€€ € €€€€€€"€!€"€!€€€%€,€€fXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 9.0 / minimum value of good pixels GOODMAX = 9925.0 / maximum value of good pixels GOODMEAN= 146.611313 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 104 / length of first data axis NAXIS2 = 104 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 11.000000 / the minimum value of the data DATAMAX = 9976.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -10.9437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2015-08-16' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '16:35:31' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.725069133450E+04 / exposure start time (Modified Julian Date) EXPEND = 5.725069134028E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.0 / fsw located subarray axis1 coord. of target TARGA2 = 516.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 87849.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 3824309 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 9976.0 / maximum value of good pixels GOODMEAN= 146.789856 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€!€€€€€€€"€€€€ €!€€€€€€€€"€€€€€€€€ € €€€€ €€€"€€€"€"€€!€ €#€ €!€$€"€!€$€ €!€€#€ € €€ € € € €€€ €€€€€€€€€€€ € €€ €€€€€€€€€€€€€€€€€€€ €€+€*€€i€ €€€€"€ €€€€€€€!€€€€€€€ €€€€€€€"€€!€€€!€ €€€#€$€ €$€ €€ €!€"€ €#€"€"€!€!€$€#€€"€"€ €€"€"€€!€#€€€ €€€"€ €€€!€€€€ €€€€€€"€€€€€€€€€€€€€€€€€€"€&€,€€i€€€ € € €€"€€€€!€€€€€€€€€€!€€€€€"€€€€€€ €€€€ €!€€!€ €€€"€€!€%€"€ €$€#€€!€ € €#€€ €€€€ €€#€€ € €!€!€€ € €"€€€€€€€€€€€€€€€€€ €€€€€€€"€€€ € €(€(€€g€€#€€€€!€€€€€€!€ €€ €€€€€€€€€!€€€!€#€€!€ €"€€#€€€!€!€€€ €$€€!€"€#€"€$€$€#€!€"€&€#€€ €€!€#€!€$€#€!€€€€"€€€€€€€!€!€€ €!€€€!€€€ €€€€€€!€€€ €€€€€"€€"€+€(€€i€$€ €#€#€€€€€€€€€€€€€€ €€€€$€€€!€ €€!€ €"€€€€€"€€"€€€"€ € €"€€!€!€€!€€#€$€€%€"€#€!€!€€ €€"€€€ €!€€"€ €€!€!€€ €€€€€€€€!€€€€€€€€€!€ €€!€€ € €€ €€€'€'€€i€"€ € €€€!€!€€"€€€ €€€ €€ €€€€!€€€€ €!€ € € €€€€€€ €!€€!€!€€ € € €%€"€&€ €#€%€"€!€!€#€€ €"€$€!€ €"€€!€"€"€"€€!€!€€€€"€€"€€€€€€€€€€€!€€ €€€€#€€€!€!€€ €€ € €)€&€€g€€ €€"€ € €!€€ €"€€€€€!€€€€ €€€€€€ €"€!€ €"€€"€ €€€ €!€"€#€!€%€$€ €€%€!€%€ €#€$€"€"€"€!€$€$€ €"€!€ €"€$€!€!€€€!€€ €€#€€ €€"€€!€€€€ €€€€€€ € €€"€€ €$€€€€€€!€€€(€)€€g€"€"€ €!€"€€!€€€€ €"€€€"€€€€€€€€ €€€€!€"€ €!€"€"€€ €!€!€€!€ €!€€ €$€#€ €#€#€%€€"€&€#€"€€$€ €!€$€€€"€$€!€€ € €€€ €!€€#€"€ €#€ €€€ €€€€ €€ € €!€€ €$€ €#€€!€ €€"€€€ €'€(€ €g€!€€"€€$€$€€$€€€!€ € €"€€!€€€€ €€!€€"€ €!€!€€ €€ €"€€€€€"€#€!€"€€€%€!€"€#€ €$€$€€#€#€"€!€"€$€#€$€"€€#€€ €!€ €!€!€"€€ €€€€!€ €€€€€€ € € €€"€"€ €€€€!€!€€"€€€€€€€&€*€ €f€"€€!€#€!€€"€"€€#€"€€€€!€€€!€ €€€€€ € €€ €!€ €€€€"€%€#€!€#€"€!€€€#€#€$€&€$€$€"€(€$€#€&€%€€#€%€&€%€&€%€ €€#€€!€#€"€€€€€!€"€ €€€ €!€ €€€!€ € € €!€€"€ € €!€!€€€ €€ €€€€(€)€€f€!€#€#€ €!€€%€%€ € € € €€€€€€€#€!€€€ €€ €€"€€#€€€!€ € € € €€€ €€"€"€!€#€#€&€'€%€#€%€%€(€'€$€(€#€#€#€"€"€"€€ € €&€"€$€€€$€ €!€ €€"€€€€€€€!€ €€!€ €#€€ €"€€€"€!€ € €!€€€€(€&€ €e€$€ €!€ €#€$€"€$€"€"€!€"€"€€€€€€€!€!€!€ € € €!€ €€!€#€#€"€ €!€"€€$€#€"€&€$€$€%€ €$€&€%€ €*€%€$€$€'€%€%€%€$€#€&€#€%€€!€€€$€!€€ €€€!€$€!€!€"€€€ €€#€"€ €€!€#€!€!€!€#€"€ €"€€€€€!€€#€'€&€ €f€"€"€%€ € €"€"€#€%€#€#€ €"€#€!€€ € €€€€€ €€!€€#€!€€!€€!€ € €!€$€"€"€#€ €"€"€€!€&€'€$€%€$€&€&€'€(€&€$€'€&€"€%€#€"€ €$€ €€€!€€#€!€€€€ €€#€€€!€ €$€ €"€"€!€"€#€€$€€€!€€€ €€€€€€%€)€€e€$€€€#€!€€%€!€$€"€!€$€!€ € €$€ €€€!€!€€€"€ €!€#€€€ €#€ €$€ €€ €#€#€!€#€ €$€$€#€'€%€&€(€&€%€(€(€(€'€*€&€'€&€'€%€"€!€!€"€&€$€%€€#€"€€€"€ €€#€!€!€"€!€$€#€!€ €€!€!€€"€ € € €€ €€!€€€€€'€'€€g€ €€€#€ € €#€%€$€!€&€#€$€#€"€!€%€"€€!€€"€!€€"€€€ €#€"€€ €%€ €#€#€"€€#€$€"€#€&€$€#€'€*€$€%€)€)€&€%€,€!€&€(€(€)€(€*€"€%€(€%€!€$€$€"€"€€&€€!€!€€€#€€!€!€"€€"€€#€ €"€"€!€ €€€€€€€€€ €$€$€€f€€!€"€!€ €€"€"€#€#€%€!€$€#€ €%€$€€ €€€€€€€€ €"€€ €#€!€$€€%€€!€"€#€"€"€$€$€"€&€'€"€)€*€'€(€,€*€*€-€-€)€*€'€)€*€%€'€$€#€!€"€"€"€#€€"€€$€€#€&€#€ €$€$€"€€&€!€€$€%€ €€€€€€"€€€€€€(€+€€h€!€€€ € €"€ €"€'€"€#€#€$€"€%€$€&€!€#€€ € €!€"€"€$€€€#€$€"€"€$€ €!€€$€#€&€'€$€!€&€&€'€*€%€*€&€-€,€-€+€,€+€/€*€(€(€)€&€*€%€'€(€$€'€$€&€#€ €"€!€!€€"€"€#€$€&€€#€(€%€!€$€!€$€"€!€!€€€ €€€€€€€+€%€€h€€€€!€"€€#€ €%€ €'€$€'€!€$€#€"€%€&€#€$€$€ €$€&€"€"€!€#€ €"€%€#€#€€!€!€€%€#€#€$€&€"€+€+€*€&€0€2€+€-€-€*€1€.€2€)€&€/€*€&€)€)€(€"€&€#€!€$€$€!€ €&€(€#€%€#€$€!€%€$€!€#€"€'€"€$€%€#€ €€€€€€ €€€€%€)€€k€€€€€#€%€#€€#€$€"€"€%€%€&€'€(€%€)€&€$€!€#€#€ € €!€"€ € €$€ €#€!€"€!€$€%€$€%€&€'€)€(€+€'€+€-€.€*€1€0€0€/€/€-€,€0€1€/€-€.€/€&€%€'€%€%€%€(€%€ €'€"€!€#€%€&€$€%€"€!€%€&€#€€"€!€#€€€€€ €€€€!€€€(€(€€g€€€€!€€€"€$€&€ €"€#€%€!€&€&€#€'€#€#€"€$€&€$€"€$€€!€&€%€€#€%€&€!€&€%€€'€(€$€&€*€&€(€)€.€/€.€1€1€-€2€2€1€2€0€/€,€-€/€*€.€&€*€)€(€(€%€%€$€)€%€$€"€'€"€&€%€%€%€'€&€ €%€$€ €#€€"€ €€€€ € €€€€€(€(€€g€€ €€€€€#€"€#€&€%€%€&€(€%€#€+€%€%€)€#€"€"€#€$€#€#€$€"€€$€#€!€$€#€%€!€!€*€#€$€'€-€'€+€,€-€.€1€/€.€0€8€-€4€6€1€/€0€0€0€.€(€-€&€#€+€'€"€)€&€!€$€(€'€&€&€&€%€%€'€'€"€ €%€$€!€#€!€€€€€€€€€"€ €€(€(€ €h€€!€€€€"€€"€€"€%€#€*€#€%€$€&€'€%€&€%€%€&€#€"€&€$€$€"€$€!€ €#€(€"€#€%€'€%€$€*€&€-€*€*€)€,€.€1€1€=€1€7€5€1€1€/€5€4€2€+€2€0€)€(€*€#€#€%€(€%€%€,€%€&€'€'€%€&€%€ €$€#€$€!€!€%€€ €€€€€€€€"€€€€+€$€€e€ €€€"€€€ € €!€%€$€%€!€%€(€%€'€)€)€$€#€(€'€'€$€(€$€€'€#€$€!€%€"€"€#€%€#€(€(€'€*€.€.€+€/€3€0€1€4€9€0€8€3€8€5€4€6€1€0€8€-€3€.€,€*€(€*€&€'€(€*€(€(€(€&€'€$€$€"€%€&€#€€%€$€€€€!€€€€ €€€€€€ €'€*€€h€ € €!€€€"€!€€!€"€€#€#€+€!€&€'€$€'€&€'€&€(€'€&€$€&€"€%€!€#€$€#€#€$€&€$€*€&€$€*€-€-€1€/€0€0€7€;€7€9€7€:€5€9€3€5€9€6€1€3€/€2€)€-€-€-€+€*€,€)€(€(€/€'€#€-€(€#€'€-€$€%€$€$€!€ €$€€€ €€€"€ € € €€€€%€*€€h€ €!€€€"€€€#€ € €€%€#€#€'€&€%€#€*€&€*€*€,€$€%€'€+€#€(€'€$€'€$€#€#€$€%€#€'€(€+€(€/€0€0€0€1€5€5€8€7€7€8€9€8€3€3€9€5€0€5€6€0€,€.€.€+€/€,€+€,€-€.€#€*€*€%€)€)€*€&€'€&€ €!€!€€"€ € €€€€€€€"€€€ €(€(€€g€ €€"€ €€€ € €€!€$€ € €&€(€!€%€+€'€+€)€)€,€+€)€*€*€$€'€(€$€&€$€'€$€)€%€)€(€-€-€2€.€1€3€1€8€9€>€;€4€1€<€6€4€5€6€3€6€4€2€3€/€2€,€0€3€-€0€*€/€.€,€+€*€)€*€*€%€%€'€'€$€!€#€€ € €"€€€!€€€ €€€€"€€%€+€€e€€!€!€€ €€€€"€ €!€"€&€ €#€(€'€'€(€)€(€*€*€*€(€%€*€'€(€&€&€$€&€)€$€%€'€&€+€+€0€/€3€4€4€8€7€:€5€8€9€7€8€4€4€5€1€3€9€4€4€6€4€1€2€2€.€0€3€/€*€/€+€/€*€(€*€'€(€)€&€!€#€#€ €€!€€€€€€€ €€€€ €€€$€-€€j€ €€€!€!€€€€"€ €"€ €!€ €'€$€%€)€'€'€+€(€,€*€(€+€)€(€+€(€%€&€+€&€#€'€,€*€+€.€5€9€3€7€6€9€5€:€8€:€4€:€6€8€6€1€6€4€1€,€4€1€1€5€4€/€1€4€4€.€2€3€*€,€-€.€)€*€)€$€%€"€$€!€!€!€ €€€ €€€!€€€€€€€!€(€(€€k€ € €#€ €€ € €€€$€#€€#€$€"€$€(€%€%€,€+€%€,€+€+€,€*€,€)€(€)€'€'€'€,€*€+€,€-€5€0€6€:€8€5€>€<€<€=€<€6€;€8€4€1€4€5€2€0€2€2€-€4€0€4€5€3€3€1€6€1€0€1€0€-€)€,€'€'€&€'€%€#€"€"€€!€€ €€€!€€€!€€ €€!€€'€*€€d€€ €€€ €€#€"€"€ €€€!€#€!€'€%€%€%€+€'€,€.€*€*€.€0€-€*€,€,€)€(€-€(€+€/€0€.€/€7€:€<€@€:€;€@€?€6€;€9€6€4€6€5€4€4€6€6€6€0€3€2€0€7€5€7€3€4€3€/€1€2€1€)€-€&€&€#€)€#€"€#€#€!€€"€€ €"€!€€€#€€€€€€€(€*€€i€€ €€"€€€€!€€"€$€!€ €#€"€!€!€'€&€'€%€,€(€*€1€*€'€+€.€-€)€+€(€(€,€.€+€(€1€:€4€<€=€=€=€=€D€?€>€B€9€8€5€6€.€1€2€3€1€.€3€2€0€4€6€2€;€9€5€3€5€5€,€*€-€*€(€*€#€#€"€!€ €€€"€#€"€€€€€€€€€ € €€"€&€'€€g€ €€ €€€#€#€€"€$€!€!€€#€ €#€'€ €%€+€'€+€-€1€.€-€2€0€/€/€-€0€+€.€*€,€-€2€7€4€8€?€=€@€;€C€B€;€:€=€=€>€9€1€2€5€0€3€4€7€2€-€2€:€8€4€<€6€6€3€1€.€0€5€)€,€+€'€%€&€'€#€!€ €#€€#€"€€€!€€€€!€ € €€€€(€*€€g€ €€ €€€ €€%€"€!€"€"€"€"€€"€ €#€'€$€&€)€+€-€*€,€1€(€.€.€2€0€.€,€/€/€1€1€2€A€B€@€=€F€D€F€F€B€D€=€7€6€5€0€2€*€4€8€4€2€5€7€4€7€;€9€:€;€=€0€4€0€,€0€-€*€'€%€'€#€#€#€%€"€€ €#€€€#€€€€#€€ € €€€ €$€'€€i€€!€€"€!€€#€!€ €€!€€!€#€&€!€#€%€'€'€*€*€&€+€,€&€-€3€3€,€1€5€3€0€0€2€1€6€;€<€B€E€G€D€J€I€D€A€J€A€6€3€:€6€3€/€3€3€/€6€5€1€8€8€5€7€A€;€8€7€2€2€0€2€/€)€,€'€#€"€%€&€€"€(€€$€€"€ €€!€"€ € €€€€ €"€'€*€€i€€ €!€€€"€!€#€#€!€€%€€€€%€%€$€&€'€#€*€*€)€,€,€-€/€/€/€4€/€.€2€/€0€5€:€?€@€>€C€G€D€M€M€L€E€C€<€@€=€A€7€7€4€2€5€:€:€4€6€5€4€5€8€9€7€8€<€:€0€6€1€0€&€(€%€$€%€#€#€"€ € €€ € €!€$€#€€ €€ €€€€€€*€+€€f€€ €€ €"€€€!€ €!€€#€#€#€#€!€#€#€'€&€#€-€-€'€+€3€/€0€5€0€,€3€5€/€9€5€6€:€C€C€G€M€E€P€O€J€N€M€C€B€H€7€8€B€:€8€7€5€;€6€7€7€8€7€7€:€:€=€<€5€5€4€3€.€-€,€$€$€&€&€%€%€#€€$€#€€€!€€€!€"€!€€ €!€€€!€"€&€€j€€€€ €€€"€!€!€ €!€€!€!€#€!€&€$€"€$€%€&€&€&€/€*€0€2€1€/€2€3€7€4€8€>€@€@€?€K€L€N€M€N€R€S€S€L€K€L€I€H€@€A€7€7€9€8€3€8€7€6€8€C€:€;€>€?€8€9€5€/€0€.€*€)€)€)€%€%€&€"€ €%€ €"€ € €€€!€€€€€€€ €€€(€(€ €i€€ €$€€€#€ €!€#€ € €$€€!€!€#€%€$€%€(€'€ €)€(€)€,€-€-€4€+€/€4€5€6€=€=€>€C€A€K€Q€V€T€Z€_€X€X€^€U€M€M€F€E€C€E€=€:€7€?€>€=€<€>€=€=€?€>€8€<€5€1€3€1€+€'€'€)€'€%€'€%€#€'€$€!€!€"€€!€!€ €!€€ €€ €€€€€(€(€€i€"€€ €"€!€!€#€ €€€!€$€!€"€$€"€&€!€%€$€$€'€'€&€*€-€-€.€2€/€4€7€7€;€=€:€B€F€H€L€W€[€b€a€d€d€a€b€Y€X€P€L€D€J€F€C€>€@€>€=€=€;€<€:€:€A€=€;€7€8€5€.€/€,€-€(€&€&€%€!€$€(€#€€#€"€!€€$€€ €€€€€ € €€€!€#€(€€h€€!€€€"€€€#€!€!€%€€ €"€&€"€$€#€%€$€%€$€&€*€,€*€)€0€/€4€2€9€8€9€=€?€E€K€P€U€_€\€_€j€g€h€m€l€n€h€P€V€T€T€H€O€H€A€A€C€A€B€B€>€?€@€A€:€:€7€5€3€/€0€,€$€(€&€%€%€&€"€"€!€ € €€!€"€ €€ €€€"€ € €€€€(€(€€i€ €€€ €€"€ €"€#€!€#€"€$€!€%€$€&€%€'€%€'€$€%€%€+€,€-€0€/€7€3€7€5€B€B€@€M€U€S€V€g€m€l€r€z€€y€t€v€t€g€i€]€\€R€R€S€L€G€D€G€B€<€;€;€B€?€<€9€9€5€1€,€,€&€+€&€'€%€'€"€ €"€#€!€#€$€€€ €"€€€€€€ €€€!€,€%€€j€$€€!€€"€€€€€ € €%€€#€€'€"€%€%€%€&€%€(€*€*€-€,€.€/€.€0€5€7€B€B€G€D€P€^€h€n€w€„€}€‰€ˆ€€‘€”€ˆ€}€€l€e€Z€W€U€T€P€H€H€D€@€D€@€=€C€?€:€4€/€0€-€-€,€'€&€$€%€$€%€$€%€$€"€#€€€€€€€€"€!€!€€€€€+€'€€f€ €#€ €"€ €!€ €"€!€"€ €#€#€$€%€$€#€%€'€"€*€'€&€%€*€+€,€.€,€1€6€<€>€@€H€C€R€]€d€k€x€ƒ€‰€Ÿ€«€®€À€²€º€ª€¤€š€Œ€ƒ€w€e€Z€Y€O€V€P€J€@€G€C€?€C€=€:€9€4€/€0€'€,€(€&€%€!€&€'€&€%€%€"€€"€"€ €€#€€ €€ €€€€€€%€(€€g€€ € €"€€ €"€ € € €€!€ €$€"€%€#€%€&€%€"€&€)€*€)€-€/€0€2€3€4€:€=€A€I€Q€W€_€j€€€™€¯€À€Ø€ï€ú€ý€è€Ò€Ã€²€€€q€e€_€b€S€Z€R€J€J€B€<€=€:€8€.€4€5€*€+€*€*€%€*€%€#€%€'€%€"€#€#€ €!€€€"€€€€ €€€€€€(€'€€i€€ €#€€€€ €#€ €"€!€$€$€$€"€"€%€&€#€#€$€%€+€&€&€)€+€+€4€3€3€8€=€B€F€V€Y€W€o€€˜€·€ä€ö4\}Ž{]@€å€Ë€¥€”€ˆ€{€h€g€_€U€Q€L€G€B€;€:€:€5€1€0€1€(€*€)€(€'€$€(€%€$€#€ €#€€€"€€ € €!€ €€!€€€€€€#€)€ €i€ €€€ €€ € €#€€"€"€€&€&€'€#€%€!€"€%€&€&€*€)€)€/€*€.€1€6€6€9€<€F€F€U€a€q€{€˜€°€ä"Ž‚)‚¶ƒƒ#‚è‚u‚¬P€þ€Ù€¹€€‰€€m€`€^€Y€P€O€C€>€9€7€4€3€*€.€'€(€*€*€#€)€%€"€$€!€!€#€#€€ € €"€€ €€€ €€€€!€€%€*€€d€€!€€ €"€€€!€€$€%€$€&€'€"€€#€%€&€&€)€&€$€-€*€(€,€-€0€3€2€:€=€B€G€V€h€t€‚€°€ÚT‚ƒS„¼…Ô†B†ƒ…ó…B„>ƒùz€ß€¾€¥€Ž€|€w€h€^€P€S€H€C€A€6€7€6€/€-€*€(€&€'€'€&€%€$€ €"€!€€#€ €"€€#€ €!€ €€€€€€€€'€*€€j€ €!€"€!€€"€#€ €!€€#€!€$€%€#€"€"€)€(€(€,€*€(€*€(€-€.€.€1€.€5€<€:€B€Q€Z€l€„€š€ÓH‚p„"†8ˆØ‹«ÆŽy¹‹%ˆ…³ƒÃ‚k”€ì€¾€€Š€y€g€\€T€P€E€C€A€:€5€.€0€1€,€-€+€,€%€$€€'€#€$€$€$€"€"€€€!€ €"€!€ €€€ €!€€€(€*€€k€"€€"€€€"€!€€!€$€!€$€!€$€"€)€$€%€(€ €'€%€,€,€)€-€-€1€/€6€6€;€:€A€W€a€l€€¾2‚+„‡ZŒ—’ì—¤š6šëš˜’ËŒ†Ø„‚j†.€å€Ã€¢€~€u€k€]€P€K€E€>€5€1€3€.€.€-€'€+€&€'€(€&€!€"€€#€!€$€ €!€#€€!€€€ €€€€€ € €)€)€€h€ €€€!€"€!€!€#€€ €"€!€"€'€%€#€$€%€$€(€&€(€&€-€-€/€0€.€2€8€9€<€@€H€V€d€~€¡€û¤ƒH†¼3•{›çž‹ŸÇ¡œ¡q ßݘAü†µƒ™‚6n€Ý€°€Ž€v€r€a€R€J€I€A€<€5€4€/€.€)€*€'€)€&€%€#€€!€%€"€%€"€#€!€%€"€ €!€€€€€€€!€ €(€*€€h€ € €€ €€#€€%€!€ €#€$€$€$€&€$€%€(€%€(€&€*€+€-€+€1€-€1€3€7€@€?€A€M€Z€j€€²‚:„ÄŠƒ”E›¼ž÷¡¥£;£—£Ö¤e¢ÞŸ——‹…Aƒ +»G€ý€Å€˜€t€h€]€Y€O€F€;€6€5€.€-€*€0€*€(€+€&€$€&€&€€#€#€"€ €€ €"€€€€€€€ €€€"€"€$€&€€g€€ €"€ €"€"€!€!€ €€ €#€$€$€(€%€&€%€&€&€&€-€&€)€1€.€-€0€4€9€9€?€I€O€X€g€Ž€Îa‚݆8Ž·˜Ëž¡¢Ñ¤£¥b¥ä¥™¥s£xžü’(‡šƒÒ‚%„$€Þ€¯€ƒ€t€a€W€J€I€?€=€6€0€/€,€-€*€&€(€%€"€%€'€"€$€#€!€€!€"€$€!€ €"€ €€€€€€€ €)€'€€h€€!€€ € € €$€ €%€$€$€(€'€%€*€%€%€&€"€"€+€)€-€1€,€3€.€4€1€:€:€@€G€O€W€o€€Ô‹ƒQ‡G÷™Òž„¡í£ü¤Ç¥z¦Y¦ø¦F¤¤¡—9‰™„“‚¤š4€ß€­€’€x€g€S€P€C€;€:€2€2€3€.€/€&€'€'€)€&€)€'€$€'€$€#€€ €"€#€!€€"€!€€€!€!€€€ €%€)€€g€ € €€$€!€€!€$€€%€%€"€%€#€*€%€(€&€(€'€-€+€-€*€1€0€5€1€3€9€C€=€J€O€]€u€”€Þƒa‡‰‘r™¼žP¡N¢Ê¤z¤À¥è¦¦Œ¤Q¢ ˜½Šù…‚ت;€ç€®€™€p€f€T€K€E€>€9€5€8€0€,€.€*€+€*€&€%€#€#€"€!€!€#€"€#€€"€€#€€€ €€€€€€ €&€'€ €g€ €!€$€"€ €€"€!€!€!€#€#€$€%€#€'€&€'€*€(€%€)€-€+€'€/€3€0€3€5€>€8€H€S€]€q€š€Í‚ƒ3†Õ͘°” º¢Þ¤J¤r¥•¥Ë¥»£ Ä˜bа… ‚óÁ=€ì€ª€€t€a€U€L€F€A€:€5€1€/€1€(€'€*€(€$€&€'€$€$€ €"€ €&€"€ € €€ €€€€!€€€ €€"€)€(€€g€ €"€$€€!€€€%€"€$€€#€$€%€+€)€'€(€(€*€(€+€-€.€0€,€4€2€:€9€>€@€A€U€\€p€’€ÄN‚Á…oŒé–[œŸˆ¡Á¢í£‰¤A¤î¤Ú¢qž&”F‰„È‚¥¯&€Ô€ž€…€n€[€Q€K€B€?€;€:€5€*€+€*€(€%€,€'€#€)€#€!€"€!€"€€#€€€ €€€€ €€€!€€€ €'€%€€k€€ €€€€!€!€ € €"€%€!€#€"€&€"€#€&€(€,€+€*€+€/€1€0€/€2€9€7€@€?€J€R€^€h€Œ€·‚+„ˆ‹‘?˜†œÞŸÆ¡?¢£¢ò¢^Ÿq™ÐŽM†Ðƒí‚Gx€ú€¼€–€w€j€R€N€J€G€:€6€1€3€0€7€,€*€(€#€"€"€$€#€$€!€€$€ €!€€€€€ €"€ €€€€€€€(€)€€i€€%€€€"€#€€$€#€$€%€$€&€$€%€$€'€'€(€+€+€(€(€,€.€/€/€4€3€:€=€D€I€S€[€m€‡€ €ÛЂׅhŠê’˜¬›¸ž-ŸlŸŸžš_‘•‰$…*ƒñ-€ä€§€‹€w€c€U€I€G€D€;€4€7€4€/€,€+€%€'€$€*€$€&€$€#€#€#€!€"€ €#€€ €€!€€€ €€€ €€"€&€(€ €f€!€€"€€!€"€ €"€"€!€€&€$€$€'€#€"€-€)€+€'€-€.€+€1€1€/€5€7€=€8€A€C€J€Z€e€u€–€­íƒ>…{Š^‘b•¶˜ššš†šT–O‰†…¨ƒ¡‚@q€ù€»€Š€~€f€[€N€F€C€@€:€7€4€0€.€)€-€$€'€%€(€'€$€(€#€"€%€#€€€"€"€€€€!€€ €€€ €€!€*€'€€j€€€$€ €€ €€€€$€%€ €"€"€"€$€(€*€$€'€+€$€+€0€.€*€.€7€8€8€A€D€D€P€O€c€v€ˆ€¢€É/éƒE„û‡ä‹ê‘7᎗‹,‡¦…9ƒ•‚@… €¼€ž€‚€m€\€S€I€>€@€;€6€1€4€)€+€,€,€(€,€*€&€!€#€%€#€!€!€"€!€ €€€!€ € €€€€€€€€€(€'€€f€$€#€ €€#€!€€ €!€€%€#€&€&€'€#€(€&€&€-€'€(€*€+€-€-€-€-€-€7€9€>€L€R€T€\€g€y€”€¯€×ª‚•ƒ©„ò†3†µ†Ï…Ý„îƒò‚õ‚j€ó€¾€Ÿ€…€j€a€Y€P€C€C€9€9€4€5€0€-€0€*€&€%€)€&€%€&€&€$€!€$€€ €&€!€!€€€€€€!€€ €€!€€€(€'€€h€ €€€€€!€!€$€€!€%€#€%€"€$€"€$€*€%€"€'€(€'€*€(€.€-€6€3€7€9€B€D€L€U€X€e€p€z€š€°€ÊMÔ‚F‚¥‚ꃂ‚ƒÜz +€æ€ª€”€‚€g€f€[€M€H€E€;€7€:€5€0€,€-€+€*€)€*€'€"€(€"€ €%€"€ €%€"€!€!€€"€!€ €!€€ € € €"€€€ €(€&€€g€€!€€€"€&€"€"€€&€!€"€#€!€#€'€)€&€%€)€&€,€)€,€*€.€1€4€0€6€;€?€C€K€N€]€]€g€s€€‹€š€Â€Ó05XlF'€ü€Ü€Â€›€‡€z€l€i€W€T€L€D€D€:€9€/€3€,€.€/€(€,€*€)€)€&€%€%€%€$€%€ €!€!€€€!€!€ €!€ €€€€€ €€€€)€(€€g€ € €€€!€€"€"€ €$€"€%€ €!€"€(€$€$€(€%€%€)€)€(€-€0€/€,€1€4€:€A€F€C€L€W€[€a€j€u€€€…€š€›€´€µ€Â€Â€¾€³€±€€”€†€w€j€h€`€X€T€J€I€G€:€?€5€5€/€/€)€-€0€)€'€&€)€'€$€(€ €%€%€#€#€"€"€€€"€#€€ €€€€"€€€€€*€%€€f€!€!€ €"€ €"€€#€€%€$€"€!€'€#€$€!€'€&€&€*€)€(€)€,€-€(€0€7€5€<€:€A€K€J€M€V€c€c€b€t€t€z€„€€€…€€‡€‡€ƒ€r€p€d€j€^€_€S€H€L€E€A€B€=€7€5€4€3€/€/€+€*€$€,€&€$€&€'€"€#€"€ €"€#€$€!€!€!€€!€€€€€€€€€€€'€%€€h€€!€€€"€"€"€$€!€"€ €#€$€$€€$€"€$€%€+€)€%€*€+€,€+€-€/€/€5€=€D€A€@€H€N€O€W€U€c€d€e€f€j€p€n€e€o€k€e€e€_€_€Y€]€U€T€S€L€H€D€C€7€5€7€6€1€1€/€-€)€%€'€&€(€%€'€%€&€)€€!€%€€€#€#€ €€€€€€"€ €€€€€€*€(€€f€ € € €%€ € €"€$€ €€€!€€#€€$€$€(€#€#€(€*€'€*€,€-€-€2€3€8€9€>€B€C€F€N€M€W€X€[€Z€^€Z€a€a€a€_€W€Z€[€R€S€Z€O€L€M€L€K€H€D€H€@€7€>€9€1€0€1€/€/€*€.€'€%€$€%€&€%€#€"€"€#€€ €#€$€ € €!€!€€ €€€€€€€€"€&€(€€i€ €€ €€€€!€!€€"€%€!€$€$€!€#€&€"€%€%€(€(€&€(€)€/€-€5€3€3€9€?€>€:€H€K€C€M€M€M€U€S€T€O€U€V€S€S€R€J€J€N€O€J€K€J€J€@€F€D€A€<€<€7€;€9€4€2€.€-€-€+€&€&€*€#€&€%€€%€%€$€!€"€€!€"€!€€€€!€"€€ €€!€ €€€$€*€€f€ €#€€€!€ €€"€ €"€€!€#€!€#€%€&€&€'€(€ €'€&€-€)€0€1€7€3€;€:€8€=€D€D€C€F€H€F€J€G€M€Q€N€I€N€M€I€I€G€J€F€=€A€B€E€@€@€A€B€=€>€;€7€:€6€4€1€/€,€,€*€-€*€&€&€$€'€"€#€€ €!€€ €€"€$€€!€ €!€!€€€€€!€€€(€)€ €j€"€€€€€€€€€#€#€€#€$€"€€#€"€*€&€%€'€(€(€,€-€1€3€3€5€5€8€>€6€@€C€@€<€>€?€B€D€L€G€B€F€C€<€=€D€=€;€@€?€:€;€=€<€<€:€8€3€5€6€0€7€/€2€/€-€+€,€&€#€(€%€&€#€(€"€$€"€#€ € €#€€€$€€€ € €€"€"€€€€ €%€(€€g€ €€€€€!€$€ €€"€!€€"€€ €#€&€#€&€'€'€%€'€-€)€)€0€3€5€;€7€6€>€7€;€<€9€=€=€=€<€;€<€=€C€A€=€;€?€8€;€9€5€4€6€4€5€4€:€:€3€5€7€8€3€5€4€3€,€/€,€*€+€'€&€%€(€"€&€$€#€#€$€%€!€"€!€€€€€€€€€€€!€€€&€*€€f€ €€€ €"€€!€#€ €€!€"€#€ € €!€!€'€'€'€&€+€,€)€-€0€3€/€3€7€5€5€:€6€5€=€9€8€4€<€>€:€>€=€:€6€9€:€6€1€7€5€1€5€6€4€.€2€4€0€2€.€/€1€9€2€+€-€1€.€/€1€*€%€%€'€(€$€'€$€€%€€€"€"€ €€ € €€€€€€€ € €€€*€"€ €j€!€€€€ €€#€€€"€#€ €#€€%€!€#€"€#€'€&€'€(€/€/€+€/€6€0€6€2€6€:€7€;€4€5€4€5€1€.€7€:€2€7€5€7€0€7€4€/€1€/€.€0€.€+€-€1€3€5€,€3€5€3€1€1€2€.€/€+€,€-€)€*€&€(€#€"€"€#€ €"€"€#€€€€€€€#€!€€ €€€€€€%€*€€h€ € € €€!€ €"€ €!€ € €!€"€"€#€"€%€'€(€*€*€(€-€+€-€+€/€2€4€4€/€0€4€1€5€0€0€5€1€3€3€/€/€6€1€2€0€2€2€0€-€*€1€-€0€/€(€0€+€+€,€0€0€/€/€3€1€+€,€2€,€(€-€*€&€*€&€$€#€!€&€!€€%€€€"€ €€!€€€€ € €€€€€€)€*€€g€ €€€"€€€ €#€€€#€!€ € €$€#€€%€)€'€'€+€)€+€(€1€0€.€-€2€3€1€2€/€,€0€-€-€+€3€1€-€:€1€.€/€6€0€.€/€*€*€)€+€-€+€-€*€'€,€,€,€*€-€0€0€+€-€/€-€+€/€-€%€)€*€%€%€&€$€€#€"€ €€!€ €€€"€€ €€€€ €!€€€"€(€'€€k€€€#€€€€ €€€"€#€ €!€#€#€"€%€$€$€#€.€(€(€*€/€.€*€/€+€-€3€2€2€/€,€/€,€.€1€*€1€1€-€-€+€.€*€)€+€,€*€,€-€'€(€,€*€(€*€-€,€$€1€'€.€0€.€*€+€.€+€,€*€)€*€'€(€(€!€"€%€€€$€!€€&€!€€€€€€€€€€€€!€'€*€€g€ €$€ €€"€€€ €"€€ €"€!€€#€"€#€&€&€+€'€+€)€*€0€*€-€,€,€-€3€1€/€,€+€-€/€*€-€.€4€,€*€-€-€*€,€+€+€*€)€*€&€%€)€+€(€+€*€&€'€*€'€+€.€.€.€.€-€,€*€*€,€)€(€)€'€&€%€!€#€"€#€ €!€!€!€€ €€€€ €€€€€€€ €*€'€ €j€ €€€€#€€"€!€€€!€€!€#€#€ €!€'€(€(€*€'€*€*€*€,€*€.€)€+€.€,€+€-€(€+€'€'€*€+€'€.€*€+€*€+€-€%€(€*€'€'€)€*€(€(€*€'€%€$€+€&€)€*€*€(€*€#€,€+€(€*€'€)€)€)€)€$€%€!€#€#€"€€€!€€€€€ €€€€€ € €€€!€%€%€€i€ € € €€!€€€€#€"€!€"€ €"€#€&€$€)€'€*€+€*€$€-€,€+€-€-€)€,€)€+€(€%€+€&€)€'€+€-€)€*€(€'€(€%€%€+€&€(€)€&€#€ €%€(€#€%€)€'€%€(€&€$€'€(€(€(€*€*€*€(€(€&€%€$€*€'€$€#€ €"€!€ € €€ €!€!€€ €€€€€€€€€!€#€(€€g€€€€€€€ €!€ €€ €%€!€#€#€%€&€%€'€&€*€)€&€+€)€&€(€*€&€)€'€)€(€-€&€)€*€+€'€+€*€%€'€(€*€'€&€&€+€&€'€+€&€%€*€$€"€%€%€'€)€$€&€&€'€#€$€%€)€)€)€+€)€&€)€'€%€'€#€&€&€$€!€!€!€€ €!€€!€!€€€€!€€!€€€€'€'€ €h€€€ €€ €€!€ €€€#€ € €#€"€&€'€'€'€%€*€*€'€#€*€'€*€,€'€*€(€(€(€$€*€'€(€)€%€)€'€&€+€%€)€%€(€'€&€"€"€&€#€'€$€'€&€(€&€'€$€&€$€$€&€'€$€%€)€*€(€(€'€)€&€'€&€'€$€%€"€%€ €"€!€€€ € €€€€!€€€€€€€ €'€)€€g€ € €€€€ €€€$€ €€$€(€"€"€#€'€ €*€(€(€$€&€'€&€'€(€&€(€*€&€%€'€%€'€(€%€*€&€(€ €(€'€)€'€#€%€'€(€%€%€*€ €$€$€'€#€&€#€#€!€%€"€#€"€&€"€%€$€%€#€&€'€+€&€$€%€(€&€$€#€"€&€ €$€€€€"€€€€€ €!€€€€€€(€)€ €e€ €€€€!€!€€€#€€ € €$€%€&€'€(€%€$€)€+€(€*€&€'€(€$€'€%€&€"€%€)€$€(€'€'€'€)€)€#€*€'€$€)€%€%€%€"€€#€&€ €$€!€%€!€&€#€'€ €€"€"€(€ €'€%€&€"€%€,€$€$€&€'€$€&€'€#€#€)€%€!€€!€€€!€€€€€€€€ €€€ €$€(€€h€!€!€€ €€€€€ €€$€%€!€%€$€%€(€%€'€)€(€&€*€*€#€$€%€#€"€!€&€!€%€%€'€#€&€%€$€)€*€#€$€*€"€$€%€$€ €$€#€"€$€%€ €&€#€(€"€€$€#€"€$€"€"€"€!€"€)€'€$€&€%€!€&€%€)€#€$€ €$€&€#€#€"€€!€€€€€€€€"€€€€€&€'€€h€ €€€ € €€€ €"€!€"€"€$€(€&€$€(€&€%€)€$€$€)€"€&€#€%€'€&€ € €#€!€$€$€#€%€#€%€$€$€%€$€&€&€#€&€"€$€&€"€"€"€%€#€!€ €$€!€€"€"€$€"€ €$€"€#€#€&€(€!€€%€%€'€%€&€#€'€#€%€&€ €"€ €!€€€€€€!€€€€€€€€(€(€€d€ €€€€€!€€€"€&€ €"€'€#€%€'€"€$€%€%€%€&€%€#€$€"€$€#€#€#€%€#€"€&€&€€&€%€$€&€#€"€(€€ €"€$€%€ €!€%€#€#€ €#€%€"€$€!€"€€$€#€#€%€$€"€ €#€%€%€ €'€'€#€'€%€%€'€$€$€%€'€$€#€#€ €€ €€€€€€€€€€€€'€%€€e€ €€ €€€!€€€!€"€"€(€#€!€$€#€$€#€'€'€ €$€ €"€"€%€%€&€%€"€"€!€&€"€#€%€ €$€$€&€$€%€'€%€#€$€$€#€!€#€$€$€"€!€"€"€!€&€!€#€$€!€#€"€%€#€€!€#€$€ €$€%€#€$€&€$€$€&€€%€#€%€$€"€$€€€ €#€€!€€€€€€€€ €(€'€ €f€ €€€!€€€€ €$€!€$€#€#€*€"€&€&€(€%€%€$€"€"€"€"€"€€$€"€"€$€!€!€"€#€%€ €'€"€#€#€$€%€!€!€%€"€"€€%€$€ €#€ €"€"€ €€€#€#€€"€€$€#€'€#€!€%€€"€ €$€"€"€%€$€%€"€€%€&€%€%€!€"€€€€€ €€€€€€€€€'€'€€f€€€€ €€!€&€ €"€"€ €#€$€&€'€$€%€$€%€€ €%€"€#€ €"€#€"€$€%€ €!€!€"€"€%€#€!€€!€$€#€"€"€ €"€ €"€#€ €"€"€#€%€!€"€"€%€€"€€&€#€!€#€"€!€!€ €!€€€ €"€€ €%€#€$€&€"€%€ €"€#€%€$€€!€ €€ €€€€€€€€€*€*€ €i€€"€€"€€€$€!€ €"€#€"€!€"€!€$€"€!€ €%€!€'€ €"€€!€"€!€"€#€#€€ €"€"€%€"€#€#€#€#€#€$€%€€&€€"€"€$€%€€ € €!€"€%€€€$€!€&€!€€€€€#€!€!€€€#€!€€#€#€#€%€$€ €#€!€#€#€#€!€€!€"€ €€ €€€€€€€€%€&€€f€€!€!€€!€€"€"€€%€€#€#€"€$€$€$€!€#€%€"€€€#€!€#€€ €€ €"€%€€!€#€"€€%€!€!€#€$€€!€"€$€ €"€!€ €€€"€#€"€#€€ €€€"€ €"€#€!€"€ € €€€"€€€ €€€#€ € €#€"€"€!€#€!€$€$€€€"€!€€ €€€€ €€€ €&€+€€f€ €€€€"€!€"€#€&€'€%€"€%€"€#€!€"€€#€ €"€!€!€"€€ €€€"€"€€%€!€!€!€!€€€$€#€!€#€#€!€€€"€"€!€"€&€ €€!€#€!€ €"€#€€!€#€!€"€!€!€€"€ €€€ € €€€!€€"€$€$€!€"€"€!€ €"€#€!€€"€€!€€ €€ €€€€€&€'€ €g€!€ €€ € € €"€"€"€%€"€#€ €"€€#€'€"€€"€"€€€€#€$€ €"€€ € €!€"€!€ €"€#€"€!€$€"€"€$€!€!€ €#€€#€ €€€"€€ €!€!€€!€€ €€€#€ € €!€ €€"€ €€ €€"€"€€€!€€%€ €#€!€%€"€€#€!€€ €€!€€€€ €€€€&€*€€c€ € €€!€!€#€!€"€!€!€%€!€&€'€ €$€%€€€!€!€€"€ € €€"€ €€!€ €€#€!€#€€€"€€ €#€#€"€!€#€€ €€€"€!€#€"€ €!€€ €€#€ € €#€ €"€€"€ €€!€€€ €!€ €€€€€€€€!€#€#€ €"€"€ €$€"€#€€"€€€€€"€€€%€(€€e€ €$€€€€"€"€"€!€"€€"€€€$€#€€!€€ €€!€!€€"€"€ €€€€€€€€!€€"€ € €$€"€#€€ €!€ € €!€!€ €"€€!€!€€€€!€€#€!€!€€€ €€€!€€€ €€ €€€€€€"€€"€€€€!€!€$€!€ €"€!€€"€€€ €!€€€ €&€'€€i€ €€#€ €!€"€"€#€ €€€"€€ €€"€€€ €€"€€€€€ €€€€€"€€€€"€€€!€ €#€"€#€!€€ €!€€€€#€€#€€€€€ €€€ €€"€ €€€ €!€€€ €€€€€€€ € €€€ €€€ € €€€!€€"€"€!€ €€"€€€€€€'€(€€g€ € €€ €#€€"€ €"€€#€ € €€ €€€€€€€€€ €€ €!€"€€€"€€"€!€€€#€"€€ €"€"€€€!€€ €#€€ €€€ €€€€€€€"€€€!€€€€€€ €€€€€!€€€€€#€€€€€ €€€ €€#€€$€ € €€"€ € €€€€)€)€€i€ €!€"€#€"€!€ €"€€€€€€"€ €€€€ €€€€€€ €€!€€€€ €€"€€€ €€€$€"€€ €€€!€€!€€€"€€€€€ €€€ €€$€€€!€€€€€€€€€ €€€€ €€€€€€ € € €#€€€€ €!€€€ €#€€!€€€€ €&€&€€f€€€ €€ €€€ € € €€€€€€€€€€€€€€!€€€€€€"€"€€€€€€€"€€"€"€"€€€#€"€!€€€€€€#€€!€€ €€€€€€€€€€€€€€ €€!€€€€€€€€€€€ €€€ €€€ €"€"€€€$€€!€ €€€*€-€€f€$€€€!€!€!€!€€ €€#€€€€€€€ €€€€€ €€€€!€€!€ €€€!€€€ €"€"€"€!€ €€"€#€€€€€€#€!€€€€ € €€€€€€€€€ €€€€!€!€€€€€€!€€€!€€€€ €€€€ €€€"€€€"€€€!€€€€"€'€)€€f€ €!€ € €€€€!€!€ €€€€€ €€€!€€€!€€€€€€€ €€€€$€ € €"€#€€ €€ €€!€€€"€#€ €€ € € €!€ € € €€€€€"€€€€€€€ €€!€€ €€€€"€€ €€€€€€€€€€€€€€"€!€€ €€€"€ €€!€&€(€€e€!€€!€€!€!€ €€€€€€ €€€€€€€ €€€€€€€ €€€€€€!€€€€€"€!€!€"€"€€ €"€€ €€€ €€€€€€€€€#€€€€€€€€€€€ €€€ €€ €€€€€€€€€€€€!€€€€€€€€€€!€ €"€"€'€,€€i€ €!€€!€"€€€€€ €€€€€€ €€€!€€€€€€€!€€ €€€€ €"€€"€"€ €"€€"€ €€€€!€€!€ €€€€€€€€€€ €€€"€€ €!€€€€€€€€€€€!€ €€ €€€€€€€€€€€€!€€€€!€€€#€ € € €,€)€€g€€"€#€!€€ €€€€ €€€ €€€€"€€€€!€€€ €€€€€€ €!€€"€"€#€!€€"€ €"€€€€€€"€ €"€"€ € € €€€"€"€€€€€€€€€ € €€€€ €€€€!€€€€€€€!€€€€€€€ €€€"€ €€€%€!€€$€!€!€*€*€€eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 9976.0 / maximum value of good pixels GOODMEAN= 146.789856 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 11.000000 / the minimum value of the data DATAMAX = 6056.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -10.9437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2015-08-16' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '16:37:19' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.725069258487E+04 / exposure start time (Modified Julian Date) EXPEND = 5.725069258602E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.3 / fsw located subarray axis 1 coord. of aperture APERA2 = 514.4 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1204.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 6056.0 / maximum value of good pixels GOODMEAN= 99.871109 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€€€€€€€€€€€€€€"€€ € €€€€ €€)€)€€d€€€€€€€€€€€€€€€€ €!€€€€€€€€€€%€$€ €e€€€€€€€€€€€€€€€€€€€ €€€€€€€€$€(€€c€€€€€€€€€€€€€€€ €€ €€€€€€€!€€€&€&€ €d€€€€€€€€€€€€€€€€€!€ €€€€€€€€€"€%€€d€€€€€€€€€€€€€€ €€€ €€€€€€€€€€'€(€ €g€€€€€€€€€€€€€€€#€"€€€€€€€€€€€&€&€€e€€€€€€€€€€€€€€ €€€$€€€€€€€€€€&€(€€c€€€€€€€€€€€€€€€!€"€€€€€€€€€€€&€(€ €g€€€€€€€€€€€€€€€#€%€&€#€€€€€€€€€'€*€€`€€€€€€€€€€€€€€"€*€0€,€!€"€€€€€€€€'€&€€d€€€€€€€€€€€€€!€*€E€a€W€;€%€€€€€€ €€%€)€ €d€€€€€€€€€€€!€!€5€é‚óƒ×ƒ:G€J€$€€€!€€€!€(€%€ €f€€€€€€€€€€€)€*€iƒªŒù‘µŽÕ…‡€¸€A€€€ €€€€(€+€€b€€€€€€€€€ €€(€5€ˆ„´‘Z—¨”µ‡e€ã€U€ €#€€€€€(€&€€c€€€€€€€€!€€€'€+€v„2ä•g’m†Š€Á€I€ €€€€€€&€'€€b€€€€€€€ €€€€€&€J‚‡A‰ü‡Ü‚Í€_€+€€€€€€ €'€*€€g€€€€ €€€€€€€€€*€L€¨€þ€Ê€]€/€ €€€€€€€&€&€€h€€€€€€€€€€€€"€€€(€;€5€(€€€€€€€€ €$€(€€f€€€€€€€€€€€€€€€€#€ €€€€€€€€€€&€)€€e€€€€€€€€€€€€€€€€ €€€€€€€€€€€%€)€ €a€€€€€€€€€€€€€€€€€€€€€€€€€€€%€*€ €c€€€€€€€€€€€€€€€ €€€€€€€€€€€€$€&€ €e€€€€€€€€€€€€€€€€€€€€€€€€€€€&€)€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€(€&€€f€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€(€€c€€€€€€€€€€€€€€€€€€€€€€€€€€€&€&€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€%€(€€`€€ €€€€€€€€€€€€€€€€€€€€€€€€€'€'€ €`€€€€€€€€€€€€€€€€€€€€€€€€€€!€$€*€€eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 6056.0 / maximum value of good pixels GOODMEAN= 99.871109 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits b/lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits new file mode 100644 index 00000000..d32e3700 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits @@ -0,0 +1,21 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocoa03q2q_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocoa03q2q ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'CERES-2 ' / proposer's target name RA_TARG = 3.019837512434E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.163741093880E+01 / declination of the target (deg) (J2000) ECL_LONG= 297.367386 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -11.186652 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 10.040481 / galactic longitude of the target (deg) (J2000) GAL_LAT = -29.171545 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV28X50LP ' / aperture used for reference position ELON_REF= 297.367386 / ecliptic longitude at reference position (deg) ELAT_REF= -11.186652 / ecliptic latitude at reference position (deg) GLON_REF= 10.040481 / galactic longitude at reference position (deg) GLAT_REF= -29.171545 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 13693 / PEP proposal identifier LINENUM = '03.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'COA' / program id (base 36) PR_INV_L= 'Hendrix ' / last name of principal investigatorPR_INV_F= 'Amanda ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '03' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'Q2 ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F28X50LP ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 3.0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 484 / proposed axis1 detector pixel of subarray startSS_A1SZE= 104.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 463 / proposed axis2 detector pixel of subarray startSS_A2SZE= 104.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'GEOMETRIC ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 81 / word 11/14 (0-255) PSTRTIME= '2015.228:16:34:16 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2015.228:16:39:36 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV28X50LP ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '13693_2 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 3.018849343480E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -3.165595469476E+01 / declination of v1 axis of st (deg) PA_V3 = 214.052200 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'SCHN000911F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'SCHK000675F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = -1.094564752045E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -3.011494389985E+03 / position of space telescope x axis (km) POSTNSTY= -5.585185767648E+03 / position of space telescope y axis (km) POSTNSTZ= 2.759939212808E+03 / position of space telescope z axis (km) VELOCSTX= 5.995210266196E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -4.214763738626E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -1.987615019341E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.456143003646E+02 / right ascension of the sun (deg) DEC_SUN = 1.375731290861E+01 / declination of the sun (deg) RA_MOON = 1.666704993381E+02 / right ascension of the moon (deg) DEC_MOON= 4.240738047776E+00 / declination of the moon (deg) VELABBRA= 20.320471 / aberration in position of the target ANNPARRA= 4.647622 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = 'T' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'S ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'Y' / parallax correction used (Y, N, or A) RA_REF = 3.019837512434E+02 / right ascension of reference object (deg) DEC_REF = -3.163741093880E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.658656000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 2.409074560722E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.615830988428E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.861583604410E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.596635865649E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.786689621591E-01 / cosine of inclination ECCENTRY= 7.446961416497E-04 / eccentricity ECCENTX2= 1.489392283299E-03 / eccentricity times 2 ECBDX4D3= 5.506505125154E-10 / eccentricity cubed times 4/3 ESQDX5D2= 1.386430858470E-06 / eccentricity squared times 5/2 ECBDX3 = 1.238963653160E-09 / eccentricity cubed times 3 FDMEANAN= 1.747284263264E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.329612887381E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.116144634254E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 2.683700343510E-01 / argument of perigee (revolutions) MEANANOM= 7.317577417211E-01 / mean anomaly (radians) RCARGPER= 1.083947380026E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 4.229888956230E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.774315185848E-01 / sine of inclination SEMILREC= 6.919347741484E+06 / semi-latus rectum (meters) TIMEFFEC= 9.659134900000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.663572560000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F28X50LP ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'MOVING TARGET ' / target type TARDESCR= 'DWARF-PLANET; Ceres at 2nd longitude 'TARGCAT = 'SOLAR SYSTEM ' / first target category TARKEY1 = 'DWARF-PLANET 'TARKEY2 = 'Ceres at 2nd longitude ' / PROPOSAL INFO: Flux Information MAG_V = 8.000000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.500000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information MT_LV1_1= 'STD=CERES ' / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 0.000000000000E+00 / target right ascension from proposal (degrees) DEC_PROP= 0.000000000000E+00 / target declination from proposal (degrees) PEQUINOX= 'J2000.0' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'The Ultraviolet Spectrum of Ceres 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136341000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247896000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350540000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -1.663740000000E-06 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 1.663300000000E-06 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 6.454600000000E-04 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -6.450000000000E-04 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.057635000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -4.015093000000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.856243000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -4.035270300000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.215280000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 4.020315300000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.416672000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 4.040489700000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 11781 / Number of words NLINES = 13 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 104 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 104 / subarray axis2 size in unbinned detector pixelsCORNERA1= 484 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 463 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 54 / Slit Number SLITSIZE= '28x50 ' / aperture field of view TFPFNAME= 'F28X50LP' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'DIFFUSE ' / type of acquisition DFIELD = 2 / Diffuse Field Method CENTMETH= 'GEOMETRIC-CENTER' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 527.0 / fsw located subarray axis1 coord. of target TARGA2 = 514.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.5036 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.23558 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.60288 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.32019 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.50673 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0881 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5393 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.5857 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.1188 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 4.00391 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.5188 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.7438 / (dgC) Fitting A temp OFITBT = 18.6458 / (dgC) Fitting B temp OFITCT = 6.09609 / (dgC) Fitting C temp OHDM15V = -15.174 / (V) Hold Mode Regulator - 15V OHDP15V = 14.6385 / (V) Hold mode regulator +15V OHDP5V = 4.84298 / (V) Hold mode regulator + 5V OKMDITBT= 24.7995 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.4583 / (dgC) M1 heater control temp OM1HTRW = 0.071625 / (w) M1 heater power OM2HTRT = 33.7292 / (dgC) M2 heater control temp OM2HTRW = 0.0610833 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.2677 / (dgC) MEB 2 radiator temp OMBCSPT = 35.65 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.7 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.25 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1679 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1834 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0922 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 24.3781 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.99633 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.6188 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.50726 / (w) Thermal controller power, zone 1B OTCZ2AT = 19.9625 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.9056 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.775 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.822 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.0375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.197417 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.75 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.334833 / (w) Thermal controller power, zone 3B OTECINV = 6.77203 / (V) TEC input voltage OTECTCV = -7.6172 / TEC temp control voltage OMBMC15V= 14.8136 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0748 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90136 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4828 / (V) LVPS CEB +15V OPSCB35V= 31.5556 / (V) LVPS CEB +35V OPSCB5V = 4.98407 / (V) LVPS CEB +5V OPSCM15V= -15.4367 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.48254 / (A) M1 +5V current OM1P5V = 5.20635 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 36.0075 / (dgC) M1 charge amplifier temp OM1DCDT = 36.4959 / (dgC) M1 decoder temp OM1MCET = 35.0307 / (dgC) M1 MCE temp OM1LVPST= 39.6705 / (dgC) M1 LVPS temp OM1HVPST= 36.2517 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 152.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.635 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.044 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.9609 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481807 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.4727 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 39.6705 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.60747 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3611 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.2107 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.05218 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.045 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.04731 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 33.0416 / CB clock X pwb temp OCBCLKA2= 30.857 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.09596 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.08623 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.93352 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.07867 / (V) CEB phase 3 lower low V OCBP3UHV= 5.45848 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.07867 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0487692 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCBS1AHV= 4.91361 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.90874 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.99631 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02533 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.05938 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.92334 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94749 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02533 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.97199 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.89901 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95253 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= 0.0023521 / (V) CB state machine 1 +5V OCBSM2PV= 5.08623 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.94263 / (V) CB summing well A Lo OCBSWBHV= 4.89901 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.01074 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.8952 / CEB timing pwb temp OCLM5V = -5.1545 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00193823 / Calibration lamps -5V current OCLP30V = 29.5706 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0238333 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 3824309 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.000337006 / (A) Slit Wheel motor current OSWMVEL = -0.0228103 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1793 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2559 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 54 / Control section slit position OCSDQEXJ= 624 / Control section data queue extract OCSDQINJ= 624 / Control section data queue insert OCSXQEXJ= 49 / Control section Expos Que Extract OCSXQINJ= 50 / Control section Expos Que Insert OCSOBSQ = -27869 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 15942 / Control section dump pointer OCSFILLJ= 15942 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 34 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCOA03Q2". |àPs2ÈIhhÏä"ʤл°¼€ÃPÄ0ÁÐÂðÞÐÌPÌ@«°@¿ ²°€°ðª`¼`Þ€¾°ÎÉÈðÈðÒà 0Ó0  ¿Ðþ ¨`ÀÁ0àÈàÒ Ò ¹pÑ0½`µ¸à¸ðââÍ ÎðÍàÍp§°¶¨ ´0¦p¿à« ¢¦ €§À¡Ÿp€ß á¿pÝ€åÐÀ€P& ( +þ¯ «½3+ ½f¸T Å Í ÏÆòôîó7L q Ù ™Å ®½1 áp Ä^µI Ã Ì ÑÅõøð +ÔÀÃ^ ^ð^ð_P„àê %`ÂPÚðï€%@Á`ÚàÔàÀ‰„° °Á ß` €Àðß`LàT°˜ `˜°€˜À ˜À`F@¦F ¥à™À€ ™ À~@h@~ h €`f €e@~€h@~@h `f Àeà}àh@@f €€ÁÐ~@h@}àh`€f€Àf€€ §€ ¦À~>@€àßp|°Ã €~°zZµ“À €€€b9 +³sŠžñ'_l d Ÿð€„ðñ6pp12#`‘>F>F¥€Ìá_"F‚__–d=ÿ"ʤл ¼ÃPÄ0ÁÐÂðÞàÌPÌ0«°@¿°²°€°ðª`¼`! à°¾ ÎÉÈðÈðÑ  Ô°¡à¿àþ ¨`ÀÁ@àÈàÒ Ò ¹`Ñ0½`µ¸à¸ðâ â@ÍÎðÍðÍp©¶à¥°±Ð§ÀÁP« €§0¡€©p¢0ž@ß á¾ðáàè€Èð `& ( +þ¯ «½3+ ½fºU Å Í ÏÆòôíó7P q Ø ™Å ­½1 áp Ã_¹K Ä Ì ÑÅõøð +ÔÀÃ^À^ð^ð_P„àê°%0Á`Ú°ï€%@ÁPÚ°ÔàÀ‰„À  Áðß`  ÁÐß`LÐT°˜°€˜°À˜ €˜À`F@¦ F ¦™à€™à~Àh@~@h€`f`€f`~`h`~@h`@f@eà~@h€`f €pÀ`~h`~@hÀ`f€Àfà€À¦à€ ¦à~>€€à}`ÃÀð`zZ¶“À € b9 +³rŠžñ'_ldàà€„ðñ6pp12#`‘>F>F¥€Ìá_#I‚__–d=ÿ`6m°3ÖæW”UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocoa03q2q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 11781 / Number of words NLINES = 13 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 104 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 104 / subarray axis2 size in unbinned detector pixelsCORNERA1= 484 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 463 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 54 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 2 / Diffuse Field Method CENTMETH= 'GEOMETRIC-CENTER' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.0 / fsw located subarray axis1 coord. of target TARGA2 = 516.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.5036 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.23558 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.60288 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.32019 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.55192 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0881 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5393 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.1188 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.96367 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.5188 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.7438 / (dgC) Fitting A temp OFITBT = 18.6458 / (dgC) Fitting B temp OFITCT = 6.09609 / (dgC) Fitting C temp OHDM15V = -14.9015 / (V) Hold Mode Regulator - 15V OHDP15V = 14.8136 / (V) Hold mode regulator +15V OHDP5V = 4.77974 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 34.65 / (dgC) M1 heater control temp OM1HTRW = 0.472208 / (w) M1 heater power OM2HTRT = 33.8375 / (dgC) M2 heater control temp OM2HTRW = 0.0125069 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.2677 / (dgC) MEB 2 radiator temp OMBCSPT = 35.65 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.7 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5661 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.25 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2229 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1196 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.2028 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2028 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0922 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 23.5875 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.4904 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.8625 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.50726 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.6969 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.575 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0750006 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.65 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.678375 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.85 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0187569 / (w) Thermal controller power, zone 3B OTECINV = 6.36287 / (V) TEC input voltage OTECTCV = -7.73439 / TEC temp control voltage OMBMC15V= 14.7358 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0359 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.87217 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.6288 / (V) LVPS CEB +15V OPSCB35V= 33.5795 / (V) LVPS CEB +35V OPSCB5V = 4.79433 / (V) LVPS CEB +5V OPSCM15V= -14.9502 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.438 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -0.04884 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9316 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483028 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 36.0075 / (dgC) M1 charge amplifier temp OM1DCDT = 36.4959 / (dgC) M1 decoder temp OM1MCET = 34.7865 / (dgC) M1 MCE temp OM1LVPST= 39.6705 / (dgC) M1 LVPS temp OM1HVPST= 36.2517 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 148.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8584 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.0928 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.482051 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.4727 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 39.6705 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58793 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3611 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08137 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.045 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5506 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.19813 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0547 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 33.0416 / CB clock X pwb temp OCBCLKA2= 30.857 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.20786 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.21272 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9483 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.90388 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.88911 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.87469 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.95236 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.92334 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.9428 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03019 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.9329 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03506 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.11056 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.02533 / (V) CB summing well C Lo OCBSWDHV= 4.98658 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.927 / CEB timing pwb temp OCLM5V = -5.09612 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0255876 / Calibration lamps -5V current OCLP30V = 29.9209 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0339267 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 3824309 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.000337006 / (A) Slit Wheel motor current OSWMVEL = 0.0226988 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1793 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 1 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 510 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 54 / Control section slit position OCSDQEXJ= 640 / Control section data queue extract OCSDQINJ= 640 / Control section data queue insert OCSXQEXJ= 49 / Control section Expos Que Extract OCSXQINJ= 0 / Control section Expos Que Insert OCSOBSQ = 4901 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 15942 / Control section dump pointer OCSFILLJ= 15942 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 36 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCOA03Q2$. |àPs;±IhhÏä"ʤл°¼€ÃPÄ0ÁÐÂàÞÐÌPÌ0«°@¿°²°€°ðª`¼` Àß ½àÎÈðÈðÈðÔ@¢ÓPŸP¿Ðþ ¨`ÀÁ0ÐÈàÒ Ò¹pÑ@½pµ¸à¸ðâ â Í ÎðÍàÍp¦@´ ¦À´0§ ¿P© Ÿð©@¢@¦@ŸPß àð¿ÞpìP¾ p& ' +þ¯ «½3+ ¾fºU Å Í ÏÆòôíó7J q Ø ™Å ¯½1 áp Ã^¶J Ã Ì ÑÅõøð +ÔÀÃ^À^ð^à_P„àê°%@ÁÀÚ°ïp%PÃ@ÚÀÔàÀ‰„À  Ã`ß`  Ãpß`LÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™€€™ð~i }@h``f`€f`~`h~€h`f`f~@h€`eà€P ~@h`~@h``f € fà€À§€À¦À~ ?~ðà{`à€0zZµ“À €€pb9 +³sŠžñ'_ld à€…ñ6€€1%`‘>F>F¥€Ìá_$F‚__–d=ÿ"ʤл ¼€ÃPÄ0ÁÐÂðÞàÌPÌ0«°@¿°²°€°ðª`¼`àÞ ½`ÎÉÈðÈðÒP ðÕÀ¢p¿Ðþ ¨PÀÁ@àÈàÒ0Ò¹pÑ@½`µ¸à¸ðá áàÍ ÎàÍàÍp¨Àµ ¥²@¨ÐÁð©žÐ¨p¢°¨À pœPÀÞÐà€¿æ0ì°Ç$0& ( +þ¯ «½3+ ¾fºU Å Í ÐÆòôîó7S q Ø ™Å ­½1 áo Å^»J Ä Ì ÑÅõùð +ÔÀÃ^À^ð^à_P„àê°%@ÁÀÚ°ïp%PÃ@ÚÀÔàÀ‰„À  Ã`ß`  Ãpß`LÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™€€™ð~i }@h``f`€f`~`h~€h`f`f~@h€`eà€P ~@h`~@h``f € fà€À§€À¦À~ >Ðà}Ä0€€€@zZ¶“À°€Àb9 +³rŠžñ'_ld`` €„ðñ6€€1%`‘>F>F¥€Ìá_%R‚__–d=ÿ`6m°3Ã(ÒæW)UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocoa03q2q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.3 / fsw located subarray axis 1 coord. of aperture APERA2 = 514.4 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.5604 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.23558 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.60288 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.32019 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.55192 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0881 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.5857 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.1188 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.92344 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.5188 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.656 / Enclosure forward outer panel temperature countOFITAT = 13.7438 / (dgC) Fitting A temp OFITBT = 18.6458 / (dgC) Fitting B temp OFITCT = 6.09609 / (dgC) Fitting C temp OHDM15V = -15.0377 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.7992 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.0792 / (dgC) M1 heater control temp OM1HTRW = 0.22975 / (w) M1 heater power OM2HTRT = 35.875 / (dgC) M2 heater control temp OM2HTRW = 0.472208 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.3245 / (dgC) MEB 2 radiator temp OMBCSPT = 35.7 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.7 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1679 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1445 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1153 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0922 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 24.6188 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.67591 / (w) Thermal controller power, zone 1A OTCZ1BT = 22.9 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.00132 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.5 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 12.6013 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.5375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.98821E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.275 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.832969 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.575 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.266125 / (w) Thermal controller power, zone 3B OTECINV = 6.78567 / (V) TEC input voltage OTECTCV = -7.62697 / TEC temp control voltage OMBMC15V= 14.7358 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.8608 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8965 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.0958 / (V) LVPS CEB +15V OPSCB35V= 32.2367 / (V) LVPS CEB +35V OPSCB5V = 5.62138 / (V) LVPS CEB +5V OPSCM15V= -14.9794 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.48254 / (A) M1 +5V current OM1P5V = 5.20635 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 36.0075 / (dgC) M1 charge amplifier temp OM1DCDT = 36.4959 / (dgC) M1 decoder temp OM1MCET = 35.0307 / (dgC) M1 MCE temp OM1LVPST= 39.6705 / (dgC) M1 LVPS temp OM1HVPST= 36.2517 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 180.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8486 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.0928 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481319 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.7169 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 39.9147 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.60258 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3611 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1718 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.13002 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5506 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.02299 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 33.0416 / CB clock X pwb temp OCBCLKA2= 30.857 / CB clock Y pwb temp OCBCMAA1= -14.8821 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.03758 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9404 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.06677 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.98929 / (V) CEB last gate A&B OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.93352 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0585347 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.95722 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.90874 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.97199 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02533 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.00587 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.96712 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90388 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.16407 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBSWBHV= 4.90388 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.00587 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.927 / CEB timing pwb temp OCLM5V = -5.16423 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00804128 / Calibration lamps -5V current OCLP30V = 29.5123 / (V) Calibration lamps +30V voltage OCLP30VC= 0.158327 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00452746 / (A) Slit Wheel motor current OSWMVEL = 0.0271029 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1793 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 1 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2562 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 655 / Control section data queue extract OCSDQINJ= 655 / Control section data queue insert OCSXQEXJ= 49 / Control section Expos Que Extract OCSXQINJ= 1 / Control section Expos Que Insert OCSOBSQ = 4903 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 15942 / Control section dump pointer OCSFILLJ= 15942 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 38 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5130 / Target acquisition target x position OTATARA2= 5300 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+C- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCOA03Q2&I|àPsHáIô "”¤À»°¼€ÃPÄ0ÁÐÂàÞÐÌ@Ì@«°@¿À²°€ °ðª`¼`àÞ ¾ ÎÉÈðÈðÒp¡ Õ ¢¿Ðþ ¨PÀ€Á@ÐÈàÒ Ò ¹`Ñ0½`µ¸à¸ðáÀáÍ ÎðÍàÍp¨ ´Ð¥²P©ÁÀ©žÐ¨ ¢Ð©  ÀŸ€`ß à`¿`ápèȰ @& ( +þ¯ «½3+ ½f¸T Å Í ÏÆòôîó7Z q Ø ™Å ­½1 áp Ã^³J Ã Ì ÑÅõùð +ÔÀÃ^°^ð^ð_P„àê°%pÂ`Úðïp%PÁÚàÔàÀ‰„À àÁ0ß` €Áß`LðTÀ˜°€˜À€˜ €˜À€F@¦ F@¥à™À€À™à~`gà~ h Àf €f ~`h@~@h@`f@ eà~h@`f €PÂÐ~@h€~h`€f€Àf € §€À¦à~ > €`ß@”`àŸÐ°RÝ¡À°€@ b9 +³sŠžñ'_ld  (€„ðñ1'`‘>F>F¥€Ìá_&ÿÿ +´a‚__–d=²Ê²PC"”¤Ð» ¼€ÃPÄ0ÁÐÂàÞàÌ@Ì0«°@¿À²°€±ª`¼P@à ¿ ÎÉÉÈðÑð `Ô ¡à¿Ðþ ¨PÀÁ@àÈàÒ Ò¹pÑ0½`µ¸à¸ðá áðÍÎðÍàÍp©0¶¥±°¨€ÁઠŸà§À¢ ©€¢0 ÞÀàP¿ ß åÀÀ& ( +þ¯ «½3+ ½fºU Å Í ÐÆòôîó7\ q Ø ™Å ¯½1 áp Ã^½H Ä Ì ÑÅõùð +ÔÀÃ^°^ð^ð_P„àê°%pÂ`Úðïp%PÁÚàÔàÀ‰„À àÁ0ß` €Áß`LðTÀ˜°€˜À€˜ €˜À€F@¦ F@¥à™À€À™à~`gà~ h Àf €f ~`h@~@h@`f@ eà~h@`f €PÂÐ~@h€~h`€f€Àf € §€À¦à~ >0~Þð“€Ã Ÿð~ðRÝ¡À €0 b9 +³sŠžñ'_ldàà€„ðñ1'`‘>F>F¥€Ìá_'ÿÿ +´I‚__–d=²Ê²PC`m°0Åóæ´UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octka7jeq_raw.fits b/lib/stistools/tests/data/tastis/octka7jeq_raw.fits new file mode 100644 index 00000000..2bc1b83f --- /dev/null +++ b/lib/stistools/tests/data/tastis/octka7jeq_raw.fits @@ -0,0 +1,2 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octka7jeq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'octka7jeq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD-84937 ' / proposer's target name RA_TARG = 1.472354829369E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 1.374073865235E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14161 / PEP proposal identifier LINENUM = 'A7.002 ' / proposal logsheet line number PR_INV_L= 'Peterson ' / last name of principal investigatorPR_INV_F= 'Ruth ' / first name of principal investigator PR_INV_M= 'C. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-05-09' / UT date of start of first exposure in file TTIMEOBS= '23:15:29' / UT start time of first exposure in file TEXPSTRT= 5.751796908743E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57517.96908975 / end time (MJD) of last exposure in the file TEXPTIME= 0.2 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792987773148E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430L ' / optical element in use APERTURE= '0.2X0.09 ' / aperture name PROPAPER= '0.2X0.09 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '0.2x0.09 ' / aperture field of view CENWAVE = 4300 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$08o14513o_drk.fits' / dark image file name PFLTFILE= 'oref$x6417094o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$pcc2026jo_lfl.fits' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740no_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 2800.0 / bandwidth of the data SPECRES = 800.0 / approx. resolving power at central wavelength CENTRWV = 4300.0 / central wavelength of the data MINWAVE = 2900.0 / minimum wavelength in spectrum MAXWAVE = 5700.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'The Intersection of Atomic Physics and Astrophysics: Identifying UV 'PROPTTL2= 'Fe I Lines from Metal-Poor Turnoff Stars 'OBSET_ID= 'A7' / observation set id TARDESCR= 'STAR;F3-F9 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 1.400000000000E-02 / target parallax from proposal MU_RA = 3.731000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -7.744000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2016.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 5 / Number of peakup search steps PEAKSTEP= 69.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 791686.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 309.998108 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 2.000000 / the minimum value of the data DATAMAX = 95.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 85.0564 / position angle of image y axis (deg. e of n) SUNANGLE= 95.223709 / angle between sun and V1 axis MOONANGL= 51.758282 / angle between moon and V1 axis SUN_ALT = 47.382477 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-05-09' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:15:29' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.751796908743E+04 / exposure start time (Modified Julian Date) EXPEND = 5.751796908975E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.200000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336789 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 2.0 / minimum value of good pixels GOODMAX = 95.0 / maximum value of good pixels GOODMEAN= 26.076750 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€ € € €€ €€ €€€ €€€€ €€ €€€€!€€!€€€€€€€€€€€ €!€ €€€€€!€€€€€€€!€ €€"€€€€€€€€€ € €€"€€€€ €€!€!€€"€ €€€!€€"€€€"€€#€ € €€€€#€ € €%€!€ €"€ €€ € €"€ €"€ € €€€!€!€€€ €€€€ €!€€ € €€&€ €#€"€"€€ €€€ €€€€€€€€!€ €€$€€!€"€ € €!€"€"€!€€"€$€"€&€ € €$€!€!€!€ € €"€"€$€#€"€"€€$€€ €!€&€%€"€$€"€$€ €%€"€!€!€"€ €#€ €%€ €€€#€$€#€'€€!€#€"€#€ €"€#€€#€%€"€"€%€#€ €$€"€#€ € €%€€€"€€#€ €"€$€ €"€"€ €$€"€!€"€%€"€#€!€$€ €!€&€&€%€!€$€#€ €#€ €'€'€"€$€%€$€€"€$€ €€"€"€#€%€"€ €€ €#€€"€#€"€#€ €$€$€!€ € €!€ €%€!€"€"€€ €$€$€€$€"€$€"€(€"€"€"€"€"€#€ €!€ €$€"€#€ €"€"€"€"€"€#€"€ €€€€!€ €$€ € €"€%€#€€!€(€"€$€$€#€#€ €"€ €#€#€$€!€#€!€€#€"€(€"€#€!€#€&€#€#€#€#€%€#€€%€$€€$€%€$€#€"€€ €#€"€$€ €$€ €"€#€#€!€#€(€#€$€"€#€!€"€ €$€#€$€$€"€"€(€#€%€ €'€$€#€#€"€$€$€#€#€ €%€$€#€$€!€%€(€"€#€%€"€'€!€'€&€$€(€€!€#€#€#€(€"€$€€&€$€"€#€"€ €"€$€$€!€#€$€$€&€ €"€#€ € €#€#€$€%€!€#€#€$€&€$€$€!€%€$€"€$€ €€!€!€!€"€"€€"€%€"€!€$€$€€€!€$€"€€!€ €!€%€€ €!€#€!€"€!€$€"€€!€!€$€!€ €€€€"€ €$€ €€!€ € €$€!€!€!€"€!€#€"€"€$€"€!€!€ € €%€!€!€!€ €"€ €!€!€ € €€!€ €"€!€"€ €%€ € €#€ €€€€ € €"€ €€€#€"€!€€€€!€€€ €€€"€€!€€!€"€!€"€€ € €!€#€ €€!€€€€ € €"€ €€€"€€€€€ € €€ € €€ €€€€ € €!€€€€'€€ €€Z€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€!€€€€ €€€ € €€€€€€€€€ €€€ € €€€€€€€€ €€ €€€€€!€ €$€"€ € € €€$€"€ €(€!€"€€€!€€"€"€"€"€$€'€"€ €!€%€€ €€%€€$€$€"€'€$€'€&€(€%€)€'€$€%€&€$€€!€&€&€"€ €+€#€&€&€&€(€+€(€(€%€€ €+€)€)€'€'€)€(€!€)€&€"€!€"€(€$€ €(€+€,€'€-€+€-€*€)€)€,€-€,€,€%€,€*€)€-€-€)€(€*€&€(€,€+€*€,€)€*€,€+€&€)€)€&€&€,€)€(€+€)€$€#€(€(€*€/€.€&€+€*€.€,€,€.€,€,€)€,€-€(€+€*€,€/€0€*€*€*€+€.€)€0€(€)€/€,€+€&€,€-€+€)€.€+€.€1€-€*€(€)€(€-€/€)€,€-€2€(€-€-€-€0€-€,€3€+€,€.€#€/€+€+€,€+€(€.€,€,€.€.€1€(€-€,€*€-€#€%€)€(€)€/€*€*€*€-€*€,€+€.€)€-€/€,€1€1€4€.€7€1€-€+€.€2€,€+€3€2€0€5€-€4€1€.€/€-€3€0€0€+€*€2€3€5€.€.€-€2€0€,€*€+€3€0€,€0€*€1€2€,€4€1€1€3€-€4€1€0€2€3€2€3€.€.€+€/€3€)€/€0€-€-€*€0€.€0€-€/€.€1€-€3€,€0€3€0€0€/€+€5€0€3€.€.€3€/€/€-€/€4€.€2€-€-€0€2€1€/€0€.€2€4€1€.€4€0€2€2€/€+€/€-€1€*€1€.€.€0€5€/€2€0€2€.€-€-€-€0€5€2€-€1€.€,€0€/€,€.€+€0€/€0€2€1€.€,€/€/€-€.€+€,€.€+€1€.€/€/€,€/€1€*€,€+€*€)€'€%€-€)€/€.€2€3€0€/€+€-€*€.€.€0€0€.€0€5€0€*€0€,€.€3€2€.€1€/€+€+€/€1€-€-€+€*€*€/€1€.€,€1€+€/€0€)€5€4€)€+€/€4€4€*€0€-€0€.€2€/€)€-€.€3€/€1€1€1€*€2€-€*€0€-€5€+€+€0€/€.€1€-€*€5€(€1€.€2€0€.€0€1€0€0€/€.€0€)€/€-€-€,€1€0€0€.€,€1€0€-€.€0€.€0€/€0€0€+€1€,€*€,€/€-€.€5€-€0€1€/€1€/€.€.€+€.€+€,€0€*€0€3€-€+€-€2€.€.€2€.€.€-€.€-€.€1€.€-€0€(€+€0€.€0€*€.€,€.€0€.€)€0€.€-€-€.€(€*€,€.€1€0€/€/€*€(€,€0€.€-€-€*€,€*€)€-€-€*€-€+€.€+€.€2€,€*€.€*€+€/€-€,€*€0€/€+€-€-€.€,€.€/€+€,€,€/€0€+€+€)€0€)€-€-€*€.€(€+€*€+€.€0€*€+€(€(€/€)€(€%€*€)€-€(€+€0€,€*€)€-€+€*€+€.€+€1€-€+€(€.€*€.€*€-€-€.€+€,€+€.€)€*€*€(€*€0€.€,€-€,€*€+€&€-€&€(€*€(€+€-€,€%€%€*€'€*€,€,€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€!€€ €€€€€€€ €€ €€ €€€ €€€€€€ €€!€€€€€"€"€€"€€ €"€€ € € € €€!€!€$€€€€ €€#€ €!€"€€"€€"€ €!€ €€ €!€!€"€ € €"€ €"€ €"€!€€€€ €$€"€€!€"€$€€€%€"€ €"€ € €"€€"€&€"€"€$€!€"€ €#€ €$€$€ €$€#€(€€#€'€!€!€%€$€ €"€!€&€ €€"€"€!€!€!€#€%€$€"€$€%€&€"€$€!€%€#€€&€$€$€#€#€ €%€"€"€!€%€&€(€ €$€$€$€'€(€&€#€"€&€ €'€$€!€"€&€*€ €"€!€%€&€)€&€&€!€(€"€&€%€#€#€%€%€)€%€$€&€!€%€%€$€$€&€€)€$€.€'€$€#€*€*€$€&€+€&€*€'€%€(€(€/€0€-€)€'€'€*€,€3€+€.€)€)€/€(€&€(€*€,€0€/€-€1€-€2€)€)€+€'€$€.€,€2€1€3€7€0€:€6€2€4€3€8€4€3€/€0€,€(€-€0€6€6€1€8€6€9€:€5€4€5€:€7€0€)€1€6€=€<€3€5€<€6€5€2€-€)€&€,€0€4€5€:€<€8€3€@€7€?€7€>€2€;€<€B€8€;€@€=€?€7€;€<€6€:€?€;€:€F€@€B€A€;€C€8€?€:€7€<€>€>€@€7€6€4€0€0€8€<€8€?€>€<€9€4€A€>€<€9€8€:€<€9€:€@€:€6€6€C€B€B€7€B€;€=€B€=€=€8€@€8€>€;€=€=€;€<€>€>€;€>€<€:€:€;€@€B€>€5€F€<€B€>€@€B€@€;€B€=€=€@€D€;€;€<€A€@€A€:€9€=€<€>€=€@€9€=€=€?€9€7€7€0€2€:€=€;€@€<€<€>€E€@€@€<€>€>€5€?€6€@€@€A€A€B€;€8€:€D€A€?€B€@€?€B€C€@€B€@€>€B€@€>€:€8€H€:€:€?€9€C€@€F€B€B€A€8€A€>€@€=€?€8€B€C€A€C€>€>€8€=€C€;€?€;€:€@€8€@€:€<€@€@€9€G€?€C€7€C€@€@€<€<€>€D€D€=€C€A€>€<€=€=€>€<€>€?€>€:€>€D€D€@€E€@€:€D€=€=€:€;€C€<€;€A€A€A€9€@€9€:€?€C€>€6€;€4€;€7€7€<€6€5€9€:€>€:€7€<€=€>€2€9€<€4€7€@€@€=€8€=€:€8€:€;€2€9€9€:€B€4€2€8€9€;€;€4€6€6€6€;€8€;€9€2€4€7€:€8€7€7€0€+€5€>€1€6€4€:€4€8€8€=€;€=€9€4€4€8€?€=€<€=€5€6€8€9€A€<€;€:€=€:€=€:€4€7€=€:€5€?€;€;€;€8€:€8€6€A€9€>€;€6€5€;€;€2€5€:€8€;€8€<€1€1€9€<€4€5€=€>€4€4€9€5€6€8€<€6€:€:€;€4€7€:€1€<€3€5€8€7€2€9€3€7€4€:€;€7€A€;€2€<€:€;€:€5€:€4€8€5€<€3€1€:€6€6€8€9€3€9€6€<€4€;€2€3€4€<€<€2€4€5€8€:€5€.€3€8€/€5€5€0€4€=€.€5€7€7€3€4€6€7€8€0€5€7€3€3€6€.€0€0€5€3€9€<€1€6€4€5€5€0€1€4€5€3€6€,€3€3€7€3€5€2€6€0€1€*€4€9€3€5€7€*€0€7€4€2€4€3€2€5€;€0€4€.€2€/€0€4€5€2€3€/€5€/€1€-€0€/€1€+€1€6€-€6€8€1€/€1€6€1€-€-€1€3€6€/€,€0€0€0€4€2€.€,€4€.€0€.€+€-€+€0€1€+€2€5€/€2€*€,€3€/€0€0€-€-€0€.€*€*€0€.€,€2€1€1€5€1€2€0€-€,€1€1€-€-€1€.€,€0€(€*€/€*€,€.€1€)€1€*€)€%€-€/€*€*€.€2€€!€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ €€"€€€€€€!€#€€€€€€€€€€€€€€€€€ €€ €€€ € €€ € €€€#€ €"€€€!€!€ € € €€ €€€!€!€!€#€"€€"€ €"€!€!€€€ €"€€€ € € €$€"€€€ €€€ € €!€ €$€ €&€€ € € € €€€"€"€&€(€"€#€$€!€!€€#€"€$€'€ €$€"€"€(€#€$€#€!€$€%€$€$€#€$€$€"€!€€ €!€!€'€"€€ €#€&€!€%€"€&€#€"€%€"€!€#€$€!€#€€"€%€'€$€ €#€%€€#€!€%€€&€"€&€%€€!€%€$€%€'€%€#€'€"€"€!€#€%€"€&€€$€ €'€&€#€#€#€€"€ €$€€$€#€%€ €)€$€#€ €"€'€ €%€$€!€$€€"€"€%€€!€$€!€%€$€$€%€€"€"€"€%€%€ €$€$€#€!€%€"€#€$€#€"€$€#€%€€$€'€%€#€$€&€"€"€!€#€(€%€€!€"€'€#€"€"€#€!€$€ €&€'€$€"€"€%€#€!€!€!€ €!€%€#€#€!€!€"€'€"€$€%€#€ €$€#€%€!€"€&€ €!€!€"€#€"€"€!€"€!€ €&€ €€€!€ €(€#€%€%€"€&€€#€#€ €%€%€"€"€"€#€€"€"€ €#€€&€ €!€#€!€!€$€!€!€#€"€€"€"€€"€ € €!€ €€$€$€ € €#€€"€!€€#€$€$€#€&€#€!€ € €"€ €!€€"€ € € €"€ €!€ €$€ €$€€#€"€"€$€%€€€"€#€$€ €"€!€!€€€ €"€ €!€ €!€ €#€(€€€!€!€€(€€!€ €%€"€€$€$€ €%€#€%€!€"€ €$€!€#€ €%€"€%€"€ €$€"€#€!€#€"€!€"€#€#€"€"€%€#€#€$€#€"€"€#€!€€"€$€$€!€%€"€#€#€"€"€!€%€#€!€ €$€&€#€!€!€!€#€"€!€"€!€€"€!€"€"€'€€€"€"€ €€#€"€$€!€"€&€€"€#€"€"€!€ €&€ €%€ €"€"€&€$€"€!€%€€€ €€"€$€$€"€€!€$€ €!€€!€%€€"€$€"€"€"€€ €!€"€"€"€!€ €!€€€!€€ €€ €!€#€"€$€€#€€!€€€€ €"€"€€€"€!€!€ €!€ €€!€€€#€"€€ € € €#€ €!€ €€ € €!€€ €#€€€#€%€!€€"€ €€"€!€€€ € €€"€!€#€€ €€!€€€€€€€ € €€ €%€€"€ €€€€ €€€ € €€ € €€ € € €€€!€%€€€ € € €€!€ €€€"€"€"€€ €$€€ €"€€€€€€€ €€€€€€€€€€€ €€€"€€€€€€€ €!€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€$€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€%€%€ +€YXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 2.0 / minimum value of good pixels GOODMAX = 95.0 / maximum value of good pixels GOODMEAN= 26.076750 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 5 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 83580.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 3.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 1.472354829369E+02 / first axis value at reference pixel CRVAL2 = 1.374073865235E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.651689048488E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.909536683068E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.909536683068E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 1.651689048488E-06 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 85.0564 / position angle of image y axis (deg. e of n) SUNANGLE= 95.223709 / angle between sun and V1 axis MOONANGL= 51.758282 / angle between moon and V1 axis SUN_ALT = 47.382477 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-05-09' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:15:29' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.751796908743E+04 / exposure start time (Modified Julian Date) EXPEND = 5.751796908975E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.200000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336789 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 5 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 83580.0 / maximum value of good pixels GOODMEAN= 25960.400391 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END ?µF|U|] \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octka7jeq_spt.fits b/lib/stistools/tests/data/tastis/octka7jeq_spt.fits new file mode 100644 index 00000000..51f0c1d0 --- /dev/null +++ b/lib/stistools/tests/data/tastis/octka7jeq_spt.fits @@ -0,0 +1,5 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octka7jeq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'octka7jeq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD-84937 ' / proposer's target name RA_TARG = 1.472354829369E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 1.374073865235E+01 / declination of the target (deg) (J2000) ECL_LONG= 144.772433 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = 0.505208 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 220.996264 / galactic longitude of the target (deg) (J2000) GAL_LAT = 45.473104 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV200X090 ' / aperture used for reference position ELON_REF= 144.772433 / ecliptic longitude at reference position (deg) ELAT_REF= 0.505208 / ecliptic latitude at reference position (deg) GLON_REF= 220.996264 / galactic longitude at reference position (deg) GLAT_REF= 45.473104 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14161 / PEP proposal identifier LINENUM = 'A7.002 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CTK' / program id (base 36) PR_INV_L= 'Peterson ' / last name of principal investigatorPR_INV_F= 'Ruth ' / first name of principal investigator PR_INV_M= 'C. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= 'A7' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'JE ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S200X090 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430L ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.300000000000E+03 / central wavelength SS_NSTEP= 5 / proposed number of peakup search steps SS_STPSZ= 69.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 25 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 5 / word 11/14 (0-255) PSTRTIME= '2016.130:23:11:49 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.130:23:16:35 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV200X090 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14161_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 1.472255046440E+02 / right ascension of v1 axis of st (deg) DEC_V1 = 1.382635298955E+01 / declination of v1 axis of st (deg) PA_V3 = 309.998108 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'N6U6000023F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'N6U7000178F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 8.505628885498E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -1.055957298875E+03 / position of space telescope x axis (km) POSTNSTY= 6.281126344101E+03 / position of space telescope y axis (km) POSTNSTZ= -2.698499425957E+03 / position of space telescope z axis (km) VELOCSTX= -7.295207789720E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -3.307308525843E-01 / vel of space telescope along y axis (km/sec) VELOCSTZ= 2.084886843520E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 4.706100246234E+01 / right ascension of the sun (deg) DEC_SUN = 1.760718988195E+01 / declination of the sun (deg) RA_MOON = 9.337386654583E+01 / right ascension of the moon (deg) DEC_MOON= 1.845468527532E+01 / declination of the moon (deg) VELABBRA= 4.976529 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 1.472354829369E+02 / right ascension of reference object (deg) DEC_REF = 1.374073865235E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.888480000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.872954235311E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.619134097922E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.860277451972E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.597674571971E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.791524901935E-01 / cosine of inclination ECCENTRY= 7.942683363019E-04 / eccentricity ECCENTX2= 1.588536672604E-03 / eccentricity times 2 ECBDX4D3= 6.680984828377E-10 / eccentricity cubed times 4/3 ESQDX5D2= 1.577155475130E-06 / eccentricity squared times 5/2 ECBDX3 = 1.503221586385E-09 / eccentricity cubed times 3 FDMEANAN= 1.748082164740E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.333688540659E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.122631237909E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 2.443968679015E-01 / argument of perigee (revolutions) MEANANOM= 1.992314880786E+00 / mean anomaly (radians) RCARGPER= 1.129707214553E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 5.465021927603E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.765405533493E-01 / sine of inclination SEMILREC= 6.917114925536E+06 / semi-latus rectum (meters) TIMEFFEC= 9.888928010000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.894499090000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430L ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S200X090 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;F3-F9 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'F3-F9 ' / PROPOSAL INFO: Flux Information MAG_V = 8.320000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.200000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 1.400000000000E-02 / target parallax from proposal RA_PROP = 1.472354487500E+02 / target right ascension from proposal (degrees) DEC_PROP= 1.374081388889E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 3.731000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -7.744000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2016.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -1.500000000000E+01 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'The Intersection of Atomic Physics and Astrophysics: Identifying UV 'PROPTTL2= 'Fe I Lines from Metal-Poor Turnoff Stars 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136816000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248371000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350558000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -5.367540000000E-08 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 5.366100000000E-08 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 2.082400000000E-05 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -2.100000000000E-05 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.137213000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -7.170200000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.135773000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -7.314400000000E+00 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136419000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 7.170200000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.137859000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 7.314700000000E+00 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 25 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 784 / Telemetry optical mode number OPTMODE = 'G430L ' / Optical Mode Name MODE_ID = '3.1 ' / IDT Mode identification CENWAVE = 4300 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 20 / Slit Number SLITSIZE= '0.2x0.09 ' / aperture field of view TFPFNAME= 'S200X090' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 5 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 69.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 791686.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 2.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 24.7526 / (dgC) CEB Radiator temp OCLLMP1T= 12.0337 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 11.2567 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 6.68173 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 6.09423 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 7.81154 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 7.04327 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 12.0381 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.7714 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.725 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.4063 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.75 / (dgC) Enclosure aft inner panel temp OENCAOPT= 4.40625 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.4375 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.4 / (dgC) Fitting A temp OFITBT = 19.125 / (dgC) Fitting B temp OFITCT = 7.26289 / (dgC) Fitting C temp OHDM15V = -14.921 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7844 / (V) Hold mode regulator +15V OHDP5V = 4.84785 / (V) Hold mode regulator + 5V OKMDITBT= 24.749 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.8607 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.7833 / (dgC) M1 heater control temp OM1HTRW = 0.398417 / (w) M1 heater power OM2HTRT = 34.0 / (dgC) M2 heater control temp OM2HTRW = 0.0505417 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 21.4031 / (dgC) MEB 2 radiator temp OMBCSPT = 36.75 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 30.75 / (dgC) MEB MIE processor temp OMBP15V = 14.8623 / (V) Operatore mode regulator +15V OMSC1MT = 21.7682 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.7177 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.45 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.4755 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.6018 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.85 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1736 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2028 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.75 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 24.85 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2036 / (dgC) Slit wheel motor temp OTCZ1AT = 24.6531 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.55785 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.1406 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.93386 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.3125 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.4419 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.2375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.99607E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.875 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.850146 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.225 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0112581 / (w) Thermal controller power, zone 3B OTECINV = 6.43106 / (V) TEC input voltage OTECTCV = -7.82228 / TEC temp control voltage OMBMC15V= 14.7358 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9192 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8965 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.765 / (V) LVPS CEB +15V OPSCB35V= 31.3804 / (V) LVPS CEB +35V OPSCB5V = 5.21272 / (V) LVPS CEB +5V OPSCM15V= -15.3102 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8339 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -0.04884 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483028 / (A) M1 +5V current OM1P5V = 5.20635 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.7633 / (dgC) M1 charge amplifier temp OM1DCDT = 36.2517 / (dgC) M1 decoder temp OM1MCET = 34.7865 / (dgC) M1 MCE temp OM1LVPST= 39.4263 / (dgC) M1 LVPS temp OM1HVPST= 36.0075 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 172.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0720391 / (A) M2 -15V current OM2M15V = -15.8584 / (V) M2 - 15 volts OM2M2VDC= 0.42149 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.337 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.9658 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.483516 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.2517 / (dgC) M2 charge amplifier temp OM2DCDT = 37.2285 / (dgC) M2 decoder temp OM2MCET = 35.0307 / (dgC) M2 MCE temp OM2LVPST= 40.6473 / (dgC) M2 LVPS temp OM2HVPST= 39.9147 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.57817 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 32.792 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.13002 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0352 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 34.4663 / CB clock X pwb temp OCBCLKA2= 32.3451 / CB clock Y pwb temp OCBCMAA1= -14.9307 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.08623 / (V) CB clock drive X +5V OCBCPAA1= 14.7163 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9307 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.0911 / (V) CB clock drive Y +5V OCBCPAA2= 14.7358 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.9282 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.94766 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.04479 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.96712 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.95722 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.0156 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.14948 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBSWBHV= 4.90388 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.00587 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 29.4215 / CEB timing pwb temp OCLM5V = -5.10099 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0301648 / Calibration lamps -5V current OCLP30V = 29.9015 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0324848 / Calibration lamps +30V current OCLP5V = 5.2711 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1336789 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0173626 / (A) Slit Wheel motor current OSWMVEL = -0.0125341 / (Rad) Slit whell motor velocity OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 137 / Mode select cylinder 3 shaft position OMSC4SP = 221 / Mode select cylinder 4 shaft position OMSC1CRP= 61207 / Mode select cyl. 1 resolver position OMSC3CRP= 2310 / Mode select cyl. 3 resolver position OMSC4CRP= 27875 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3585 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 20 / Control section slit position OCSDQEXJ= 3421 / Control section data queue extract OCSDQINJ= 3421 / Control section data queue insert OCSXQEXJ= 0 / Control section Expos Que Extract OCSXQINJ= 4 / Control section Expos Que Insert OCSOBSQ = -11925 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4300 / Control section optical scan position OCSOPMDP= 784 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 2014 / Control section dump pointer OCSFILLJ= 2014 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 106 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -25 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTKA7JEQjƒ…#†Ö?X›I þó"Ê£pº » ÁP ¿ÀÀÐÝÐÌ̪°¯€¿±`€°©Àº  ßp¾ÀÎ É0ÉÉÓ@¢ Ó€ ¿Ðþ § ¿0Á0àÆ°ßðÑÐÑà¹0Ðð¼Ðµ°¸ð¸°áðâ Í`ÏÎͨ0´`¥p²¨°¾ ¨žð© ¢à¦àŸ0ààß à¿`ßPå@Ãp & ( +þ¯ ª½3+ ½fºT Å Í ÐÆñóíò7V q Ø ™à ¯¾1 áp Å_¼I Ä Ì ÑÅó÷î +ÔÀÃ^À_^ð_P‡°ê°%`Â`Úðï€%0ÁÐÚ ÔàÀ‹à‡° ÁÐß Áàß LÐTÀ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™ð~ h@~@h `f@ f@~`h@~@h@`e  eà~@gà`f`€P ~@h€~h``f€Àf €À§€À¦à>ð~à€{Ä0€àpTeÕ'À°`ðEU â^‰Ýï lã dàà€…ñ ] ]QkÌ‘ÞÞ¥€Ìá_jÿÿÿçI‚__–d=ÿ"Ê£pº »ÁP ¿ÀÀÐÝÐÌ̪°¯p¿±`€°©ÀºðàÀÀ°Î É É É ÑpŸðÕ¡ ¿Ðþ § ¿ Á0ÐÆ°àÑÐÑà¹0Ðð¼Ðµ°¸ð¸°â âÍPÏÎÍ€©@µÀ¥p±¨¾à©€Ÿ §`¡@¨@ `œp°ÞÐàÀ¾ÀÜðè½& ( +þ¯ «½3+ ½f¸T Å Í ÐÆñóíò7` q Ù ™à ®¾1 áp Â^ºJ Ä Ì ÑÅó÷î +ÔÀÃ^À_^ð_P‡°ê°%`Â`Úðï€%0ÁÐÚ ÔàÀ‹à‡° ÁÐß Áàß LÐTÀ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™ð~ h@~@h `f@ f@~`h@~@h@`e  eà~@gà`f`€P ~@h€~h``f€Àf €À§€À¦à>à߀~PÄPðÐTeÕ'À°@€EU â^‰Ýï lãd  €„ðñ ] ]QkÌ‘ÞÞ¥€Ìá_kÿÿÿçF‚__–d=ÿÌm°3ÇEæ †F|?µU|]UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11h4q_raw.fits b/lib/stistools/tests/data/tastis/octr11h4q_raw.fits new file mode 100644 index 00000000..fd5192d1 --- /dev/null +++ b/lib/stistools/tests/data/tastis/octr11h4q_raw.fits @@ -0,0 +1,4 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11h4q_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'octr11h4q ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD128620 ' / proposer's target name RA_TARG = 2.198653030565E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083245979488E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.001 ' / proposal logsheet line number PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-08-28' / UT date of start of first exposure in file TTIMEOBS= '19:57:49' / UT start time of first exposure in file TEXPSTRT= 5.762883181762E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57628.83384507 / end time (MJD) of last exposure in the file TEXPTIME= 0.3 / total exposure time (seconds) QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792987825231E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F25ND5 ' / aperture name PROPAPER= 'F25ND5 ' / proposed aperture name FILTER = 'ND_5 ' / filter in use APER_FOV= '24.7x24.7 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$09k14507o_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1844.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5804.0 / central wavelength of the data MINWAVE = 2120.0 / minimum wavelength in spectrum MAXWAVE = 10000.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Alpha Centauri at a Crossroads 'OBSET_ID= '11' / observation set id TARDESCR= 'STAR;G V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 7.470000000000E-01 / target parallax from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'POINT ' / type of acquisition CENTMETH= 'N/A ' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 298.774689 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 10.000000 / the minimum value of the data DATAMAX = 108.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 73.7837 / position angle of image y axis (deg. e of n) SUNANGLE= 85.352730 / angle between sun and V1 axis MOONANGL= 112.903816 / angle between moon and V1 axis SUN_ALT = -28.188631 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '19:57:49' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762883181762E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762883181878E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 556.0 / fsw located subarray axis1 coord. of target TARGA2 = 472.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 278.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 349046 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 19.800000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 108.0 / maximum value of good pixels GOODMEAN= 29.947100 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€!€€€€€€€€"€€€€€€€€€€€€€€ €€€€!€€€€€€€€'€'€€j€€€€€€ €!€€€€ €€€€€€€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€€€€&€*€€h€ €€€€€ €€€€€€€€€€€€€€€€€!€€€ €€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€!€€€€€€€€ €€€ €€€€€ €€ €€€€€€€€€€€€€€€€ €$€*€€e€ €€€€€€€€€€ €€!€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€&€'€€i€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€)€ €g€€€€€ €€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€(€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€ € €%€)€€j€€€€ €€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€!€€€ €€€€€€€€ €€ €€€€€€€€(€(€€h€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€ € € €€€€€ €€€€€€€€€€€€€€€€€€€€(€(€€i€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€*€'€ €i€ €€€€€€€ €€€€€€€€€€ €!€€€ €€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€€€ €€€€€€€€€€€€€&€)€ +€h€€€€€€€€€ €€€€€ €€€€€!€€€€€€ €€€"€€€!€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€'€$€€i€ €€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€&€&€€c€€ €€€€€€€€€€€€€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€'€*€€j€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€!€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €'€*€€g€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€#€)€€h€ €€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€'€&€€i€€€€ €€ €€€€€€€€ €!€€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€&€(€€h€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€"€€€€€ €€€€€€ €€€€ €€€ €€€€€€€€€€€#€'€(€€g€ €€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€(€)€€j€ €€€!€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ €€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€€€*€*€€g€ €€€"€€!€€€€€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€"€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€)€'€€i€ €€€€€€€€€!€€!€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€ €!€€€€€€€€€€!€€€(€*€€f€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€!€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€!€%€&€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€!€€€€€€€€€€€€€€€ €€€€ €€€€ €€€ €€€€€€€€€€€€€€€€€€€€€!€'€(€€i€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€€€€€ €€€€€€€€!€€€€€€€€€€€€€€ €€€€€!€%€)€€d€€#€€€ €€€€€ €€€€€€€ €€€€€€€€€€ €€€€ €€€€!€€€ €€€€€€€€€€€€€€ €€€€ € €€€€€ € €€€€€ €€€€€€ €€€ €!€€€€€€€€€€€€€€€€€€€%€*€€g€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€€€€€€)€+€ €k€!€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ €€€€ €€€ €€€"€€€€€ €€€ €€€€€€€!€€€€ €€€€€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€&€'€€f€ €€!€€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€!€!€€€€€€ €€€€€ €€€€€€€!€€€€€€€€€€€ €€€!€(€&€€h€€€€€€€!€€€€€€€!€€€€€!€€€€€€€€€€ €€€€€€€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€ €(€&€€g€€€€€€ €€ €€€€€€€€€€€€ €€€ €€€ €€€€!€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€#€)€ €e€€€€€€€€€€ €€€ €€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€(€(€€g€"€€€!€€€€ €€€€€€€!€€€€€€€€€€"€!€€€€ €€€€€€ € €€€ €!€€€€€ €€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€!€€*€*€€j€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€ €€€€€€€€€€€ €%€(€€i€€€!€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€!€€€ €€€€€€€!€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€!€&€(€€i€ €€€€ €€€ €€€ €€€€"€€€€€€€€€€€€€€€€€€!€€€ € €€€€€€€ €€€ €€€€€€€€ €€€ €€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€€€€€€'€*€€f€€ €€€€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€(€&€€i€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€"€€€€ €€€ €€€€€ €€€"€€€€ €€€€€€€€€€ € €€€€€€€€€€!€€€€ €€€€€€€)€%€€i€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ €€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€#€)€€b€€ €€€€€€€€€€€€€€€!€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€!€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€&€%€€f€ €€€€€€€€€€€€€€ €€€€€€€€€ € €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €"€€€€€€ €€€€ €€€€ € €€€€€€€!€€€ €€!€€€€€€€€*€(€€f€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€'€'€€g€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€ €€€€ €€€ €€€€ € €€€ €€€€€€€€€€€€€€€ €€€!€(€*€€j€ €€€€€€€€€€€€€€!€ €€€€€€€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€$€(€€g€€€€€€€€€€€€€ €€!€€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€#€(€€h€€"€€€€€!€€€€€€€€€€€€€ €€ €€€ €€€€€ €€ €€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€!€€€€ €€€€€€€+€'€€h€ €€€"€ €€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€(€)€ €e€ € €€€€€€€€ €€€!€€€€€€ €€€€€"€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€'€%€€i€€€ €€€€€ €€ € €€€€€€€!€€€ €€€€€€€€€€€€€€€€!€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€ €)€(€€h€€€€€€€€€€€€€€€€€€€!€€€€€ €€!€€€€€€€ €€€ €"€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€ €#€*€€g€€!€ € €€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€)€&€ €j€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€"€€€€ €!€€€€€€€€€€€€€ €€€€€€€'€(€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€"€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€&€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€!€ €€€ €€€€!€€€!€€€€€€€€€€€€€€ €%€)€€g€ € €€€€€€€€€€"€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€!€€€€€€€€€!€$€+€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€!€€€€ €€€€€€€ €€€€€€€ €€€ €!€&€&€€g€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€$€&€€i€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€(€€i€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€!€€€€ €€€€€€€ €€€€€€#€€ €€€€€€€€€€€€€€€€€€€€€%€'€€g€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €&€'€€g€€€€€ €€€ € €€ €€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€&€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€ €!€€€'€)€€h€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€)€€g€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€'€'€€h€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€(€*€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€)€&€€h€€ € €€€€!€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€(€(€€e€€€€€ €€€€€€€ €€€€€€€€!€€€€€€!€ €€€€€€ €€€€€€€€!€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€%€€f€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €&€)€ €i€€€€€€€"€ €€€€"€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€!€€€€€€€ €€€€€ €€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€*€€i€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€€!€€ €€€€€!€€€€€€€€€€€"€€€!€€€€ €€€€€€€€€€€€€€ €€€€€€€€€%€%€€h€€€€€€ €!€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€)€&€€g€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€(€)€ €h€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€!€ €€€€!€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €&€'€€f€ €€€ €€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€&€&€€e€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€%€(€€f€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€ € €€ €€€ €"€€€ €!€€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €&€'€€h€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€€€ €'€)€€g€€€€€€€€ € €€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€!€€€€€€€€€€ €€€€ €€€€€€€ €€€€ €€€"€€€€€€€€€€€€€€€€€€€ €$€)€€f€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€!€€€€€€€ €€€!€€€€ €%€%€€j€€€€ €€€€€€€€ €€€€€ €€€€€ €€€ € €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €&€*€€g€ €€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€%€*€€g€€€ €€€€ €€€!€€€€!€€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€€€!€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€(€&€€h€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ € €€€€€€€€!€€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€€€'€+€€g€€€€€€€€€ €!€€€€€!€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€)€€e€€€!€€€€!€€€€€€€€€€€€€€€€€€!€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€!€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€*€(€ €g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€(€+€€f€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€!€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€!€(€*€€g€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€"€€€€€€€ € €€€€€!€€€€€€ €€€!€€€€ €€€!€€€ €€€€ €€€€€€€€€€€ €€€ €€€€(€(€ €d€ €€€€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€ €€€ €!€€€€€€€€€€€€€ €!€€€ €€€€€€€€ €€€€ €€€!€€€€€€€#€€€€€€€€€€€€€€€€€€€€&€)€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €'€&€€l€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€ € €€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€,€€e€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€!€€€€€€€ €€€ €€€€€€€€€€€ €€€€€€€ €€€ €€ €€€€€€€€€€ €€€ €€€€€€€€€€€€€€€ €€€€€$€)€€g€€€€€€€ €€€€€€ €€€€€€ €€€€€€ €€€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€*€)€€h€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€!€€€€€€€ €€€€€€€€ €€€€€€ €€€€€ €€€€€€€€€€€€€€€ €(€+€€f€€€€€€ €€ €€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€+€€f€ €€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ € €*€*€€h€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€!€ €€€€€€€€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€!€€ €€€€€€€ €€€€€ €€€€€€€€€€€!€€"€*€*€€i€ €€€€€€€€ €€ € €€€€ €€€€€€€€€€€€€€€€€€€€!€€€€!€€€€€€€€!€€€€!€€€€€ € €€ €€€€€€€ € €€€€!€ € €€€€ € €€€€€€€€€€€€€€€!€€!€+€*€€fXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 108.0 / maximum value of good pixels GOODMEAN= 29.947100 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 10.000000 / the minimum value of the data DATAMAX = 107.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 73.7837 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '19:58:59' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762883262762E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762883262878E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 546.0 / fsw located subarray axis1 coord. of target TARGA2 = 563.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 280.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 349046 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 107.0 / maximum value of good pixels GOODMEAN= 29.836901 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€ €€€€€€€€€€€€€€€'€'€€j€€€€€€€€€€€€€€€€€€ €!€€€€€€ € €€!€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€&€&€€k€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €*€(€ €i€€€€€!€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€!€€€€€ €€€€€€€€€€€€€€€€€ €'€(€€g€€€€€€ € €€€€€€€ €€€ € €€€€€€€€€€€€€€€€ €!€€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€ €)€'€€f€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €%€(€€h€ €€€€ €€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€ €€€€#€€€€€€€ €€€€ €€€€€€ €€€€€€€€€€ €€€€€!€€!€€ €€€€€€€€€€€€€€€€€ €€€$€(€€e€€ €€€€€€€€€€€€ €€€"€€€ €€€€€ €€€ €€€€€€€"€€€€€€!€€€€€"€€€"€€€€€€€"€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€&€&€€g€€€€ €€€€€€€€€€€€€€€€€€€ €!€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €'€*€ €f€€€€€€€€€€ €€€€€ €€€€€€€€!€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€(€)€€f€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€'€)€€i€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €(€'€€g€ €€€€€€€€€€€€ €€€€€€€€€€€€!€€€€€€€€€€€€€€€€!€€€ €€€€€!€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€(€)€€i€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€"€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€)€€g€€ €€€ €€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€j€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€h€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€(€'€€h€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€(€(€€g€€€€€ €€€€€!€€€€€€ €€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€'€€k€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€!€€€€€€€€€€ €$€&€€c€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€)€'€€h€€€€€€€€€€€€€€€€ €€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€)€€f€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€ €€€ €€€€€€€€€€€ €!€€€ €€€€ €€ €€€€€€ €€€€€€€€€!€€€€€€€€€ €€€€€€€ €€!€&€&€ €h€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€*€ +€i€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€ €€ €"€€€ €€€€€€€€€€€€€€€€ €&€)€€h€€€ €€€€€€ € €€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€!€(€(€€i€€€€€€€€€€€€€€!€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€&€(€€f€€€€€€€€!€€€€€€€€€€!€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €%€*€€f€!€€€€€€€€!€ €€€€€€!€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€(€*€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€(€€k€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€ € €€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€&€'€€i€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€$€&€€h€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€(€(€€g€€€ €"€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€ €€€(€%€€i€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€(€)€ €f€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€&€+€€h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€"€&€*€€i€€€"€€€€€€€€€€€€€€€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€(€*€€h€€€€€ €€€€€€€€€€€!€€€€€€€ €€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€'€(€€h€€€!€€€€€€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€"€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€*€&€€g€€€€"€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€&€*€€i€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€(€€h€€€€€€€€€€€€ €€€€€€€€"€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€*€'€ €h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€(€ €h€ €€€€€€€€€€€€€€€€€ €€€ €!€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€&€(€€g€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€)€'€€j€€€!€€€€€€€€€€€€ €€€!€€€€€€€€€€ €€€€€€€€€€ € €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€&€(€ €h€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€!€€€€€€!€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€+€€f€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€&€*€€f€ €€€€€€€€€€€€"€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€&€&€€j€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€#€'€€g€€€€ €€€€€€ €€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€i€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ € €€€€€€€€€ €€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€'€)€€i€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€%€(€€j€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€ €&€#€€i€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€!€€€"€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€!€€€€ € €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€)€(€€h€€€€ €€€€!€€€€€€€ €€€€ €€€€ €€€€€€€€€€!€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€'€*€€e€ € €€€€€€€!€€€!€€€€€€€€ €€€ €€€ €€€€€€€€ € €€ €€€€€€€€!€€€€ €€€"€ €€!€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€'€&€€g€€!€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€"€€€€&€&€€h€€€€€€€ € €€€ €€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€%€(€€i€ €€€€€€€ € €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€(€)€ €g€€€€€€€€€€€€!€ €€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€ €&€*€€i€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€!€€€€ €€€ €€€ €€€€€ €€€€€€€€€€€€€€!€%€'€€k€ €€€€€!€€€€€!€€€€ €€€€€€€ €€€€€€€!€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€!€&€(€€g€€€€!€€€€€€€€€€!€€€€€ €€€ € €€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€"€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€&€)€€g€€€€!€€€€€ €€€€€€€ €€€€€€€€€€€€€€ €!€€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€*€€h€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€!€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€'€€g€ €€€€€€€€€ €!€€€€€€ € €€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€(€'€€i€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€'€(€ €g€€€€€€€€€€ €€€€€€€ €€!€€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€#€€€ €€€€€€€"€€€€€€€€€€€€ €€€!€€€ €€€ €€€(€'€€f€€€€€€"€€€€€€€€ €€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€ €€€€€€€€ €€ €€€ € €€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €%€'€€h€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€"€€€€€€€€€€€€€€€€€€€€€€'€'€€i€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€ €€€%€*€€g€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€%€'€€g€€€ €€€€€€€€€€€€€€ €€€€€€€ € €€€€€€ €€€€€€€€€€€ €€€€€!€€€€€€€€€€€€€€"€€€€€€!€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€*€(€ €f€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€ €€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€'€(€€f€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€!€€€€€€€ €€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€'€(€ €h€€ €€€ €€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€!€€€€ €'€&€€h€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€'€&€€g€€€€ €€€€€€€€€€€€€!€€ €€€€€€€€€€ €€€€€€€€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €*€&€ €h€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€"€€€€ €€€€€€€€€%€)€ €g€€€€€€€€€ €€€€€€€€€€"€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€(€&€€h€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€ €#€'€€h€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€(€&€€i€€€€€€€€€€€€€€€€€€€ €€€!€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€ €%€)€ €h€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€ € €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€"€%€)€€d€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€!€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €(€'€€h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€€"€€€'€'€€i€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €%€)€€g€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€&€)€ €h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €'€(€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€ €€€€ €€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€*€€g€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€(€€h€ €€€€€€€€€ €€"€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €%€+€€f€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€"€€€€€€€€€€€€ €€€€€€!€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €&€(€€e€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€(€(€€g€€€€ €€€€ €€€€€ €€€€€€€€€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€!€€€€€€ € €€€€€€€ €€€€€€€!€€€€€€€€€€€€€€ €€€€€€€€€€€)€'€€e€€€€€€€€!€€€ € € €€€€€€ €€€€€€€€ €€€ € €€€€€€!€€€ € €€€€€€€€€€€ €€€ €€€!€€"€€ € €€€ €€€ €€€€€€€€€€€€€€€€€€€!€€€€ €€€€€#€*€€g€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€"€€€€€ €€€€€€!€€€ €€€€€€€€€ €€ €€€ €€€€€ €€€!€€€€"€ €!€€ €€€€€€€ €€€€ €€€€€€€!€(€)€€fXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 107.0 / maximum value of good pixels GOODMEAN= 29.836901 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 13.000000 / the minimum value of the data DATAMAX = 5969.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 73.7837 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '20:00:44' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762883384392E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762883384507E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.6 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.3 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1178.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 5969.0 / maximum value of good pixels GOODMEAN= 102.403336 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€€€€€€€€ €€€€€ €€€!€€$€#€%€ € € €$€+€,€€i€ €€€€€€€€€€€€€€"€#€#€ €"€€#€%€#€"€€#€,€+€€h€€€€€ €€€!€€€€!€€ €!€#€€ €!€!€#€€ € €€%€,€'€€k€€!€!€€ €€€!€€€€€€€€"€!€ €€!€€€&€€!€!€)€,€€f€€€€ €€ €€€ €!€€ €€€ €!€&€!€€ €€€€$€ € €*€,€€g€€€€€€€€€€€€€€€ €€ €"€€ €!€ €€!€€€)€*€€i€€€!€€€ €€€€€ €€€"€"€€#€%€!€"€"€"€€€ € €(€*€€f€ €€€€€€€ €€€€€€!€"€ €%€#€€€€ €€€ €"€&€*€€g€ €€€€"€€€ €€€ € €€ €$€"€#€€#€€€ € € €€!€(€'€€g€ €€€€ €€€€€€€€€ €€#€€#€"€€€ €"€€€ €)€-€€k€€"€€€€ €€€ €€€€€€%€$€%€&€!€!€€€€€€€'€&€€h€€€ €€€ €€€€€€€€"€&€-€.€#€"€#€€€€!€€#€*€,€€f€€€€€€€ €€€!€ €€€"€*€.€6€,€!€#€!€€ € €!€#€)€,€€f€€€€!€€€€€€ €€€ €(€C€_€o€R€5€"€ €€€€€$€)€.€€g€€€ €€€€€ €€ €!€$€(€p‚7„1„šƒ€Æ€:€ €%€€€&€#€)€-€€h€€!€€ € €€€!€"€ €#€.€? ˆ;‘’¥‹e‚T€j€+€€€!€ €&€'€&€€i€ €€ €€ €!€€ €!€#€ €3€GUŠ;•Ž—QŽå‚€—€3€"€%€"€€€,€*€€f€ €€!€ € €€€€ €!€#€.€C-ˆ¹“«”¼ +‚S€o€,€#€€#€"€!€*€+€€f€!€€ €€€€€ €€ €€"€/€’ƒª‡Ñˆ„¨€ì€=€ €!€#€!€€ €&€*€€f€€€ €€€€€€€ €€ €#€.€c€¶€·€y€6€'€€€!€€€ €'€)€€h€€ €€ €€€ €€€€€ €€#€"€4€9€-€"€€€€ € € €€*€)€€g€€€€€€€€€ €€€ € € €#€"€&€#€€€€€€ €€€)€(€€f€€€ €!€€€€€€€€€€ €€"€#€!€€€€€€€€"€'€*€€e€€€€ €€€€€€€€€€€€€"€€"€€€€€€€!€$€*€€g€€ €€€€€€€€€€€€"€€ €€€€€€€€€!€€'€-€€g€€€€€€€€€€€€€€€€€€ €€€€€€€€ €%€(€€g€€€€€"€ €€€€€€€ €€!€€€€€€€€!€€€!€+€,€€i€€ €€€ €€€€ €€€!€€€€€€€€!€€€€€€€+€)€€i€€!€€€€€€€"€€€€"€€€€€€ €€€€€€€€,€-€€j€€€€ €€ €!€€€€€€ €€€ € € €€!€€€ €"€ € €+€+€ €eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 5969.0 / maximum value of good pixels GOODMEAN= 102.403336 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11h4q_spt.fits b/lib/stistools/tests/data/tastis/octr11h4q_spt.fits new file mode 100644 index 00000000..ac17aaf0 --- /dev/null +++ b/lib/stistools/tests/data/tastis/octr11h4q_spt.fits @@ -0,0 +1,28 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11h4q_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'octr11h4q ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD128620 ' / proposer's target name RA_TARG = 2.198653030565E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083245979488E+01 / declination of the target (deg) (J2000) ECL_LONG= 239.456317 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -42.600371 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 315.718398 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.671012 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV25ND5 ' / aperture used for reference position ELON_REF= 239.456317 / ecliptic longitude at reference position (deg) ELAT_REF= -42.600371 / ecliptic latitude at reference position (deg) GLON_REF= 315.718398 / galactic longitude at reference position (deg) GLAT_REF= -0.671012 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CTR' / program id (base 36) PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '11' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'H4 ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F25ND5 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 486 / proposed axis1 detector pixel of subarray startSS_A1SZE= 100.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 465 / proposed axis2 detector pixel of subarray startSS_A2SZE= 100.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'CENTROID ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 80 / word 11/14 (0-255) PSTRTIME= '2016.241:19:56:37 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.241:20:01:43 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV25ND5 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14341_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.198116149851E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.075039782928E+01 / declination of v1 axis of st (deg) PA_V3 = 298.774689 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S7QX000303F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S7QX000751F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 7.377992955322E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 3.693489992171E+03 / position of space telescope x axis (km) POSTNSTY= -5.756888313217E+03 / position of space telescope y axis (km) POSTNSTZ= 1.029847970359E+03 / position of space telescope z axis (km) VELOCSTX= 5.960037102328E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= 3.207519996207E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -3.445171814936E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.574879372047E+02 / right ascension of the sun (deg) DEC_SUN = 9.424223166009E+00 / declination of the sun (deg) RA_MOON = 1.140513369335E+02 / right ascension of the moon (deg) DEC_MOON= 1.751793036256E+01 / declination of the moon (deg) VELABBRA= 17.932581 / aberration in position of the target ANNPARRA= 6.336406 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.198653030565E+02 / right ascension of reference object (deg) DEC_REF = -6.083245979488E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.985248000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 9.224995310035E-16 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.632723719787E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.854922446700E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.611489684075E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788982405165E-01 / cosine of inclination ECCENTRY= 3.481316200895E-04 / eccentricity ECCENTX2= 6.962632401791E-04 / eccentricity times 2 ECBDX4D3= 5.625603899513E-11 / eccentricity cubed times 4/3 ESQDX5D2= 3.029890622654E-07 / eccentricity squared times 5/2 ECBDX3 = 1.265760877390E-10 / eccentricity cubed times 3 FDMEANAN= 1.751361059135E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.332628209537E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.120943668516E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.629772297467E-01 / argument of perigee (revolutions) MEANANOM= 6.002321112115E+00 / mean anomaly (radians) RCARGPER= -2.001854621750E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 4.918950280228E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.770093110381E-01 / sine of inclination SEMILREC= 6.916637511529E+06 / semi-latus rectum (meters) TIMEFFEC= 9.985798390000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.990285970000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F25ND5 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;G V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'G V-IV 'ALIAS1 = 'ALP-CEN-A ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 0.010000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.100000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 7.470000000000E-01 / target parallax from proposal RA_PROP = 2.198685291667E+02 / target right ascension from proposal (degrees) DEC_PROP= -6.083267777778E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -2.400000000000E+01 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Alpha Centauri at a Crossroads 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136348000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247904000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350521000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -3.327610000000E-06 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 3.326700000000E-06 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.291000000000E-03 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.291000000000E-03 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.136579000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -1.978989800000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.958929000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.996787200000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136281000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 1.982686900000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.313932000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 2.000487400000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 58 / Slit Number SLITSIZE= '24.7x24.7 ' / aperture field of view TFPFNAME= 'F25ND5 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'POINT ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 556.0 / fsw located subarray axis1 coord. of target TARGA2 = 472.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.163 / (dgC) CEB Radiator temp OCLLMP1T= 10.4798 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.84856 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.50673 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.96442 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.81731 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.13942 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.7759 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.3583 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.9625 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.91172 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.0 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9625 / (dgC) Fitting A temp OFITBT = 18.9813 / (dgC) Fitting B temp OFITCT = 6.01562 / (dgC) Fitting C temp OHDM15V = -14.9988 / (V) Hold Mode Regulator - 15V OHDP15V = 14.8623 / (V) Hold mode regulator +15V OHDP5V = 4.91596 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.1917 / (dgC) M1 heater control temp OM1HTRW = 0.366792 / (w) M1 heater power OM2HTRT = 34.65 / (dgC) M2 heater control temp OM2HTRW = 0.0375006 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.7568 / (dgC) MEB 2 radiator temp OMBCSPT = 35.4 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.3464 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.324 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.2643 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.85 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.2028 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2028 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1932 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 25.2083 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.2493 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.8625 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.32175 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.35 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.436 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.7625 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.195937 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.5 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.76426 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.4875 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.06 / (w) Thermal controller power, zone 3B OTECINV = 6.24012 / (V) TEC input voltage OTECTCV = -7.74415 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0748 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90623 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4634 / (V) LVPS CEB +15V OPSCB35V= 31.2831 / (V) LVPS CEB +35V OPSCB5V = 4.87217 / (V) LVPS CEB +5V OPSCM15V= -15.3491 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.421001 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.7582 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.492552 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.0075 / (dgC) M1 MCE temp OM1LVPST= 40.8915 / (dgC) M1 LVPS temp OM1HVPST= 40.1589 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 210.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0720391 / (A) M2 -15V current OM2M15V = -15.8486 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.0208 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481319 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735043 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 37.4727 / (dgC) M2 charge amplifier temp OM2DCDT = 38.4495 / (dgC) M2 decoder temp OM2MCET = 36.2517 / (dgC) M2 MCE temp OM2LVPST= 41.6241 / (dgC) M2 LVPS temp OM2HVPST= 41.6241 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3293 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.09596 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.09596 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.9783 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9015 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.04731 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -4.00882 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0852 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.47794 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0341208 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.92334 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.9428 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.93776 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02533 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96712 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0171077 / (V) CB state machine 1 +5V OCBSM2PV= 5.04731 / (V) CB state machine 2 +5V OCBSWAHV= 4.9282 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.0156 / (V) CB summing well C Lo OCBSWDHV= 4.95739 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.9588 / CEB timing pwb temp OCLM5V = -5.10099 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00193823 / Calibration lamps -5V current OCLP30V = 29.9015 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00749175 / Calibration lamps +30V current OCLP5V = 5.25164 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 349046 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0137143 / (A) Slit Wheel motor current OSWMVEL = -0.0051939 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24427 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 511 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 58 / Control section slit position OCSDQEXJ= 1364 / Control section data queue extract OCSDQINJ= 1364 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 38 / Control section Expos Que Insert OCSOBSQ = -31507 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 236 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11H4ì*Õ ‹k5àóIddÑæ"Ê¥0¼ ¼ðÂððÁ Âß Ì@Ì ªÀ° Âಀ° ©ð¼€ ßð¿ ÎÉÉÉÔà¡ðÔ@Ÿð¿Ðþ ¨ðÀàÁ0ÐÈpàÒÒ¹PÑ ½@µ°¹¸°â â Í ÎÐÍðÍ€©0¶ð¦À³€¨ÀÄ©p P©¢§P à߀á¿€Ý`äð¿à  ( +þ  —¼3W!d «fáP Ä Í ÐÆ÷ùò +77i r Ø ™à ­½1) áp Ã^³I Â Ì ÑÅøüó  +ÔÀÃ^À^ð^ð_P„Ðê %@ÂÀÚÀï€%PÁÐÚàÔàÀˆð„ €Áà߀ ÐÁàßpL°T°˜ `˜°`˜ €˜À`F@¦ F`¥à™À€p™ ð~`h€~€h`f`€f ~`h`}àh`@f`f ~@h@ f €@ÁP~ h`~@h`€f``fà€À¦à€ ¦à~0>ð€àà€~ÐÃð0PSvcÀ°0€@b9 +³rŠžýñ'_kd ø€…ñ:TT%&í`ƒ››¥€ÌáßìF‚__–d–d==ÿ"Ê¥0¼ ¼ðÂððÁ Âß0Ì@Ì ªÀ° Âಀ°©à¼pðÞp¾0ÍðÉÉÉÕ°¢€Õ¡`¿àþ ¨ðÀàÁ@ÀÈpàÒÒ¹Pѽ0µ°¹¸ ââÍ ÎàÍàÍp¨µ¨´°¨PÃ@ªð¡°©`¢¨À¡€œ` ßpá¿@à`é0Ä @  ( +þ¡ —»3W"d «fÖP Ä Í ÐÆ÷ùó +77s r Ø ™Ä ¯½1) áp Ä^µI Â Ì ÑÅøüó  +ÔÀÃ^À^ð^ð_P„Ðê°%PÁðÚàï€%@ÁðÚÐÔàÀ‰„  Áàß` ÀÁPß`LÐT ˜°€˜°€˜  ˜À`F@¦ F@¥à™À€™ ð~`h@~@h` f €f`~`h@~@h``f`eà~@h@`f €PÁP~`h`~@h`€f€Àfà€À§€À¦à~@>ßp}Ã@€ €PSvcÀ°€b9 +³rŠžýñ'_k d``€„ðñ:TT%&í`ƒ››¥€ÌáßíI‚__–d–d==ÿ`:m°3Áp¸æUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'octr11h4q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 58 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 546.0 / fsw located subarray axis1 coord. of target TARGA2 = 563.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.163 / (dgC) CEB Radiator temp OCLLMP1T= 10.4798 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.84856 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.50673 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.96442 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.81731 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.09423 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.7088 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.4063 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.9625 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.87148 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.0 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.0063 / (dgC) Fitting A temp OFITBT = 19.0292 / (dgC) Fitting B temp OFITCT = 6.05586 / (dgC) Fitting C temp OHDM15V = -14.9404 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7747 / (V) Hold mode regulator +15V OHDP5V = 4.81866 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.0292 / (dgC) M1 heater control temp OM1HTRW = 0.250833 / (w) M1 heater power OM2HTRT = 36.6224 / (dgC) M2 heater control temp OM2HTRW = 0.408958 / (w) M2 heater power OMB10RV = 9.98029 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.7568 / (dgC) MEB 2 radiator temp OMBCSPT = 35.35 / (dgC) MEB CS processor temp OMBDIG5V= 5.03272 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 29.3464 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.125 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1153 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1427 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 23.6562 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.47353 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.3781 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.42294 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.0375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 12.5317 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.85 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.72925 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.7875 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.300479 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.8375 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.644021 / (w) Thermal controller power, zone 3B OTECINV = 6.0219 / (V) TEC input voltage OTECTCV = -7.82716 / TEC temp control voltage OMBMC15V= 14.6871 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9192 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.84785 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.1639 / (V) LVPS CEB +15V OPSCB35V= 33.054 / (V) LVPS CEB +35V OPSCB5V = 5.51921 / (V) LVPS CEB +5V OPSCM15V= -14.8529 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.8071 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.488156 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.2517 / (dgC) M1 MCE temp OM1LVPST= 40.8915 / (dgC) M1 LVPS temp OM1HVPST= 40.1589 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 184.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0720879 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.421001 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.2161 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481807 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.735043 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 37.7169 / (dgC) M2 charge amplifier temp OM2DCDT = 38.4495 / (dgC) M2 decoder temp OM2MCET = 36.2517 / (dgC) M2 MCE temp OM2LVPST= 41.8683 / (dgC) M2 LVPS temp OM2HVPST= 41.6241 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58793 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.3293 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.09596 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.9783 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.04731 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9289 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.01074 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.97685 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.90874 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.9329 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03019 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91847 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.95236 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.0156 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.01326 / (V) CB state machine 2 +5V OCBSWAHV= 4.93307 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.95236 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.00101 / (V) CB summing well C Lo OCBSWDHV= 4.96226 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.927 / CEB timing pwb temp OCLM5V = -5.13018 / (V) Calibration lamps -5V voltage OCLM5VC = -0.029402 / Calibration lamps -5V current OCLP30V = 29.7069 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0223914 / Calibration lamps +30V current OCLP5V = 5.23705 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 349046 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0137143 / (A) Slit Wheel motor current OSWMVEL = 0.0212307 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24427 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2558 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 58 / Control section slit position OCSDQEXJ= 1378 / Control section data queue extract OCSDQINJ= 1378 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 39 / Control section Expos Que Insert OCSOBSQ = 1263 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 238 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11H4î*Õ ‹k5é~IddÑæ"Ê¥0¼ ¼ðÂððÁ  ß0Ì@Ì0ª°° Âð²€°©à¼p €ß`¾`ÎÉÉÉÔ°¡@Öp¢0¿àþ ¨ðÀðÁ ÀÈpàÒÒ¹Pѽ0µ°¹¸ á áÍ ÎàÍðÍp¦`´§°³à¦Á«@¡À§Ð à©¢ œÐÞÐà¾Àáàê Ç`!  ( +þ  —»3X!d «fÏP Ä Í ÐÆ÷ùó +77\ q Ø ™Ä ®¼1- áp Ã^µJ Â Ì ÑÅùüó + +ÔÀÃ^À^à^ð_@„Ðê°%0ÁpÚ°ï€%0Á€ÚÀÔàÀˆð„  Á€ß  ÁpßLÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™@ð~`h@~@h `f€àf`~ h€}àh``f`f~`h`f`€PÀà~Àh`~@h`fÀ€fà€À¦à€ ¦À~ >~ ßà|àÃÀ€PSvcÀ°0`b9 +³rŠžýñ'_kd Ÿè€„ðñ:bb%'ï`ƒ››¥€ÌáßîF‚__–d–d==ÿ"Ê¥0¼ ¼ðÂððÁ0 ß0Ì@Ì ª°°°Âð²€° ©à¼€pÞ¾ÍðÉÉÉÔp¡pÔŸ°¿àþ ¨ðÀðÁ@ÐÈpßðÒÒ¹PÑ ½0µ°¹¸°ââÍ ÎÐÍðÍ€¨ð¶Ð¦²à¨`ÃÀ©ŸÀ¨¢0¦ðŸÐ`ß`àð¿pÜ@å¾0ð  ( +þ  —»3X"d «fâQ Ä Í ÐÆ÷ùó +77O r Ø ™Ä ¬¼1, áp Ã^¸H Â Ì ÑÅøüó  +ÔÀÃ^À^ð^ð_P„Ðê°%PÁðÚàï€%@ÁÐÚÐÔàÀˆð„  Áàß`  ÁPßpLÐT ˜°€˜°€˜À€˜À€F@¦ F@¥à™À€™ ð~`h@~@h``f@€f`~`h@~@h`@f`eà~@h@ f €@Áà~@h`~@h``fàÀfà€À§€À¦à~@? €à~pÄ@€SwcÀ° € b9 +³rŠžýñ'_k dààH€…ñ:bb%'ï`ƒ››¥€ÌáßïR‚__–d–d==ÿ`:m°3ÁþTæUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'octr11h4q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.6 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.3 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.163 / (dgC) CEB Radiator temp OCLLMP1T= 10.4798 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.84856 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.50673 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.96442 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.77212 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.09423 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.7088 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.4063 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.9625 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.79102 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.0438 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9625 / (dgC) Fitting A temp OFITBT = 19.0292 / (dgC) Fitting B temp OFITCT = 6.01562 / (dgC) Fitting C temp OHDM15V = -15.135 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7066 / (V) Hold mode regulator +15V OHDP5V = 4.85271 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.5875 / (dgC) M1 heater control temp OM1HTRW = 0.440583 / (w) M1 heater power OM2HTRT = 34.7042 / (dgC) M2 heater control temp OM2HTRW = 0.0610833 / (w) M2 heater power OMB10RV = 9.98029 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.7568 / (dgC) MEB 2 radiator temp OMBCSPT = 35.4 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.3464 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5661 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.324 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.3 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2126 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1427 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 24.8938 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.99633 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.0688 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.45667 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.425 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.4128 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.95 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.335062 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.8 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.867323 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.5625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.111531 / (w) Thermal controller power, zone 3B OTECINV = 6.36287 / (V) TEC input voltage OTECTCV = -7.69533 / TEC temp control voltage OMBMC15V= 14.7844 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.88677 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.3369 / (V) LVPS CEB +15V OPSCB35V= 31.9643 / (V) LVPS CEB +35V OPSCB5V = 4.68731 / (V) LVPS CEB +5V OPSCM15V= -15.3588 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.7582 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.488645 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.2517 / (dgC) M1 MCE temp OM1LVPST= 41.1357 / (dgC) M1 LVPS temp OM1HVPST= 40.1589 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 178.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.1184 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.482295 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735043 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 37.7169 / (dgC) M2 charge amplifier temp OM2DCDT = 38.4495 / (dgC) M2 decoder temp OM2MCET = 36.2517 / (dgC) M2 MCE temp OM2LVPST= 41.8683 / (dgC) M2 LVPS temp OM2HVPST= 41.6241 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.59282 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3293 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.10083 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0644 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1815 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.12029 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0839 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.9783 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.9307 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.11056 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.8821 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.11056 / (V) CB clock drive Y +5V OCBCPAA2= 14.7942 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.47794 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9581 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9289 / (V) CB reset gate CD Hi OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.9282 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.9329 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95253 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02533 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91847 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.97685 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.10083 / (V) CB state machine 2 +5V OCBSWAHV= 4.92334 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.95236 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -5.99614 / (V) CB summing well C Lo OCBSWDHV= 4.96226 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.9588 / CEB timing pwb temp OCLM5V = -5.24694 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0126186 / Calibration lamps -5V current OCLP30V = 29.2593 / (V) Calibration lamps +30V voltage OCLP30VC= 0.171304 / Calibration lamps +30V current OCLP5V = 5.12029 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00452746 / (A) Slit Wheel motor current OSWMVEL = -0.011066 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24427 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 512 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 1393 / Control section data queue extract OCSDQINJ= 1393 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 40 / Control section Expos Que Insert OCSOBSQ = 1265 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 240 / Control section exposure counter OTAFLUXQ= 280 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5600 / Target acquisition target x position OTATARA2= 5430 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11H4ðI‹k5öRIô "”¥0¼ ¼ðÂððÁ0 ß0Ì0Ì ª°° Ã±ð€° ©à¼€@Þð¾ÐÎÉÉÉÕP¢`ÔP  ¿àþ ¨ðÀàÁ@ÐÈpàÒÒ¹PÑ ½0µ ¹¸ ââ0Í ÎàÍðÍp¨ ¶§ ´¨àÃð©À °©€¢ð§p 0€ßpá ¿@Üç ¼°Ð  ( +þ  —»3W!d «fÑP Ä Í ÐÆ÷ùó +77Y r Ø ™Å ®½1+ áp Ã^·I Â Ì ÑÅùüó + +ÔÀÃ^Ð^ð^ð_P„Ðê°%@ÂÚÐï€%`Â@ÚðÔàÀˆð„  ßp à ߀LÐT°˜ `˜°€˜ €˜À€F`¦ F@¥à™ €™@€~`h€~ h` f@€f ~`h€}àh``f@f ~`h@àf €PÂ~€h`~@h`fà€fà€À§€ ¦à~0=€Þp–Â@Ÿp~€Ý¡À°€@€b9 +³rŠžýñ'_kd  €…ñqq%(ñ`ƒ››¥€Ìáßðà6F‚__–d–d==¶Æ·C"”¥0¼ ¼ðÂððÁ0 ß0Ì0Ì ª°°°Ã ²€°©à¼€°ÞÀ¾ðÍðÉÉÉÓ@ PÔÀŸð¿Ðþ ¨ðÀàÁ0ÐÈpàÒÒ¹Pѽ0µ ¹¸°áàâÍ ÎÐÍðÍ€¨0¶0¥ ±à§Pè žÐ§`¡¦žÀPPß àÀ¿PåðïÐÈ%p  ( +þ  ˜»3W!d «fÎO Ä Í ÐÆ÷ùó +77b q Ø ™Ä ­¼1+ áp Ä^¹G Â Ì ÑÅùüó + +ÔÀÃ^Ð^ð^ð_P„Ðê°%@ÂÚÐï€%`Â@ÚðÔàÀˆð„  ßp à ߀LÐT°˜ `˜°€˜ €˜À€F`¦ F@¥à™ €™@€~`h€~ h` f@€f ~`h€}àh``f@f ~`h@àf €PÂ~€h`~@h`fà€fà€À§€ ¦à~0>p@ß`— à P€àÝ¡À € @b9 +³rŠžýñ'_k d``€„ðñqq%(ñ`ƒ››¥€Ìáßñà6I‚__–d–d==¶Æ·C`m°0Å+öæšUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11hrq_raw.fits b/lib/stistools/tests/data/tastis/octr11hrq_raw.fits new file mode 100644 index 00000000..7315b89b --- /dev/null +++ b/lib/stistools/tests/data/tastis/octr11hrq_raw.fits @@ -0,0 +1,8 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11hrq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'octr11hrq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198635806010E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083171559884E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.009 ' / proposal logsheet line number PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-08-28' / UT date of start of first exposure in file TTIMEOBS= '22:33:14' / UT start time of first exposure in file TEXPSTRT= 5.762893975392E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57628.93975507 / end time (MJD) of last exposure in the file TEXPTIME= 0.1 / total exposure time (seconds) QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792987817130E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'AVAILABLE ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430M ' / optical element in use APERTURE= '31X0.05NDA ' / aperture name PROPAPER= '31X0.05NDA ' / proposed aperture name FILTER = 'ND_0.4 ' / filter in use APER_FOV= '31x0.05 ' / aperture field of view CENWAVE = 4194 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 536 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$09k14507o_drk.fits' / dark image file name PFLTFILE= 'oref$x6417095o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'N/A ' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740oo_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 286.0 / bandwidth of the data SPECRES = 7490.0 / approx. resolving power at central wavelength CENTRWV = 4194.0 / central wavelength of the data MINWAVE = 4051.0 / minimum wavelength in spectrum MAXWAVE = 4337.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Alpha Centauri at a Crossroads 'OBSET_ID= '11' / observation set id TARDESCR= 'STAR;K V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 7.470000000000E-01 / target parallax from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 7 / Number of peakup search steps PEAKSTEP= 39.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 871184.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 298.776215 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 7.000000 / the minimum value of the data DATAMAX = 102.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 512.443 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.194000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 0.276 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 73.7853 / position angle of image y axis (deg. e of n) SUNANGLE= 85.277679 / angle between sun and V1 axis MOONANGL= 112.064964 / angle between moon and V1 axis SUN_ALT = 99.688759 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:33:14' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762893975392E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762893975507E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 3912833 / Slit Wheel Absolute position OMSCYL1P= 1165 / Mode select cylinder 1 position OMSCYL3P= 4474 / Mode select cylinder 3 position OMSCYL4P= 2551 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.39359 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 19.800000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 7.0 / minimum value of good pixels GOODMAX = 102.0 / maximum value of good pixels GOODMEAN= 26.989389 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€!€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€!€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€!€ €c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€"€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€ +€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€"€ +€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€ €a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€!€ €b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€"€ €b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€$€ €d€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ € +€c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€!€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€ €_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€$€ +€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€ +€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€"€ +€b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€!€ €`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €d€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€"€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€"€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€ € €c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€$€€a€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€#€€d€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€!€ €c€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€"€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€#€ +€`€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€!€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€!€€€€€€€€!€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€!€€€€€€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€!€€€€!€€€€€€€€€€€€€€€€€€"€€€€€€€€€€ €€€€€€ €€ €€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ € €€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€&€!€ €f€€€€€€€€€€ €€€€!€€€€€€€!€€€€€€€€€€€€€ €€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€"€€€€ €€€ €#€€€€€€€€!€€€€€€ €€€€€€€!€€€€€ €€!€€€€€€€%€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€!€€€€€€€€€€€ €€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ €€€€ €!€€€€ € € €€ €€ € €€€€€€"€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€!€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€!€€€€€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€ €!€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€ €€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€ €€€€€€€€!€€€ €€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€ €!€€ €€€€€€€€€€€€ €€€€€ €€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€ €€€€€€ € €€€€€€€ €€€€€€€€€€€€€ €€€€€€ € €€€€€ €€ €€€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€€€€€€€"€€!€!€ €#€€ €€€€€ €"€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €&€"€€dXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 512.443 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.194000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 0.276 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 7.0 / minimum value of good pixels GOODMAX = 102.0 / maximum value of good pixels GOODMEAN= 26.989389 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 512.443 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.194000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 0.276 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 7 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 5478.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 4.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.198635806010E+02 / first axis value at reference pixel CRVAL2 = -6.083171559884E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.025072624896E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.040240581429E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.040240581429E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.025072624896E-06 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 73.7853 / position angle of image y axis (deg. e of n) SUNANGLE= 85.277679 / angle between sun and V1 axis MOONANGL= 112.064964 / angle between moon and V1 axis SUN_ALT = 99.688759 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:33:14' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762893975392E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762893975507E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 3912833 / Slit Wheel Absolute position OMSCYL1P= 1165 / Mode select cylinder 1 position OMSCYL3P= 4474 / Mode select cylinder 3 position OMSCYL4P= 2551 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.39359 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 19.800000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 7 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 5478.0 / maximum value of good pixels GOODMEAN= 3019.285645 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END f À¼ƒ \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11hrq_spt.fits b/lib/stistools/tests/data/tastis/octr11hrq_spt.fits new file mode 100644 index 00000000..0debe3b5 --- /dev/null +++ b/lib/stistools/tests/data/tastis/octr11hrq_spt.fits @@ -0,0 +1,7 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11hrq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'octr11hrq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198635806010E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083171559884E+01 / declination of the target (deg) (J2000) ECL_LONG= 239.454860 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -42.600042 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 315.717930 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.669992 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV31X050A ' / aperture used for reference position ELON_REF= 239.454860 / ecliptic longitude at reference position (deg) ELAT_REF= -42.600042 / ecliptic latitude at reference position (deg) GLON_REF= 315.717930 / galactic longitude at reference position (deg) GLAT_REF= -0.669992 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.009 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CTR' / program id (base 36) PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '11' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'HR ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S31X050A ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430M ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.194000000000E+03 / central wavelength SS_NSTEP= 7 / proposed number of peakup search steps SS_STPSZ= 39.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 24 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 89 / word 11/14 (0-255) PSTRTIME= '2016.241:22:26:35 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.241:22:34:41 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV31X050A ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14341_3 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.198098937909E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.074964542967E+01 / declination of v1 axis of st (deg) PA_V3 = 298.776215 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S7QX000303F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S7QX000751F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 7.345585543213E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -5.690923929175E+03 / position of space telescope x axis (km) POSTNSTY= 3.901414330490E+03 / position of space telescope y axis (km) POSTNSTZ= 4.863803313753E+02 / position of space telescope z axis (km) VELOCSTX= -3.573995025294E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -5.660478654107E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 3.586778540455E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.575828216411E+02 / right ascension of the sun (deg) DEC_SUN = 9.387229370430E+00 / declination of the sun (deg) RA_MOON = 1.155073447865E+02 / right ascension of the moon (deg) DEC_MOON= 1.736828000555E+01 / declination of the moon (deg) VELABBRA= 9.093157 / aberration in position of the target ANNPARRA= 6.335736 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.198635806010E+02 / right ascension of reference object (deg) DEC_REF = -6.083171559884E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.985248000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 9.224995310035E-16 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.632723719787E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.854922446700E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.611489684075E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788982405165E-01 / cosine of inclination ECCENTRY= 3.481316200895E-04 / eccentricity ECCENTX2= 6.962632401791E-04 / eccentricity times 2 ECBDX4D3= 5.625603899513E-11 / eccentricity cubed times 4/3 ESQDX5D2= 3.029890622654E-07 / eccentricity squared times 5/2 ECBDX3 = 1.265760877390E-10 / eccentricity cubed times 3 FDMEANAN= 1.751361059135E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.332628209537E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.120943668516E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.629772297467E-01 / argument of perigee (revolutions) MEANANOM= 6.002321112115E+00 / mean anomaly (radians) RCARGPER= -2.001854621750E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 4.918950280228E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.770093110381E-01 / sine of inclination SEMILREC= 6.916637511529E+06 / semi-latus rectum (meters) TIMEFFEC= 9.985798390000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.990375950000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430M ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S31X050A ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;K V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'K V-IV 'ALIAS1 = 'ALP-CEN-B ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 1.330000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.100000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 7.470000000000E-01 / target parallax from proposal RA_PROP = 2.198667958333E+02 / target right ascension from proposal (degrees) DEC_PROP= -6.083193333333E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Alpha Centauri at a Crossroads 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136548000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248102000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.347265000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.364430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -2.918650000000E-04 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076200000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 2.917800000000E-04 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.132300000000E-01 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969900000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969350000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.131990000000E-01 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.248404000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= 7.046400000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.024335000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.514750000000E+01 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.024692000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= -7.046400000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.248761000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 1.515390000000E+01 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 24 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 800 / Telemetry optical mode number OPTMODE = 'G430M ' / Optical Mode Name MODE_ID = '3.2 ' / IDT Mode identification CENWAVE = 4194 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 59 / Slit Number SLITSIZE= '31x0.05 ' / aperture field of view TFPFNAME= 'S31X050A' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 7 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 39.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 871184.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.3333 / (dgC) CEB Radiator temp OCLLMP1T= 10.6255 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.94567 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.37115 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.82885 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.59135 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.00385 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.8429 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.9107 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.9333 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 4.28555 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.9125 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9625 / (dgC) Fitting A temp OFITBT = 19.3167 / (dgC) Fitting B temp OFITCT = 6.01562 / (dgC) Fitting C temp OHDM15V = -15.135 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.73109 / (V) Hold mode regulator + 5V OKMDITBT= 24.951 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 36.0475 / (dgC) M1 heater control temp OM1HTRW = 0.324625 / (w) M1 heater power OM2HTRT = 35.1917 / (dgC) M2 heater control temp OM2HTRW = 0.020005 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.8135 / (dgC) MEB 2 radiator temp OMBCSPT = 35.45 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.5484 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 22.0208 / (dgC) Mode select cylinder 1 temp OMSC3MT = 22.2734 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.7281 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.2643 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 22.2 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.232 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2418 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.7036 / (dgC) CCD Shutter motor temp OSEMTRT = 24.3953 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 25.2444 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.18184 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.4844 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.18683 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.3875 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.581 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.425 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0550031 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.6875 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.747083 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.225 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0262556 / (w) Thermal controller power, zone 3B OTECINV = 6.43106 / (V) TEC input voltage OTECTCV = -7.75392 / TEC temp control voltage OMBMC15V= 14.8039 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90136 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.4363 / (V) LVPS CEB +15V OPSCB35V= 34.8638 / (V) LVPS CEB +35V OPSCB5V = 5.31002 / (V) LVPS CEB +5V OPSCM15V= -14.2691 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0704274 / (A) M1 -15V current OM1M15V = -15.746 / (V) M1 - 15 volts OM1M2VDC= 0.420513 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -42.149 / (uA) M1 MCP current OM1MCPV = -2252.97 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8437 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.489866 / (A) M1 +5V current OM1P5V = 5.19414 / (V) M1 +5 volts OM1P8VAC= 0.735043 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 38.6937 / (dgC) M1 charge amplifier temp OM1DCDT = 38.9379 / (dgC) M1 decoder temp OM1MCET = 37.4727 / (dgC) M1 MCE temp OM1LVPST= 42.1125 / (dgC) M1 LVPS temp OM1HVPST= 41.6241 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 10.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 228.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721856 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.420757 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.9976 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304274 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481807 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.734799 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 38.9379 / (dgC) M2 charge amplifier temp OM2DCDT = 39.6705 / (dgC) M2 decoder temp OM2MCET = 37.4727 / (dgC) M2 MCE temp OM2LVPST= 42.8451 / (dgC) M2 LVPS temp OM2HVPST= 43.0893 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.2339 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.14461 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.02785 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.915 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.9404 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.01326 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.8918 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.00839 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -4.00882 / (V) CEB last gate A&B OCBLGCDV= -3.39359 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93841 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.45848 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0390036 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.92334 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94749 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.01074 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93793 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.97199 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03019 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00251285 / (V) CB state machine 1 +5V OCBSM2PV= 5.11542 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.9329 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -6.95218 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.8634 / CEB timing pwb temp OCLM5V = -5.17883 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0103299 / Calibration lamps -5V current OCLP30V = 29.5512 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0286397 / Calibration lamps +30V current OCLP5V = 5.19326 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 3912833 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0197949 / (A) Slit Wheel motor current OSWMVEL = -0.00225783 / (Rad) Slit whell motor velocity OMSCYL1P= 1165 / Mode select cylinder 1 position OMSCYL3P= 4474 / Mode select cylinder 3 position OMSCYL4P= 2551 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 70 / Mode select cylinder 3 shaft position OMSC4SP = 242 / Mode select cylinder 4 shaft position OMSC1CRP= 5213 / Mode select cyl. 1 resolver position OMSC3CRP= 56644 / Mode select cyl. 3 resolver position OMSC4CRP= 22275 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 1 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 513 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 59 / Control section slit position OCSDQEXJ= 1680 / Control section data queue extract OCSDQINJ= 1680 / Control section data queue insert OCSXQEXJ= 1 / Control section Expos Que Extract OCSXQINJ= 3 / Control section Expos Que Insert OCSOBSQ = -31437 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4194 / Control section optical scan position OCSOPMDP= 800 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 50 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -21 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11HR2ƒ…#‹k5 SWI þó"Ê¥»ð¼Ðà ÃàÁpÂ@ßËÐÌ ª°@¿0² €° ©€¼€@Þ ½@ÍàÉÉÉÕС°ÔàŸ€¿Ðþ ¨àÀÐÁ@àÈ0àÑ€Ñ0¹@Р½@µ°¹¸@âPâ`ÍpÎÍàÍp©@¶°¦³¨Ð¿¨àŸ°©P¢€¦àŸpàÀßá ¿pã ðpİ$Ð  ( +þ¢ ˜º3_"d ¬fÖO Â Í ÐÆýþø  +77r r Ø ™Æ ®»1= áo Ã^µJ Á Ì ÑÅþø +ÔÀÃ^À^ð^ð_@„ ê°%`ÂÚðï€%PÁÚàÔàÀˆÐ„ €Ààßp ÐÀÐß`L°T˜°`˜°€˜ €˜Ð`F@¦ F ¥à™À€€™ð~`h€~€h  f€€f ~àh@~@h``f@eà~@h@Àf€pÂ0~@h~@h€Àf€Àg@€À§ € ¦à~=ð€0ß`|Ã0€0~ ;´cÀ°€€`z ÷^Fò]ÝDWl  €„ðñ;3b ƒ››¥Ìáß2ÿÿÿëF‚__–d–d==ÿ"Ê¥»ð¼ÐÃÃàÁpÂ@ßËÐÌ ª°0¿0²0€° ©¼€ ðßp¾ÍÐÉÉÉÕ¡pÔðŸ@¿Ðþ ¨ÐÀÐÁ@ÐÈ@àÑpÑ0¹@н@µ°¹¸@âPâPÍpÎÍÐÍp©0¶à¥Ð²À¨¾à¨ÀŸ€© ¢P¦ Ÿ@œàpßá ¿€å@ðÆ &  ( +þ¡ ˜º3_!c «fËQ Â Í ÐÆüþø  +77j r Ø ™Å ®»19 áp Ã^·G Á Í ÑÅþø +ÔÀÃ^À^ð^ð_@„ ê°%`ÂÚðï€%PÁÚàÔàÀˆÐ„ €Ààßp ÐÀÐß`L°T˜°`˜°€˜ €˜Ð`F@¦ F ¥à™À€€™ð~`h€~€h  f€€f ~àh@~@h``f@eà~@h@Àf€pÂ0~@h~@h€Àf€Àg@€À§ € ¦à~=à€P߀} Ã0€ €P;´‚cÀ pz ÷^Fò]ÝDW l`_耄ðñ;3b ƒ››¥Ìáß3ÿÿÿëI‚__–d–d==ÿ b;m°3Ç'æ K Àf¼ƒ UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocu252cmq_raw.fits b/lib/stistools/tests/data/tastis/ocu252cmq_raw.fits new file mode 100644 index 00000000..c5e08cc3 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocu252cmq_raw.fits @@ -0,0 +1 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocu252cmq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocu252cmq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'BD+41-3306 ' / proposer's target name RA_TARG = 2.897528976868E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 4.163172208435E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14143 / PEP proposal identifier LINENUM = '52.001 ' / proposal logsheet line number PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-06-06' / UT date of start of first exposure in file TTIMEOBS= '08:30:05' / UT start time of first exposure in file TEXPSTRT= 5.754535423443E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57545.35630818 / end time (MJD) of last exposure in the file TEXPTIME= 2.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793002016204E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F28X50OII ' / aperture name PROPAPER= 'F28X50OII ' / proposed aperture name FILTER = 'OII ' / filter in use APER_FOV= '28x50 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$08o14516o_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Probing the nature and evolution of the oldest known planetary syste'PROPTTL2= 'm through Lyman-alpha observations 'OBSET_ID= '52' / observation set id TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM;K III-I 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 2.803000000000E-02 / target parallax from proposal MU_RA = 9.894000000000E-02 / target proper motion from proposal (degrees RA)MU_DEC = -6.324900000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'POINT ' / type of acquisition CENTMETH= 'N/A ' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 34.014980 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 12.000000 / the minimum value of the data DATAMAX = 409.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 168.996 / position angle of image y axis (deg. e of n) SUNANGLE= 107.862694 / angle between sun and V1 axis MOONANGL= 117.726654 / angle between moon and V1 axis SUN_ALT = -57.370529 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-06-06' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:30:05' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.754535423443E+04 / exposure start time (Modified Julian Date) EXPEND = 5.754535424600E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 526.8 / fsw located subarray axis1 coord. of target TARGA2 = 512.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1442.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 2562157 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 19.094300 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 409.0 / maximum value of good pixels GOODMEAN= 31.250799 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€€"€ €€ €€€€!€€€€€€€ €€€€€€€!€€ €€€€€!€ €€€!€€€ € €€ €€!€€!€€€€ €€€!€€€€!€€€€€€€!€€€€"€ €€€"€€#€€€€€€€!€€€€€ €€€€€ €€"€€€"€)€&€ €j€€€!€€€€€€€"€ € €€"€€€€€€ €€€€€€€€!€ €€ €!€€!€€€"€€€€€!€€€ €€€ €!€!€€€ €€€€€€€€€€€ €€€!€€€€€€€€€€ €€€€€€€ € €€€€"€€€€€€€#€)€'€€f€€€€€€!€€ €€ €€€€!€€€ €€€!€€€ €€"€€€€€€€ €€€€€€ €€€€"€€€€€ €€!€€€ €€#€ €€€€€ €€ €€€€€€€€ €€€€€€€€€€"€ € €€€€€ € €€€!€€€€€!€%€+€€g€ €€€€!€!€€€"€€€€€€€!€€"€€€€!€!€€€ €€€€!€€€€ €€€€ €€!€"€ €€€€€€€€€!€€€€€€€€!€€€"€€€€€!€€€ €€ €"€€€€!€€€€ €€€ €€€€€€€€€ €€€€+€(€€h€€€€€€€€ €€€ € €!€€!€!€€€ €€ €€ €€€€ € €€ €€€!€€!€€ €€€#€ €€!€€€€€ €€!€ €€€€ €€!€€€€€!€€€€€€€€!€€ €€€€ €€€!€ €€ €€€€€!€€€€€€€€€€*€(€€k€€€€!€!€€€ €€€ €€€€ €€€ € €€ €€€€€€€€ €€€ €€€€"€€€!€!€€€"€€€€€€€€€€€"€€€"€!€€€ €€€€ €€€"€€€€€ €€€ €€€€€€!€€€ €€€€€€ €€!€€€"€&€*€€l€€€"€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€€"€"€€€€€€€€€€ €€€€€€€"€€€€"€€ €€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€ €€&€)€€h€€€€ €€!€€ €€€€€ €!€€€ €€€€€€€€ €€€€€€ €€€€ €€€ € €€€€ €€"€€€€€€€€ € €€€€€€€€€€ €€€ €€€ €€€€€€€€ €€€ €€€!€ € €!€€€€€!€€€€€(€)€€h€€€€€€€ €€ €€ €€ €€€!€€€€€€€"€!€€ €€€€ €€€!€€"€€€€€€€!€€ €€€€€€€€"€€€€€ € € €€ €€ €€!€€€€€€"€€!€€!€€€ €€!€€€€€€€!€€€ €€€€€€€(€+€€i€€€ €€€€€€ €€ €€€€€€€€€€€ €€ €"€€€€€€€€€€€ €€€€ € €€€€€€"€€€!€€€ €€€€€ €€ € € €€ €€€€€€€€ € €€ €€€€€€€€€€€€!€€€€€€ €€€€)€*€€j€!€€€€€€€ €€€€€€€!€€ €€!€ €€€€€€€€€"€ €€€€€€ €!€€€!€€€€ €€€ €€€"€€€"€"€€€€€ €€!€€€"€€€€ €€€€€€€€€€€ €€€!€€€€€€€€€€€€€€!€'€*€€j€ €€ €€€ €€€€!€!€€€€€€€ €€ €€€€€€€€!€€€€ €€€€ €€€!€€€ €€€ €€ €€€€ €"€!€€€ €€ €€ €€€€€€€€€€€ €€€ € €€€€€€ € €€€€€€€€€€€€€€!€$€*€€f€€ €€€€"€€€!€€€"€€€ €€ €€€€€€€€€€€€€€!€ €€!€!€ €€€€€€"€€€ €€€€"€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€(€*€€k€ € € €€€€€€!€€€€€€€ € €€ €"€€ € €€€€€€€ €€€!€€€€"€ €€€€€€ € €€€ € €€€€€€ €€€€ €€#€ €€€!€ €!€€€€€€€€€"€€€€!€!€€€€€€€€€#€ €€€€€€'€*€€k€"€€€ € €€€€ €€€€€€€ €€ € €€€€€€€ €€€ €€€€€€€€ €€€!€€€€€€ €€€€$€"€!€ €€€€€ €€€€€€€$€€€!€ €€€!€€€"€ €€#€€€€€€€€ €€ €€!€€€ €€€€(€(€€l€ €€€"€€€€€€€!€€€ €€€€!€€€"€!€€ € €€!€€ €€€€€€€€€€€ €€ €!€€€ € €€€!€€€€€€€€€€€€€€"€"€€€ €€€ €€€€€ €€€€€€ €€€ € €€€ €€€€€€ €!€*€)€€i€€ € €€€ €€€€!€ €€€ € €€ €€€€€€€!€!€€€ €€€ € €€"€"€ €€€€€€!€€€€€€€ €€€€!€!€€ €!€€ €€€€€ €€€€€€ €€€ €€€€€ €€€€€€€ €€€€€€€€€€ €€%€)€€g€€!€€€€"€€€€ €€€€€€"€ €€€ €€€ € €€ €€€€!€"€€€!€€€€€€€!€!€€ €€€€€€€ €€€€€ €€€ €€€€€€€"€ €€"€€€€ € €€€€ €€€ €€€€€€"€€€€ € €€€!€€(€+€€h€ €€€€ €€€€€!€€ €!€€€ €€€!€€€€€ €€ €€€€€ €€ €€€ €€€ € €!€ €€ €!€€"€ €€€!€ € € €€€€ € €€€!€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€ € €€€€ €"€)€*€€i€ €€€€ €€!€ €€ €€€€€€ €€€€€!€€€ €€!€€€€ €€€€ €€!€ €€$€!€!€€ €"€€€€€€€!€€€€€€€"€€€ € €€€!€€€ €€€!€ €€ €€€€ €€€€€€€€€€€€€€€€€€ €*€)€€g€ €€ €€€€#€€€€€ €€"€ €€€ €€€!€"€€€ €€€€€€€€€ €€ € € €€€€ € € €€€€€€!€€€ €€€!€"€€€ €€€€ € €€€"€€ €!€ €€€€€€!€€€€€€€€€€€ €€€€€€€€(€'€€j€€ €€€€€"€€€€€€#€€€€€€€€ €€€€€€€"€€€€€€€ €€ €€ €€€!€€€€ €€€"€ €€"€€€ €!€€ €€!€€€€!€€ €!€€€€ €€€ €"€€ € €€€!€€€€€€€!€!€€€€€€ €#€'€+€€i€ €!€€€€€€€€"€€ €!€€€€!€€€!€!€€€ €€€€€€ €"€€€ €€€€€ €€!€€€!€€€€€"€€€€€€!€!€€€ €€€€!€€€ €€€€!€ €€€€€ €€ €€€€€€€€€€€€ €€€€€€ €(€+€€j€ €€€ €€€€ €€€€!€ €€€€€€€ €€ € €€€€ €!€€€!€€€ €€€€€!€€"€€€ €€ € € €€€€€€€"€€€ €€€€€€€€ €€ € € €€€ €€€!€€€€ €€€!€€€€€€€€€€ €€ €€(€+€€j€ €€€€ €€€ € €€€#€€€€€€€!€#€€€€€ €€€€ €€€ €€€€!€#€€ € €!€€€€€€"€€€ €€€€"€€€ €€€€€€€€ €€€ €"€€!€€!€€ €!€€€€€€ €€€€€€€€€€ €€€€!€+€(€ €i€€€€ €€€€ €€ € €€€ €!€€€€ €€€€€€ €€€ €€€€"€ €€€€€€!€€€€€€ €€€€€"€€€€€€€ € €€€"€ €€€€€!€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€"€)€%€€g€€€€€€€ €€€€€€ € €€€€€€€"€€€€€ €€€€€€€€€ € € €€€€€ €!€€ €€€€€"€€€€€€€€€€ €€€€€€€€€!€!€€€€€€€"€€€€€€€€€€€€€ €€"€€€€€&€*€€g€!€€ €€ € €€€€ €€€€€€€€ €€€ €€ €€€ €€€€€ €€€ €€€€ €€€€€€€ €€€ €€€€ €€€ €"€€ €€!€€ €€€€!€€€€"€€ €€€€€€€€€€€€€€€€€€€€€€€€!€*€)€ €j€ €€€ €€ €!€ €€€!€€ €€€ €€ €€€€€ €€€!€€ €€!€ €€ €€€€€€ €€€"€ €€€!€€ €€€!€€!€€€€€€€€€ €€€€!€€€!€€€ €€€€€ €€ € €€€€€€€€€€€€ €€"€€€)€*€€h€"€€€€€€€ €€€ €€€!€€€€€€€€ €€€€€€€€€ €€€ €€€€€ € € €€€€€€€ € € € €€€!€€€€€€€€€€€ €€€€ € €€€"€€€ €€€€€€ €€€€€ €€€€€€!€ €€€)€%€€i€€€€ €€€€€ €€ € €€ € €€€€€€€€€€€ €€€€ €€€€€€!€€ €€€ € €!€€"€ € € €€€€€ €€€ €€ €€€€€€ € € €€ €€€€€ €€€€€€€€€€€€€ €€€€!€€€€€€€*€)€€i€€€€€ €€!€€€!€ €€€ €€€!€ € € €€€€€€€€ €€€€€€€€€€€€€!€ € €€€€ €€€€€€€€€ €€€€€€!€ € €"€€€ €€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €)€)€€i€€ €€!€€€€€€€€€€€ €€€ €€€!€€€€€ €€€!€€€€€€€ €€€€€€ €€€!€€ €€!€€ €€!€"€€!€€ €€€€€€#€ €€!€€€€#€€€€€€ €€€€€€€€ €€ €€€€€ €€€€€(€(€€k€€€€€€ €!€€€€€€€€€€ €€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€!€!€€€€€€€€€€€!€€€€ €€ €€€€€€€€!€€€ €€€€#€€€€€€€€€€€€€€€!€€€€$€)€€g€€ €€ €"€€€€ €€€ €€€ €€"€€€€€€€€€€!€€!€€€€!€€€€€€€€ €€€ €€€€ €€€ €€ €€€"€€€€€€€€€€€€€ €!€€€€€€ €€€€€€€€€€€€€€€€€ €€ €"€(€+€€i€€ €€€"€ € €€€€!€€€ €€!€€€€€€"€€€€€€€ €€€€€€€€€ €€€ €€€!€ €"€€€ €€€€€€€€ €!€ €€ €€€€€€€€€€€€ €€€€€ €€€€€ €€€€€€€€€€€€€!€*€)€€h€ €€ €€€€€€€€€ €€€€€€€€€€€€€ €€€ €€€€ € €€€€€ €€€€€ €€ €€€€€€ € €€€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€€€€€€€"€€€€€€€€(€)€€i€ €€€€€€ € €€ €€€€€€€€€ €€€€ € €€€ €€€€€€!€€€€€€€€€ €€€"€€€€€€ €€€€€!€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€!€€€(€(€€j€!€€€€€€"€€€€"€€€€€€€€ €€!€ €€€€!€€€€€!€€!€€€€ €€!€€!€€"€€ € €€€€€€€ € €€€€€€€€ €!€€€€€€€€€!€€€€€€€€€€ €€€€€€€ €€€€!€€€ €(€(€€j€€€€€€€€€"€€ €€€€€€€€€€ €€ €€€€€€€€€!€€€ € €€€€ €!€€€€€!€!€€€€ €€ € €€ €€€€€"€€€ €€€!€€€€€€€€€€ €€€€€€€€€€€ € €€€ €€€€€+€'€€k€€€€€€!€€€ €!€ €€€!€€€€€€€€ €€€ €€€ €€€€€€ €€€€ €!€€€"€!€€ € €€ €€€€€€ €€€€ €€€€€ €€"€ € €€€€€!€€ €€€!€€€€€€€€€€€€€€!€ € €!€€"€(€&€€i€€ €€!€€!€€€€€"€€€€€ €€€€€€€€€€€€€€€€ €€!€€€€€ €€"€!€ €€"€ €€€€ €€!€€€ €€€€!€€€€€€€€€€€ €€€#€€€€€!€€ €€€€€€€€€€€€€€€€€'€*€€h€!€ €€€ €€€!€ €€€€€€€€€€€€€€ €€€"€ €€€€€€!€€€€€€!€$€€ €!€€€€€€€€ €€€ €€€ € €€€€€ €€ € €€€ €€€"€€€€€€€€€€€€€€€€€€€€€ € €€ €(€(€€j€€ €€€€€!€€€€€!€ €€€€€€€€€€ €€ €€€€!€€€€€€€ €!€"€€"€"€%€%€€!€€€€€€"€€€€€€"€ €€!€ €€€€€€ €€€€€!€€€!€€€€€€€€€€€"€€€€€€€ €€€"€)€(€€i€€€€€€€#€€€ €€€€!€€€€€€€€€!€€€€€ €€€€€€€!€€€ €€"€#€(€&€€%€!€€€ €"€€€€€€€€€€€!€€ € €!€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ €)€'€€h€ €€ €€€ € €€€€ €€€€€€€€ €€€€!€€€€ €€ €€€€€ € €€€ € €€+€+€%€ €&€!€€!€€€ €€€€€"€€€ €€€€€"€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€!€$€*€€j€ € € €€€€ €€$€€€€€€€€€€€€€€!€!€€ €€€€$€€€€€€ €€!€"€/€v€‚€<€%€$€"€€#€!€€€€€€ €!€€€ € €€€€€ €€€€€#€€ €€€"€ €€€€€ €€€€€€ €€€€"€€€!€€€+€(€€i€ €€€"€ €€ € €€€ €€€ €€€€ € €€ €€€€€!€€€ €€€€ €€€€ €!€"€<€ð™€a€-€%€"€"€!€€€!€€€€€€€ €€€€€€€"€€€€€€€"€€€€€€€€€€ €!€€€€€€€#€€€€ €€€*€)€€i€€€€€€ €€€€€€ €€€ € € €€€€€€€€€ € €€€€€€€ € € €€ €"€.€|€²€V€*€(€ €#€€€ €€€!€€!€€€!€€ €€€€€!€"€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €)€'€ €j€ €€ € €€€ €€€€€€€!€€€ €€€€ €€€€€ €€€€€€€ € €€€€!€€#€+€1€+€%€#€!€ €€€€ €€€€ €!€€€€!€€ € €€€€!€€€€ €€€€€€€€ €€€€€ €€€€€€€€ €€€€€*€(€€i€€ €€€!€€!€ €€"€€€ € €€ €€€!€ €€ €€€€€€€€€ €€€€€€ €€€ €!€!€#€ € €€€€€!€ € €€€€€€€"€ €€€!€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€'€(€€i€€ €€€€ €"€€€€€€ €€€#€€ €€ €€"€€€ € € €€ €€€€€€€€€!€€€!€ €€ €!€!€€ €€€€€€"€€€ €!€€ €€€€!€€€€€!€€ €€ €€€ €€€€€€€€€€€€€€€€!€€€€"€&€)€€h€€€ €€!€ €€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€ €€#€ €€€ € €€€€€€€€€€€€€€€€ € €€€ €€€€"€ €€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€'€'€€i€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€!€€€€€€€€€€ € €€€!€€ €"€€€€€€€!€€€ €"€€€€€€€€€€€€€ €€€ € €€€ €€€!€€ €€€€€€€€€€€€€€*€(€€i€€€€ €€€€ € €€!€€€€€€!€€€€€ €€€ €€€€€€€€€€€€€€ €"€€"€€€€€!€€ €€€!€€€ €€ €€€€ €€€€€€€ €€€€€€€!€€€€€€€!€€€€€€€€€€€€€€ €)€(€€k€ €!€"€€€€#€€€ €€€ €€€€ €€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€!€ €€ €"€€€ €€€€€!€€€€€€!€€€€€ €€€ €€€ €€ € €€€!€!€€ €€€€ €€€€€€€ €"€)€)€€j€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€!€€€ € €€€€€!€€€€€€€€€€€€€€€€€ €€ € €€ €€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€€€'€)€€g€€ €€€€€€ €€€€€€€€€ € €€€€€ €€€€!€€€"€€€€€€€€€€€€€ €€€ €€€€€ € € €€ €"€€€!€ €€ €€€€€€€!€ €€€€€€€"€!€€€€€€€€€€€€€€€€€€€&€*€€h€ €€€€€€€€!€€€#€€€€€€€€€€€€€€€€€€€ €€ €€€€ €€€€€€€€ €€!€€€€ €€€€€€€ €€€ €€€€ €€€€€€€#€"€€€€€€ €€€€€ €€€€€€€€ €€€€€'€(€€g€€€€€€€€ €€€€ €€€€€€€€€€€€€ €€€€ €€€€€€€!€€€€!€€€!€€ €€€€€€!€€€€ €€ €€€ €€€€€€€€ € € € €€€€€€€€€"€€ €€€€€€€ €€€!€€€€ €(€+€€l€ €€€!€€€ €€€€€ €€€€!€€€€€€ € €€€€€ € €€€€€€ €!€€ € €€€€€€€"€€!€€€ € € €€ €€!€!€€"€€€€ €€ €€€€ € €€€€€€ € €€!€€€€€€ €€ €€ €€ €€€ € €+€*€€i€€€€ €€ €€ € €€€€€€€€€€€€€€€€€"€€ €€€€€€€€ €€€ €€ € € €€ €€ €€€€€€€ €€#€€€ € €€€ €€€€€€€!€€€ €€!€€€€€€€ €€€€€€€€€€€€€€ €(€'€€k€€!€€€€ €€€"€!€€€€€€€€€€€€ € €€€€€€€ €€€€!€€€€€ €€€ €€!€€!€€ €€ €€€ €€€€€€€!€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€&€(€€h€€€€€!€€€!€"€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€ €€€!€€"€€€€€€€ €€€#€€ €€€€€€€€€€"€€€€€"€€€€€ €€€"€!€€€€€€€€€€ €€€€€€#€(€'€€i€€€€ €#€€€€€ €€€€€"€€€€€ €€€ €€€€€€€€€€€€€€€€€!€€€!€€€€€€€€ €€€€€ €€ €€ €€€€€€ €€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€!€ €)€*€€g€ €€€€ € € €€!€€€€ €!€€ €€€€€ €€€€€€€€€€€ €€€€€€€€€€€!€€!€€!€€!€€€ €€€€€€€ €€€ €€€€€!€€€!€€€€ € €€€ €€€€€€ € €€!€€€ €€€!€€ €€'€*€€g€€€€€ €€€€ €€€"€€€€€€€€€€€€€€€€€€ €€€€€€!€€€€€€ €€€€€€€€€ €€"€€€€ €€€€€€ €€€ € €€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ € €(€*€€h€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € €€!€€ € €€!€€€€€€€"€€€ €!€€ € €€€€€€€ €€€€ €€€€€€€€€€€€€€"€€€ €'€*€€k€€€€€ €€!€€€€!€ €€€€€!€€€€€€€€€€ €€€€€€€€ €€€€ €€€€€€€€€€!€ €€€!€€€€€€€ €€€€€€"€"€€€€ €€€ €€€€ €€€€€ €€€€€€€€€ €€€€!€'€+€€j€€€ €€€€€€€ €€!€ €€ €€€€€ €€€€"€€!€€ €€€€€€€ €€€ €€€€€€€€€€€!€€€€€ €!€€€€€ € € €€!€€€!€€€€ € €€€€€€€"€€ €€€€€€€€€€€€€€€!€$€*€€j€ €!€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€!€€€€ € € €€€€€€€ €€€€$€€€€€"€€!€€€€!€€€ €€€€€€€€€€€!€€€€€ €€€€€€€#€$€*€€i€€€€€!€€€€€€€€ €€€!€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€ € € € € €€€ €€!€ €€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€€€€€€"€'€(€€g€€€ €€€€€!€ €!€€€€€€!€€!€ €€€ € €€€€ €€€ €€ € €€ € €€€€ €€€€€€€"€€€#€ €€€€ €€ € €€€"€€€ €€€€ € €€€ €€€€!€ €€€€€€ €€€!€€€€€€€€!€€ €'€(€ €h€ €€€ €€€€!€€€ €€€€€€€!€€€€!€€ € €€€€€€€ €€€€€ €€€€€€!€€€€ €€€€€€€!€€€€!€€€€€€€ €€€ €€€ €€€€€€€ €€€€ €€€€€€€€€€€€€€ €(€'€€g€€€ € €€€€€€€€€ €€€€€€€€!€€€ € €€€€€€€€€ €"€€€€!€€€€ €€ €€€€!€€€€€€€€€€€€€€€€€€"€ €€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€%€(€€i€€!€ €€ €€€€ €!€€€€€€€ €€ €€ €€€€€€ €€€€€€€€€ €€€€€ €"€€!€ €€€"€!€€€€€€€!€ €€ €€ € €!€!€€€€€€ €€€!€ €€€ €€€€€€ €€€€!€€€€€€€€!€€$€*€€j€ €€€€€€€€€!€ €€ €€€!€€€€€€€!€€€€ €€€ € €€€€€€!€€€€€€€"€€€€ € €€ €€€€ € €€€ €€€€€ €€€€€€ €€€!€€€€€€€€"€€€ €€€€€€€€€€€€ €%€*€€m€ €€€€€€€ €€€€€€€ €€€€€ €€€€€€ €!€€€€€€€€€€€€€ € €€€!€€€€€!€€€€€€€€€€€€!€€€ € €€€€ €€€€€€€€€ €€ €€€ €€€€€€€ €€€€ €€€*€)€€i€ €€€ €€€ € €€€!€€€#€€€ €€€€ € €€€€ €€€ €€ €€€€€€!€€ €€€€"€€€€"€€€€€ € €€€€ €€€€€€€ €€€€€€€ €!€€€ €€€€€€€€€€€ €€€€€€€ €€€"€'€)€€l€ €€ €€€€!€€€€ €€€!€€€ €€€€ € €€ €€€ €€€€ €€€€ €€€ € €"€€€€€€€€€ €!€€€!€€€!€ €€€€€€ €€€€ €€€€ €€€ €€€ € € €€!€€€€€ €€!€€€€€€€€€(€)€€j€€€€€!€ €€€"€€€ € €€€€ €€€€ €€€€€€ €€ €€€€ € €€€€€!€€"€!€€€ €€€€€€€"€€€€ €€€€€€€ €€€!€€€€"€€€€€€€ €€€!€€€€€€€€€€€€€€€€€&€.€€h€€ €€€ € €€€€ €€€€€€!€ €€€ €€€"€#€€€ €€€€€€€€€€ €€€€!€€€€€€€€€€€!€€€€ €€"€€ €€€€€€€€€ €€€€€€€€€€€!€€€€ €€€€€€€ €€€ €€€'€(€€i€"€ €€!€!€€€ €!€€ €!€€€€ €€€€ €€€ €€€ €€€€€ €€!€€€€€€€€€€ €€€ €€€€€!€€ €€!€€€€€€"€€€€ €€€€€€€"€€€€ €€€€€€€ €€ € €€€€ €€€ € €€ €*€'€€j€ €€€ €€€€€€€"€€€€!€€€ €"€€ €€€ € €!€€€#€€€€€€€!€€€€!€!€€ €€€ €€€€ €€€€ €€€!€€€€€€€€€€€"€€€€€€€ € €€!€€€€€€ € €€€€"€€€€ €€€€)€(€€i€ €€€€€€€€€€€€€ €€€€"€€€€€€ € €€€ €!€€€"€€€€€€!€"€€€€€€€#€€€€€ €€!€€€"€€€€€!€€ €#€€€€ €€€€€€ € €€€€€€ € €€!€€€€!€€€€€€€€"€%€(€€j€€ €€€ €€€€ €€€ € €€€€!€€€€€€€ € €€ € €€€ €€€€ €€€!€€€"€€ € €#€€ €€!€€€€€€€"€€€€ €€€€€€€€€€ €"€€ €"€€€€ €€€€€€ €€€€!€€€€ €€€ €€&€*€€k€€ €€€!€"€€€!€€€ € €€€€!€€€€ €€!€€€€€€€€€€€!€€€€€€€"€€€ € €€€ €€€€!€€€ €€€€€€€ € €€€ €€€€€€ €!€€€ € €€€"€ €€€€€€€€€€€€€€€ €(€)€€h€€€€€ €€€ €€€€ €€€€ €€€€€€ €€€"€€€€ €€€€€€€€!€€€€ €€€"€€€€!€€€€ €€ €!€€€€ €€ €€€€€€€€"€€€ €!€€€"€€€€ €€€ €€€€€€€€€€!€"€€"€(€)€€k€ €€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ €€!€€€€€€€€€€€ €!€ € €€ €€€€€€#€€€€"€€€!€€€!€€€€ €!€€€€€€!€€€€ € €€€€€€€€€€!€€€€€€"€)€)€€g€€€!€€€€€€€€!€€€€€€€€€€€ €€€€€€ €€€€ € €€€!€€€€€€€€€€!€€€€ €€€ €€€€ €€€€ €€€ €€€ € €€€ €!€€!€€€€ €€€€€€€ €€€€€€€€€€€!€&€%€€g€€€!€€€€€€€!€€€ €€€€!€€€€!€€€€!€€€€€€"€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€ €€!€€€ €€€€€€€ €€ €!€€€ €€€€!€€€€€€€€€€€€€€€ €&€)€€i€€€€€€ €€€€ €€€ €€€!€ €€€ €€€€ €€€€€€"€€€€ €€€!€€€€ €€€ € €€€€€€€€€€"€ €€€ €€€ €€€€€€€ €€€€!€€€€€€€!€ €€€#€€€€€€€ €€€ € €€(€+€€e€€ €€€€€€€!€€€ €€€€€€€€€€€€€€€ €€€€€€ €!€€€€ € € €€€€€€€€!€!€€€€€€ € €€"€ €€ €!€!€€€€€€!€€€ €€€ €€€€€€€€ €€€€ €!€€!€€€€ €€€(€,€€g€ €€€€€€"€€€€€"€€ €€€€€ €€€€€€€ €€€!€€€ € €€€!€€€€ €€€€€€€€€€€"€€€€€€€ €€ €!€ €€ €"€€€!€€€€"€€ € €€€€€€ €€ €€€€€€€€ €€!€ €€"€*€*€€i€€€€€€€€€€€ € €€ €!€€€€€€!€ €€€€€€€€€€!€€€€€€€!€!€€€€ €€!€!€€€"€€€!€€€€ € €€ €!€€€€€ €€€€€ €€€ €"€€€ €€€€ €€€€€€€ €€€ €!€€€ €+€)€€h€ € €"€€€€!€€€ €"€€€€€€!€"€€ €€!€€ €€€ € €€€€€ €€ €€ €€ €€!€€€€€€€ €!€€€€€€€€!€€€€€€ € €€€ €€€€"€€€€ €€€ €€€ €!€€€#€€€€€€ € €€€€#€&€,€€h€€ €€€€€€€€€€€!€ €€€!€€€!€€€€€€€!€€€€ €€€"€ €€€ €€€!€!€€€€€€€"€ €€€!€ €€€€€€ €€€€€€€!€€€ €€€€€ € €!€€€€€€€€ €€€€€€€€€"€€€*€+€€f€€"€ €€€€€€ €€€€€€€ €€€€ €€€€"€€ €"€€€€€€€€ €€€€€€€€€ €€€€ €€€ € €€ €€ €€ €€€€€€€€€€€€€€ € € €€€€€ €!€€ €€ €€€€€€€€€€ €€ €*€)€€f€ €€€€!€€€€€ €€€!€ €"€ €€€"€€€€€€ €€€€€€€ €€€€€!€!€€€ €€€"€€€"€€€€€"€€#€€€"€€ €€ €!€ €€!€ €€€!€ €€ €€€€!€€€€€€€ € €€€ €€€€€€€€€"€+€,€€g€ €€!€ €€ €€€€€"€ € €€ €€€ € €€ €!€€€€€€€ € €€€€€ €"€"€€€€€€ €€€€"€ € € €€€ €!€€€€ €€€€ €€!€"€€!€!€€ € € €€€!€ € €€ €€€"€ €€ € €€€€€€€!€ € € €(€*€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 409.0 / maximum value of good pixels GOODMEAN= 31.250799 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 11.000000 / the minimum value of the data DATAMAX = 130.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 168.996 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-06-06' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:31:17' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.754535506776E+04 / exposure start time (Modified Julian Date) EXPEND = 5.754535507934E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.1 / fsw located subarray axis1 coord. of target TARGA2 = 515.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 611.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 2562156 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.7024 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.92803 / (V) CB summing well A Lo OCBRCDLV= 0.0097069 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 130.0 / maximum value of good pixels GOODMEAN= 30.952999 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€"€€€ € €€€"€€€ €€€€€€€€ € €€€€€€ €€ € €€€€€€€€ € €€ € €€€€ €€"€€€!€ €€"€ € €€!€€€ €"€ €€ €!€€€"€€€€€€€€ €€€€€€€€€€ €€€!€ €€€'€*€€g€€€€€ €€!€€€€ €€€ € €€€€€€€€€€€€€€€€€!€ €€€"€€€€ €€€ €€€"€€€€€ €€!€!€€€"€€€€!€€€ €€€€!€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€€ €'€(€€i€€€ €€€€ €"€€#€€ €€€€€ €€€€€€€€€ €€ €€€ € €€ €€€€€"€€€€€€€€!€€!€€€€"€€€"€ €€€€ €€ € €€ €€ € €€€ €!€€€€€€€€!€€€€ €€€"€€€€€€€€€%€*€€h€€€€€€"€ €€ €€ € € €€€€!€€€€€€€!€€€!€ €!€€ €€€!€ €€!€ €€€€€€€€€€ € €€€€€€€€€€€€€€#€!€€#€ €€€ €€ €"€€€€€€€€€€€€€€€ €€€!€€€€€!€&€+€€f€"€€€€!€€€€€€€€€€€ €€€€€€€!€!€€€€€€€€€€€€€€"€€€€ €€€€€€#€€€!€€ €€"€ €€€€ €€€€€€"€€€€€€€€€€€€€€!€€€€ €€€€€€"€€€€€€€*€+€€l€!€€€!€€€€€€€€€€"€€€€€ €€ € €€€€€€€€€€€€€€ €€€ €"€"€€!€€€€#€€€€!€ €€!€ €€€€€€€€€ € €€€€"€€€€€€€!€ €"€€ €€ €!€€€€€€€€€€!€ €€ €*€*€€k€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€€€€€€!€€€€ €€!€€€€!€ €€ €€€€€€ €€#€€€"€€ €€ €€€€€ €€ €€€€€€€€€€€€€€!€'€)€€j€€€ € €€ €!€€€€€€!€"€€€ € €€€€€€€€€€€€€€€€€ €!€€€€€"€€€€ €!€€€ €€€€€€€ €€€"€€€€"€€€€€€€€€€€€€€€!€ € €€€€€€€€€€ €€€ €€€ €(€*€€g€ €€€€€€€€€ €€€!€€€ €€€€€€€€€€€€€€€ €€€€€ €€€€€ €!€ €€!€€€ € €€€!€!€€ €€€ €"€€€€€€€€€€€!€€€ €€€€ €€€ €€€€€€€€€€€€€€€!€€)€'€€m€ € €€€€€ €€"€€€€€ €€!€€€€€€€€€€"€€€€!€€€€€€€!€€€!€ €€€€ €€€ €€ €€ €€€ €€ €!€€ €€€€€"€€€€"€€€ €€€€€ €€€€€!€!€€€€€€€€€€€€€ €*€(€€i€€ € €€€€€€€€ €€€€€€€€ €€€ €€€ €€ €€€€€€€€!€"€€€€€€€"€€€€€€ €€€€€ €€€€ €€€ €€€!€€€€€€€!€!€€€ €€€€€€€€"€€€€€€€€€€€€€!€(€)€€i€€€!€€€€€€€€€€€!€€€ €€€€ €€€ €€€ €"€€€€ € €€€ €€€€€€"€€€€ €!€€€€€€€€€ € €€€!€€€€ € €€€ €€€!€ €€ €€€€!€€€€€€€€€€€#€€€€€€€ €%€(€€l€€ €€€€"€€€€€ €€€€€€!€€€€€€€!€€€€€€€ €€€€€€€ € €€ €€€€€€€€"€€€ €€€€ € €€€€€€!€€€€€€€€€€"€€€€!€€€€€€€ € €€€€€€€"€€€€!€%€*€€g€€#€!€€€ €€€€ €€€ €€!€€!€€€€€€€ €€ €€€€ €€€€ €€€ €€€€€€€ €€€€€€€€ €€€ €€€!€"€€ €!€€ €€"€€ € €€€€ €€€ € €€€€€€€!€€€€€€!€€€€€€€(€)€€g€#€€€ €€€€€€ €€€€€€ €€€!€€€ € €€ €€ €€€€ €€ € €€€"€€€€€€€€€€ €€€€€€€€!€€€ €€€€ €€€"€!€€"€"€€€€€€€ €€€€ €€€€€€ € €€€€€€€!€€€*€&€€h€ €€€ €€ €€€€€€€€€!€€€!€!€€ €€€€!€€€€!€€€€€€€€€€€€€€"€€€ €#€€€ €€€€!€€€€€€€"€€€€€€ €€€€€€€€ €€€€ €€€€€€€€€€!€€€€€€€ €)€(€€g€€€ €€€€€€€€!€€€€€€ €€€€€€€€€€€€"€€€ €€€€ €€€ €€€€ €€€€€€"€€€€"€€€ €€€€ €€€€€€€!€€€!€!€€€ €!€€€€€€"€ €€€€€€€€€€!€€€ € €'€*€€g€€€€€€€€€!€ €€€€ € €€"€€€€!€€€ €€€€€€!€€€€ €"€€ € €€€"€!€€€!€!€€€€€€ €€€€"€€€ € €€€€ € € €€€€"€€€ €€€€ €€€€ €€€€€€€€€€!€€€€€€&€*€€h€€€€€€€€€€ €€€€€ €€€€!€ €€ €€€€€€€€!€€€ € €!€€!€ €€€ € €€€€€ €€€€!€$€€ €€€ €€ €€!€€€€€"€€€€€€€€€€€ €€ €€!€€€!€€€€€€€€€€€€€&€'€€i€ €€€!€€€€€€€€ €€€€ €€€€€€€€€!€ €€€€ €€€€€€"€€ €"€€€ €€!€€€€€€ €€€€!€€€€!€€€"€ €€€€€€€€€ €€€€€€€€ €€€€€€€ €€€"€€€€€€€€*€)€ €h€ €€€ €€€€€€ €€€€€€€!€#€€€€"€€€€€€€€€€€€€€€€€€€€€"€!€€€ €€€!€!€€€€€€ € €€ €€€€ €€€ €€ €€ € €€ €€€€€€€€€€€€€€ €€€€€€€€ €*€'€€m€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€!€€€ €€"€€ €€€€€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€!€€€€€ €€€!€€€€€€€€€€€!€ €€€€)€%€€i€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€ €€ €€!€€€"€€€€€ €€!€!€€€ € € € €€€!€€€€€€€€€€€!€€€€ €€€€ €€€€€€€€€&€*€€j€€€€€€€€€€€ €€ €€€€€€€€€€#€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€ €€!€€€ €€€€€€€ € €€€€!€€ €€€€€€€€!€€€€€€€€€€€€€€!€€€*€*€ €h€ €€€€€ €€€€€ €€€€€€€€ €€ €€€€€€€€€ €€€€€ €€€€€€€€!€€"€ €€€!€ €€€!€€ €€€€€€ €€€€ €€€€€ €€€€€€€ €€€€€€!€€€€€€€€€€€ €€ €)€&€€j€ €€€ €€€€€€€"€€€€€€€!€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€!€ €€ € € €€€ €€€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € €€€(€&€€j€€€€€€€€€€€€€€€€ €€€ €€€€€!€!€€!€€€€€€€€€€€€€ € €€€€€ €€€€ €€€€€€€!€€€€€€!€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€'€&€€d€ €€!€€ €€€€€€€€€€€€€ € € €€€€€€€€€€€ €€€ € €€ €€€€€€€$€€€€!€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€ €€"€€ €€€€€€€ €€€€€€!€(€)€€g€€€ €€€€€€€€ €€€€"€€€€€€€€€€ €€ €€€€€€€ € €€ €€"€"€!€€€!€€€€€€€€€€€€€!€€€ €€€€€€€€€ € € €€€!€€€€€ €€€€€€€€€€€€€€€ €€€%€)€€i€ €€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€€€"€€€€€€€€€!€€ €€€"€€€€€€ €€€€€€€"€€€€€ €€€ €€€€€€€ €"€€!€€€€€€€€€€ €€ €&€*€€l€€ €€€€€€ €!€ €€€€€€€€€€"€€€€€€€ €€€€€€€€€€€!€€€€ €€ €€ €€!€€ € € €€€ €€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €&€)€€h€€€€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€!€ € €€€ €€€€€€ € €!€€€€€€!€ €€€€€€!€ €€ €€€€€€€ €€€€€€€ €€€ €€€€€€€€)€(€€f€€€€€€!€€!€ €€€€€€€€€!€€€€ €€€€ €€€€€€ € €€€€€€€!€€ € €€€€ €€€€€ €€#€€€!€€€€€ €€!€$€€!€ € €€ €€€€€€€€€€€€!€€€€€€€€€€€€€#€(€'€€h€€€€ €€€€€€!€€€€€€€ €€€€€€€ € €€€€€€€€€€"€!€€€ € €€€€€ €€"€€!€!€€€ €€€€!€€€!€€€!€€€ € € €€€€€€#€!€€€ €€€€€€€€€€ €€€€€€€€€%€(€€k€€€"€€€€€€€ €€€ €!€€€ €€€€€€€ € €€€€!€€€€€ €€€€!€!€€€€€€!€ €€€!€ €€ € €!€€€€€€ €€€€€€€ € €€€€€€€€€ €€€€!€€€ € €€€€€€€€€€ € €#€)€€h€€€€€ € €€€ €€ €€!€€€€ €€€€€€€€€€€€€€ €€€!€€€€€€€ €€€€ €€€€€€€ €€ €€€€ € € €€#€ €€€"€€€€€€€!€€€ € €€€ €€€€€€€€ €€€€€€€€!€)€,€€d€€€€€!€€ €€€€ €€ €€€ €€€€€€ € €€€€ €€€€€€€€€ €€€€ €€€€!€€€ €€€€"€ €€€"€€€€€€€ € €€"€!€€ €€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€*€)€€h€$€€ € €€€ €€ €€"€€€€!€€ €€€€€ €€€ €€€€€€€"€€€€ €€€€"€ € €!€€€€!€€€ €€€€ €€€!€ €€€€ €€ €!€€€€ €€€€€€ €€€€€€€€€€€€€€€!€€€€€€!€)€%€€k€€€€ €€€€€€€€€"€ €€€ €€€€€€€ €!€€€ € €€ €€€€€€!€€ €€€€!€€€!€ €€€!€€€ € €€€ €€€€!€€€!€€€€!€€€€€€!€"€€€€€€€€€ €€€€€€€€€!€€€€%€'€€k€€€€€€!€ €€€ €€€€ €€€€€€€€€€ €€€€!€€€ €!€€€ €€€!€€€€ €!€€€ €€€€€€€€€€ €€€!€€ €€€€€€"€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€ €€!€'€(€€j€€€€€€€€€ €€€€!€€€€€€€€€€€€€€€€€€ €€€!€ €€€€€€ €€€€"€€€#€"€€€€ €€€€€€€€€!€€€€!€€€€!€€ € €€€ €€€€€€€€€€€€ €€€€€€€€€&€(€€h€$€€€€ €€€€ €€€€€€€ €€€€€€€ €€€€€€€€€€"€!€€€€€€€€€€€!€€€€€€€€€ €€€€€€€€€!€€ €€€€€€€!€"€€!€€€€€ €€€ €€€€€€€!€€€€ €€€(€)€ €g€ €€€"€€€€ €€€€!€€€€€€€!€€€€€€€ €€€€€€€€€€€€€€ €€€€!€€€!€€€€€€€€€€€€€€"€€ €€€€€!€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€)€*€€j€€€€€€€€ €€€€€€€!€€€€€€€€€ €€€€€ €€€ €€€€€ € € €€€€ €€€#€€€€#€ €€!€€€ € €€€€€€€€!€€€€€€ €€€€€ €€€ €€"€€€€ €€€€€€€€€€€€)€*€€j€€€"€ €€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€"€€€€!€€ €€€€ €€€€!€€€ €"€ €€$€€ €"€€€€ €€€ € €€€ € €€€€€€"€ €€€€€€€ €€€"€€€€€€€€!€€€€(€(€€j€€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€ €€€€€ €€€€€!€€€ €"€€!€€!€€€"€€€€€€€€!€€€€€€ €€€ €€€€ €€€€ €€€ €€€€€€€€€€€!€€€€ €€(€(€€i€€ €€€ €€€€€€€€€ €€!€€€€€€€€€€€€€€ €€€€"€€€ €€€€€€€€€€€#€#€€#€ €€!€!€€!€ €€ €€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€€€€€€€*€(€€g€"€€€€€€€ €€€€"€€€€€€€€€€!€€ €€€€€ €€€ €€€€"€ €€€€€€€€€€$€&€ €€!€ €!€€"€ €€€€€€€"€€€€€"€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€!€)€(€€i€€€€ €€€€€€€€€€"€ €€€€€€ €€€€"€€€€€€ € €€€€!€€€ €€€€€!€€#€"€&€#€&€#€ €$€€ €"€!€ €€€€€€€€€€€ €€€€€€ € €€ €"€€€€€€€€€€ €€€€€€€€'€'€€i€€€€€€#€ €€€€€€ € €€€€€€ €€€€€€€€!€€€ €€€€!€ €€€ €€€€€€#€#€*€D€-€$€'€"€&€€€€€€!€€€€ €€€€ €€€€€€€#€€€!€€€€€€€€€€ €€€€€ €€€!€€'€&€€g€"€€€€€€€€ €€€€€ €€ €!€€€€€€€€€€€€€ €€€€ € €€ €€€€ €€€€"€"€1€‚€V€%€%€&€&€!€"€ €€"€€€€€!€€€ €€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€&€*€ €h€"€€€€!€€€€ €€€€€€€€€€€€€!€€€€ €!€€€€€€€€€€€€€"€!€€ €"€ €€-€C€O€0€*€%€$€ € € €!€ €€€€"€€€!€€€€€€€ €€€€€€€€€€ €€€€€€€ € €€€!€€€€+€%€€h€€€€€ €€€ €€€€€€€€€€ € €€€!€€€€ €€ €€€€ €€€"€€€€ €#€€ € €€€$€#€!€)€%€#€ €"€$€€€ €€ €€€ €€€!€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€#€'€'€€g€€€€€€€€€€ €"€ €€€€€€€€€ €€€€ €€€"€€€€!€€€€ €€€€"€€!€€€ €$€€"€#€#€€!€!€€ €€!€€€€€€€€€€€€€€ €€€ €€€ € €€€"€€€€€€€€€€€€€€€!€&€)€€i€€ €€€€€€€€!€€ €€€€€"€€€€€€€$€€€€€€€ €€€ €!€ €€€€€!€"€€€ €!€€€!€€€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€€€&€*€ €g€€ €€€€€€€!€€€€!€€€€€€€ €€€€ €€€!€€€€€€€ €€€"€ €€ €"€€€€ €€€"€€€€€€€ €€€€€€€!€€€€€€€!€ € €€€ €€ € €€€ €€€ €€€€€€€€€€€€€ €'€'€€i€ €€€€€€ €€€€€ €€€ €€€€€€€"€€€ €"€ €€€€€ €€€€ €€€ €€€€ €€ €€"€ €€€€€€!€ €€ € € €€ €€€€!€€€€€€€ €€€!€ €€€€€€€!€€€!€€€€€€€€€€"€(€)€ €j€€!€€ €€€€ €€€ €€€€€€ €€€€€€€€!€€€€ €€€€ €€€€€€ € €€€€€€€€€€€€€!€ €€€€€€#€€€€ €€€ €!€€€ €€€€ €€€ €"€€€€€€€ €€€€€€€€€€€%€*€€k€€€€€€€€€€€€€€ €€€€€ € €€€€€€€€ €€€€€€€€€ €€€!€€€€€€ €€!€€€€€!€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€"€€€€€€€€€€!€€€€€&€+€€h€€€€€ €!€€€ €€€"€€€€!€€€€€€€€ € €€€€€€€€€€€€€ €€€ €€€€€€€ €€€€€€€ €€€€#€ €€"€ €€€ €€€€ €€€€€€ €€€€ €€€€€€€ €€€€€€€€€€(€'€€i€ €€€€€€€€€€€ €€€ € €€€€€€€€€€€ €€€€€€€€€€€€€€€€€#€€€€€€€!€€€€!€€€ € €€€!€€€"€€ €€€€€€€€€#€€€€€€€€€€€!€€€€€€ €€€€(€&€€i€€€€!€€ €€ €€€€€€€!€€€€!€€!€€€€ €€€€€€€ €€€€ € €€€€€€€€€€ €€€€€€€€€€€€ € €!€ €€€€€€"€€€€€€ €!€€€€ €€!€€€€€€€€€€€€€€€€&€*€ €k€€€€ €€€€€€€€€€€€€€€€€!€ €€€"€€€€€€€€€€€€€€ €€ €€€ €€"€ €€€€€€€€€€€€€ €€€€€€€€€€!€€€€€€€€ € € €€€€€€€€€€€€€€€€€%€(€€k€€€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€€€ €€€ €€€€"€€€!€€€€€€€€€€ €€€€ €€€€€€€€#€€€€€ €€€€€€€€€ €€€€€€ €€€€€€€€€€€€€ €*€&€€i€!€€€€€€€ € €€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €!€ €€"€ €€€€€€€€€€€ €€€ €€€!€ €€€"€€ € €€€€€€€€€€€€€€€€€€€€€€€€€)€(€€i€ €€€"€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€"€€€ €€€€!€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€*€'€ €i€"€€ €€€€ €€!€€€€€€€€ €!€€€€€"€€€ €€!€€€€!€ €€ €€€€€ €€€€€ €€€€€!€€€!€€€€ €€€ €€€€ €€€€€€€!€€€€€€€€€€€ €€€!€€€€€€€€€€€!€*€'€€i€€€ €€€!€€€!€€€€€€€!€€€€€€€ € € €€€€€!€€€€€€€€€€ € € €€€ €€€€€ €€ €!€€€€ €€€#€€ €€€ €€"€€"€€ €€€€€€€ €€€ €€€€€€ €€€€€€€€€€*€(€€g€€€€€ €€€€€€€€ €€€€€€€€€€€€ €€!€€€€€€ € €€€€€€"€€€€!€ €€€ €€€€!€€ €€€€€€€€€€€€€ €€€!€€ €€€€€€€€€€€€€€€€€€€!€€€€€€#€(€ €j€ €€€!€€€€€€€€ €€ €€€€€ €€€€€€ €€€ €€€€ €€€€ € €€€€€€€ € €"€!€€€€!€ €€€€€€€!€€€€€€€€ €€ €€!€€€€€€€€€€€€€€€€€€€€ €€€€€ €(€&€€g€ €€€€€€€€€€€"€€€€€ €€€€€€€€ €€€€!€€€€€€€€€€#€ €€€€€€€ €€€€€€€"€ €€€ €€€€€€ €€ €€€€€"€€€€€€€€€€€€€€€€€€€€€€ €€€€)€*€€k€€!€€ €€€€€ €€ €€ € €€€ €€€€ €€€€€€€€€€!€ €€€ €€€€€€ € €€€€€€€€€€€ € €€€€€€€€€€ €€€€ €€#€€€€€ €€€ €€€€€ €€€€€€€€€€€€"€ €&€'€€h€€€€€€€€€#€€€€€ €€ €€€ €€€€€€€€ €€€€ €€€ €€ €€€€ €€€€€€€ € €€€€ € €€€€€€€€€€€€€€ €€€ €€€ €€€€!€€€ €€€€€€€€€€€€€€€€€)€(€€j€ €€€€€ €€€€€€€ €€ €€€ €€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€ €€€€€ € €€€€€€€€€€ €€€ €€ €€€€€€€!€€€€€€€€€€€€€ €€€€€€€(€)€€i€ €€€€€€€€€€€€€€€ €€!€€€€"€€€€€€€€€ €€ €€€€€€€ €€ €€€!€€ €€!€!€€ €€ €"€€€ €€€€"€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€€ €€€(€(€€i€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€!€€€€€€€€€ €€€€€€ €€€ €€€€ €!€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €'€'€€h€ € €€€€€ € €€€€!€€€€€€€€€€€€€€€ € €€€€€€€ €€€!€€€€!€!€€€€€€€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€ €!€€€€ €€€€€€€€€€€€€€€€'€)€€f€€€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€!€€€€€"€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€(€'€€h€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€"€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €"€ €€ €€€€€€!€€€€€€€€€€€€€€€€€€€&€&€€e€ €€€ €€€€ €€€€€!€€ €€ €€€€€€€€€ €€€ €€€€€€€€€€€ €€€€€ €€€!€ €€€€€€ €€€€!€€"€€€€€€€€ €€€€ €€€ €€€€€€€€ €€€€€€€€€ €€€!€%€(€€i€ €€€ €€€€€€€€€!€€€€ €€€€€€€ €€ € €€€€€€€ €€€€ €€€€!€ €€€€€€ €€€ €€ €€€"€€€#€€€ €€€!€€€€€€€€€€€€€€ € €€€€€€€ €€€€€ €€€!€&€+€ €h€ €€€€ €€€€€€€€ €€€€€€€€€ €€!€€€€ €€€€€€€€€€€ €€€!€€€€€€ €€ €€€€"€€ €€ € €€ €€€€€€€€€ € €€€€€€€€€€€€€€€€€€€ €€€€€€€)€(€€j€€€€€€!€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€!€€€€€€€€€€€€€€€ €€€€€€€€€€!€ €€€!€€€€€€€€€€€€€€€€€%€)€€j€ €€€ €€€€ €€€€€€€€€€€!€€€ €!€€€€ €€ € €€€€€€€€€ € €€€€ €€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€)€)€€f€ €€€€€€€ €€€€€€ €€€€€€€ €€€€€ €€€€€€€€€€"€€€€€ €€€!€€ €€€€€€€ €€€ € €€€€!€€€€€€€ €€ €€ €€€€€€ €€€€€€€€€€€€€€€€ €€€)€(€€j€€€€€€€€€€!€ €€€!€€€ €€€€€€€!€€€€€€ €€€€€€€ €€€ €€€€€ €€€ €€€€€"€€€€€€€€€€€€€ €€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€ €"€$€(€€i€ €€ €€€€ €€ €€€€€!€€€€ €€"€ €€€ € €€€!€€€€ €€€€€€€€€€€€€ €€€!€ €€€€€ € €€€"€€"€€€€!€€€ €€€ € €€€!€€€€€€€€€€€€€€€€€ € €€€ € €(€)€€e€€€€€€ € €€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€!€€€€€€!€ €€€€ €€€!€€€ €€€€!€€€€ €€€!€€ €€ €€€€€€€€€€ €€€€€€€€€€€€€€ €€ €'€+€€g€ €€€€€€€!€€€€€ €€€€€€€€€€!€€€ €€€ €€€€€€€€€€€€!€€"€#€€€€ €€€€ €€€ €€€!€€€ €€€€"€ €€€ €€€€€ €€€€€€€€€€€€€ €€€€€€€€€!€*€'€€g€"€€ €€€€ €€€€€€€€!€€€ €€€!€ €€€€€€€ €€€!€€€ €!€ €€€€ €€ €!€€€ €€€€€€€€€€!€€€€ € €€€€€€€ €€ €"€€€€€€€€€€€€€ €€€€€€€€€€€!€'€'€€h€€€€ €€€€€€€ €€€€€€€€€!€€€€€€€€ €€€€€€€!€€€€ €€€€#€€€ €€€€ €€€ €€€ €!€€€€€€ €€€€ €"€€€ €€€!€€!€!€ €€€€€€€"€€€€€€€€€€€#€(€'€€h€€ € €€€"€ €€€ €€€ €€€€ €€€ € €€ €"€€€€ €€!€!€€€€€€€"€ €€€ € €€€€€€€ €€€€€€"€ €€!€€€€€ €€€€€€!€€€ € €€€ €€€ €€€€!€€€€€€€€€€€€"€(€*€€h€ € €€€€€€ € € €!€€!€€€€!€€€!€€€"€€€!€€€€€€€ €€€€ €€€€€€ €€ €€€ €€€ €€€€€€€€€€€€"€€ €€€€€€€€€ €€€€€€€€€€"€€€€€€€€€€€€€'€)€€h€€€€€€€€€€€€€€€!€€€€!€€€€€€€ €€€€€€€ €€€€€€€€!€€€ €€€ €€€€€€€€€€€€€€ €€€€€ €€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€€€(€*€€h€€€€€€€ €€€€ €€€€€€€"€€€ €€€€!€€€€€€€€€€€€€€!€ €€€€€€ € €€€!€€ €€€€€ €€€€€€€€€€€ €€€ €€€€ €€€ €€€€€€€!€€€€€€€€ €€€"€'€&€€j€€ €€€€€ €€€€!€€€€€€€€€€€!€€€€€€ €€€€€€ € €€€€!€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€€€€!€€€€€ €€€€€€ €€€ €"€€€ €€€€€€€€€%€&€€i€€!€€€€ €€€ €€€€€€€€€€€#€€€€"€€€€€€"€€€€ €€€€!€€€€€€€!€€€!€€€ €€ €€€"€€€€€€€€€€!€€€€€€€"€€€ €€€€€ €€€€€€€€€€€ €€€€€%€*€€i€€€€€€€€€€€€ € €€€ €€€€€€!€ €€€€€€€!€€€€!€€ €€€€€€€€€€€€ €€ €€ €€€ €!€€€€ €€ €€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€ €€"€(€*€€f€€€ €€€€€€€€€€ €€€€€€€€€ €€€ €€€€ €€€ €€€ €€"€ €€ €€ €€€ €€ €€€ €€€€ €€€€ €€€€€€ €€"€ €"€€€€"€€ €€€€€€€€€€€€!€€€ €€€€€€!€ €)€(€€g€€€€€ €€€€€€€€€€"€€€!€€€€!€€€€ €€€€€€ €€€€€€ €€€ €€ €€!€!€€€€€€"€ €"€€€ €€€€ €€€€€€€€€€!€€ € €€ €€€ €€€€€€€€!€€ €€€ €€€€"€*€,€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 130.0 / maximum value of good pixels GOODMEAN= 30.952999 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 14.000000 / the minimum value of the data DATAMAX = 5885.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 168.996 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-06-06' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:33:04' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.754535630702E+04 / exposure start time (Modified Julian Date) EXPEND = 5.754535630818E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 515.5 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1170.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.39848 / (V) CEB last gate C&D OCBSWALV= -5.95722 / (V) CB summing well A Lo OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 14.0 / minimum value of good pixels GOODMAX = 5885.0 / maximum value of good pixels GOODMEAN= 103.106667 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€!€€€€ €€€ € €€€€!€"€!€%€!€ €#€%€ €"€ €#€*€-€€i€€€€€€€ €!€€€€€ €"€!€#€$€ €#€#€#€#€"€#€!€%€,€,€€j€€#€€€€€ €€€€€ €!€€ €!€#€ €€"€ €!€"€#€€!€+€*€€k€€€ €€€€€€€€€"€ € €"€€€"€%€"€€€"€"€€"€*€(€€i€€"€ €€!€€€€€€€€€!€ €!€&€ € €#€#€€ €!€€ €.€*€€j€ €€€€€€ €€€€€€€€!€#€ €!€€€€ € €€€#€(€*€€j€€ €€€ €€€€!€€€!€€€#€#€ €€€ €€€€€€"€*€+€€h€ €€€ € €€€€€€€!€!€€#€#€$€"€!€€€€ €!€€$€*€(€€i€ €€€€€!€€ €€€ €!€€#€#€$€%€#€€!€!€€€€€#€(€(€€k€€€€!€€€ €€€€€!€ €€#€"€"€#€!€!€€€€€€€(€*€€h€€!€€€€ €!€€!€€€€€#€(€+€$€"€#€€!€€€ €€€)€,€€f€ €€€€ € €€€€€!€ € €%€,€2€,€)€#€€€€€€"€ €&€*€€h€ € €€€€€€€€ €#€€€'€9€L€X€=€+€ € €€!€"€!€#€'€,€€i€€ €€ €€€"€€€"€$€$€(€ƒà‚Þ‚¨n€V€*€!€€"€"€€%€*€-€€e€€!€"€€€€ € €!€#€&€.€N‚‰Ú¢`‡n€E€(€€%€%€ €#€+€+€€l€€ €€€ €"€€ €"€#€(€3€b‚ÖŽ–ý–2Š€<€.€%€!€€€€ €€"€+€*€€k€€€€€€€€€!€€!€ € €"€ €&€%€ €"€ € €€!€€€!€+€+€€k€€€€€"€€€ €!€€€€€€ €"€€€ €€ €€€!€!€!€+€*€€g€€€€€ €€ €€€€!€€"€"€ € €€ €$€€€€€€€!€(€*€€i€ € €€€ €€€€!€€€!€€ € €!€€"€#€€€€ € €€ €(€(€€h€ €€€ €€€ €!€€€€€€€€ €€ €!€€€ €€€€"€&€)€€g€"€€€!€€€€!€€€ €€€€ €€€ €€€€"€€€!€"€'€,€€f€€€€!€€ €€€€€ €€€€€€€!€€€€€€!€ €!€+€+€€i€€€€€€€!€€€€€€€€€€€€€€€€€€!€"€'€+€€k€!€€€€€€€ €€€!€€€€€€€€€€€ €€ €€€)€-€€f€€€!€!€€€!€€€€€€€!€€€€!€€€!€€€!€!€€)€+€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 14.0 / minimum value of good pixels GOODMAX = 5885.0 / maximum value of good pixels GOODMEAN= 103.106667 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocu252cmq_spt.fits b/lib/stistools/tests/data/tastis/ocu252cmq_spt.fits new file mode 100644 index 00000000..fe687116 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocu252cmq_spt.fits @@ -0,0 +1,21 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocu252cmq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocu252cmq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'BD+41-3306 ' / proposer's target name RA_TARG = 2.897528976868E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 4.163172208435E+01 / declination of the target (deg) (J2000) ECL_LONG= 303.534585 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = 62.790028 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 73.360821 / galactic longitude of the target (deg) (J2000) GAL_LAT = 12.890520 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV28X50O2 ' / aperture used for reference position ELON_REF= 303.534585 / ecliptic longitude at reference position (deg) ELAT_REF= 62.790028 / ecliptic latitude at reference position (deg) GLON_REF= 73.360821 / galactic longitude at reference position (deg) GLAT_REF= 12.890520 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14143 / PEP proposal identifier LINENUM = '52.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CU2' / program id (base 36) PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '52' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'CM ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F28X50O2 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 486 / proposed axis1 detector pixel of subarray startSS_A1SZE= 100.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 465 / proposed axis2 detector pixel of subarray startSS_A2SZE= 100.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'CENTROID ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 5 / word 11/14 (0-255) PSTRTIME= '2016.158:08:29:17 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.158:08:34:13 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV28X50O2 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14143_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.898654412750E+02 / right ascension of v1 axis of st (deg) DEC_V1 = 4.165033721086E+01 / declination of v1 axis of st (deg) PA_V3 = 34.014980 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'N2JU001340F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'N2K1001229F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 1.689963937500E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -2.508432356619E+03 / position of space telescope x axis (km) POSTNSTY= -5.546909811184E+03 / position of space telescope y axis (km) POSTNSTZ= -3.284351470348E+03 / position of space telescope z axis (km) VELOCSTX= 6.843993378416E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -3.277533135345E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 3.082759658532E-01 / vel of space telescope along z axis (km/sec) RA_SUN = 7.461919451146E+01 / right ascension of the sun (deg) DEC_SUN = 2.268387314977E+01 / declination of the sun (deg) RA_MOON = 9.279329544516E+01 / right ascension of the moon (deg) DEC_MOON= 1.858341510111E+01 / declination of the moon (deg) VELABBRA= 23.316780 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.897528976868E+02 / right ascension of reference object (deg) DEC_REF = 4.163172208435E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.913536000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.121293582969E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.619373693178E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.860182778099E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.597782135181E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.793517887555E-01 / cosine of inclination ECCENTRY= 7.895152626542E-04 / eccentricity ECCENTX2= 1.579030525308E-03 / eccentricity times 2 ECBDX4D3= 6.561759773775E-10 / eccentricity cubed times 4/3 ESQDX5D2= 1.558335874910E-06 / eccentricity squared times 5/2 ECBDX3 = 1.476395949099E-09 / eccentricity cubed times 3 FDMEANAN= 1.748140027374E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.334794641815E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.124391652574E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 1.999866633058E-01 / argument of perigee (revolutions) MEANANOM= 4.080686235601E+00 / mean anomaly (radians) RCARGPER= 1.123310687745E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 1.549386771937E-02 / right ascension of ascending node (revolutions)SINEINCL= 4.761726909563E-01 / sine of inclination SEMILREC= 6.917036617656E+06 / semi-latus rectum (meters) TIMEFFEC= 9.914007350000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.918161570000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F28X50O2 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM;K III-I 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'EXTRA-SOLAR PLANETARY SYSTEM 'TARKEY2 = 'K III-I 'ALIAS1 = 'HIP94931 ' / synonym for target name ALIAS2 = 'KEPLER-444 ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 8.860000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 1.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 2.803000000000E-02 / target parallax from proposal RA_PROP = 2.897522879167E+02 / target right ascension from proposal (degrees) DEC_PROP= 4.163460277778E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 9.894000000000E-02 / target proper motion from proposal (degrees RA)MU_DEC = -6.324900000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -1.211900000000E+02 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Probing the nature and evolution of the oldest known planetary syste'PROPTTL2= 'm through Lyman-alpha observations 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136324000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247879000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350562000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= 2.678230000000E-07 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= -2.677500000000E-07 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= -1.039000000000E-04 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= 1.040000000000E-04 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.059452000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -3.973522400000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.858067000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -3.993700400000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.217118000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 4.061514400000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.418502000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 4.081686000000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 56 / Slit Number SLITSIZE= '28x50 ' / aperture field of view TFPFNAME= 'F28X50O2' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'POINT ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 526.8 / fsw located subarray axis1 coord. of target TARGA2 = 512.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 10.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.2198 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1399 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.41635 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.59135 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.86827 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0287 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.725 / (dgC) calibration lamp motor 2 temp OENCAFTT= 16.5854 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.4375 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.84297 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.9125 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.05 / (dgC) Fitting A temp OFITBT = 18.2146 / (dgC) Fitting B temp OFITCT = 6.17656 / (dgC) Fitting C temp OHDM15V = -15.1156 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.75542 / (V) Hold mode regulator + 5V OKMDITBT= 24.749 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0929 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 32.3208 / (dgC) M1 heater control temp OM1HTRW = 0.398417 / (w) M1 heater power OM2HTRT = 32.05 / (dgC) M2 heater control temp OM2HTRW = 0.0175056 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.0406 / (dgC) MEB 2 radiator temp OMBCSPT = 35.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.599 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6672 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.45 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.75 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.15 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1153 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.0958 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 24.3094 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.4398 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.45 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.10251 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.2375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.0389 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.3875 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0250069 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.8 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 2.43044 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 1.0E-05 / (w) Thermal controller power, zone 3B OTECINV = 6.13101 / (V) TEC input voltage OTECTCV = -7.71486 / TEC temp control voltage OMBMC15V= 14.6871 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.8413 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8819 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.2688 / (V) LVPS CEB +15V OPSCB35V= 31.7307 / (V) LVPS CEB +35V OPSCB5V = 4.7992 / (V) LVPS CEB +5V OPSCM15V= -15.4756 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.070232 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.42149 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -40.928 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.488889 / (A) M1 +5V current OM1P5V = 5.20147 / (V) M1 +5 volts OM1P8VAC= 0.736508 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 34.0539 / (dgC) M1 charge amplifier temp OM1DCDT = 34.7865 / (dgC) M1 decoder temp OM1MCET = 33.0771 / (dgC) M1 MCE temp OM1LVPST= 37.9611 / (dgC) M1 LVPS temp OM1HVPST= 36.7401 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.73626 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475458 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73602 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 34.5423 / (dgC) M2 charge amplifier temp OM2DCDT = 35.2749 / (dgC) M2 decoder temp OM2MCET = 33.3213 / (dgC) M2 MCE temp OM2LVPST= 38.6937 / (dgC) M2 LVPS temp OM2HVPST= 35.5191 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.1703 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.0765 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0547 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1815 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.13002 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0839 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.8833 / CB clock X pwb temp OCBCLKA2= 30.6671 / CB clock Y pwb temp OCBCMAA1= -14.8626 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.12515 / (V) CB clock drive X +5V OCBCPAA1= 14.7942 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9113 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.12515 / (V) CB clock drive Y +5V OCBCPAA2= 14.7942 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.98929 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.07867 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0585347 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.95236 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.90388 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.96712 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.00587 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91847 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.04479 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90388 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95253 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.0765 / (V) CB state machine 2 +5V OCBSWAHV= 4.90874 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.92803 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.0156 / (V) CB summing well C Lo OCBSWDHV= 4.98172 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.768 / CEB timing pwb temp OCLM5V = -5.10585 / (V) Calibration lamps -5V voltage OCLM5VC = -0.000412465 / Calibration lamps -5V current OCLP30V = 29.7652 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00460794 / Calibration lamps +30V current OCLP5V = 5.27597 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 2562157 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00452746 / (A) Slit Wheel motor current OSWMVEL = -0.00666193 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61733 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1536 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 56 / Control section slit position OCSDQEXJ= 2354 / Control section data queue extract OCSDQINJ= 2354 / Control section data queue insert OCSXQEXJ= 29 / Control section Expos Que Extract OCSXQINJ= 30 / Control section Expos Que Insert OCSOBSQ = -10268 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 41521 / Control section dump pointer OCSFILLJ= 41521 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 227 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCU252CMWã*Õ ‡ýDý(ÊIddÑæ"Ê¥ »°¼ÃÃÐÁpÂpÞàÌ0Ì­±`¿à² €°€ªð¼@`Þ ½Î ÈàÈàÈàÑ¢ Ñ@Ÿp¿Ðþ ¨ À Á@àÈ àÒÑð¹@ѽ0µp¸Ð¹áápÍÐÏ ÍàÍ`§³ð¦²°¨Å ¨ÐŸP©€¨ ¥àŸœ€@ÞÐàP¿0Ü æ`¾   ( +þž —¾3F!d «gÒR È Í ÐÆêíæúõ +7c Ø ™Ñ »¿18 Õ_›G Æ Ì ÑÅìïçýðÔÀÃ^À^ð^ð_@„€ê°%@Á°ÚÀï€%`Â`ÚðÔàÀˆÀ„`!ÂP߀ °ÂP߀LðT°˜°€˜°€˜ €˜À€F@¦ F@¦™À€À™à~`h~h` f`€f ~`h@~`h``f`e ~h@@f €`Á°~ h`~@h `f`€fà€À§€À¦à}Ð>àà0Ä@€€°gmcÀ°€@€0b9 +³sŠŸþñ%_ld``€„ðñ8 2 2Wä`‘¢1¢1¥ÌàßãI‚__–d=ÿ"Ê¥ »°¼€ÃÃÐÁpÂpÞàÌ@Ì ­±`¿à²0€°€ªà¼@!€à°¿ Î ÈàÈàÈàÐp¡0Ó¡ ¿Ðþ0¨À Á@ÐÈ àÑðÑð¹@ѽ0µ€¸Ð¹á áàÍàÏ ÍàÍ`©µ ¥0± ¨Ðư¨`žà¨°¨0§ŸPßàÀ¾Àݰêའ  ( +ÿž —¾3C!d «gÕR È Í ÐÆêíæúõ +7c Ø ™Ñ »¿18 Ô_›G Æ Ì ÑÅìïçýðÔÀÃ^À^ð^ð_@„€ê°%@Á°ÚÀï€%`Â`ÚðÔàÀˆÀ„`!ÂP߀ °ÂP߀LðT°˜°€˜°€˜ €˜À€F@¦ F@¦™À€À™à~`h~h` f`€f ~`h@~`h``f`e ~h@@f €`Á°~ h`~@h `f`€fà€À§€À¦à}Ð>€à€ ÃЀ €gmcÀ €P~Àb9 +³sŠŸþñ%_l d  €…ñ8 2 2Wä`‘¢1¢1¥ÌàßäF‚__–d=ÿ`8m°3Á”æ¢ +UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocu252cmq' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 56 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.1 / fsw located subarray axis1 coord. of target TARGA2 = 515.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 10.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.2198 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.46154 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.63654 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.86827 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0287 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 16.5854 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.4375 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.7625 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.9125 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.05 / (dgC) Fitting A temp OFITBT = 18.2625 / (dgC) Fitting B temp OFITCT = 6.17656 / (dgC) Fitting C temp OHDM15V = -14.8723 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7747 / (V) Hold mode regulator +15V OHDP5V = 4.78461 / (V) Hold mode regulator + 5V OKMDITBT= 24.749 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 30.5333 / (dgC) M1 heater control temp OM1HTRW = 0.0350012 / (w) M1 heater power OM2HTRT = 33.0792 / (dgC) M2 heater control temp OM2HTRW = 0.335167 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.0406 / (dgC) MEB 2 radiator temp OMBCSPT = 35.55 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.599 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.75 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.15 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1736 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1736 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 24.8938 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.0132 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.45 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.74835 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.4125 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.0157 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.7375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.335062 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.3 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.79489 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.4625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.59249 / (w) Thermal controller power, zone 3B OTECINV = 6.24012 / (V) TEC input voltage OTECTCV = -7.74415 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8965 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.738 / (V) LVPS CEB +15V OPSCB35V= 33.4822 / (V) LVPS CEB +35V OPSCB5V = 5.59219 / (V) LVPS CEB +5V OPSCM15V= -14.4929 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.485 / (V) M1 Low bias voltage OM1M15VC= 0.070232 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.42149 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -40.9768 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.490598 / (A) M1 +5V current OM1P5V = 5.20147 / (V) M1 +5 volts OM1P8VAC= 0.736264 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 34.2981 / (dgC) M1 charge amplifier temp OM1DCDT = 34.7865 / (dgC) M1 decoder temp OM1MCET = 33.0771 / (dgC) M1 MCE temp OM1LVPST= 38.2053 / (dgC) M1 LVPS temp OM1HVPST= 36.7401 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475214 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73602 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 34.5423 / (dgC) M2 charge amplifier temp OM2DCDT = 35.5191 / (dgC) M2 decoder temp OM2MCET = 33.3213 / (dgC) M2 MCE temp OM2LVPST= 38.6937 / (dgC) M2 LVPS temp OM2HVPST= 35.5191 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.7024 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.1703 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08137 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.10569 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.8347 / (V) CEB C&D output diode OCBCLKA1= 32.8516 / CB clock X pwb temp OCBCLKA2= 30.6354 / CB clock Y pwb temp OCBCMAA1= -14.8334 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.10569 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.8723 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.10569 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.45848 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.029238 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= 0.0097069 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.89901 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95253 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.03506 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.92803 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.9282 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.94766 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.18353 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.92803 / (V) CB summing well A Lo OCBSWBHV= 4.9282 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.94766 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.99128 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.02029 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.7998 / CEB timing pwb temp OCLM5V = -5.16423 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0232989 / Calibration lamps -5V current OCLP30V = 29.5512 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0147013 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 2562156 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00331135 / (A) Slit Wheel motor current OSWMVEL = 0.0197627 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61733 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3584 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 56 / Control section slit position OCSDQEXJ= 2368 / Control section data queue extract OCSDQINJ= 2368 / Control section data queue insert OCSXQEXJ= 29 / Control section Expos Que Extract OCSXQINJ= 31 / Control section Expos Que Insert OCSOBSQ = 22502 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 41521 / Control section dump pointer OCSFILLJ= 41521 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 229 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCU252CMWå*Õ ‡ýDý1”IddÑæ"Ê¥ »°¼€ÃÃÐÁ`ÂpÞàÌ0Ì ­±`À² €°€ªà¼@ ðß`½ðÎ ÈðÈàÈàÏ€ŸàÒp¡À¿Ðþ ¨ À°Á0ÐÈ àÒÒ¹@ѽ0µ€¸Ð¹áðáðÍÐÏ ÍàÍ`¨ ¶¦±`§0Å« °§¦P¨ð¡ðàß€á ¿`åìÈP#`  ( +ÿž —¾3G!d «gÙR Ç Í ÐÆëíæûõ +7c Ø ™Ñ ¼¿18 Õ_šG Æ Ì ÑÅìðçýðÔÐÃ^À^ð^ð_@„€ê°%`ÁÀÚðï€%PÂÚàÔàȰ„P!0Âßp ðÂßpLÐT ˜ €˜°€˜  ˜À`F@¦ F ¥à™À€`™€ ~`h@}àh`@f`€eà~`h@~@h `f`eà~ h@ f €`Ã~@h ~ h` f€Àg€À¦À€ ¦à}à>  ß`}àà€0@glcÀ°€PPb9 +³sŠŸþñ%_ldàà€„ðñ8 @ @Wæ`‘¢1¢1¥ÌàßåI‚__–d=ÿ"Ê¥ » ¼€ÃÃÐÁpÂpÞàÌ0Ì­±`À² €°€ªà¼@ °àÀÀpÎ ÈàÈàÈðÐp¡ Ó¡@¿Ðþ ¨À°ÁPÐÈ0àÒÒ¹@Ñ ½0µ€¸Ð¹á áàÍàÏ ÍàÍ`© µ°¥± ¨Àư¨`žÐ¨¨§0Ÿ@œpßàÀ¾ÀÞëÀ¾   ( +ÿž —¾3F!d «gäP È Í ÐÆëíæúõ +7c Ø ™Ñ ¼¿18 Õ_G Æ Ì ÑÅìðçýðÔÐÃ^À^ð^ð_@„€ê°%`ÁÀÚðï€%PÂÚàÔàȰ„P!0Âßp ðÂßpLÐT ˜ €˜°€˜  ˜À`F@¦ F ¥à™À€`™€ ~`h@}àh`@f`€eà~`h@~@h `f`eà~ h@ f €`Ã~@h ~ h` f€Àg€À¦À€ ¦à}à>€`à‚Ãð€ €gmcÀ €0b9 +³sŠŸþñ%_l d ð€…ñ8 @ @Wæ`‘¢1¢1¥ÌàßæF‚__–d=ÿ`8m°3ÁÓæc +UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocu252cmq' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 515.5 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.2198 / (dgC) CEB Radiator temp OCLLMP1T= 10.8683 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.46154 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.59135 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.91346 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0287 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6786 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 16.6333 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.4375 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.6418 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.8688 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.05 / (dgC) Fitting A temp OFITBT = 18.2625 / (dgC) Fitting B temp OFITCT = 6.17656 / (dgC) Fitting C temp OHDM15V = -15.0767 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.76028 / (V) Hold mode regulator + 5V OKMDITBT= 24.7995 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0929 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 30.5875 / (dgC) M1 heater control temp OM1HTRW = 0.0375006 / (w) M1 heater power OM2HTRT = 32.9708 / (dgC) M2 heater control temp OM2HTRW = 0.314083 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.0974 / (dgC) MEB 2 radiator temp OMBCSPT = 35.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 29.599 / (dgC) MEB MIE processor temp OMBP15V = 14.8817 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6672 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.75 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.15 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1931 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 25.0656 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.11439 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.2781 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.6809 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.6375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.1548 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.775 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.288687 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.86359 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.5 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.609667 / (w) Thermal controller power, zone 3B OTECINV = 6.0219 / (V) TEC input voltage OTECTCV = -7.75392 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.87704 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.3001 / (V) LVPS CEB +15V OPSCB35V= 32.6064 / (V) LVPS CEB +35V OPSCB5V = 5.67976 / (V) LVPS CEB +5V OPSCM15V= -14.8821 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.070232 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.42149 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -40.928 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.490598 / (A) M1 +5V current OM1P5V = 5.19902 / (V) M1 +5 volts OM1P8VAC= 0.736508 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 34.2981 / (dgC) M1 charge amplifier temp OM1DCDT = 34.7865 / (dgC) M1 decoder temp OM1MCET = 33.0771 / (dgC) M1 MCE temp OM1LVPST= 38.2053 / (dgC) M1 LVPS temp OM1HVPST= 36.9843 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.73626 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475458 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73602 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 34.5423 / (dgC) M2 charge amplifier temp OM2DCDT = 35.5191 / (dgC) M2 decoder temp OM2MCET = 33.3213 / (dgC) M2 MCE temp OM2LVPST= 38.6937 / (dgC) M2 LVPS temp OM2HVPST= 35.5191 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.57817 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.2021 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2204 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.05218 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.8347 / (V) CEB C&D output diode OCBCLKA1= 32.8833 / CB clock X pwb temp OCBCLKA2= 30.6671 / CB clock Y pwb temp OCBCMAA1= -14.9404 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.05704 / (V) CB clock drive X +5V OCBCPAA1= 14.7942 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9307 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.06191 / (V) CB clock drive Y +5V OCBCPAA2= 14.765 / (V) CB clock drive Y +15 analog V OCBLGABV= -4.00882 / (V) CEB last gate A&B OCBLGCDV= -3.39848 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0390036 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.9282 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94749 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.00587 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93307 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.92803 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91847 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.97199 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03019 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00251285 / (V) CB state machine 1 +5V OCBSM2PV= 5.0911 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.95722 / (V) CB summing well A Lo OCBSWBHV= 4.91847 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -6.98137 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.768 / CEB timing pwb temp OCLM5V = -5.19342 / (V) Calibration lamps -5V voltage OCLM5VC = 0.00263906 / Calibration lamps -5V current OCLP30V = 29.2398 / (V) Calibration lamps +30V voltage OCLP30VC= 0.184762 / Calibration lamps +30V current OCLP5V = 5.15921 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00574358 / (A) Slit Wheel motor current OSWMVEL = 0.0182947 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61733 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1535 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 2383 / Control section data queue extract OCSDQINJ= 2383 / Control section data queue insert OCSXQEXJ= 29 / Control section Expos Que Extract OCSXQINJ= 32 / Control section Expos Que Insert OCSOBSQ = 22504 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 41521 / Control section dump pointer OCSFILLJ= 41521 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 231 / Control section exposure counter OTAFLUXQ= 611 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5121 / Target acquisition target x position OTATARA2= 5301 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCU252CMWçI‡ýDý>¦Iô "”¥ » ¼€ÃÃÐÁpÂ`ÞàÌ Ì ­±`À0²0€°€ªà¼@ Þ ½ ÎÈàÈàÈàÏŸðÒP¡ ¿Ðþ ¨À Á0ÀÈ àÒÑð¹@ѽ0µ€¸Ð¹ââÍÐÏ ÍðÍ`¨ð¶p¥°± §Åð«  § ¦©¢œÀß€á ¿ âÀé0Ép à  ( +þž —¾3F!d «gÙQ È Í ÐÆëíæûö +7c Ø ™Ñ ¼¿18 Õ_›G Æ Ì ÑÅìðçýðÔÀÃ^À^ð__P„ê°%`Â`Úðï€%PÀàÚàÔàÈÀ„` €À°ßp ÐÀ ßpL°T€˜°€˜°€˜ €˜À€F@¦ F@¥à™À€€™ €~`h€~ h  f €f ~Àh@~@h `f@eà~`h@Àf€pÁà~@gà~`h`Àf€Àg@€À§@€ ¦à}Ð=À@Þ`—ÐÂÀŸ@~RÝ¡À €0@b9 +³sŠŸþñ%_ld`_ø€„ðñ O O Wè`‘¢1¢1¥ÌàßçcµI‚__–d=¸¸C"”¥ » ¼€ÃÃÐÁ`Â`ÞàÌ Ì ­±`À@²0€°€ªà¼@€Þ½ÀÎ ÈàÈàÈàÏПÀÑà¡0¿Ðþ ¨À Á@ÀÈ àÒÒ¹@ѽ0µ€¸Ð¹âáðÍÐÏ ÍàÍ`¨`µð¦à²¦ðÅP«€¡¦Ð¦ ¨¡Ð›ðÀßá ¿€á`èÈ@  ( +þž —¾3F!d «gÏP È Í ÐÆëíæûö +7c Ø ™Ñ ¼¿18 Ô_H Æ Ì ÑÅìðçýðÔÐÃ^À^ð^ð_P„ê°%`ÁÐÚàï€% Á`Ú°ÔàÀˆÀ„` €Áp߀ Á€ßPLÐT˜À€˜°€˜ €˜À€F@¦ F@¥à™À€`™ € ~@h@~@h `f Àf`~`h@~@hÀ`f  eà~€h@`eÀ€@Áð~@h€~€h``f€Àg €À§€À¦à}Ð= PÞ@—àÂП`°RÝ¡À €0°b9 +³sŠŸþñ%_l d Ÿø€„ðñ O O Wè`‘¢1¢1¥ÌàßècµF‚__–d=¸¸C`m°0Å#õæ’UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocui04xeq_raw.fits b/lib/stistools/tests/data/tastis/ocui04xeq_raw.fits new file mode 100644 index 00000000..b7dd4cc3 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocui04xeq_raw.fits @@ -0,0 +1 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocui04xeq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocui04xeq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'M62-VLA1 ' / proposer's target name RA_TARG = 2.553050795833E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.011405000000E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14086 / PEP proposal identifier LINENUM = '04.002 ' / proposal logsheet line number PR_INV_L= 'Strader ' / last name of principal investigatorPR_INV_F= 'Jay ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-07-22' / UT date of start of first exposure in file TTIMEOBS= '06:10:30' / UT start time of first exposure in file TEXPSTRT= 5.759125730138E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57591.25753286 / end time (MJD) of last exposure in the file TEXPTIME= 20. / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793002077546E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= '52X0.1 ' / aperture name PROPAPER= '52X0.1E1 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '52x0.1 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 540 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 899 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$08o1451co_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Dynamical Confirmation of a Stellar-mass Black Hole in the Globular 'PROPTTL2= 'Cluster M62 'OBSET_ID= '04' / observation set id TARDESCR= 'STAR;EMISSION LINE STAR;G III-I;LMXB;POPULATION II 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 5 / Number of peakup search steps PEAKSTEP= 75.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 43530.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 260.044708 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 32 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 17.000000 / the minimum value of the data DATAMAX = 2001.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.598 / x-coordinate of reference pixel CRPIX2 = 17.331 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.15426E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 8.10167E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 8.09944E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.15458E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 35.0572 / position angle of image y axis (deg. e of n) SUNANGLE= 137.003235 / angle between sun and V1 axis MOONANGL= 71.513893 / angle between moon and V1 axis SUN_ALT = 33.522270 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-07-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '06:10:30' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.759125730138E+04 / exposure start time (Modified Julian Date) EXPEND = 5.759125753286E+04 / exposure end time (Modified Julian Date) EXPTIME = 20.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1153479 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 18.388600 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 17.0 / minimum value of good pixels GOODMAX = 2001.0 / maximum value of good pixels GOODMEAN= 55.375977 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €"€$€$€"€#€%€%€!€(€%€"€#€'€(€)€F€Ç€æ€N€+€$€"€#€$€#€$€&€#€*€,€€j€$€$€#€"€%€$€$€#€"€"€)€)€#€'€*€L€¨€Æ€V€,€'€&€&€$€"€'€#€'€.€,€€n€!€(€!€"€!€#€$€%€$€'€$€'€%€(€'€J€‹€Œ€I€.€&€'€'€%€#€%€#€&€/€,€€k€%€%€!€$€&€$€#€$€#€#€,€*€"€(€+€F€‰€‰€H€)€(€&€"€%€&€'€"€D€1€,€€l€$€"€%€%€ €#€&€"€#€"€&€ €-€)€+€?€X€U€7€+€*€(€M€%€&€&€&€)€+€+€€q€ €&€#€%€#€%€ €"€$€#€"€)€(€'€1€<€g€[€E€0€*€%€*€&€&€&€%€#€-€.€€h€%€#€$€#€(€ €!€'€"€"€)€(€)€2€9€n€Ü€à€Y€2€(€'€#€'€%€#€'€&€.€,€€o€$€&€$€%€"€(€'€&€%€$€'€%€(€1€Z€¾˜„€„€2€)€,€(€$€$€$€&€"€-€.€€k€$€#€!€%€#€%€#€&€&€%€%€(€/€H€Æ‚̃ù‚$€Œ€2€+€*€'€&€&€$€#€&€0€-€€p€$€#€$€%€ €#€%€&€#€'€*€)€3€G€Ï…/‡Ñ‚ú€€:€0€*€$€(€&€$€&€#€*€/€€n€$€'€#€%€(€$€!€&€(€%€#€*€-€=€Šøƒ™€q€=€/€'€'€&€&€&€%€%€-€/€€l€$€#€#€'€%€&€%€$€"€%€*€(€+€4€_€æb€í€T€6€(€(€$€$€"€#€#€&€-€-€€o€$€%€#€#€"€#€$€#€'€$€$€(€(€,€@€ª€ü€¤€I€6€(€#€&€!€1€%€$€&€+€-€€l€(€%€!€$€&€#€"€%€#€%€%€(€'€(€:€p€§€x€<€.€-€&€%€"€&€&€!€&€2€-€€m€$€$€#€$€!€&€'€ €&€&€"€"€&€*€-€o€œ€e€7€/€,€$€&€%€$€#€'€%€*€-€€k€%€'€!€%€%€#€ €!€%€$€!€&€'€%€-€A€k€g€;€*€%€'€%€#€"€&€&€"€-€/€€o€$€€"€%€$€#€'€%€!€$€'€"€#€*€,€8€l€t€C€*€'€%€$€$€'€!€%€$€*€,€€q€$€'€$€!€#€%€3€#€&€#€!€'€(€&€(€>€ƒ€…€;€-€&€$€&€&€"€'€&€"€.€0€€l€%€#€"€(€#€"€$€$€"€$€%€&€#€(€&€J€Å€ß€D€'€#€#€#€$€$€"€#€'€*€,€€q€$€%€$€#€%€"€$€#€#€$€#€"€&€$€'€?€‡€˜€>€*€$€"€%€$€"€#€%€%€,€.€€l€$€$€ €$€'€#€#€#€#€€#€&€%€#€)€2€B€:€,€%€(€%€#€"€#€"€"€$€.€+€€q€"€$€(€%€ €#€(€#€ €$€$€%€&€&€%€,€8€1€*€"€&€"€$€&€$€%€$€&€-€.€€m€%€&€&€"€'€#€a€"€&€#€"€$€%€"€$€-€6€4€*€#€!€%€&€$€!€$€#€#€0€-€€o€"€.€"€&€#€$€%€&€!€'€'€#€$€&€&€/€>€:€*€'€'€%€"€%€&€!€"€&€)€-€€m€%€#€&€"€"€&€.€#€%€#€#€%€&€&€(€>€H€@€.€(€"€"€&€"€$€#€#€$€+€1€€n€"€#€!€$€$€#€!€$€&€!€&€#€.€"€)€1€V€W€1€$€"€!€€#€%€#€ €%€-€/€€p€$€#€#€#€)€!€$€!€ €%€$€"€%€'€$€<€‚€|€?€(€!€#€%€&€#€"€#€&€+€,€€l€%€'€$€ €$€"€"€"€%€"€#€%€$€ €(€E€§€š€j€)€ €"€#€%€"€&€#€&€/€/€€n€$€"€&€%€#€#€ €$€!€"€$€"€$€&€*€5€^€P€-€%€%€%€#€"€#€!€$€)€,€-€€q€$€%€!€"€#€#€ €"€&€%€"€%€%€"€*€8€?€7€$€*€%€$€#€€%€'€*€%€/€/€€m€$€€%€$€$€&€$€%€"€"€$€&€,€%€&€1€<€>€)€&€%€/€&€ €$€"€ €'€,€0€€p€%€#€#€#€%€"€#€!€&€&€(€"€%€'€$€-€=€8€-€'€!€$€%€"€$€%€#€$€.€.€€lXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.598 / x-coordinate of reference pixel CRPIX2 = 17.331 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.15426E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 8.10167E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 8.09944E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.15458E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 17.0 / minimum value of good pixels GOODMAX = 2001.0 / maximum value of good pixels GOODMEAN= 55.375977 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.598 / x-coordinate of reference pixel CRPIX2 = 17.331 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.15426E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 8.10167E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 8.09944E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.15458E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 5 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 17007.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 3.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.705372955353E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 1.196654027248E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.196654027248E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 1.705372955353E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 35.0572 / position angle of image y axis (deg. e of n) SUNANGLE= 137.003235 / angle between sun and V1 axis MOONANGL= 71.513893 / angle between moon and V1 axis SUN_ALT = 33.522270 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-07-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '06:10:30' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.759125730138E+04 / exposure start time (Modified Julian Date) EXPEND = 5.759125753286E+04 / exposure end time (Modified Julian Date) EXPTIME = 20.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1153479 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 18.388600 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 5 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 17007.0 / maximum value of good pixels GOODMEAN= 5032.600098 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END BoFµá \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocui04xeq_spt.fits b/lib/stistools/tests/data/tastis/ocui04xeq_spt.fits new file mode 100644 index 00000000..6ac02dcf --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocui04xeq_spt.fits @@ -0,0 +1,8 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocui04xeq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocui04xeq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'M62-VLA1 ' / proposer's target name RA_TARG = 2.553050795833E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.011405000000E+01 / declination of the target (deg) (J2000) ECL_LONG= 257.218187 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -7.324472 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 353.574582 / galactic longitude of the target (deg) (J2000) GAL_LAT = 7.316765 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OVL100E1 ' / aperture used for reference position ELON_REF= 257.218187 / ecliptic longitude at reference position (deg) ELAT_REF= -7.324472 / ecliptic latitude at reference position (deg) GLON_REF= 353.574582 / galactic longitude at reference position (deg) GLAT_REF= 7.316765 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14086 / PEP proposal identifier LINENUM = '04.002 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CUI' / program id (base 36) PR_INV_L= 'Strader ' / last name of principal investigatorPR_INV_F= 'Jay ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '04' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'XE ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'SL100 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 5 / proposed number of peakup search steps SS_STPSZ= 75.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 523 / proposed axis1 detector pixel of subarray startSS_A1SZE= 32.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 882 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 128 / word 11/14 (0-255) PSTRTIME= '2016.204:06:04:20 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.204:07:30:57 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OVL100E1 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14086_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.552185458503E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -3.007085830977E+01 / declination of v1 axis of st (deg) PA_V3 = 260.044708 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S8ES000684F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S8ES000207F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 3.465162045898E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -6.429767019381E+03 / position of space telescope x axis (km) POSTNSTY= -2.524403152102E+03 / position of space telescope y axis (km) POSTNSTZ= 3.624397201134E+02 / position of space telescope z axis (km) VELOCSTX= 2.266517396004E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -6.290105854427E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -3.602211207335E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.217976678475E+02 / right ascension of the sun (deg) DEC_SUN = 2.022625827087E+01 / declination of the sun (deg) RA_MOON = 3.300085155996E+02 / right ascension of the moon (deg) DEC_MOON= -1.082022430075E+01 / declination of the moon (deg) VELABBRA= 17.521641 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.553050795833E+02 / right ascension of reference object (deg) DEC_REF = -3.011405000000E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.955008000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.668344291056E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.627766692827E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.856872282190E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.606411649830E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788537579317E-01 / cosine of inclination ECCENTRY= 4.021874191752E-04 / eccentricity ECCENTX2= 8.043748383503E-04 / eccentricity times 2 ECBDX4D3= 8.674095124484E-11 / eccentricity cubed times 4/3 ESQDX5D2= 4.043868003570E-07 / eccentricity squared times 5/2 ECBDX3 = 1.951671403009E-10 / eccentricity cubed times 3 FDMEANAN= 1.750165742855E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.332303818936E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.120427384839E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.508183451220E-01 / argument of perigee (revolutions) MEANANOM= 6.067284643628E+00 / mean anomaly (radians) RCARGPER= -8.461729098335E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 1.348064121713E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.770912618874E-01 / sine of inclination SEMILREC= 6.916784206158E+06 / semi-latus rectum (meters) TIMEFFEC= 9.955561060000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.957818600000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'SL100 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;EMISSION LINE STAR;G III-I;LMXB;POPULATION II 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'EMISSION LINE STAR 'TARKEY2 = 'G III-I 'TARKEY3 = 'LMXB 'TARKEY4 = 'POPULATION II ' / PROPOSAL INFO: Flux Information MAG_V = 18.100000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 20.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 2.553050795833E+02 / target right ascension from proposal (degrees) DEC_PROP= -3.011405000000E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Dynamical Confirmation of a Stellar-mass Black Hole in the Globular 'PROPTTL2= 'Cluster M62 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -1.998361000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.385187000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.346503000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.395980000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 8.993310000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -3.593820000000E-04 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076200000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077600000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 3.592800000000E-04 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.394200000000E-01 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969880000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969330000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.393850000000E-01 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.324617000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= 2.015710000000E+01 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.948050000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.704270000000E+01 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -1.948762000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 1.580000000000E-01 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.325329000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 3.735290000000E+01 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1989 / Number of words NLINES = 3 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 523 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 882 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 35 / Slit Number SLITSIZE= '52x0.1 ' / aperture field of view TFPFNAME= 'SL100 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 5 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 75.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 43530.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 200.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 21.9141 / (dgC) CEB Radiator temp OCLLMP1T= 9.89712 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.2125 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 3.97019 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.38269 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.23558 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.55769 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 9.97112 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 15.6271 / (dgC) Enclosure aft blukhead temp OENCAIPT= 12.7813 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.22773 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.6125 / (dgC) Fitting A temp OFITBT = 18.1667 / (dgC) Fitting B temp OFITCT = 5.05 / (dgC) Fitting C temp OHDM15V = -14.9599 / (V) Hold Mode Regulator - 15V OHDP15V = 15.018 / (V) Hold mode regulator +15V OHDP5V = 4.77001 / (V) Hold mode regulator + 5V OKMDITBT= 24.7995 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.1393 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.1393 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.1393 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 29.9979 / (dgC) M1 heater control temp OM1HTRW = 0.0325019 / (w) M1 heater power OM2HTRT = 33.1875 / (dgC) M2 heater control temp OM2HTRW = 0.314083 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 18.9813 / (dgC) MEB 2 radiator temp OMBCSPT = 34.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 28.538 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5661 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 17.975 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.5 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 20.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1153 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.125 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.3321 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.4057 / (dgC) Slit wheel motor temp OTCZ1AT = 23.9312 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.62531 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.4813 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.47353 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.5375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 16.404 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.3875 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.288687 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.6375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 3.03164 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.85 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 9.98035E-06 / (w) Thermal controller power, zone 3B OTECINV = 6.10374 / (V) TEC input voltage OTECTCV = -7.80763 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.86244 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4147 / (V) LVPS CEB +15V OPSCB35V= 34.7471 / (V) LVPS CEB +35V OPSCB5V = 4.85758 / (V) LVPS CEB +5V OPSCM15V= -14.8529 / (V) LVPS CEB -15V OM1FLDV = 30.4762 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0709158 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421734 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483516 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.736508 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 33.3213 / (dgC) M1 charge amplifier temp OM1DCDT = 33.8097 / (dgC) M1 decoder temp OM1MCET = 32.1003 / (dgC) M1 MCE temp OM1LVPST= 36.9843 / (dgC) M1 LVPS temp OM1HVPST= 33.3213 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0726252 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475946 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.736264 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 33.8097 / (dgC) M2 charge amplifier temp OM2DCDT = 34.7865 / (dgC) M2 decoder temp OM2MCET = 32.5887 / (dgC) M2 MCE temp OM2LVPST= 37.9611 / (dgC) M2 LVPS temp OM2HVPST= 34.7865 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7322 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.57817 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 30.1528 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 31.7752 / CB clock X pwb temp OCBCLKA2= 29.4956 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.0911 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.47794 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9775 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.9282 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.95739 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.92803 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.90874 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.96226 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.95722 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.01074 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.10569 / (V) CB state machine 2 +5V OCBSWAHV= 4.90388 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.92317 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.00101 / (V) CB summing well C Lo OCBSWDHV= 4.96712 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 26.6869 / CEB timing pwb temp OCLM5V = -5.09126 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0133815 / Calibration lamps -5V current OCLP30V = 29.882 / (V) Calibration lamps +30V voltage OCLP30VC= -0.024314 / Calibration lamps +30V current OCLP5V = 5.23218 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1153479 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00155312 / (A) Slit Wheel motor current OSWMVEL = 0.0564635 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61734 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 514 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 35 / Control section slit position OCSDQEXJ= 1063 / Control section data queue extract OCSDQINJ= 1063 / Control section data queue insert OCSXQEXJ= 17 / Control section Expos Que Extract OCSXQINJ= 21 / Control section Expos Que Insert OCSOBSQ = -31304 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 16872 / Control section dump pointer OCSFILLJ= 16872 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 183 / Control section exposure counter OTAFLUXQ= 43530 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -56 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+C- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCUI04XE·ÅŠJpdy\I r "ʦ¼à½ÐÅÅàÃPÄ@ßàÌ0Ì0®P²PÃð³€± «¾ `àð½ÀÎÈÐÈÐÈÐÎàŸÐÒ¡ ¿Ðþ ©ðÁàÁ@ÐÉpàÒ Ò¹`Ñ0½ µ`¸à¹àáá ÍðÏ ÍÐÍP¦à´ §à´©̨Р§ªÐ¦@ž°œ`ß€á ¾ðÝð¾à!' ( +þ¬ «¿3+ ½g¼U È Í ÏÆçéâöçc Ø ™Ï ¼¿18 Õ_I Ç Ì ÑÅéíäúíÔÀà ^À_^ð_P‚€ê°%@ÂÚÀï€%@àÚÀÔàÀ†‚  Ã`ß@  Ãß0LÐT ˜ €˜°€˜  ˜À`F`¦ F@¥à™à€™ð~ h@~@h``f@`f`~`h ~ h@€f`eà~@gà`f€€PÂ~h`~@hÀ`fÀ fà€À§€ ¦à{°?ðàp| Ã°€@àQ™ÇKÀ°€‚àb9 +³rŠžýñ&_ld  (€„ðñ#''¸`‘AèA襀Ìà_·ª +ÿÈa‚__ÿ"ʦ¼à½àÅÅàÃPÄ@ßÐÌ@Ì ®P²PÃð³€± «¾!@à½pÎÈÐÈÐÈÐ΀ PÒp ¿àþ ©ðÁÐÁ@àÉpßðÒÒ¹`Ñ@½ µp¸Ð¹ÐáÐá ÍðÏÍÐÍP¦€µ §²€¨ Ê°©°¡`¨«€¥ Ÿ0à ßá¾ÐÜ ì€Á`' ( +þ¬ «¿3+ ¾gºU È Ì ÏÆçéâöçc Ø ™Ï ¼¿18 Õ_›H Ç Ì ÑÅéíäúíÔÐÃ^À^ð^ð_P‚€ê°%@ÁÐÚàï€%@ÁÐÚàÔàÀ†‚  Áàßp  Áàß`LàT°˜°€˜°€˜ €˜À€F@¦ F@¥à™À€™ ð~`h@~@h``f`€f`~`h@~@h``f`eà~@h@`f €ÁÐ~`h`~@h`€f€Àfà€À§€À¦à{À> ~ à€}Ã0€p€ÀQ™ÈKÀ°€€ b9 +³rŠžýñ&_ld`` €…ñ#''¸`‘AèA襀Ìà_¸ª +ÿÈR‚__ÿ`#m°3ÇKæª +µBoFáÈUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocyw05afq_raw.fits b/lib/stistools/tests/data/tastis/ocyw05afq_raw.fits new file mode 100644 index 00000000..b80c5873 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocyw05afq_raw.fits @@ -0,0 +1,3 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocyw05afq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocyw05afq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'BD-11D916 ' / proposer's target name RA_TARG = 6.942339631374E+01 / right ascension of the target (deg) (J2000) DEC_TARG= -1.103978108999E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14084 / PEP proposal identifier LINENUM = '05.002 ' / proposal logsheet line number PR_INV_L= 'Redfield ' / last name of principal investigatorPR_INV_F= 'Seth ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-09-22' / UT date of start of first exposure in file TTIMEOBS= '08:33:17' / UT start time of first exposure in file TEXPSTRT= 5.765335645093E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57653.35647177 / end time (MJD) of last exposure in the file TEXPTIME= 1.8 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793006482639E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430L ' / optical element in use APERTURE= '0.2X0.09 ' / aperture name PROPAPER= '0.2X0.09 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '0.2x0.09 ' / aperture field of view CENWAVE = 4300 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$0ac1554ko_drk.fits' / dark image file name PFLTFILE= 'oref$x6417094o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$pcc2026jo_lfl.fits' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740no_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 2800.0 / bandwidth of the data SPECRES = 800.0 / approx. resolving power at central wavelength CENTRWV = 4300.0 / central wavelength of the data MINWAVE = 2900.0 / minimum wavelength in spectrum MAXWAVE = 5700.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Connecting Earth with its Galactic Environment: Probing Our Interste'PROPTTL2= 'llar Past Along the Historical Solar Trajectory 'OBSET_ID= '05' / observation set id TARDESCR= 'STAR;M V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 9.010000000000E-02 / target parallax from proposal MU_RA = -2.257545909435E-01 / target proper motion from proposal (degrees RA)MU_DEC = -1.925700000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J1991.2' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS2' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 3 / Number of peakup search steps PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 838752.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 93.828293 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 5.000000 / the minimum value of the data DATAMAX = 121.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= -131.104 / position angle of image y axis (deg. e of n) SUNANGLE= 109.731834 / angle between sun and V1 axis MOONANGL= 29.070826 / angle between moon and V1 axis SUN_ALT = -39.441189 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:33:17' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765335645093E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765335647177E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.800000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336788 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 5.0 / minimum value of good pixels GOODMAX = 121.0 / maximum value of good pixels GOODMEAN= 27.755228 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€-€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €$€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€!€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€"€€€ €€€€€€ €€€€€€€€€"€€!€€ €€€!€ €€€!€€ €!€€€ €€#€€!€€€ €€ € €€€ €€€€"€!€€€$€€!€ € €€€€€€!€ €€€€€€ €€ €€"€€€€€€€€€€ €€€ €€€ €€$€€€ €€€€€€!€€!€"€"€ €€€!€€€!€€€€ €€€€ €€€€ €€€!€ €€€€€€€€€€€€€€€€€€€€€€€€$€€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ € €€€€€€€€€€ €€€€!€ €€ €€!€€€€€!€€€!€€€€!€$€€ €"€"€ €!€ €!€€€!€"€ € €#€€#€€€!€#€ €€ €!€€!€$€"€$€#€!€#€$€"€ €!€#€€#€"€€"€!€ €$€&€%€!€&€$€ € €!€ €&€(€%€%€%€(€&€%€&€#€%€#€#€%€&€$€'€%€$€)€&€%€#€'€%€!€$€&€#€!€(€!€%€%€&€$€$€$€&€%€#€)€'€%€#€)€!€"€"€#€"€%€#€#€'€"€$€$€%€&€'€(€$€&€%€#€"€%€&€#€'€%€!€ €#€#€ €$€$€!€"€€!€#€%€$€'€!€#€!€$€%€#€"€!€&€&€$€%€%€#€!€$€#€%€$€'€"€'€%€%€ €#€'€(€(€$€'€&€#€$€(€#€!€'€)€&€$€+€)€&€)€+€)€&€)€"€+€(€(€)€'€(€&€$€$€*€$€(€$€'€#€%€%€%€'€'€+€&€$€'€&€#€%€"€&€%€'€'€(€$€"€#€%€"€)€&€%€%€'€*€&€&€%€#€$€(€'€%€&€&€%€%€*€(€'€!€)€!€&€(€'€&€$€%€&€&€)€%€)€+€'€%€'€'€)€+€)€(€(€ €!€!€$€!€"€&€#€&€$€'€$€!€"€&€#€*€*€(€'€-€$€+€)€)€-€(€,€*€*€(€*€+€)€%€*€'€%€'€-€&€%€'€,€*€(€+€&€&€)€/€'€%€-€,€)€*€+€*€&€*€-€'€'€+€'€*€,€+€,€*€-€-€&€.€-€0€+€-€+€)€)€*€-€(€'€+€)€*€,€+€*€,€/€,€(€(€,€-€.€*€+€&€(€*€%€*€(€+€*€&€+€+€&€*€%€&€(€,€+€(€#€'€,€+€(€+€)€(€*€+€$€$€+€)€(€*€'€*€*€(€*€-€*€-€'€)€0€+€+€%€'€*€&€+€&€*€'€+€(€&€(€(€(€*€+€€*€)€)€(€(€&€+€&€*€-€)€)€(€#€*€(€(€)€&€'€%€+€*€%€'€,€-€(€(€<€€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € € € €!€€€"€€"€€ €$€€€ €€!€€$€€ €€!€ €€!€€"€€%€€€$€€%€#€ € €"€!€#€ €%€%€$€€"€ € €€#€!€ €€!€ €"€€%€€ €%€#€€%€#€&€#€ €&€!€"€'€!€%€€$€"€!€%€€€€€€€€!€ € €$€$€$€€ € €$€%€)€"€!€"€"€$€$€%€ € €!€$€ €€&€#€%€'€'€'€'€&€%€"€%€+€'€$€$€*€%€#€%€&€$€#€,€)€%€&€*€(€#€%€&€'€,€#€)€&€$€'€$€*€+€+€+€#€-€'€+€*€+€*€%€-€2€&€,€*€)€*€0€+€1€0€-€.€*€0€/€,€.€/€3€.€,€2€(€,€/€/€0€-€3€0€1€)€.€0€0€1€2€0€-€3€2€6€9€;€8€7€7€7€4€/€7€/€5€3€5€=€4€4€6€2€<€;€9€7€;€5€6€5€5€:€8€3€;€0€6€6€6€9€7€7€7€/€4€5€1€4€2€8€:€.€7€5€9€8€9€8€6€9€6€5€.€9€4€4€7€7€7€6€9€5€:€;€<€6€0€4€+€.€.€2€1€0€.€.€/€4€-€/€.€1€/€4€-€2€4€2€1€8€1€3€4€:€7€1€3€5€1€0€7€4€5€2€3€2€3€8€2€4€8€;€4€2€7€4€3€9€9€?€7€<€:€@€4€5€=€:€<€A€<€7€=€D€:€<€=€<€0€4€5€8€6€7€8€:€;€4€:€7€:€=€3€4€;€2€6€5€3€4€;€9€<€:€6€:€4€:€6€9€>€;€6€:€;€2€:€9€5€:€8€=€5€;€@€:€:€9€9€;€>€7€5€8€7€9€=€B€7€=€<€=€;€@€9€=€>€9€:€4€;€<€C€=€1€2€.€0€-€0€4€:€8€=€=€>€<€=€+€.€4€D€B€A€B€A€=€D€C€E€I€E€J€B€B€F€I€G€C€@€7€:€=€E€F€L€A€L€G€K€F€D€F€G€P€F€M€P€J€J€J€D€=€H€;€I€P€G€E€D€D€P€N€C€J€J€J€I€D€G€K€P€Q€N€P€M€O€K€L€T€W€J€H€N€T€L€T€T€R€F€O€L€M€J€X€P€L€A€J€C€K€C€G€@€M€G€J€H€H€K€K€E€N€N€G€E€E€G€K€I€D€E€C€I€R€J€K€I€H€H€I€K€K€N€L€O€P€P€H€L€G€H€X€Q€M€P€Q€L€H€Z€K€J€>€K€J€M€M€I€A€G€G€F€D€O€I€H€M€K€I€L€O€R€H€H€I€M€V€J€L€O€H€N€R€P€H€J€M€O€Q€R€X€l€ € €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€"€€€€€€€ € €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €"€!€ €#€"€€ €€€€€€€€ €€€"€"€€€€ €€€ €€ €$€€%€"€!€$€!€%€%€&€€$€#€)€#€$€%€'€€$€€$€)€$€$€&€'€(€&€+€(€"€%€"€)€$€!€,€&€(€-€#€"€&€*€%€(€&€*€*€(€'€*€$€&€*€$€$€(€'€%€'€*€)€*€)€#€(€'€-€&€(€,€0€,€$€+€(€)€'€+€(€(€+€'€'€%€#€#€€€ €!€#€%€%€&€(€%€'€"€&€*€*€(€&€'€#€"€+€*€$€&€&€&€,€%€)€(€)€-€0€(€+€3€.€'€*€1€-€,€/€1€0€2€4€0€-€-€0€2€-€5€-€,€(€,€+€,€-€0€-€8€;€0€*€-€7€7€2€;€:€4€/€:€2€-€4€9€5€8€7€0€)€2€1€7€6€:€=€6€:€:€<€;€6€=€<€5€;€=€9€=€=€C€@€8€=€:€4€C€>€7€<€F€=€6€:€>€C€@€D€@€F€J€I€C€B€B€I€>€9€D€D€;€H€F€E€I€F€P€J€D€J€K€D€C€G€B€F€H€G€G€?€@€C€>€E€I€C€E€A€F€A€P€H€@€A€B€L€B€P€N€A€E€D€D€B€<€=€J€A€?€C€E€F€C€B€D€E€A€F€F€D€=€<€1€5€5€6€:€:€5€3€5€:€:€>€F€A€4€;€9€H€@€:€@€<€A€E€>€@€C€?€=€E€@€;€@€A€J€D€C€J€A€>€>€B€C€A€B€G€I€N€I€J€F€N€O€I€J€K€G€?€M€E€R€V€>€V€O€Q€T€M€M€@€9€@€@€D€H€F€@€A€F€>€E€I€D€F€H€<€E€C€C€?€:€K€E€A€B€H€A€D€?€B€@€B€F€E€H€B€H€K€D€?€Q€I€=€F€E€?€L€G€?€F€>€E€D€@€9€E€E€J€F€M€G€D€G€J€G€J€L€J€L€A€K€D€D€S€T€L€:€8€2€B€9€@€:€B€D€K€@€J€K€=€4€<€?€K€T€M€S€L€R€H€Q€U€U€W€V€K€P€^€P€U€O€P€D€F€N€L€Z€U€T€`€Z€^€W€R€J€I€\€Y€f€b€Z€a€]€S€V€J€P€X€Z€]€W€L€N€W€W€b€\€Y€^€`€X€Q€e€p€h€]€e€_€\€X€Z€_€e€Z€[€]€h€c€n€b€e€^€X€Z€h€_€l€f€Q€T€R€L€O€P€T€U€S€Z€P€W€^€V€Z€W€e€R€Z€Z€T€Q€S€U€M€H€Q€T€b€V€Y€P€Y€_€Y€]€Q€Y€Z€\€`€X€V€]€W€`€X€e€b€W€U€R€Y€X€T€Y€P€N€R€L€U€W€O€b€_€P€R€T€S€V€`€T€O€U€]€\€S€_€K€O€X€S€L€Y€]€X€Z€[€Z€P€T€a€Z€Z€]€y€ € €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€"€€€€!€€€#€€€!€€ €€€€ €€€€€€€€€ € €€€!€!€€€"€€€€€ €€#€ €€ €€€€ € €€€ €€!€€%€€€#€ €€€!€#€!€ €!€!€€"€!€€!€!€ €!€#€"€#€#€!€ €#€ €$€€%€$€€€$€"€)€"€%€#€#€"€$€"€#€#€"€ €#€!€$€$€"€!€%€€$€!€"€ €$€"€$€"€#€ €$€!€%€"€€#€"€"€"€%€ € €#€"€%€"€%€!€€!€$€€"€"€"€$€!€#€#€%€ €$€!€'€!€!€€$€%€!€ €#€#€ € €"€"€€€€"€!€$€"€"€!€!€#€"€"€€€€!€"€$€ €#€€€!€#€ €$€"€$€ €%€$€!€#€!€!€!€ €#€'€€#€$€ €#€*€#€#€$€$€"€€%€*€(€&€#€'€ € €$€'€"€€!€$€!€'€$€$€!€#€$€#€%€%€"€#€#€"€%€&€$€!€€$€$€ €$€$€ €!€ €#€"€!€&€%€"€!€"€#€!€€!€$€"€%€&€!€#€&€"€#€"€*€ € €"€#€!€$€%€#€%€'€#€"€(€$€%€!€%€!€"€"€ €'€€"€€ €€%€!€#€€ €#€€!€'€"€"€€"€!€'€)€$€"€!€&€!€&€)€#€#€(€'€$€&€%€*€$€!€#€$€%€"€,€'€$€+€+€$€#€#€'€"€#€(€+€&€%€*€'€'€)€*€&€$€*€*€%€%€*€)€(€)€(€(€&€(€'€(€&€&€'€-€-€(€&€(€,€(€&€,€)€(€'€'€*€'€)€,€)€+€*€(€+€,€*€'€(€&€#€"€(€"€$€&€'€'€%€*€&€&€(€'€*€'€%€%€'€&€%€(€%€"€+€-€'€"€(€(€&€(€'€)€%€%€,€%€'€)€&€&€&€,€)€%€&€)€&€$€*€%€$€#€'€'€(€)€$€#€,€+€(€,€%€(€(€'€$€)€'€*€'€(€"€"€)€"€!€*€'€#€(€$€&€'€&€(€'€ €)€.€!€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€-€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€ €€ €€€€€€€!€€!€€€€€€ €€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€ €€€€€€€€€€€€ €€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€#€€!€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€"€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €"€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ +€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € € +€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €"€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€,€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€ €a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€#€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€!€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€`€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€!€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€!€€ €€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€&€$€ €aXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 5.0 / minimum value of good pixels GOODMAX = 121.0 / maximum value of good pixels GOODMEAN= 27.755228 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1 / length of first data axis NAXIS2 = 3 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 67252.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 1.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 2.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 6.942339631374E+01 / first axis value at reference pixel CRVAL2 = -1.103978108999E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 2.739282720172E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -3.139656237564E-05 / partial of first axis coordinate w.r.t. y CD2_1 = -3.139656237564E-05 / partial of second axis coordinate w.r.t. x CD2_2 = -2.739282720172E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= -131.104 / position angle of image y axis (deg. e of n) SUNANGLE= 109.731834 / angle between sun and V1 axis MOONANGL= 29.070826 / angle between moon and V1 axis SUN_ALT = -39.441189 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:33:17' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765335645093E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765335647177E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.800000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336788 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 3 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 67252.0 / maximum value of good pixels GOODMEAN= 24130.333984 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END ´ \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocyw05afq_spt.fits b/lib/stistools/tests/data/tastis/ocyw05afq_spt.fits new file mode 100644 index 00000000..0e9b2621 --- /dev/null +++ b/lib/stistools/tests/data/tastis/ocyw05afq_spt.fits @@ -0,0 +1,7 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocyw05afq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocyw05afq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'BD-11D916 ' / proposer's target name RA_TARG = 6.942339631374E+01 / right ascension of the target (deg) (J2000) DEC_TARG= -1.103978108999E+01 / declination of the target (deg) (J2000) ECL_LONG= 65.781092 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -32.765219 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 207.618424 / galactic longitude of the target (deg) (J2000) GAL_LAT = -34.654808 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV200X090 ' / aperture used for reference position ELON_REF= 65.781092 / ecliptic longitude at reference position (deg) ELAT_REF= -32.765219 / ecliptic latitude at reference position (deg) GLON_REF= 207.618424 / galactic longitude at reference position (deg) GLAT_REF= -34.654808 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14084 / PEP proposal identifier LINENUM = '05.002 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CYW' / program id (base 36) PR_INV_L= 'Redfield ' / last name of principal investigatorPR_INV_F= 'Seth ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '05' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'AF ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S200X090 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430L ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.300000000000E+03 / central wavelength SS_NSTEP= 3 / proposed number of peakup search steps SS_STPSZ= 150.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 25 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 43 / word 11/14 (0-255) PSTRTIME= '2016.266:08:31:32 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.266:08:34:10 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV200X090 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14084_5 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 6.948284891051E+01 / right ascension of v1 axis of st (deg) DEC_V1 = -1.110318033016E+01 / declination of v1 axis of st (deg) PA_V3 = 93.828293 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S2AE000156F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S2AE000086F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = -1.311044853760E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 6.142531291738E+03 / position of space telescope x axis (km) POSTNSTY= 2.122232404185E+03 / position of space telescope y axis (km) POSTNSTZ= 2.368072896231E+03 / position of space telescope z axis (km) VELOCSTX= -3.188305968987E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= 6.415852568087E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 2.520335674249E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.795681323283E+02 / right ascension of the sun (deg) DEC_SUN = 1.873441923294E-01 / declination of the sun (deg) RA_MOON = 7.505517345663E+01 / right ascension of the moon (deg) DEC_MOON= 1.744163035316E+01 / declination of the moon (deg) VELABBRA= 17.132429 / aberration in position of the target ANNPARRA= 8.921261 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 6.942339631374E+01 / right ascension of reference object (deg) DEC_REF = -1.103978108999E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 1.000944000000E+09 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.757409614400E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.622332198752E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.859014525890E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.600463885492E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.795575445567E-01 / cosine of inclination ECCENTRY= 5.923442169063E-04 / eccentricity ECCENTX2= 1.184688433812E-03 / eccentricity times 2 ECBDX4D3= 2.771157404962E-10 / eccentricity cubed times 4/3 ESQDX5D2= 8.771791782557E-07 / eccentricity squared times 5/2 ECBDX3 = 6.235104161164E-10 / eccentricity cubed times 3 FDMEANAN= 1.748854353387E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.336123543981E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.126506666060E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.064662298880E-01 / argument of perigee (revolutions) MEANANOM= 1.392027741286E+00 / mean anomaly (radians) RCARGPER= 5.566867771651E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 9.791782825249E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.757925239149E-01 / sine of inclination SEMILREC= 6.916729033444E+06 / semi-latus rectum (meters) TIMEFFEC= 1.000995017000E+09 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 1.001147492000E+09 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430L ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S200X090 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;M V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'M V-IV 'ALIAS1 = 'GJ173 ' / synonym for target name ALIAS2 = 'HIP21556 ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 10.330000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 1.800000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 9.010000000000E-02 / target parallax from proposal RA_PROP = 6.942500000000E+01 / target right ascension from proposal (degrees) DEC_PROP= -1.103841666667E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -2.257545909435E-01 / target proper motion from proposal (degrees RA)MU_DEC = -1.925700000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J1991.2' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -6.800000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Connecting Earth with its Galactic Environment: Probing Our Interste'PROPTTL2= 'llar Past Along the Historical Solar Trajectory 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136816000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248371000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350558000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -5.367540000000E-08 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 5.366100000000E-08 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 2.082400000000E-05 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -2.100000000000E-05 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.137213000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -7.170200000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.135773000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -7.314400000000E+00 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136419000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 7.170200000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.137859000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 7.314700000000E+00 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 25 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 784 / Telemetry optical mode number OPTMODE = 'G430L ' / Optical Mode Name MODE_ID = '3.1 ' / IDT Mode identification CENWAVE = 4300 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 20 / Slit Number SLITSIZE= '0.2x0.09 ' / aperture field of view TFPFNAME= 'S200X090' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS2' / Search method for peakups NUMSTEPS= 3 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 838752.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 18.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 24.5255 / (dgC) CEB Radiator temp OCLLMP1T= 11.888 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 11.1596 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 6.32019 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 5.6875 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 7.40481 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.68173 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.9787 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.8643 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.7714 / (dgC) calibration lamp motor 2 temp OENCAFTT= 19.9271 / (dgC) Enclosure aft blukhead temp OENCAIPT= 15.3875 / (dgC) Enclosure aft inner panel temp OENCAOPT= 2.83711 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.35 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.4438 / (dgC) Fitting A temp OFITBT = 19.8703 / (dgC) Fitting B temp OFITCT = 7.06172 / (dgC) Fitting C temp OHDM15V = -15.1059 / (V) Hold Mode Regulator - 15V OHDP15V = 14.6871 / (V) Hold mode regulator +15V OHDP5V = 4.82352 / (V) Hold mode regulator + 5V OKMDITBT= 24.951 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.8607 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9071 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9071 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 37.1974 / (dgC) M1 heater control temp OM1HTRW = 0.335167 / (w) M1 heater power OM2HTRT = 38.2898 / (dgC) M2 heater control temp OM2HTRW = 0.335167 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 21.2896 / (dgC) MEB 2 radiator temp OMBCSPT = 36.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 30.6 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.8693 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.8693 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.55 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.5766 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.6018 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.2 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.55 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 22.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.232 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2418 / (V) LVPS thermal control system zone B volts OSCMTRT = 22.075 / (dgC) CCD Shutter motor temp OSEMTRT = 24.4458 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 24.6531 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.7265 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.2406 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.35548 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.9 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 9.355 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.625 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.566938 / (w) Thermal controller power, zone 2B OTCZ3AT = 22.25 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.609667 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.575 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.47225 / (w) Thermal controller power, zone 3B OTECINV = 6.14465 / (V) TEC input voltage OTECTCV = -7.7881 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0748 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90623 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4147 / (V) LVPS CEB +15V OPSCB35V= 31.4972 / (V) LVPS CEB +35V OPSCB5V = 4.83812 / (V) LVPS CEB +5V OPSCM15V= -15.3394 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0704274 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.420269 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -42.3932 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298413 / (A) M1 +15V current OM1P15V = 15.8437 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274725 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.487179 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.734799 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 39.4263 / (dgC) M1 charge amplifier temp OM1DCDT = 39.9147 / (dgC) M1 decoder temp OM1MCET = 38.2053 / (dgC) M1 MCE temp OM1LVPST= 43.0893 / (dgC) M1 LVPS temp OM1HVPST= 42.6009 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 16.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 286.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721856 / (A) M2 -15V current OM2M15V = -15.8486 / (V) M2 - 15 volts OM2M2VDC= 0.420513 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -78.3394 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.9512 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.272772 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.482784 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73431 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 39.6705 / (dgC) M2 charge amplifier temp OM2DCDT = 40.6473 / (dgC) M2 decoder temp OM2MCET = 38.4495 / (dgC) M2 MCE temp OM2LVPST= 43.8219 / (dgC) M2 LVPS temp OM2HVPST= 44.0661 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.6882 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58793 / (V) CEB A/D offset B V OCBADOCV= -2.58793 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 32.5058 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1718 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08137 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5506 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2204 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.06677 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.8054 / (V) CEB C&D output diode OCBCLKA1= 34.1497 / CB clock X pwb temp OCBCLKA2= 32.0601 / CB clock Y pwb temp OCBCMAA1= -14.9404 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.06677 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9307 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.06191 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92376 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9483 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCBS1AHV= 4.90388 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.92803 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91847 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.97199 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.01074 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.95236 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.92334 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.9428 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03019 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.93776 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03506 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0171077 / (V) CB state machine 1 +5V OCBSM2PV= 5.11056 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.03019 / (V) CB summing well C Lo OCBSWDHV= 4.98658 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 29.1035 / CEB timing pwb temp OCLM5V = -5.09126 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0240618 / Calibration lamps -5V current OCLP30V = 29.9015 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00460794 / Calibration lamps +30V current OCLP5V = 5.27597 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1336788 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0112821 / (A) Slit Wheel motor current OSWMVEL = 0.0300389 / (Rad) Slit whell motor velocity OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 137 / Mode select cylinder 3 shaft position OMSC4SP = 221 / Mode select cylinder 4 shaft position OMSC1CRP= 61208 / Mode select cyl. 1 resolver position OMSC3CRP= 2310 / Mode select cyl. 3 resolver position OMSC4CRP= 27873 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1536 / CCD Shutter resolver position OSCMTRC = -0.0139194 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 20 / Control section slit position OCSDQEXJ= 3533 / Control section data queue extract OCSDQINJ= 3533 / Control section data queue insert OCSXQEXJ= 23 / Control section Expos Que Extract OCSXQINJ= 28 / Control section Expos Que Insert OCSOBSQ = -29914 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4300 / Control section optical scan position OCSOPMDP= 784 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 17510 / Control section dump pointer OCSFILLJ= 17510 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 37 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= -30 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCYW05AF %ƒ…#ŒšžÐXI þó"Ê£°ºP»@ÁаÀPÁPÝàËą̀À® Áp±€€¯ð¨ÐºàpÞоpÍàÉ0É É ×¡ÀØ@¡À¿Ðþ §@¿`Á@ÀÆààѰѰ¹ÐмеÀ¹·`âPâ`Ìð΀ÍðÍ€¨0µ§p³ ¨¹ªà¡Pª@¢© ¡€œP߀á¿€Ýå ¾ ð  ( +þ¢ —¹3d!c ¬eËP Á Í ÐÆû +77 r Ø ™Æ ­º1D áp Â]¹G ¿ Ì ÑÅü +ÔÀÂð^À^à^à_@‡ ê°%0ÂÚÀïp%` ÚÀÔàÃp‹@‡ @ÂÀß` Âðß`LÐT ˜ `˜ €˜ €˜À`F@¦ F@¥à™€€™à~h ~`h`Àf@€f€~`h~€h`f`f~@h``eà€@ ~@h`~@h``f€ fà€À§€À¦À€p?à€0Ä@`eÔ'À°ÀEU â^‰Ýï lá d``€ …ñ Í Í &̃DfDf¥€Ìáß%ÿÿÿâI‚__–d–d==ÿ"Ê£°ºP»0Áà°ÀPÁPÝàËą̀À® Áp±€€ ¯ð¨Ðºàðß@¾àÍàÉ0É É ×¡°Ø0¡À¿àþ §@¿PÁPÀÆÐàѰѰ¹ÐÀ¼àµÐ¹·`â`âpÌð΀ÍðÍ€¨ ´à§`³§à¸àªÐ¡@ª0¡ð© ¡€œÀ ß€á ¿€Ý€æ ¾€`  ( +þ¢ —¹3e"d «eÓP Á Í ÐÆû +77 r Ø ™Æ ¬º1@ áp Â]·H À Ì ÑÅü +ÔÀÃ^À_^ð_P‡0ê°%pÁÀÚðïp% ÁÚÐÔðÀ‹@‡ €Áß` Á€ß`LàT°˜°€˜°€˜ €˜À`F@¦ F@¥à™À€ ™À}@h@~@h``f€f@~ h@~@h`f`€eà~ h@€f €`ÁÀ~@h@~h` f€ÀfÀ€À¦à€ ¦À€`?`à°ÄP€ðeÔ'À° PEU â^‰Ýï lád  €„ðñ Í Í &̃DfDf¥€Ìáß&ÿÿÿâF‚__–d–d==ÿÌm°3Ç–æ Ì`´UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/od3v01bfq_raw.fits b/lib/stistools/tests/data/tastis/od3v01bfq_raw.fits new file mode 100644 index 00000000..dad950b9 --- /dev/null +++ b/lib/stistools/tests/data/tastis/od3v01bfq_raw.fits @@ -0,0 +1 @@ +SIMPLE = T / Fits standard BITPIX = 16 / Bits per pixel NAXIS = 0 / Number of axes EXTEND = T / File may contain extensions ORIGIN = 'NOAO-IRAF FITS Image Kernel July 2003' / FITS file originator IRAF-TLM= '2018-06-14T19:12:30' / Time of last modification NEXTEND = 4 / Number of standard extensions DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'od3v01bfq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'od3v01bfq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= '2MASS-J23062928-0502285 ' / proposer's target name RA_TARG = 3.466266355664E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.043573002486E+00 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14493 / PEP proposal identifier LINENUM = '01.005 ' / proposal logsheet line number PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-09-26' / UT date of start of first exposure in file TTIMEOBS= '04:17:57' / UT start time of first exposure in file TEXPSTRT= 5.765717913575E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57657.17925149 / end time (MJD) of last exposure in the file TEXPTIME= 10. / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793025481481E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= '52X0.05 ' / aperture name PROPAPER= '52X0.05 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '52x0.049 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$0ac1554lo_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'UV exploration of two Earth-sized planets with temperate atmospheres'OBSET_ID= '01' / observation set id TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 8.258000000000E-02 / target parallax from proposal MU_RA = 9.221000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -4.719000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.8' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 7 / Number of peakup search steps PEAKSTEP= 26.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 35982.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 249.438705 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' ACQSTAT = 'OK ' ACQP_RAT= 'OKRATIO ' ACQP_FLX= 'OK_FLUX ' ACQP_SAT= 'UNSAT ' ACQP_END= 'OK_END ' DATAFLAG= 'TDF_Up ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 32 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 13.000000 / the minimum value of the data DATAMAX = 773.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 17.343 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.28325E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.84636E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 5.84475E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.2836E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 24.4876 / position angle of image y axis (deg. e of n) SUNANGLE= 162.394226 / angle between sun and V1 axis MOONANGL= 141.872025 / angle between moon and V1 axis SUN_ALT = 36.465134 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-26' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:17:57' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765717913575E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765717925149E+04 / exposure end time (Modified Julian Date) EXPTIME = 10.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1419800 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.0244726 / (V) CB reset gate CD Lo OCCDHTAV= 18.741400 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 773.0 / maximum value of good pixels GOODMEAN= 39.267578 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €$€#€ €%€#€€!€!€ €€"€ €€!€!€!€ €!€!€€#€ € €€!€€€"€*€+€€k€$€ €"€#€ € € €€ €!€"€"€€"€!€€"€€!€€!€ €€"€!€€€!€*€(€€m€€ €!€€€$€!€ €€"€!€!€€ €€!€#€ €€!€€€"€"€ € €!€"€)€+€€h€"€ €€€$€#€€ € €€ €"€€ €€ €"€"€ €€€ €€ € € €€ €*€,€€h€$€ €!€#€€€€!€€€#€#€€ €!€€€#€!€€€!€"€€"€$€!€€-€+€€i€ €€!€#€€!€ €$€€"€"€#€€€€ €"€"€ €€!€#€!€!€ €!€ €#€)€+€€i€"€!€ €#€ €!€!€"€€"€€€"€€"€"€"€"€"€€€€ €$€!€ €!€"€*€*€€j€ € €#€€€"€ €€ € € €#€!€€ €€€ €#€€€€!€€ € € €€*€,€€j€ €#€!€#€#€€#€#€€€"€!€€"€ €!€"€&€#€€ €$€€ €#€ €"€"€)€,€€m€ €€ € € €!€!€ € €"€"€€€"€ € € €%€"€!€#€!€ €€"€"€!€#€)€*€€h€!€€"€!€ €#€€!€!€€"€€!€€ €!€"€%€"€&€"€€ €!€€€#€#€'€,€€l€$€€€€"€#€ €€"€!€€$€#€ € €$€%€$€!€#€"€!€#€"€ €€%€!€(€-€€j€!€#€ €!€ €!€€"€"€"€€"€ €"€#€$€)€*€'€!€!€%€ €€#€ €€€,€,€€k€ €"€€$€€€!€!€"€"€$€ € €$€$€&€>€@€.€"€#€"€!€"€!€€#€"€)€)€€l€ €€!€ €#€!€"€€€#€!€€#€#€'€-€Y€\€>€-€$€#€€ € €"€€!€,€,€€k€ €#€€!€"€ €#€#€ €€ €€&€&€(€5€s€ˆ€M€-€%€$€%€ € €!€ €"€*€,€€i€€ €"€!€"€!€$€€"€#€ €$€'€)€6€n点 €A€.€&€$€"€ € € € €*€.€€j€ € €"€!€ €€€#€ €"€$€$€%€1€<€r‚*ƒ€@€5€(€&€!€&€ € €!€+€*€€k€ €"€€#€€#€ €€$€€"€"€!€%€+€5€€Ä€W€5€(€%€ € €$€"€"€!€,€-€ €n€"€"€€!€!€€!€€ €"€"€ €!€$€$€)€4€:€3€+€#€€ €!€!€!€"€$€*€.€€i€"€ € €€€ €€!€"€€ €€#€"€$€#€/€5€)€ €&€#€!€€ €"€ €%€+€)€€j€ €!€ €#€"€"€ €!€"€ €#€€ €€ €!€&€%€ €#€€ € €$€!€#€"€€+€/€€j€!€!€€ €€ €€!€!€€€"€"€!€!€€"€ €!€"€!€"€€!€€€ €"€*€*€€l€ €"€!€€€"€€ €$€ €!€!€ €!€"€"€$€"€€#€!€&€ € € €€!€ €+€*€€l€ €€#€!€!€ €!€"€!€!€ €"€€"€€#€€"€€€"€€ €€!€ €€$€&€&€€k€ €"€!€€€#€€ €"€ € €"€$€ € €€ € €€"€€€€ €!€ €!€€*€)€€m€ €!€"€ €"€!€€ € €!€ €€!€€ €€€ €€"€€ € €€!€"€!€!€*€*€€j€ € €!€ €#€€"€"€ €€€"€€ €!€€ €"€!€€ €!€€!€#€!€€!€,€(€€l€ €€#€ €"€!€"€€"€"€€ €!€ €"€"€!€€ €"€"€€ €€€"€"€ €)€,€€i€€!€ €"€€!€#€€ €€ € €€!€ €$€€€€€€€ €€€"€"€ €)€)€€h€ €€€!€"€€ € €"€€ €!€€ €"€!€€!€!€€ €€€ €"€ €€"€(€,€€j€ €!€"€ € €"€!€ €€"€#€ €€!€!€€!€"€€ € €€ €!€!€€ €#€,€*€€jXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 17.343 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.28325E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.84636E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 5.84475E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.2836E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 773.0 / maximum value of good pixels GOODMEAN= 39.267578 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 17.343 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.28325E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.84636E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 5.84475E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.2836E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 7 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 3432.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 4.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -6.572590539812E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 2.993584377153E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.993584377153E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 6.572590539812E-06 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 24.4876 / position angle of image y axis (deg. e of n) SUNANGLE= 162.394226 / angle between sun and V1 axis MOONANGL= 141.872025 / angle between moon and V1 axis SUN_ALT = 36.465134 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-26' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:17:57' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765717913575E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765717925149E+04 / exposure end time (Modified Julian Date) EXPTIME = 10.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1419800 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.0244726 / (V) CB reset gate CD Lo OCCDHTAV= 18.741400 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 7 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 3432.0 / maximum value of good pixels GOODMEAN= 1434.857178 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END P ý hx+ä \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/od3v01bfq_spt.fits b/lib/stistools/tests/data/tastis/od3v01bfq_spt.fits new file mode 100644 index 00000000..c597a811 --- /dev/null +++ b/lib/stistools/tests/data/tastis/od3v01bfq_spt.fits @@ -0,0 +1,7 @@ +SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'od3v01bfq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'od3v01bfq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= '2MASS-J23062928-0502285 ' / proposer's target name RA_TARG = 3.466266355664E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.043573002486E+00 / declination of the target (deg) (J2000) ECL_LONG= 345.737026 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = 0.629637 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 69.715338 / galactic longitude of the target (deg) (J2000) GAL_LAT = -56.649155 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OVL050 ' / aperture used for reference position ELON_REF= 345.737026 / ecliptic longitude at reference position (deg) ELAT_REF= 0.629637 / ecliptic latitude at reference position (deg) GLON_REF= 69.715338 / galactic longitude at reference position (deg) GLAT_REF= -56.649155 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14493 / PEP proposal identifier LINENUM = '01.005 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'D3V' / program id (base 36) PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '01' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'BF ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'SL050 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 7 / proposed number of peakup search steps SS_STPSZ= 26.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 520 / proposed axis1 detector pixel of subarray startSS_A1SZE= 32.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 8 / word 11/14 (0-255) PSTRTIME= '2016.270:04:10:06 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.270:04:19:29 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OVL050 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14493_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 3.465470098677E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -5.009939985446E+00 / declination of v1 axis of st (deg) PA_V3 = 249.438705 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'SB5F000135F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'SB5F000156F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 2.408202893677E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -1.252968881167E+03 / position of space telescope x axis (km) POSTNSTY= -6.223109509999E+03 / position of space telescope y axis (km) POSTNSTZ= -2.746840313439E+03 / position of space telescope z axis (km) VELOCSTX= 6.961118148221E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -2.284738740204E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 2.000886367626E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.830003520620E+02 / right ascension of the sun (deg) DEC_SUN = -1.299664280009E+00 / declination of the sun (deg) RA_MOON = 1.292063149455E+02 / right ascension of the moon (deg) DEC_MOON= 1.545696006240E+01 / declination of the moon (deg) VELABBRA= 19.798189 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 3.466266355664E+02 / right ascension of reference object (deg) DEC_REF = -5.043573002486E+00 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 1.000944000000E+09 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.757409614400E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.622332198752E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.859014525890E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.600463885492E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.795575445567E-01 / cosine of inclination ECCENTRY= 5.923442169063E-04 / eccentricity ECCENTX2= 1.184688433812E-03 / eccentricity times 2 ECBDX4D3= 2.771157404962E-10 / eccentricity cubed times 4/3 ESQDX5D2= 8.771791782557E-07 / eccentricity squared times 5/2 ECBDX3 = 6.235104161164E-10 / eccentricity cubed times 3 FDMEANAN= 1.748854353387E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.336123543981E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.126506666060E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.064662298880E-01 / argument of perigee (revolutions) MEANANOM= 1.392027741286E+00 / mean anomaly (radians) RCARGPER= 5.566867771651E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 9.791782825249E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.757925239149E-01 / sine of inclination SEMILREC= 6.916729033444E+06 / semi-latus rectum (meters) TIMEFFEC= 1.000995017000E+09 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 1.001477406000E+09 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'SL050 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'EXTRA-SOLAR PLANETARY SYSTEM 'ALIAS1 = 'TRAPPIST-1 ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 18.798000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 10.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 8.258000000000E-02 / target parallax from proposal RA_PROP = 3.466264166667E+02 / target right ascension from proposal (degrees) DEC_PROP= -5.043455555556E+00 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 9.221000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -4.719000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.8' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -5.168800000000E+01 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'UV exploration of two Earth-sized planets with temperate atmospheres'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136672000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248227000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.346503000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.373430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -3.593820000000E-04 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076200000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077600000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 3.592800000000E-04 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.394200000000E-01 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969880000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969330000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.393850000000E-01 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.324781000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= 1.461930000000E+01 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.948213000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -2.258060000000E+01 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -1.948563000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= -1.461930000000E+01 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.325131000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 2.258250000000E+01 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1989 / Number of words NLINES = 3 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 520 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 34 / Slit Number SLITSIZE= '52x0.049 ' / aperture field of view TFPFNAME= 'SL050 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 7 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 26.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 35982.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 100.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.3682 / (dgC) CEB Radiator temp OCLLMP1T= 10.237 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.48365 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.46731 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.87981 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.73269 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.05481 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3064 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.725 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.725 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.9271 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.5688 / (dgC) Enclosure aft inner panel temp OENCAOPT= 2.31406 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.6938 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9188 / (dgC) Fitting A temp OFITBT = 18.7896 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -14.9988 / (V) Hold Mode Regulator - 15V OHDP15V = 14.9304 / (V) Hold mode regulator +15V OHDP5V = 4.99866 / (V) Hold mode regulator + 5V OKMDITBT= 24.951 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.2458 / (dgC) M1 heater control temp OM1HTRW = 0.440583 / (w) M1 heater power OM2HTRT = 36.3349 / (dgC) M2 heater control temp OM2HTRW = 0.293 / (w) M2 heater power OMB10RV = 9.98029 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.2208 / (dgC) MEB 2 radiator temp OMBCSPT = 34.95 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 28.8917 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.9198 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.9703 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.45 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.7786 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1679 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1542 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1736 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5179 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1932 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 23.6562 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.59158 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.2781 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.22056 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.3375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.2273 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.0125 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0150081 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.8 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.2624 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.525 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 1.0E-05 / (w) Thermal controller power, zone 3B OTECINV = 6.33559 / (V) TEC input voltage OTECTCV = -7.80763 / TEC temp control voltage OMBMC15V= 14.7747 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9775 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.91109 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.8234 / (V) LVPS CEB +15V OPSCB35V= 31.4194 / (V) LVPS CEB +35V OPSCB5V = 5.39759 / (V) LVPS CEB +5V OPSCM15V= -15.135 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.746 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.9048 / (uA) M1 MCP current OM1MCPV = -2252.97 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.489621 / (A) M1 +5V current OM1P5V = 5.19902 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.0075 / (dgC) M1 MCE temp OM1LVPST= 40.8915 / (dgC) M1 LVPS temp OM1HVPST= 40.4031 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727717 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0276923 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.474237 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.7169 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 37.7169 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.57817 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 30.439 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.0601 / CB clock X pwb temp OCBCLKA2= 29.8122 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.0911 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0390036 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.0244726 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.92803 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.92334 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94263 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93307 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.95236 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96712 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00251285 / (V) CB state machine 1 +5V OCBSM2PV= 5.13002 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.0367 / CEB timing pwb temp OCLM5V = -5.1691 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00498975 / Calibration lamps -5V current OCLP30V = 29.5512 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00460794 / Calibration lamps +30V current OCLP5V = 5.21759 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1419800 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00817581 / (A) Slit Wheel motor current OSWMVEL = -0.0198742 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24429 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 1 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 1 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1536 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 34 / Control section slit position OCSDQEXJ= 1613 / Control section data queue extract OCSDQINJ= 1613 / Control section data queue insert OCSXQEXJ= 48 / Control section Expos Que Extract OCSXQINJ= 50 / Control section Expos Que Insert OCSOBSQ = -29754 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 326 / Control section dump pointer OCSFILLJ= 326 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 197 / Control section exposure counter OTAFLUXQ= 36210 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -17 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªD3V01BF ÅÅŒšžÐõ‹zI ó"ʦ¼p½pÄ`Å0 ÃßÌÌ«P±0Â@²p€°°ª0½p à`À°ÍàÈðÈðÈàÔð¢`Ö ¡€¿àþ © ÁpÁ@àÉàѠѹ0н`µ¸ð¸ðáÐáðͰÎÐÍÐÍ€¦`´€¥°³ §Ãp¨0Ÿ0©€¤`§`Ÿpß`àÀ¿ß°å`ÅÐ@  ( +þ  ˜»3Z"d «fÕQ Ä Í ÐÆ÷ùò +7b Ø ™Ò »½17 Õ^–G Ã Ì ÑÅõùðùÔÀÃ^À^ð__@ƒê°%`ÂÀÚðï€%PÁPÚàÔàÀ‡ ‚À pÁßp ÐÁß`LÐT ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€€™°~`h ~€h@ f@€f@~Àh@~@h@f@eà~@h@ f €pÂ`~@h~@h`Àf€Àg@€À¦à€ ¦À|`>€ ß`0À0ªcÀ°€ b9 +³rŠžþñ$_ml``€„ðñ"MM02 Æ`ƒFF¥€ÌàßÅrÿïI‚__–d=ÿ"ʦ ¼p½pÄ`Å0 ÃßÌÌ«P±0Â@²p€°°ª0½pðݰ¾0ÍàÈàÈàÈàÒР0Ó  ¿Ðþ © Á`ÁPàÉàѠр¹0нpµ€¸ð¸ðáá Í°ÎÀÍÀÍp© µÐ¦±°¨€Æ@«`¡ §¤¨€¡Ð›àÀß à`¿Pàpð¿P#  ( +þ  ˜¼3X"d ¬f×Q Ä Í ÐÆ÷ùó +7b Ø ™Ò ¼½18 Õ^–G Ã Ì ÑÅõùðùÔÀÃ^À^ð^ð_Pƒê°%@ÁÐÚàï€%@ÁÐÚÐÔàÀ‡ ‚°  Áàßp  Áàß`LÐT ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™à~`h@~@h``f@€f@~`h@~@h`@f`eà~@h@`f €ÁÐ~@h`~@h``f€Àfà€À§€À¦à|p? à }`Ä€€€ª“À°€ b9 +³rŠžþñ$_ml ŸØ€„ðñ"MM02 Æ`ƒFF¥€Ìà߯rÿïF‚__–d=ÿ`"m°3Ç挎 hP ýx+ädUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/test_tastis.py b/lib/stistools/tests/test_tastis.py new file mode 100644 index 00000000..630f3f4a --- /dev/null +++ b/lib/stistools/tests/test_tastis.py @@ -0,0 +1,467 @@ +import pytest +import shutil +import os + +from astropy.io import fits + +from ..tastis import tastis + +filelist = ['data/tastis/oc7w11viq_raw.fits', + 'data/tastis/ocmv0lw6q_raw.fits', + 'data/tastis/octka7jeq_raw.fits', + 'data/tastis/octr11h4q_raw.fits', + 'data/tastis/octr11hrq_raw.fits', + 'data/tastis/ocu252cmq_raw.fits', + 'data/tastis/ocui04xeq_raw.fits', + 'data/tastis/ocyw05afq_raw.fits'] + + +# Need to test keyword ACQSTAT update +def setup_module(): + for filename in filelist: + shutil.copy(filename, filename.replace("raw.fits", "copy_raw.fits")) + shutil.copy(filename.replace("raw.fits", "spt.fits"), + filename.replace("raw.fits", "copy_spt.fits")) + + +def teardown_module(): + for filename in filelist: + os.remove(filename.replace("raw.fits", "copy_raw.fits")) + os.remove(filename.replace("raw.fits", "copy_spt.fits")) + + +def test_header_update1(): + tastis('data/tastis/oc7w11viq_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/oc7w11viq_copy_raw.fits') + assert head['ACQP_END'] == 'OK_END' + assert head['ACQP_FLX'] == 'LO_FLUX' + assert head['ACQP_RAT'] == 'HIRATIO' + assert head['ACQP_SAT'] == 'UNSAT' + assert head['ACQSTAT'] == 'FAILED' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update2(): + tastis('data/tastis/octka7jeq_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/octka7jeq_copy_raw.fits') + assert head['ACQP_END'] == 'OK_END' + assert head['ACQP_FLX'] == 'OK_FLUX' + assert head['ACQP_RAT'] == 'LORATIO' + assert head['ACQP_SAT'] == 'UNSAT' + assert head['ACQSTAT'] == 'FAILED' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update3(): + tastis('data/tastis/octr11hrq_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/octr11hrq_copy_raw.fits') + assert head['ACQP_END'] == 'HI_END' + assert head['ACQP_FLX'] == 'LO_FLUX' + assert head['ACQP_RAT'] == 'HIRATIO' + assert head['ACQP_SAT'] == 'UNSAT' + assert head['ACQSTAT'] == 'FAILED' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update4(): + tastis('data/tastis/ocui04xeq_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/ocui04xeq_copy_raw.fits') + assert head['ACQP_END'] == 'HI_END' + assert head['ACQP_FLX'] == 'OK_FLUX' + assert head['ACQP_RAT'] == 'LORATIO' + assert head['ACQP_SAT'] == 'UNSAT' + assert head['ACQSTAT'] == 'FAILED' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update5(): + tastis('data/tastis/ocyw05afq_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/ocyw05afq_copy_raw.fits') + assert head['ACQP_END'] == 'OK_END' + assert head['ACQP_FLX'] == 'OK_FLUX' + assert head['ACQP_RAT'] == 'OKRATIO' + assert head['ACQP_SAT'] == 'UNSAT' + assert head['ACQSTAT'] == 'OK' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update6(): + tastis('data/tastis/ocmv0lw6q_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/ocmv0lw6q_copy_raw.fits') + assert head['ACQSTAT'] == 'OK' + assert head['ACQ_LAMP'] == 'OK_LAMP' + assert head['ACQ_RAT'] == 'OKRATIO' + assert head['ACQ_SAT'] == 'UNSAT' + assert head['ACQ_SLEW'] == 'OK_SLEW' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update7(): + tastis('data/tastis/octr11h4q_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/octr11h4q_copy_raw.fits') + assert head['ACQSTAT'] == 'FAILED' + assert head['ACQ_LAMP'] == 'OK_LAMP' + assert head['ACQ_RAT'] == 'OKRATIO' + assert head['ACQ_SAT'] == 'UNSAT' + assert head['ACQ_SLEW'] == 'BIGSLEW' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_header_update8(): + tastis('data/tastis/ocu252cmq_copy_raw.fits', update=True) + head = fits.getheader('data/tastis/ocu252cmq_copy_raw.fits') + assert head['ACQSTAT'] == 'FAILED' + assert head['ACQ_LAMP'] == 'OK_LAMP' + assert head['ACQ_RAT'] == 'LORATIO' + assert head['ACQ_SAT'] == 'UNSAT' + assert head['ACQ_SLEW'] == 'OK_SLEW' + assert head['DATAFLAG'] == 'TDF_Up' + assert head['GROUPS'] is False + + +def test_tastis_ouput_f25nd3(capsys): + tastis('data/tastis/ocmv0lw6q_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "ocmv0lw6q HST/STIS MIRVIS F25ND3 ACQ/POINT\n" \ + "prop: 13760 visit: 0L line: 1 target: CD-59D3300\n" \ + "obs date, time: 2016-09-29 23:43:50 exposure time: 1.10\n" \ + "dom GS/FGS: S4B0000993F2 sub-dom GS/FGS: S4B0000953F1\n" \ + "ACQ params: bias sub: 1510 checkbox: 3 method: FLUX CENTROID\n" \ + "subarray (axis1,axis2): size=(100,100) corner=(487,466)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Coarse locate phase: Target flux in max checkbox (DN): 1560\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 534.2 507.0 48.2 42.0\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -1.5 -9.0 -0.079 -0.457 -0.379 0.268\n" \ + "-------------------------------------------------------------------------------\n" \ + "Fine locate phase: Target flux in max checkbox (DN): 1559\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 534.2 516.8 48.2 51.8\n" \ + "Ref ap location: 537.5 517.0 19.5 17.0\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -2.1 -0.2 -0.104 -0.010 -0.081 -0.067\n" \ + "-------------------------------------------------------------------------------\n" \ + "Total est. slew: -3.6 -9.2 -0.183 -0.467 -0.460 0.201\n" \ + "-------------------------------------------------------------------------------\n" \ + "Your ACQ appears to have succeeded, as the fluxes in the coarse\n" \ + "and fine stages agree within 25% and the fine slews were less than\n" \ + "4 pixels as expected\n" \ + "\n" \ + "===============================================================================\n" + + +def test_tastis_zero_divide(): + with pytest.raises(ZeroDivisionError): + tastis('data/tastis/o4er06llq_raw.fits') + + +def test_tastis_output_toobright(capsys): + tastis('data/tastis/oc7w11viq_raw.fits') + captured = capsys.readouterr() + print(captured.out) + assert captured.out == "===============================================================================\n" \ + "oc7w11viq HST/STIS G430L 0.3X0.05ND ACQ/PEAK-UP\n" \ + "prop: 13465 visit: 11 line: 3 target: HD128621-2\n" \ + "obs date, time: 2014-07-24 22:05:06 exposure time: 0.10\n" \ + "dom GS/FGS: S7QX000330F1 sub-dom GS/FGS: S7QX000694F2\n" \ + "ACQ params: bias sub: 1510 method: RETURN-TO-BRIGHTEST\n" \ + "subarray (axis1,axis2): size=(1022,32) corner=(25,500)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Scan type: LINEARAXIS2 Step size (mas): 250\n" \ + "\n" \ + " [210 753 0]\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: 0.0 -0.1 0.000 -0.005 -0.004 0.004\n" \ + "Flux in post-slew confirmation image (751752) - Pedestal (748587) = 3165 DN\n" \ + "-------------------------------------------------------------------------------\n" \ + "The flux in the confirmation image is 320% greater than the maximum flux\n" \ + "in the ACQ/PEAK scan. An excess greater than 100% indicates\n" \ + "problems in the ACQ/PEAK.\n" \ + "\n" \ + "The flux in the confirmation image is 16% of the recommended minimum\n" \ + "of 20000 DN for a dispersed-light ACQ/PEAK. The signal-to-noise in\n" \ + "the ACQ/PEAK may be inadequate for an accurate centering.\n" \ + "\n" \ + "===============================================================================\n" + + +def test_tastis_output_geometric_center(capsys): + tastis('data/tastis/ocoa03q2q_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "ocoa03q2q HST/STIS MIRVIS F28X50LP ACQ/DIFFUSE\n" \ + "prop: 13693 visit: 03 line: 1 target: CERES-2\n" \ + "obs date, time: 2015-08-16 16:34:18 exposure time: 1.10\n" \ + "dom GS/FGS: SCHN000911F2 sub-dom GS/FGS: SCHK000675F1\n" \ + "ACQ params: bias sub: 1510 checkbox: 3 method: GEOMETRIC-CENTER\n" \ + "subarray (axis1,axis2): size=(104,104) corner=(485,464)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Coarse locate phase: Target flux in max checkbox (DN): 87956\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 528.0 515.0 44.0 52.0\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -7.7 -1.0 -0.393 -0.051 -0.314 -0.242\n" \ + "-------------------------------------------------------------------------------\n" \ + "Fine locate phase: Target flux in max checkbox (DN): 87849\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 534.0 517.0 50.0 54.0\n" \ + "Ref ap location: 537.3 515.4 21.3 17.4\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -2.0 1.6 -0.103 0.081 -0.015 -0.130\n" \ + "-------------------------------------------------------------------------------\n" \ + "Total est. slew: -9.8 0.6 -0.496 0.030 -0.329 -0.372\n" \ + "-------------------------------------------------------------------------------\n" \ + "Your ACQ appears to have succeeded, as the fluxes in the coarse\n" \ + "and fine stages agree within 25% and the fine slews were less than\n" \ + "4 pixels as expected\n" \ + "\n" \ + "===============================================================================\n" + + +def test_tastis_output_lowflux(capsys): + tastis('data/tastis/octka7jeq_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "octka7jeq HST/STIS G430L 0.2X0.09 ACQ/PEAK-UP\n" \ + "prop: 14161 visit: A7 line: 2 target: HD-84937\n" \ + "obs date, time: 2016-05-09 23:15:29 exposure time: 0.20\n" \ + "dom GS/FGS: N6U6000023F2 sub-dom GS/FGS: N6U7000178F1\n" \ + "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ + "subarray (axis1,axis2): size=(1022,32) corner=(26,500)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Scan type: LINEARAXIS1 Step size (mas): 69\n" \ + "\n" \ + " [ 0 16309 83580 21884 8029]\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: 0.2 0.0 0.010 0.000 0.007 0.007\n" \ + "Flux in post-slew confirmation image (852814) - Pedestal (791686) = 61128 DN\n" \ + "-------------------------------------------------------------------------------\n" \ + "The flux in the confirmation image is only 73% of the maximum flux\n" \ + "in the ACQ/PEAK scan. Percentages below 80% often indicate problems\n" \ + "in the ACQ/PEAK.\n" \ + "\n" \ + "===============================================================================\n" + + +def test_tastis_output_slewerr(capsys): + tastis('data/tastis/octr11h4q_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "octr11h4q HST/STIS MIRVIS F25ND5 ACQ/POINT\n" \ + "prop: 14341 visit: 11 line: 1 target: HD128620\n" \ + "obs date, time: 2016-08-28 19:57:49 exposure time: 0.30\n" \ + "dom GS/FGS: S7QX000303F1 sub-dom GS/FGS: S7QX000751F2\n" \ + "ACQ params: bias sub: 1510 checkbox: 3 method: FLUX CENTROID\n" \ + "subarray (axis1,axis2): size=(100,100) corner=(487,466)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Coarse locate phase: Target flux in max checkbox (DN): 278\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 557.0 473.0 71.0 8.0\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: 21.3 -43.0 1.080 -2.184 -0.781 2.308\n" \ + "-------------------------------------------------------------------------------\n" \ + "Fine locate phase: Target flux in max checkbox (DN): 280\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 547.0 564.0 61.0 99.0\n" \ + "Ref ap location: 537.6 517.3 19.6 17.3\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: 10.6 46.7 0.541 2.372 2.060 -1.295\n" \ + "-------------------------------------------------------------------------------\n" \ + "Total est. slew: 31.9 3.7 1.621 0.188 1.279 1.013\n" \ + "-------------------------------------------------------------------------------\n" \ + "The fine slew (to center the target in the reference aperture) is larger\n" \ + "than 4 pixels. This may indicate a problem with your acquisition.\n" \ + "\n" \ + "===============================================================================\n" + + +def test_tastis_output_highflux(capsys): + tastis('data/tastis/octr11hrq_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "octr11hrq HST/STIS G430M 31X0.05NDA ACQ/PEAK-UP\n" \ + "prop: 14341 visit: 11 line: 9 target: HD128621-2\n" \ + "obs date, time: 2016-08-28 22:33:14 exposure time: 0.10\n" \ + "dom GS/FGS: S7QX000303F1 sub-dom GS/FGS: S7QX000751F2\n" \ + "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ + "subarray (axis1,axis2): size=(1022,32) corner=(25,500)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Scan type: LINEARAXIS1 Step size (mas): 39\n" \ + "\n" \ + " [5478 0 798 3264 4796 1923 4876]\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: 0.2 0.0 0.010 0.000 0.007 0.007\n" \ + "Flux in post-slew confirmation image (882661) - Pedestal (871184) = 11477 DN\n" \ + "-------------------------------------------------------------------------------\n" \ + "The flux in the confirmation image is 110% greater than the maximum flux\n" \ + "in the ACQ/PEAK scan. An excess greater than 100% indicates\n" \ + "problems in the ACQ/PEAK.\n" \ + "\n" \ + "The flux in the confirmation image is 57% of the recommended minimum\n" \ + "of 20000 DN for a dispersed-light ACQ/PEAK. The signal-to-noise in\n" \ + "the ACQ/PEAK may be inadequate for an accurate centering.\n" \ + "\n" \ + "The maximum flux in the sequence occurred at one end.\n" \ + "This may indicate that the target was beyond that end\n" \ + "or that a neighboring object affected the acquisition.\n" \ + "===============================================================================\n" + + +def test_tastis_output_diffflux(capsys): + tastis('data/tastis/ocu252cmq_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "ocu252cmq HST/STIS MIRVIS F28X50OII ACQ/POINT\n" \ + "prop: 14143 visit: 52 line: 1 target: BD+41-3306\n" \ + "obs date, time: 2016-06-06 08:30:05 exposure time: 2.10\n" \ + "dom GS/FGS: N2JU001340F2 sub-dom GS/FGS: N2K1001229F1\n" \ + "ACQ params: bias sub: 1510 checkbox: 3 method: FLUX CENTROID\n" \ + "subarray (axis1,axis2): size=(100,100) corner=(487,466)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Coarse locate phase: Target flux in max checkbox (DN): 1442\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 527.8 513.1 41.8 48.1\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -7.9 -2.9 -0.400 -0.147 -0.387 -0.179\n" \ + "-------------------------------------------------------------------------------\n" \ + "Fine locate phase: Target flux in max checkbox (DN): 611\n" \ + "\n" \ + " global local\n" \ + " axis1 axis2 axis1 axis2\n" \ + "Target location: 534.1 516.1 48.1 51.1\n" \ + "Ref ap location: 537.5 516.5 19.5 16.5\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -2.1 -0.4 -0.106 -0.020 -0.089 -0.061\n" \ + "-------------------------------------------------------------------------------\n" \ + "Total est. slew: -10.0 -3.3 -0.506 -0.168 -0.477 -0.239\n" \ + "-------------------------------------------------------------------------------\n" \ + "The fluxes in the maximum checkbox in the fine and coarse stages differ\n" \ + "by more than 25%. This may indicate a problem with your acquisition.\n" \ + "\n" \ + "===============================================================================\n" + + +def test_tastis_output_unbalanced_flux(capsys): + tastis('data/tastis/ocui04xeq_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "ocui04xeq HST/STIS MIRVIS 52X0.1E1 ACQ/PEAK-UP\n" \ + "prop: 14086 visit: 04 line: 2 target: M62-VLA1\n" \ + "obs date, time: 2016-07-22 06:10:30 exposure time: 20.00\n" \ + "dom GS/FGS: S8ES000684F2 sub-dom GS/FGS: S8ES000207F1\n" \ + "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ + "subarray (axis1,axis2): size=(32,32) corner=(524,883)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Scan type: LINEARAXIS1 Step size (mas): 75\n" \ + "\n" \ + " [17007 5446 1717 993 0]\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -2.6 0.0 -0.132 0.000 -0.093 -0.093\n" \ + "Flux in post-slew confirmation image (56705) - Pedestal (43530) = 13175 DN\n" \ + "-------------------------------------------------------------------------------\n" \ + "The flux in the confirmation image is only 77% of the maximum flux\n" \ + "in the ACQ/PEAK scan. Percentages below 80% often indicate problems\n" \ + "in the ACQ/PEAK.\n" \ + "\n" \ + "The maximum flux in the sequence occurred at one end.\n" \ + "This may indicate that the target was beyond that end\n" \ + "or that a neighboring object affected the acquisition.\n" \ + "===============================================================================\n" + + + +def test_tastis_output_linearaxis2(capsys): + tastis('data/tastis/ocyw05afq_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "ocyw05afq HST/STIS G430L 0.2X0.09 ACQ/PEAK-UP\n" \ + "prop: 14084 visit: 05 line: 2 target: BD-11D916\n" \ + "obs date, time: 2016-09-22 08:33:17 exposure time: 1.80\n" \ + "dom GS/FGS: S2AE000156F1 sub-dom GS/FGS: S2AE000086F2\n" \ + "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ + "subarray (axis1,axis2): size=(1022,32) corner=(26,500)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Scan type: LINEARAXIS2 Step size (mas): 150\n" \ + "\n" \ + " [ 5139 67252 0]\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: 0.0 0.0 0.000 0.000 0.000 0.000\n" \ + "Flux in post-slew confirmation image (907707) - Pedestal (838752) = 68955 DN\n" \ + "-------------------------------------------------------------------------------\n" \ + "The confirmation image has a flux between 0.8 and 2.0 times the\n" \ + "maximum flux in the peakup, which is typical of a successful ACQ/PEAK.\n" \ + "===============================================================================\n" + + +def test_tastis_output_linearaxis1(capsys): + tastis('data/tastis/od3v01bfq_raw.fits') + captured = capsys.readouterr() + assert captured.out == "===============================================================================\n" \ + "od3v01bfq HST/STIS MIRVIS 52X0.05 ACQ/PEAK-UP\n" \ + "prop: 14493 visit: 01 line: 5 target: 2MASS-J23062928-0502285\n" \ + "obs date, time: 2016-09-26 04:17:57 exposure time: 10.00\n" \ + "dom GS/FGS: SB5F000135F1 sub-dom GS/FGS: SB5F000156F2\n" \ + "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ + "subarray (axis1,axis2): size=(32,32) corner=(521,500)\n" \ + "-------------------------------------------------------------------------------\n" \ + "Scan type: LINEARAXIS1 Step size (mas): 26\n" \ + "\n" \ + " [ 0 848 3069 3432 1912 555 228]\n" \ + "\n" \ + " axis1 axis2 axis1 axis2 V2 V3\n" \ + " (pixels) (arcsec) (arcsec)\n" \ + "Estimated slew: -0.2 0.0 -0.010 0.000 -0.007 -0.007\n" \ + "Flux in post-slew confirmation image (40210) - Pedestal (35982) = 4228 DN\n" \ + "-------------------------------------------------------------------------------\n" \ + "The confirmation image has a flux between 0.8 and 2.0 times the\n" \ + "maximum flux in the peakup, which is typical of a successful ACQ/PEAK.\n" \ + "===============================================================================\n" diff --git a/stistools/__init__.py b/stistools/__init__.py old mode 100644 new mode 100755 index 52d31221..31c430a9 --- a/stistools/__init__.py +++ b/stistools/__init__.py @@ -10,6 +10,7 @@ from . import mktrace from . import sshift from . import stisnoise +from . import tastis from . import wx2d # These lines allow TEAL to print out the names of TEAL-enabled tasks From 43dd17f70fe00b270362117cb386611de8f43ccb Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Fri, 15 Jun 2018 12:16:15 -0400 Subject: [PATCH 2/8] doc fixes for tastis --- doc/source/index.rst | 1 + doc/source/tastis.rst | 11 +++++++++++ lib/stistools/tastis.py | 22 +++------------------- 3 files changed, 15 insertions(+), 19 deletions(-) create mode 100644 doc/source/tastis.rst diff --git a/doc/source/index.rst b/doc/source/index.rst index a1daa144..937faecd 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -25,6 +25,7 @@ Contents: radialvel ocrreject r_util + tastis gettable Indices and tables diff --git a/doc/source/tastis.rst b/doc/source/tastis.rst new file mode 100644 index 00000000..f341d22f --- /dev/null +++ b/doc/source/tastis.rst @@ -0,0 +1,11 @@ +.. _tastis: + +************************** +tastis +************************** + +.. currentmodule:: stistools.tastis + +.. automodule:: stistools.tastis + :members: + :undoc-members: \ No newline at end of file diff --git a/lib/stistools/tastis.py b/lib/stistools/tastis.py index 3421bb86..ada1f98f 100755 --- a/lib/stistools/tastis.py +++ b/lib/stistools/tastis.py @@ -2,13 +2,12 @@ from math import modf, sqrt import os -import sys import argparse from astropy.io import fits import numpy as np -""" +__doc__ = """ Analyze STIS target acquisition images. :func:`tastis` will print general information about each input target acquisition image, and will analyze both types of STIS target acquisitions: ACQs and ACQ/PEAKs @@ -69,20 +68,6 @@ SINTHETA = 0.70711 -def prtOptions(): - """Print a list of command-line options and arguments.""" - - print("The command-line options are:") - print(" --version (print the version number and exit)") - print(" -r (print the full version string and exit)") - print(" -v (verbose)") - print(" -u update ") - print("") - print("Following the options, list one or more input files") - print(" (enclosed in quotes if more than one file name is specified") - print(" and/or if wildcards are used) and one output file name.") - - def tastis(raw_filename, update=False): """ Analyze STIS target acquisition images. @@ -425,13 +410,13 @@ def _calculate_slews(keywords): # Slew calculations for ACQ/PEAKs. if keywords['search'] == "LINEARAXIS2": finalx = int(keywords['box_step']/2) * \ - keywords['peakstep']/(PLATESCALE*1000.0) + keywords['peakstep']/(PLATESCALE*1000.0) finaly = 0.0 elif keywords['search'] == "LINEARAXIS1": finalx = 0.0 finaly = int(keywords['box_step']/2) * \ - keywords['peakstep']/(PLATESCALE*1000.0) + keywords['peakstep']/(PLATESCALE*1000.0) elif keywords['search'] == 'SPIRAL': x, finaly = modf(sqrt(keywords['box_step']) / 2) @@ -444,7 +429,6 @@ def _calculate_slews(keywords): keywords['a1total_pix'] = keywords['otaslwa1']/10.0 + finaly keywords['a2total_pix'] = keywords['otaslwa2']/10.0 + finalx - if keywords['search'] == "SPIRAL": if abs(keywords['a2total_pix']) < 0.05: keywords['a2total_pix'] = 0.0 From 228560c3f38b4897d4d19b806101591e5725c084 Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Fri, 20 Jul 2018 09:42:51 -0400 Subject: [PATCH 3/8] odelaytime, in progress --- lib/stistools/odelaytime.py | 363 ++++++++++++++++++++++++++++++++++++ 1 file changed, 363 insertions(+) create mode 100644 lib/stistools/odelaytime.py diff --git a/lib/stistools/odelaytime.py b/lib/stistools/odelaytime.py new file mode 100644 index 00000000..e22a81c3 --- /dev/null +++ b/lib/stistools/odelaytime.py @@ -0,0 +1,363 @@ +#! /usr/bin/env python + +from astropy.io import fits +from astropy.table import Table + +# Lots of notes in the original file + +''' +Compute the times of observation relative to the solar-system barycenter +of a distant object (outside the solar system). It is assumed that +the set of observations covers a short enough time that the object does +not move appreciably during the observations. Note that a one-arcsecond +error in the position of the object can result in a time-delay error +of ~2.4 millisec. It is also assumed that the set of observations covers +a short enough time interval that the relativistic correction, if required, +remains constant during the observations. + +# Date Author Description +# ---- ------ ----------- +# 10-Nov-1984 C. D. Biemesderfer Original module +# 18-Apr-1990 J.-C. Hsu rewrite in SPP +# 19-Jun-1992 J.-C. Hsu read RA_TARG and DEC_TARG from header +# 19-Aug-1997 J.-C. Hsu modify for STIS data +# 23-Aug-2000 Phil Hodge remove out_col & add verbose arguments; +# modify times in-place; update GTI table and +# header keywords as well; change INTERVAL +# from 1. to 0.1; add DELAYCOR and HISTORY +# 10-Jun-2003 Phil Hodge modify to work with SCI extensions; +# change calling sequence (ephem table names +# instead of table pointers) + + + +pointer fin # file template pointer +int nfin # number of files in the input template +double parallax # parallax of the target (in arc sec) +char earth_ephem[SZ_FNAME] # earth ephemeris table name +char obs_ephem[SZ_FNAME] # list of observer ephemeris table names +char in_col[SZ_LINE] # time column name +bool verbose # print timing info? + + +pointer fin # i: file template pointer +int nfin # i: number of files in the input template +double parallax # i: parallax of the target (in arc sec) +char earth_ephem[ARB] # i: name of the earth_ephem table +char obs_ephem[ARB] # i: names of the obs_ephem tables +char in_col[ARB] # i: time column name +#-- +pointer sp +pointer history # for constructing a history record +pointer extname # from first extension, for checking file type +double ra, dec # RA and Dec of the target at J2000 (in deg.) +double objvec[3] # unit geocentric state vector of the target +double mjd1, mjd2 # MJD of the observation start/end time +double epoch # MJD of an event +double delta_sec # correction (sec) to be added to TIME col +double t0_delay # correction at TEXPSTRT +char ifile[SZ_FNAME] +char ifilen[SZ_FNAME] +int nchar, i, j, k +pointer time_e, x_e, y_e, z_e, time_o, x_o, y_o, z_o +pointer tp # pointer of the input table +pointer cptr # for the TIME column in EVENTS tables +pointer cp1, cp2 # for START and STOP columns in GTI table +int nrows # number of rows in a table +int nextend # keyword from primary header +int nevents_tab # number of EVENTS tables (one less than NEXTEND, or 0) +int nsci_ext # number of x1d or image extensions (0 or NEXTEND) +int npts_earth, npts_obs +double tm # a time from the TIME column +double tm_prev # the last tm for which all_delay was called +char text[SZ_TIME] # for printing timing info +char delaycorr[SZ_FNAME] +int frac # for printing percentage done +int filetype # events table, x1d table, image set +bool modified # true if an x1d or image extension was updated + + + +''' + +NLAN_EARTH = 10 +NLAN_OBS = 10 +INTERVAL = 0.1 # in seconds + +# File types, probably don't need this... +EVENTS_TABLE = 1 + +SECPERDAY = 86400 #D0 # number of sec in a day +MINPERDAY = 1440 #D0 # number of min in a day +HRPERDAY = 24 #D0 # number of hours in a day + +LYPERPC = 3.261633 #D0 # light years per parsec +KMPERPC = 3.085678 #D13 # kilometers per parsec +AUPERPC = 206264.8062470964 #D0 # how many AU in one parsec +KMPERAU = KMPERPC/AUPERPC +CLIGHT = 499.00479 #D0 # light travel time (in sec) of 1 AU + +# might not need these +EARTH_EPHEMERIS = 1 +OBS_EPHEMERIS = 2 + +JD_TO_MJD = 2400000.5 #d0 # subtract from JD to get MJD + + + +def odelaytime(table_names, earth_ephem, obs_ephem, distance, dist_unit, + in_col, verbose=False): + + parallax = distance + + # convert distance to parsec first + if dist_unit == "au": + parallax /= AUPERPC + elif dist_unit == "ly": + parallax /= LYPERPC + elif dist_unit == "km": + parallax /= KMPERPC + else: + if dist_unit != "pc": + raise ValueError("illegal distance unit: {}".format(dist_unit)) + + # check that distance is non-zero (pc) + if parallax <= 0: + raise ValueError("non-postive distance: {}".format(parallax)) + + # I don't think I need this part + # call smark(sp) + # call salloc(history, SZ_FNAME, TY_CHAR) + # call salloc(extname, SZ_FNAME, TY_CHAR) + + + + + +# odelay_do +# call odelay_do (fin, nfin, parallax, earth_ephem, obs_ephem, +# in_col, verbose) + +def get_ephem(ephem_tables, eph_type): + ''' + read an ephemeris of state vectors + # + # Description: + # ------------ + # Read state vectors from one or more input tables. The times and + # rectangular coordinates of the state vectors will be read from the + # input table from columns "TIME" (or "JD"), "X", "Y", and "Z". + # The times will be converted + # to units of Modified Julian Date, and the positions will be converted + # to astronomical units. + # + # The number of points npts will be zero if the list of input tables + # is empty. A table is required for the earth ephemeris, but none is + # required for the observer ephemeris. + + Note: I'm assuming the desired data is all in the + first extension data. + # + # Input table column names + # ------------------------ + # JD or TIME times corresponding to x,y,z: + # in earth_ephem tables: + # JD = Julian Day Number + # in obs_ephem tables: + # TIME = offset of time from FIRSTMJD + # X, Y, Z state vector components + # + # Input table parameters + # ---------------------- + # "FIRSTMJD" MJD of the first row in the table (only for obs_ephem) + # + # Date Author Description + # ---- ------ ----------- + # 11-Mar-1990 J.-C. Hsu design and coding + # 10-Jun-2003 Phil Hodge allow multiple tables; allocate memory here; + # get the array of times from a table column + # 15-Jan-2007 Phil Hodge if keyword firstmjd is not found, read + # ephmstrt from primary header instead + #------------------------------------------------------------------------------ + :param ephem_table: + :return: + ''' + + # Open the file name template string for the list of ephemeris tables. + npts = 0 + time = 0 + x, y, z = 0, 0, 0 + + if len(ephem_tables) == 0: + return npts, time, x, y, z + + # Count the total number of rows in all the input tables. + # Not sure if I need this + #nrows = tbpsta (tp, TBL_NROWS) + #npts = npts + nrows + + if npts == 0: + raise ValueError("The following input tables are empty: " + "{}".format(ephem_tables)) + + # Now loop over the list of input tables and read the data. + k = 0 + previous_mjd = 0 + + for tab_file in ephem_tables: + # open table file + #tp = tbtopn (table, READ_ONLY, 0) + current_tab = Table.read(tab_file, hdu=1) + + if eph_type == EARTH_EPHEMERIS: + + #pull "JD" column? + # call tbcfnd1 (tp, "JD", cp[1]) + new_time = current_tab['JD'] + + # convert Julian Day Number to MJD + new_time -= JD_TO_MJD + + else: + #pull "TIME", + # call tbcfnd1 (tp, "TIME", cp[1]) + new_time = current_tab['TIME'] + + # scale the times, and add the zero point + new_time = firstmjd + timescale * new_time + + + if time == 0: + time = new_time + else: + time.insert(-1, new_time) + + # pull "X", "Y", and "Z" columns + #call tbcfnd1 (tp, "X", cp[2]) + #call tbcfnd1 (tp, "Y", cp[3]) + #call tbcfnd1 (tp, "Z", cp[4]) + if x == 0: + x = current_tab['X'] + y = current_tab['X'] + z = current_tab['Z'] + else: + x.insert(-1, current_tab['X']) + y.insert(-1, current_tab['Y']) + z.insert(-1, current_tab['Z']) + + if eph_type == OBS_EPHEMERIS: + + # read header parameter, the zero-point epoch + firstmjd = g_firstmjd(tab_file) + + if firstmjd < previous_mjd: + raise ValueError("The obs_ephem tables are out of order;\n " + "use the FIRSTMJD table header keyword to " + "determine the correct order.\n Times must " + "be monotonically increasing") + + previous_mjd = firstmjd + + # this call pulls the units of said column into the + # gridunit variable + #call tbcigt (cp[1], TBL_COL_UNITS, gridunit, SZ_COLUNITS) + gridunit = current_tab['TIME'].unit.to_string().upper() + + # get the scale factor for converting the times to days + if gridunit == "DAY": + timescale = 1 + elif gridunit == "HR" or gridunit == "HOUR": + timescale = 1 / HRPERDAY + elif gridunit[:2] == "MIN": + timescale = 1 / MINPERDAY + elif gridunit[1] == 'S': + timescale = 1 / SECPERDAY + else: + raise ValueError("unrecognized TIME unit in ephemeris " + "table:{}".format(gridunit)) + + + # read the data (already did this) + # tbcgtd - Read values for one column from a range of rows. + # time (or mjd) = cp[1] = Memd[time+k] + # x = cp[2] = Memd[x+k] + # y = cp[3] = Memd[y+k] + # z = cp[4] = Memd[z+k] + + # convert the state vectors to AU + for col in (x,y,z): + colunit = col.unit.to_string().upper() + if colunit == "AU": + pass + elif colunit == "KM": + #call adivkd (Memd[x+k], KMPERAU, Memd[x+k], nrows) + # ADIVK -- Divide a vector by a constant + col = col/KMPERAU + else: + raise ValueError("unrecognized {} unit in ephemeris table: " + "{}".format(col.name, col.dtype)) + + # end of loop over files + + if len(ephem_tables) > 1: + if [time][0] > time[1]: + raise ValueError("times in {} must be monotonically " + "increasing.".format(ephem_tables)) + + # Remove any overlapping regions. + # loop through time column, if you hit a non-increasing value, keep + # deleting rows until you do hit a larger number + + # Putting all columns into a new table now, so it's easier to + # delete rows all at once. + final_table = Table() + + + + +def g_firstmjd(tab_file): + ''' + g_firstmjd -- read firstmjd keyword, or use ephmstrt + + Normally the FIRSTMJD keyword will be found in the table of the ORB table. + For data taken shortly after the ORB tables began to be written as a FITS + table (rather than as VAX binary-format ORX files), however, FIRSTMJD was + not yet being written into the table header. For these files, we will + read the EPHMSTRT keyword from the primary header and convert that string + from SMS format to MJD. + ''' + + tab_hdulist = fits.open(tab_file) + if 'FIRSTMJD' in tab_hdulist[1].header: + firstmjd = tab_hdulist[1].header['FIRSTMJD'] + + elif 'EPHMSTRT' in tab_hdulist[0].header: + # Interpret ephmstrt: year, day of year, hour, minute, second + ephmstrt = tab_hdulist[0].header["EPHMSTRT"] + # ephmstrt is apparently stored as a string.... so need to + # convert to an integer + # year.doy:hour:min:sec + period = ephmstrt.find() + year = int(ephmstrt[:period]) + rest = ephmstrt[period+1:].split(":") + doy = int(rest[0]) + hour = int(rest[1]) + min = int(rest[2]) + sec = int(rest[3]) + day = doy + hour/24. + min/1400. + sec/86400. + + # Evaluate this expression with month = 1 because here 'day' is + # the day of the year rather than day of the month. + # reference: Pulkinnen & VanFlandern, ApJ Suppl. + month = 1 + k = 275 * month / 9 - 7 * (year + (month + 9) / 12) / 4 - \ + 3 * ((year + (month - 9) / 7) / 100 + 1) / 4 + + firstmjd = 367. * year + k + day - 678972. + + + else: + raise ValueError("Neither FIRSTMJD (ext 1) nor EPHMSTRT (ext 0) were " + "found in headers of file: {}".format(tab_file)) + + return firstmjd From 15e6b7a822d4d3cda6905cfe9d977d21f0e172af Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Tue, 28 Aug 2018 11:36:18 -0400 Subject: [PATCH 4/8] squash --- lib/stistools/odelaytime.py | 39 +++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/lib/stistools/odelaytime.py b/lib/stistools/odelaytime.py index e22a81c3..59de3933 100644 --- a/lib/stistools/odelaytime.py +++ b/lib/stistools/odelaytime.py @@ -132,14 +132,13 @@ def odelaytime(table_names, earth_ephem, obs_ephem, distance, dist_unit, - - # odelay_do # call odelay_do (fin, nfin, parallax, earth_ephem, obs_ephem, # in_col, verbose) + def get_ephem(ephem_tables, eph_type): - ''' + """ read an ephemeris of state vectors # # Description: @@ -181,7 +180,7 @@ def get_ephem(ephem_tables, eph_type): #------------------------------------------------------------------------------ :param ephem_table: :return: - ''' + """ # Open the file name template string for the list of ephemeris tables. npts = 0 @@ -193,8 +192,8 @@ def get_ephem(ephem_tables, eph_type): # Count the total number of rows in all the input tables. # Not sure if I need this - #nrows = tbpsta (tp, TBL_NROWS) - #npts = npts + nrows + # nrows = tbpsta (tp, TBL_NROWS) + # npts = npts + nrows if npts == 0: raise ValueError("The following input tables are empty: " @@ -206,7 +205,7 @@ def get_ephem(ephem_tables, eph_type): for tab_file in ephem_tables: # open table file - #tp = tbtopn (table, READ_ONLY, 0) + # tp = tbtopn (table, READ_ONLY, 0) current_tab = Table.read(tab_file, hdu=1) if eph_type == EARTH_EPHEMERIS: @@ -226,16 +225,16 @@ def get_ephem(ephem_tables, eph_type): # scale the times, and add the zero point new_time = firstmjd + timescale * new_time - if time == 0: time = new_time else: time.insert(-1, new_time) # pull "X", "Y", and "Z" columns - #call tbcfnd1 (tp, "X", cp[2]) - #call tbcfnd1 (tp, "Y", cp[3]) - #call tbcfnd1 (tp, "Z", cp[4]) + # call tbcfnd1 (tp, "X", cp[2]) + # call tbcfnd1 (tp, "Y", cp[3]) + # call tbcfnd1 (tp, "Z", cp[4]) + if x == 0: x = current_tab['X'] y = current_tab['X'] @@ -245,8 +244,7 @@ def get_ephem(ephem_tables, eph_type): y.insert(-1, current_tab['Y']) z.insert(-1, current_tab['Z']) - if eph_type == OBS_EPHEMERIS: - + if eph_type == OBS_EPHEMERIS: # read header parameter, the zero-point epoch firstmjd = g_firstmjd(tab_file) @@ -276,13 +274,12 @@ def get_ephem(ephem_tables, eph_type): raise ValueError("unrecognized TIME unit in ephemeris " "table:{}".format(gridunit)) - - # read the data (already did this) + # read the data (already did this) # tbcgtd - Read values for one column from a range of rows. - # time (or mjd) = cp[1] = Memd[time+k] - # x = cp[2] = Memd[x+k] - # y = cp[3] = Memd[y+k] - # z = cp[4] = Memd[z+k] + # time (or mjd) = cp[1] = Memd[time+k] + # x = cp[2] = Memd[x+k] + # y = cp[3] = Memd[y+k] + # z = cp[4] = Memd[z+k] # convert the state vectors to AU for col in (x,y,z): @@ -290,9 +287,9 @@ def get_ephem(ephem_tables, eph_type): if colunit == "AU": pass elif colunit == "KM": - #call adivkd (Memd[x+k], KMPERAU, Memd[x+k], nrows) + # call adivkd (Memd[x+k], KMPERAU, Memd[x+k], nrows) # ADIVK -- Divide a vector by a constant - col = col/KMPERAU + col /= KMPERAU else: raise ValueError("unrecognized {} unit in ephemeris table: " "{}".format(col.name, col.dtype)) From ac4f9681f4d0ff56f90bde30313a406a0e8df343 Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Fri, 7 Sep 2018 14:49:04 -0400 Subject: [PATCH 5/8] initial commit of finished odelaytime, NOT TESTED --- lib/stistools/odelaytime.py | 360 ------- lib/stistools/tastis.py | 874 ---------------- lib/stistools/tests/__init__.py | 0 .../tests/data/tastis/o4er06llq_raw.fits | 1 - .../tests/data/tastis/o4er06llq_spt.fits | 10 - .../tests/data/tastis/oc7w11viq_raw.fits | 1 - .../tests/data/tastis/oc7w11viq_spt.fits | 5 - .../tests/data/tastis/ocmv0lw6q_raw.fits | 2 - .../tests/data/tastis/ocmv0lw6q_spt.fits | 13 - .../tests/data/tastis/ocoa03q2q_raw.fits | 4 - .../tests/data/tastis/ocoa03q2q_spt.fits | 21 - .../tests/data/tastis/octka7jeq_raw.fits | 2 - .../tests/data/tastis/octka7jeq_spt.fits | 5 - .../tests/data/tastis/octr11h4q_raw.fits | 4 - .../tests/data/tastis/octr11h4q_spt.fits | 28 - .../tests/data/tastis/octr11hrq_raw.fits | 8 - .../tests/data/tastis/octr11hrq_spt.fits | 7 - .../tests/data/tastis/ocu252cmq_raw.fits | 1 - .../tests/data/tastis/ocu252cmq_spt.fits | 21 - .../tests/data/tastis/ocui04xeq_raw.fits | 1 - .../tests/data/tastis/ocui04xeq_spt.fits | 8 - .../tests/data/tastis/ocyw05afq_raw.fits | 3 - .../tests/data/tastis/ocyw05afq_spt.fits | 7 - .../tests/data/tastis/od3v01bfq_raw.fits | 1 - .../tests/data/tastis/od3v01bfq_spt.fits | 7 - lib/stistools/tests/test_tastis.py | 467 --------- stistools/__init__.py | 2 +- stistools/odelaytime.py | 929 ++++++++++++++++++ 28 files changed, 930 insertions(+), 1862 deletions(-) delete mode 100644 lib/stistools/odelaytime.py delete mode 100755 lib/stistools/tastis.py delete mode 100644 lib/stistools/tests/__init__.py delete mode 100644 lib/stistools/tests/data/tastis/o4er06llq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/o4er06llq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/oc7w11viq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/oc7w11viq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/octka7jeq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/octka7jeq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/octr11h4q_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/octr11h4q_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/octr11hrq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/octr11hrq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/ocu252cmq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/ocu252cmq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/ocui04xeq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/ocui04xeq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/ocyw05afq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/ocyw05afq_spt.fits delete mode 100644 lib/stistools/tests/data/tastis/od3v01bfq_raw.fits delete mode 100644 lib/stistools/tests/data/tastis/od3v01bfq_spt.fits delete mode 100644 lib/stistools/tests/test_tastis.py create mode 100644 stistools/odelaytime.py diff --git a/lib/stistools/odelaytime.py b/lib/stistools/odelaytime.py deleted file mode 100644 index 59de3933..00000000 --- a/lib/stistools/odelaytime.py +++ /dev/null @@ -1,360 +0,0 @@ -#! /usr/bin/env python - -from astropy.io import fits -from astropy.table import Table - -# Lots of notes in the original file - -''' -Compute the times of observation relative to the solar-system barycenter -of a distant object (outside the solar system). It is assumed that -the set of observations covers a short enough time that the object does -not move appreciably during the observations. Note that a one-arcsecond -error in the position of the object can result in a time-delay error -of ~2.4 millisec. It is also assumed that the set of observations covers -a short enough time interval that the relativistic correction, if required, -remains constant during the observations. - -# Date Author Description -# ---- ------ ----------- -# 10-Nov-1984 C. D. Biemesderfer Original module -# 18-Apr-1990 J.-C. Hsu rewrite in SPP -# 19-Jun-1992 J.-C. Hsu read RA_TARG and DEC_TARG from header -# 19-Aug-1997 J.-C. Hsu modify for STIS data -# 23-Aug-2000 Phil Hodge remove out_col & add verbose arguments; -# modify times in-place; update GTI table and -# header keywords as well; change INTERVAL -# from 1. to 0.1; add DELAYCOR and HISTORY -# 10-Jun-2003 Phil Hodge modify to work with SCI extensions; -# change calling sequence (ephem table names -# instead of table pointers) - - - -pointer fin # file template pointer -int nfin # number of files in the input template -double parallax # parallax of the target (in arc sec) -char earth_ephem[SZ_FNAME] # earth ephemeris table name -char obs_ephem[SZ_FNAME] # list of observer ephemeris table names -char in_col[SZ_LINE] # time column name -bool verbose # print timing info? - - -pointer fin # i: file template pointer -int nfin # i: number of files in the input template -double parallax # i: parallax of the target (in arc sec) -char earth_ephem[ARB] # i: name of the earth_ephem table -char obs_ephem[ARB] # i: names of the obs_ephem tables -char in_col[ARB] # i: time column name -#-- -pointer sp -pointer history # for constructing a history record -pointer extname # from first extension, for checking file type -double ra, dec # RA and Dec of the target at J2000 (in deg.) -double objvec[3] # unit geocentric state vector of the target -double mjd1, mjd2 # MJD of the observation start/end time -double epoch # MJD of an event -double delta_sec # correction (sec) to be added to TIME col -double t0_delay # correction at TEXPSTRT -char ifile[SZ_FNAME] -char ifilen[SZ_FNAME] -int nchar, i, j, k -pointer time_e, x_e, y_e, z_e, time_o, x_o, y_o, z_o -pointer tp # pointer of the input table -pointer cptr # for the TIME column in EVENTS tables -pointer cp1, cp2 # for START and STOP columns in GTI table -int nrows # number of rows in a table -int nextend # keyword from primary header -int nevents_tab # number of EVENTS tables (one less than NEXTEND, or 0) -int nsci_ext # number of x1d or image extensions (0 or NEXTEND) -int npts_earth, npts_obs -double tm # a time from the TIME column -double tm_prev # the last tm for which all_delay was called -char text[SZ_TIME] # for printing timing info -char delaycorr[SZ_FNAME] -int frac # for printing percentage done -int filetype # events table, x1d table, image set -bool modified # true if an x1d or image extension was updated - - - -''' - -NLAN_EARTH = 10 -NLAN_OBS = 10 -INTERVAL = 0.1 # in seconds - -# File types, probably don't need this... -EVENTS_TABLE = 1 - -SECPERDAY = 86400 #D0 # number of sec in a day -MINPERDAY = 1440 #D0 # number of min in a day -HRPERDAY = 24 #D0 # number of hours in a day - -LYPERPC = 3.261633 #D0 # light years per parsec -KMPERPC = 3.085678 #D13 # kilometers per parsec -AUPERPC = 206264.8062470964 #D0 # how many AU in one parsec -KMPERAU = KMPERPC/AUPERPC -CLIGHT = 499.00479 #D0 # light travel time (in sec) of 1 AU - -# might not need these -EARTH_EPHEMERIS = 1 -OBS_EPHEMERIS = 2 - -JD_TO_MJD = 2400000.5 #d0 # subtract from JD to get MJD - - - -def odelaytime(table_names, earth_ephem, obs_ephem, distance, dist_unit, - in_col, verbose=False): - - parallax = distance - - # convert distance to parsec first - if dist_unit == "au": - parallax /= AUPERPC - elif dist_unit == "ly": - parallax /= LYPERPC - elif dist_unit == "km": - parallax /= KMPERPC - else: - if dist_unit != "pc": - raise ValueError("illegal distance unit: {}".format(dist_unit)) - - # check that distance is non-zero (pc) - if parallax <= 0: - raise ValueError("non-postive distance: {}".format(parallax)) - - # I don't think I need this part - # call smark(sp) - # call salloc(history, SZ_FNAME, TY_CHAR) - # call salloc(extname, SZ_FNAME, TY_CHAR) - - - -# odelay_do -# call odelay_do (fin, nfin, parallax, earth_ephem, obs_ephem, -# in_col, verbose) - - -def get_ephem(ephem_tables, eph_type): - """ - read an ephemeris of state vectors - # - # Description: - # ------------ - # Read state vectors from one or more input tables. The times and - # rectangular coordinates of the state vectors will be read from the - # input table from columns "TIME" (or "JD"), "X", "Y", and "Z". - # The times will be converted - # to units of Modified Julian Date, and the positions will be converted - # to astronomical units. - # - # The number of points npts will be zero if the list of input tables - # is empty. A table is required for the earth ephemeris, but none is - # required for the observer ephemeris. - - Note: I'm assuming the desired data is all in the - first extension data. - # - # Input table column names - # ------------------------ - # JD or TIME times corresponding to x,y,z: - # in earth_ephem tables: - # JD = Julian Day Number - # in obs_ephem tables: - # TIME = offset of time from FIRSTMJD - # X, Y, Z state vector components - # - # Input table parameters - # ---------------------- - # "FIRSTMJD" MJD of the first row in the table (only for obs_ephem) - # - # Date Author Description - # ---- ------ ----------- - # 11-Mar-1990 J.-C. Hsu design and coding - # 10-Jun-2003 Phil Hodge allow multiple tables; allocate memory here; - # get the array of times from a table column - # 15-Jan-2007 Phil Hodge if keyword firstmjd is not found, read - # ephmstrt from primary header instead - #------------------------------------------------------------------------------ - :param ephem_table: - :return: - """ - - # Open the file name template string for the list of ephemeris tables. - npts = 0 - time = 0 - x, y, z = 0, 0, 0 - - if len(ephem_tables) == 0: - return npts, time, x, y, z - - # Count the total number of rows in all the input tables. - # Not sure if I need this - # nrows = tbpsta (tp, TBL_NROWS) - # npts = npts + nrows - - if npts == 0: - raise ValueError("The following input tables are empty: " - "{}".format(ephem_tables)) - - # Now loop over the list of input tables and read the data. - k = 0 - previous_mjd = 0 - - for tab_file in ephem_tables: - # open table file - # tp = tbtopn (table, READ_ONLY, 0) - current_tab = Table.read(tab_file, hdu=1) - - if eph_type == EARTH_EPHEMERIS: - - #pull "JD" column? - # call tbcfnd1 (tp, "JD", cp[1]) - new_time = current_tab['JD'] - - # convert Julian Day Number to MJD - new_time -= JD_TO_MJD - - else: - #pull "TIME", - # call tbcfnd1 (tp, "TIME", cp[1]) - new_time = current_tab['TIME'] - - # scale the times, and add the zero point - new_time = firstmjd + timescale * new_time - - if time == 0: - time = new_time - else: - time.insert(-1, new_time) - - # pull "X", "Y", and "Z" columns - # call tbcfnd1 (tp, "X", cp[2]) - # call tbcfnd1 (tp, "Y", cp[3]) - # call tbcfnd1 (tp, "Z", cp[4]) - - if x == 0: - x = current_tab['X'] - y = current_tab['X'] - z = current_tab['Z'] - else: - x.insert(-1, current_tab['X']) - y.insert(-1, current_tab['Y']) - z.insert(-1, current_tab['Z']) - - if eph_type == OBS_EPHEMERIS: - # read header parameter, the zero-point epoch - firstmjd = g_firstmjd(tab_file) - - if firstmjd < previous_mjd: - raise ValueError("The obs_ephem tables are out of order;\n " - "use the FIRSTMJD table header keyword to " - "determine the correct order.\n Times must " - "be monotonically increasing") - - previous_mjd = firstmjd - - # this call pulls the units of said column into the - # gridunit variable - #call tbcigt (cp[1], TBL_COL_UNITS, gridunit, SZ_COLUNITS) - gridunit = current_tab['TIME'].unit.to_string().upper() - - # get the scale factor for converting the times to days - if gridunit == "DAY": - timescale = 1 - elif gridunit == "HR" or gridunit == "HOUR": - timescale = 1 / HRPERDAY - elif gridunit[:2] == "MIN": - timescale = 1 / MINPERDAY - elif gridunit[1] == 'S': - timescale = 1 / SECPERDAY - else: - raise ValueError("unrecognized TIME unit in ephemeris " - "table:{}".format(gridunit)) - - # read the data (already did this) - # tbcgtd - Read values for one column from a range of rows. - # time (or mjd) = cp[1] = Memd[time+k] - # x = cp[2] = Memd[x+k] - # y = cp[3] = Memd[y+k] - # z = cp[4] = Memd[z+k] - - # convert the state vectors to AU - for col in (x,y,z): - colunit = col.unit.to_string().upper() - if colunit == "AU": - pass - elif colunit == "KM": - # call adivkd (Memd[x+k], KMPERAU, Memd[x+k], nrows) - # ADIVK -- Divide a vector by a constant - col /= KMPERAU - else: - raise ValueError("unrecognized {} unit in ephemeris table: " - "{}".format(col.name, col.dtype)) - - # end of loop over files - - if len(ephem_tables) > 1: - if [time][0] > time[1]: - raise ValueError("times in {} must be monotonically " - "increasing.".format(ephem_tables)) - - # Remove any overlapping regions. - # loop through time column, if you hit a non-increasing value, keep - # deleting rows until you do hit a larger number - - # Putting all columns into a new table now, so it's easier to - # delete rows all at once. - final_table = Table() - - - - -def g_firstmjd(tab_file): - ''' - g_firstmjd -- read firstmjd keyword, or use ephmstrt - - Normally the FIRSTMJD keyword will be found in the table of the ORB table. - For data taken shortly after the ORB tables began to be written as a FITS - table (rather than as VAX binary-format ORX files), however, FIRSTMJD was - not yet being written into the table header. For these files, we will - read the EPHMSTRT keyword from the primary header and convert that string - from SMS format to MJD. - ''' - - tab_hdulist = fits.open(tab_file) - if 'FIRSTMJD' in tab_hdulist[1].header: - firstmjd = tab_hdulist[1].header['FIRSTMJD'] - - elif 'EPHMSTRT' in tab_hdulist[0].header: - # Interpret ephmstrt: year, day of year, hour, minute, second - ephmstrt = tab_hdulist[0].header["EPHMSTRT"] - # ephmstrt is apparently stored as a string.... so need to - # convert to an integer - # year.doy:hour:min:sec - period = ephmstrt.find() - year = int(ephmstrt[:period]) - rest = ephmstrt[period+1:].split(":") - doy = int(rest[0]) - hour = int(rest[1]) - min = int(rest[2]) - sec = int(rest[3]) - day = doy + hour/24. + min/1400. + sec/86400. - - # Evaluate this expression with month = 1 because here 'day' is - # the day of the year rather than day of the month. - # reference: Pulkinnen & VanFlandern, ApJ Suppl. - month = 1 - k = 275 * month / 9 - 7 * (year + (month + 9) / 12) / 4 - \ - 3 * ((year + (month - 9) / 7) / 100 + 1) / 4 - - firstmjd = 367. * year + k + day - 678972. - - - else: - raise ValueError("Neither FIRSTMJD (ext 1) nor EPHMSTRT (ext 0) were " - "found in headers of file: {}".format(tab_file)) - - return firstmjd diff --git a/lib/stistools/tastis.py b/lib/stistools/tastis.py deleted file mode 100755 index ada1f98f..00000000 --- a/lib/stistools/tastis.py +++ /dev/null @@ -1,874 +0,0 @@ -#! /usr/bin/env python - -from math import modf, sqrt -import os -import argparse - -from astropy.io import fits -import numpy as np - -__doc__ = """ -Analyze STIS target acquisition images. :func:`tastis` will print general -information about each input target acquisition image, and will analyze both -types of STIS target acquisitions: ACQs and ACQ/PEAKs - -ACQ procedure is described in "STIS Onboard CCD Target Acquisitions" in the -STIS Instrument Handbook. The ACQ/PEAK procedure is described in "Onboard -Target-Acquisition Peakups (ACQ/PEAK)" also in the STIS Instrument Handbook. - -Target positions in global and local (subarray) coordinates and the total flux -of the target in the maximum checkbox during both acquistions phases (course -and fine) are displayed. - -If update=True, keywords are added to the header to make problems easier to -locate in batch processing. Warnings are given if the spt file is not present -when :func:`tastis` is run. - -Examples --------- - -:func:`tastis` with the default of update=False: - ->>> import stistools ->>> stistools.tastis.tastis("ocmv0lw6q_raw.fits") - -:func:`tastis` with update=True: - ->>> import stistools ->>> stistools.tastis.tastis("ocmv0lw6q_raw.fits", update=True) -""" - -__taskname__ = "tastis" -__version__ = "1.0" -__vdate__ = "14-June-2018" -__author__ = "Python: Sara Ogaz. C code: R. Katsanis, R. Downes, " \ - "Phil Hodge. Original IDL code: George Hartig" - -# These are possible values for the bit mask badacq. -BAD_ACQ = 1 # any problem -BAD_SLEW = 2 # ACQ only -BAD_LAMP_LOW = 4 # ACQ only -BAD_RATIO_HIGH = 8 # ACQ or ACQ/PEAK -BAD_RATIO_LOW = 16 # ACQ or ACQ/PEAK -BAD_SATURATED = 32 # ACQ or ACQ/PEAK -BAD_FLUX = 64 # ACQ/PEAK only -BAD_END = 128 # ACQ/PEAK only -BAD_TDF = 256 # take-data flag was down - -FATAL_ERROR = 2 -LOW_FLUX_CUTOFF = 0.8 -HIGH_FLUX_CUTOFF = 2.0 -MAX_GOODMAX = 32000. # higher would be saturated */ -MIN_GOODMAX = 1900. # lower implies lamp was not on */ -MIN_IMAGING_FLUX = 1250. -MIN_SPECTROSCOPIC_FLUX = 20000. - -PLATESCALE = 0.0508 -COSTHETA = 0.70711 -SINTHETA = 0.70711 - - -def tastis(raw_filename, update=False): - """ - Analyze STIS target acquisition images. - - Parameters - ---------- - raw_filename: str - Name of the input raw file. For some raw files you will need a copy of - the spt file in the same directory. - - update: bool - If True, keywords associated with tastis checks will be updated. - Default values is False. - """ - - # filename can take wildcards, worry about this later - # checks for matching files exits if it can't find any - # loops over files - - # build string for raw and spt file - spt_filename = raw_filename.replace("raw", "spt") - spt_exists = os.path.exists(spt_filename) - - # open file - head = fits.getheader(raw_filename) - obsmode = head['OBSMODE'] - - if obsmode == "ACQ" or obsmode == "ACQ/PEAK": - - # Check for spt file if obsmode is ACQ/PEAK - if not spt_exists and obsmode == "ACQ/PEAK": - FileNotFoundError("Can't find {} (required for ACQ/PEAK), " - "exiting".format(spt_filename)) - - keywords = _read_keywords(raw_filename, spt_filename, spt_exists) - - _calculate_slews(keywords) - - # Read dominant & subdominant FGS from keywords DGESTAR & SGESTAR - # in primary header of spt file. - if spt_exists: - spt_head = fits.getheader(spt_filename) - keywords['domfgs'] = spt_head['dgestar'] - keywords['subfgs'] = spt_head['sgestar'] - else: - keywords['domfgs'] = "" - keywords['subfgs'] = "" - - badacq = _print_output(keywords, spt_exists) - - # Update keywords in the input primary header to indicate - # which tests succeeded and which failed. - if update: - with fits.open(raw_filename, mode='update') as raw_hdulist: - if badacq: - raw_hdulist[0].header['acqstat'] = "FAILED" - else: - raw_hdulist[0].header['acqstat'] = "OK" - - if keywords['obsmode'] == "ACQ": - # Bad ratio - if badacq & BAD_RATIO_HIGH: - raw_hdulist[0].header['acq_rat'] = "HIRATIO" - elif badacq & BAD_RATIO_LOW: - raw_hdulist[0].header['acq_rat'] = "LORATIO" - else: - raw_hdulist[0].header['acq_rat'] = "OKRATIO" - - # Bad slew - if badacq & BAD_SLEW: - raw_hdulist[0].header['acq_slew'] = "BIGSLEW" - else: - raw_hdulist[0].header['acq_slew'] = "OK_SLEW" - - # Saturation - if badacq & BAD_SATURATED: - raw_hdulist[0].header['acq_sat'] = "SAT" - else: - raw_hdulist[0].header['acq_sat'] = "UNSAT" - - # Bad Lamp - if badacq & BAD_LAMP_LOW: - raw_hdulist[0].header['acq_lamp'] = "LO_LAMP" - else: - raw_hdulist[0].header['acq_lamp'] = "OK_LAMP" - - # for ACQ/PEAK - else: - # Bad ratio - if badacq & BAD_RATIO_HIGH: - raw_hdulist[0].header['acqp_rat'] = "HIRATIO" - elif badacq & BAD_RATIO_LOW: - raw_hdulist[0].header['acqp_rat'] = "LORATIO" - else: - raw_hdulist[0].header['acqp_rat'] = "OKRATIO" - - # Bad flux - if badacq & BAD_FLUX: - raw_hdulist[0].header['acqp_flx'] = "LO_FLUX" - else: - raw_hdulist[0].header['acqp_flx'] = "OK_FLUX" - - # Saturation - if badacq & BAD_SATURATED: - raw_hdulist[0].header['acqp_sat'] = "SAT" - else: - raw_hdulist[0].header['acqp_sat'] = "UNSAT" - - # Bad end - if badacq & BAD_END: - raw_hdulist[0].header['acqp_end'] = "HI_END" - else: - raw_hdulist[0].header['acqp_end'] = "OK_END" - - # Bad tdf - if badacq & BAD_TDF: - raw_hdulist[0].header['dataflag'] = "TDFDown" - elif not spt_exists: - raw_hdulist[0].header['dataflag'] = "UNKNOWN" - else: - raw_hdulist[0].header['dataflag'] = "TDF_Up" - - -def _read_keywords(raw_filename, spt_filename, spt_exists): - """ - Read in raw and spt FITS file header keywords used in :func:`tastis`, and - store the results in a dictionary returned by the function. - - Parameters - ---------- - raw_filename: str - Name of the FITS input raw file. - - spt_filename: str - Name of the FITS spt file associated with the raw file. - - spt_exists: bool - If True, the `spt_filename` exists in the same directory as the raw - file. - - Returns - ------- - keywords: dict - dictionary containing all keywords and other data needed by - :func:`tastis`. - """ - - keywords = {} - - with fits.open(raw_filename) as raw_hdulist: - - # Read universal primary header keywords - prim_header_keywords = ['rootname', 'obsmode', 'obstype', 'proposid', - 'sizaxis1', 'sizaxis2', 'texptime', 'biaslev', - 'targname', 'tdateobs', 'ttimeobs', 'linenum', - 'centera1', 'centera2'] - - for key in prim_header_keywords: - keywords[key] = raw_hdulist[0].header[key] - - keywords['optelem'] = raw_hdulist[0].header['opt_elem'] - - # For the aperture name, use PROPAPER if its value ends in "E1" - # or "D1"; otherwise, use APERTURE. - propaper = raw_hdulist[0].header['propaper'] - if propaper[-2:] in ['E1', 'D1']: - keywords['aperture'] = propaper - else: - keywords['aperture'] = raw_hdulist[0].header['aperture'] - - # grab from 1st ext (but not into dict) ngoodpix, goodmean - ngoodpix = raw_hdulist[1].header['ngoodpix'] - goodmean = raw_hdulist[1].header['goodmean'] - - # Obsmode dependent header pulls - if keywords['obsmode'] == 'ACQ': - # 0th header - keywords['acqtype'] = raw_hdulist[0].header['acqtype'] - keywords['box_step'] = raw_hdulist[0].header['checkbox'] - - # 1th header - keywords['counts1'] = raw_hdulist[1].header['maxchcnt'] - keywords['targax1'] = raw_hdulist[1].header['targa1'] - keywords['targay1'] = raw_hdulist[1].header['targa2'] - - # 4th header - keywords['counts2'] = raw_hdulist[4].header['maxchcnt'] - keywords['goodmax2'] = raw_hdulist[4].header['goodmax'] - keywords['targax4'] = raw_hdulist[4].header['targa1'] - keywords['targay4'] = raw_hdulist[4].header['targa2'] - - # 7th header - keywords['goodmax3'] = raw_hdulist[7].header['goodmax'] - keywords['apera1'] = raw_hdulist[7].header['apera1'] - keywords['apera2'] = raw_hdulist[7].header['apera2'] - keywords['aperlka1'] = raw_hdulist[7].header['aperlka1'] - keywords['aperlka2'] = raw_hdulist[7].header['aperlka2'] - - # set pedestal and goodmax1 to 0, not used for "ACQ" - keywords['pedestal'] = 0 - keywords['goodmax1'] = 0 - - if keywords['acqtype'] == "POINT": - keywords['search'] = "FLUX CENTROID" - else: - keywords['search'] = raw_hdulist[0].header['centmeth'] - - # Read keywords from the ACQ/PEAK primary header and from the - # spt extension header. - if keywords['obsmode'] == "ACQ/PEAK": - keywords['peakcent'] = raw_hdulist[0].header['peakcent'] - keywords['search'] = raw_hdulist[0].header['pksearch'] - keywords['box_step'] = raw_hdulist[0].header['numsteps'] - keywords['peakstep'] = raw_hdulist[0].header['peakstep'] - keywords['pedestal'] = raw_hdulist[0].header['pedestal'] - - keywords['goodmax1'] = raw_hdulist[1].header['goodmax'] - - # From spt file 1st header - spt_head = fits.getheader(spt_filename, ext=1) - keywords['otaslwa1'] = spt_head['otaslwa1'] - keywords['otaslwa2'] = spt_head['otaslwa2'] - - # Calculate post-slew flux, get pedestal (from raw file) & dwell - # fluxes. For ACQ/PEAKs only. - keywords['counts2'] = 0. # not used for ACQ/PEAK - keywords['goodmax2'] = 0. # not used for ACQ/PEAK - keywords['goodmax3'] = 0. # not used for ACQ/PEAK - keywords['counts1'] = ngoodpix * goodmean - - # Read dwell fluxes from 4th extension of raw file. - # I think this whole section (lines 564-573) are just pulling - # the data array from the 4th image extension (raw file) - keywords['naxis1'] = raw_hdulist[4].data.shape[1] - keywords['naxis2'] = raw_hdulist[4].data.shape[0] - keywords['dwell'] = raw_hdulist[4].data - - raw_hdulist.close() - - # check for spt file - if spt_exists: - spt_head = fits.getheader(spt_filename, ext=1) - keywords['ocstdfx'] = spt_head['ocstdfx'] - else: - keywords['ocstdfx'] = "unknown" - - # Extract visit & expnum from linenum before period goes into keyword dict - # as visit. if this is the end of the string, fill expnum in the keyword - # dict with 0, otherwise fill expnum with rest of linenum value after - # period converted to float - split_linenum = keywords['linenum'].split(".") - keywords['visit'] = split_linenum[0] - if len(split_linenum) == 1: - keywords['expnum'] = 0 - else: - keywords['expnum'] = float(split_linenum[1]) - - # Calculate corner from 'centera' & sizaxis'. - keywords['corner1'] = keywords['centera1'] - keywords['sizaxis1']/2 - keywords['corner2'] = keywords['centera2'] - keywords['sizaxis2']/2 - - # Calculate coarse, fine local axis & reference aperture locations. - # For ACQs only. - if keywords['obsmode'] == 'ACQ': - keywords['coarse1'] = keywords['targax1'] - (keywords['corner1'] - 1) + 1 - keywords['coarse2'] = keywords['targay1'] - (keywords['corner2'] - 1) + 1 - keywords['fine1'] = keywords['targax4'] - (keywords['corner1'] - 1) + 1 - keywords['fine2'] = keywords['targay4'] - (keywords['corner2'] - 1) + 1 - keywords['refaper1'] = keywords['apera1'] - (keywords['corner1'] + 31) +1 - keywords['refaper2'] = keywords['apera2'] - (keywords['corner2'] + 34) +1 - if keywords['box_step'] > 3: - offset = (keywords['box_step'] + 1)/2 - keywords['refaper1'] -= offset - keywords['refaper2'] -= offset - - return keywords - - -def _calculate_slews(keywords): - """ - Calculate slew information used by :func:`tastis` using input data - dictionary. THIS FUNCTION EDITS THE DICTIONARY IN PLACE. - - Parameters - ---------- - keywords: dict - dictionary containing all keywords and other data needed for slew - calculation. DICTIONARY IS EDITED IN PLACE. - """ - - # Slew calculation for ACQs. - if keywords['obsmode'] == 'ACQ': - - # Define all possible apertures for ACQs. - aperture_acq_dict = {"F25NDQ1": -1.24840, - "F25NDQ2": -1.24840, - "F25NDQ3": -1.24840, - "F25NDQ4": -1.24840, - "F28X50LP": -1.26850, - "F28X50OIII": -1.26850, - "F28X50OII": -1.31570, - "F25ND3": -1.24840, - "F25ND5": -1.24840} - - if keywords['aperture'] in aperture_acq_dict: - offset = aperture_acq_dict[keywords['aperture']] - else: - offset = 0.0 - - # Slews in pixels. - keywords['a1coarse_pix'] = keywords['targax1']- offset - keywords['aperlka1'] + 1 - keywords['a2coarse_pix'] = keywords['targay1'] - keywords['aperlka2'] + 1 - keywords['a1fine_pix'] = keywords['targax4'] - offset - keywords['apera1'] - keywords['a2fine_pix'] = keywords['targay4'] - keywords['apera2'] - keywords['a1total_pix'] = keywords['a1coarse_pix'] + keywords['a1fine_pix'] - keywords['a2total_pix'] = keywords['a2coarse_pix'] + keywords['a2fine_pix'] - - # Slews in arcseconds. - keywords['a1coarse_arc'] = _arcseconds(keywords['a1coarse_pix']) - keywords['a2coarse_arc'] = _arcseconds(keywords['a2coarse_pix']) - keywords['a1fine_arc'] = _arcseconds(keywords['a1fine_pix']) - keywords['a2fine_arc'] = _arcseconds(keywords['a2fine_pix']) - keywords['a1total_arc'] = _arcseconds(keywords['a1total_pix']) - keywords['a2total_arc'] = _arcseconds(keywords['a2total_pix']) - - keywords['V2coarse'] = _v2coord(keywords['a2coarse_arc'], - keywords['a1coarse_arc']) - keywords['V3coarse'] = _v3coord(keywords['a1coarse_arc'], - keywords['a2coarse_arc']) - keywords['V2fine'] = _v2coord(keywords['a2fine_arc'], - keywords['a1fine_arc']) - keywords['V3fine'] = _v3coord(keywords['a1fine_arc'], - keywords['a2fine_arc']) - keywords['V2total'] = _v2coord(keywords['a2total_arc'], - keywords['a1total_arc']) - keywords['V3total'] = _v3coord(keywords['a1total_arc'], - keywords['a2total_arc']) - - else: - # Slew calculations for ACQ/PEAKs. - if keywords['search'] == "LINEARAXIS2": - finalx = int(keywords['box_step']/2) * \ - keywords['peakstep']/(PLATESCALE*1000.0) - finaly = 0.0 - - elif keywords['search'] == "LINEARAXIS1": - finalx = 0.0 - finaly = int(keywords['box_step']/2) * \ - keywords['peakstep']/(PLATESCALE*1000.0) - - elif keywords['search'] == 'SPIRAL': - x, finaly = modf(sqrt(keywords['box_step']) / 2) - finaly = -1 * finaly * keywords['peakstep'] / (PLATESCALE*1000.0) - - x, finalx = modf(sqrt(keywords['box_step']) / 2) - finalx = -1 * finalx * keywords['peakstep'] / (PLATESCALE*1000.0) - - # Final slews in pixels. - keywords['a1total_pix'] = keywords['otaslwa1']/10.0 + finaly - keywords['a2total_pix'] = keywords['otaslwa2']/10.0 + finalx - - if keywords['search'] == "SPIRAL": - if abs(keywords['a2total_pix']) < 0.05: - keywords['a2total_pix'] = 0.0 - - if abs(keywords['a1total_pix']) < 0.05: - keywords['a1total_pix'] = 0.0 - - # Rounding up the pixel values up to the decimal place. - keywords['a1total_pix'] = _ndec(keywords['a1total_pix']) - keywords['a2total_pix'] = _ndec(keywords['a2total_pix']) - - # Slews in arcseconds. - keywords['a1total_arc'] = _arcseconds(keywords['a1total_pix']) - keywords['a2total_arc'] = _arcseconds(keywords['a2total_pix']) - keywords['V2total'] = _v2coord(keywords['a2total_arc'], - keywords['a1total_arc']) - keywords['V3total'] = _v3coord(keywords['a1total_arc'], - keywords['a2total_arc']) - - -def _print_output(keywords, spt_exists): - """ - Print analysis output to stdout for :func:`tastis` report. - - Parameters - ---------- - keywords: dict - dictionary containing all keywords and other data needed by - :func:`tastis`. - - spt_exists: bool - If True, the `spt_filename` exists in the same directory as the raw - file. - - Returns - ------- - badacq: integer (bit flag) - Bit flag integer containing :func:`tastis` error flags. - """ - - # Print to stdout - print('=' * 79) - - if keywords['obsmode'] == "ACQ": - print("{:>8} HST/STIS MIRVIS {:>7} " - "ACQ/{}".format(keywords['rootname'], keywords['aperture'], - keywords['acqtype'])) - else: - print("{:>8} HST/STIS {} {:>7} " - "ACQ/PEAK-UP".format(keywords['rootname'], keywords['optelem'], - keywords['aperture'])) - - print("prop: {:4d} visit: {} line: {:.0f} target: {}".format( - keywords['proposid'], keywords['visit'], keywords['expnum'], - keywords['targname'])) - - print("obs date, time: {:>8} {:>8} exposure time: {:5.2f}".format( - keywords['tdateobs'], keywords['ttimeobs'], keywords['texptime'])) - - if keywords['domfgs'] != "" or keywords['subfgs'] != "": - print("dom GS/FGS: {} sub-dom GS/FGS: {}". - format(keywords['domfgs'], keywords['subfgs'])) - - if keywords['obsmode'] == "ACQ": - print("ACQ params: bias sub: {:.0f} checkbox: {:d} method: " - "{}".format(keywords['biaslev'], keywords['box_step'], - keywords['search'])) - else: - print("ACQ params: bias sub: {:.0f} " - "method: {}".format(keywords['biaslev'], keywords['peakcent'])) - - print("subarray (axis1,axis2): size=({:d},{:d}) " - "corner=({:d},{:d})".format(int(keywords['sizaxis1']), - int(keywords['sizaxis2']), - int(keywords['corner1']), - int(keywords['corner2']))) - - print('-' * 79) - - # Print rest of output according to data type: ACQ or ACQ/PEAK. - if keywords['obsmode'] == "ACQ": - print("Coarse locate phase: Target flux in max checkbox " - "(DN): {:.0f}\n".format(keywords['counts1'])) - print(" global local") - print(" axis1 axis2 axis1 axis2") - print("Target location: {:4.1f} {:4.1f} {:4.1f} {:4.1f}\n". - format(keywords['corner1'] + keywords['coarse1'] - 1, - keywords['corner2'] + keywords['coarse2'] - 1, - keywords['coarse1'], keywords['coarse2'])) - print(" axis1 axis2 axis1 axis2 V2 " - " V3") - print(" (pixels) (arcsec) " - "(arcsec)") - print("Estimated slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " - "{:6.3f} {:6.3f}".format(keywords['a1coarse_pix'], - keywords['a2coarse_pix'], - keywords['a1coarse_arc'], - keywords['a2coarse_arc'], - keywords['V2coarse'], - keywords['V3coarse'])) - - # Print slews - print('-' * 79) - - print("Fine locate phase: Target flux in max checkbox (DN):" - " {:.0f}\n".format(keywords['counts2'])) - print(" global local") - print(" axis1 axis2 axis1 axis2") - print("Target location: {:4.1f} {:4.1f} {:4.1f} {:4.1f}". - format(keywords['corner1'] + keywords['fine1'] - 1, - keywords['corner2'] + keywords['fine2'] - 1, - keywords['fine1'], keywords['fine2'])) - print("Ref ap location: {:4.1f} {:4.1f} {:4.1f} {:4.1f}\n". - format(keywords['apera1'] + 1, keywords['apera2'] + 1, - keywords['refaper1'], keywords['refaper2'])) - print(" axis1 axis2 axis1 axis2 " - "V2 V3") - print(" (pixels) (arcsec) " - "(arcsec)") - print("Estimated slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " - "{:6.3f} {:6.3f}".format(keywords['a1fine_pix'], - keywords['a2fine_pix'], - keywords['a1fine_arc'], - keywords['a2fine_arc'], - keywords['V2fine'], - keywords['V3fine'])) - - # Print slews - print('-' * 79) - - print("Total est. slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " - "{:6.3f} {:6.3f}". format(keywords['a1total_pix'], - keywords['a2total_pix'], - keywords['a1total_arc'], - keywords['a2total_arc'], - keywords['V2total'], - keywords['V3total'])) - - print('-' * 79) - badacq = _print_warnings(keywords, spt_exists) - - else: - print("Scan type: {} Step size (mas): {:.0f}".format( - keywords['search'], keywords['peakstep'])) - - if keywords['search'] == "SPIRAL": - print("axis 1 -->, axis 2 ^\n") - - # Print here the dwell point values - if keywords['search'] == "LINEARAXIS2": - # I think I might actually need to do a transpose here - print("\n", keywords['dwell'].flatten()) - else: - # I think I might actually need to do a transpose here (at least - # for one of these) - print("\n", keywords['dwell'].flatten()) - - print("") - - print(" axis1 axis2 axis1 axis2 V2 " - "V3") - print(" (pixels) (arcsec) " - "(arcsec)") - print("Estimated slew: {:4.1f} {:4.1f} {:6.3f} {:6.3f} " - "{:6.3f} {:6.3f}".format(keywords['a1total_pix'], - keywords['a2total_pix'], - keywords['a1total_arc'], - keywords['a2total_arc'], - keywords['V2total'], - keywords['V3total'])) - print("Flux in post-slew confirmation image ({:.0f}) - Pedestal " - "({:.0f}) = {:.0f} DN". - format(keywords['counts1'], keywords['pedestal'], - keywords['counts1'] - keywords['pedestal'])) - - print('-' * 79) - badacq = _print_warnings(keywords, spt_exists) - - print('=' * 79) - - return badacq - - -def _print_warnings(keywords, spt_exists): - """ - Print warnings output to stdout for :func:`tastis` report. - - Parameters - ---------- - keywords: dict - dictionary containing all keywords and other data needed by - :func:`tastis`. - - spt_exists: bool - If True, the `spt_filename` exists in the same directory as the raw - file. - - Returns - ------- - badacq: integer (bit flag) - Bit flag integer containing :func:`tastis` error flags. - """ - - badacq = 0 - max_at_end = 0 # initial value - - if keywords['ocstdfx'] == "TDFDown": - print("Telemetry indicates that the intended exposures may not have\n" - "been performed. Check the images for signal.\n") - badacq |= BAD_TDF - - if not spt_exists: - print("This output lacks some information because the spt.fits file\n" - "is not present in the directory.\n") - - # ACQ warnings. - if keywords['obsmode'] == "ACQ": - if abs(keywords['a1fine_pix']) > 4.0 or \ - abs(keywords['a2fine_pix']) > 4.0: - print("The fine slew (to center the target in the reference " - "aperture) is larger\nthan 4 pixels. This may indicate a " - "problem with your acquisition.\n") - badacq |= BAD_SLEW - - # Ratio of flux in max checkbox in fine & coarse stages. - ratio = keywords['counts2'] / keywords['counts1'] - if (ratio < 0.75) or (ratio > 1.25): - print("The fluxes in the maximum checkbox in the fine and coarse " - "stages differ\nby more than 25%. This may indicate a " - "problem with your acquisition.\n") - if ratio < 0.75: - badacq |= BAD_RATIO_LOW - else: - badacq |= BAD_RATIO_HIGH - - if keywords['goodmax2'] > MAX_GOODMAX: - badacq |= BAD_SATURATED - print("Saturation of pixels in the second image may have affected" - "\nthe final centering.\n") - - if keywords['goodmax3'] < MIN_GOODMAX: - badacq |= BAD_LAMP_LOW - print("The flux in the third image of the ACQ is lower than the " - "typical value for\n)the lamp; the image should be checked " - "to see if the lamp was illuminated.\n") - - if badacq == 0: - print("Your ACQ appears to have succeeded, as the fluxes in the " - "coarse\nand fine stages agree within 25% and the fine " - "slews were less than\n4 pixels as expected\n") - - # ACQ/PEAK warnings. - if keywords['obsmode'] == "ACQ/PEAK": - # Calculate maximum flux in the peakup - max_final = 0.0 - i_max = -1 - j_max = -1 - - # I'm not sure if dwell would ever contain all negative values, but - # just in case that's a possibility, to replicate original code - # behaviour also, need to check indexing order - if max(keywords['dwell'].flatten()) > max_final: - max_final = max(keywords['dwell'].flatten()) - max_indexs = np.where(keywords['dwell'] == - max(keywords['dwell'].flatten())) - i_max = max_indexs[1][0] - j_max = max_indexs[0][0] - - # subtract pedestal - flux = keywords['counts1'] - keywords['pedestal'] - flux_ratio = flux / max_final - - if flux_ratio < LOW_FLUX_CUTOFF: - print("The flux in the confirmation image is only {:2.0f}% of the " - "maximum flux\nin the ACQ/PEAK scan. Percentages below " - "{:2.0f}% often indicate problems\nin the ACQ/PEAK.\n". - format(flux_ratio*100, LOW_FLUX_CUTOFF*100)) - badacq |= BAD_RATIO_LOW - - if flux_ratio > HIGH_FLUX_CUTOFF: - print("The flux in the confirmation image is {:2.0f}% greater than" - " the maximum flux\nin the ACQ/PEAK scan. An excess greater" - " than {:3.0f}% indicates\nproblems in the ACQ/PEAK.\n". - format((flux_ratio-1)*100, (HIGH_FLUX_CUTOFF-1)*100)) - badacq |= BAD_RATIO_HIGH - - if keywords['goodmax1'] > MAX_GOODMAX: - badacq |= BAD_SATURATED - print("Some pixels in the confirmation image were saturated. " - "If saturation also\noccurred in any of the peakup steps, " - "it may have affected the centering.\n") - - # Check that the flux level (above pedestal) in the confirmation - # image is above a minimum value. - if keywords['obstype'] == "IMAGING": - if flux < MIN_IMAGING_FLUX: - print("The flux in the confirmation image is {:2.0f}% of the " - "recommended minimum\nof {:.0f} DN for a direct-light " - "ACQ/PEAK. The signal-to-noise in the\nACQ/PEAK may be " - "inadequate for an accurate centering.\n". - format(flux/MIN_IMAGING_FLUX*100, MIN_IMAGING_FLUX)) - badacq |= BAD_FLUX - - else: - if flux < MIN_SPECTROSCOPIC_FLUX: - print("The flux in the confirmation image is {:2.0f}% of the " - "recommended minimum\nof {:.0f} DN for a dispersed-light" - " ACQ/PEAK. The signal-to-noise in\nthe ACQ/PEAK may be" - " inadequate for an accurate centering.\n". - format(flux/MIN_SPECTROSCOPIC_FLUX*100, - MIN_SPECTROSCOPIC_FLUX)) - badacq |= BAD_FLUX - - # Search for the word FAILED in keyword PEAKCENT. - # This will check if flux test failed. - if "FAILED" in keywords['peakcent']: - print("The ACQ/PEAK flux test failed, which means that no point in" - " the peakup\nscan has a flux that is at least 30% higher " - "than any other point. The\nACQ/PEAK has failed, and the " - "telescope has returned to the initial\nposition of the " - "ACQ/PEAK\n") - badacq |= BAD_ACQ - - # If first & last flux values in LINEAR scans are 0. - if keywords['search'] == "LINEARAXIS1": - if i_max == 0 or i_max == (keywords['naxis1']-1): - max_at_end = 1 - badacq |= BAD_END - elif keywords['search'] == "LINEARAXIS2": - if j_max == 0 or j_max == (keywords['naxis2']-1): - max_at_end = 1 - badacq |= BAD_END - - if max_at_end: - print("The maximum flux in the sequence occurred at one end.\n" - "This may indicate that the target was beyond that end\n" - "or that a neighboring object affected the acquisition.") - - if badacq == 0: - print("The confirmation image has a flux between {:3.1f} and " - "{:3.1f} times the\nmaximum flux in the peakup, which is " - "typical of a successful ACQ/PEAK.".format(LOW_FLUX_CUTOFF, - HIGH_FLUX_CUTOFF)) - - return badacq - - -def _arcseconds(x): - """ - Translate pixel values to arcsecond units - - Parameters - ---------- - x: int, float - Input pixel value. - - Returns - ------- - arcsec: float - Pixel translated to arcsecond unit. - """ - - return x * PLATESCALE - - -def _v2coord(x, y): - """ - Translate arcsecond values to v2coordinate system. - - Parameters - ---------- - x: int, float - Input arcsecond value. - - y: int, float - Input arcsecond value. - - Returns - ------- - v2coord: float - v2coord value. - """ - - return COSTHETA * x + SINTHETA * y - - -def _v3coord(x, y): - """ - Translate arcsecond values to v3coordinate system. - - Parameters - ---------- - x: int, float - Input arcsecond value. - - y: int, float - Input arcsecond value. - - Returns - ------- - v3coord: float - v3coord value. - """ - - return COSTHETA * x - SINTHETA * y - - -def _ndec(x): - """ - Return input float value rounded up to nearest tenth decimal place. - - Parameters - ---------- - x: float - Input value to be rounded up. - - Returns - ------- - rounded: float - input value rounded up to nearest tenth decimal place - """ - if x > 0: - return int(x*10 + 0.5) / 10.0 - else: - return int(x*10 - 0.5) / 10.0 - - -if __name__ == "__main__": - - parser = argparse.ArgumentParser( - description="Analyze STIS target acquisition images. :func:`tastis` " - "will print general information about each input target " - "acquisition image, and will analyze both types of STIS " - "target acquisitions: ACQs and ACQ/PEAKs") - parser.add_argument('filename', type=str, - help="Name of the input raw file. For some raw files " - "you will need a copy of the spt file in the " - "same directory.") - parser.add_argument('--update', '-u', action='store_true', - help='update header') - args = vars(parser.parse_args()) - - tastis(args['filename'], args['update']) diff --git a/lib/stistools/tests/__init__.py b/lib/stistools/tests/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/lib/stistools/tests/data/tastis/o4er06llq_raw.fits b/lib/stistools/tests/data/tastis/o4er06llq_raw.fits deleted file mode 100644 index 274aa591..00000000 --- a/lib/stistools/tests/data/tastis/o4er06llq_raw.fits +++ /dev/null @@ -1 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2006-12-08' / date this file was written (yyyy-mm-dd) FILENAME= 'o4er06llq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'o4er06llq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'NGC6752-UIT1 ' / proposer's target name RA_TARG = 2.877270958333E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.999621944444E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 7436 / PEP proposal identifier LINENUM = '6.061 ' / proposal logsheet line number PR_INV_L= 'Landsman ' / last name of principal investigatorPR_INV_F= 'Wayne ' / first name of principal investigator PR_INV_M= 'B. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '1998-03-03' / UT date of start of first exposure in file TTIMEOBS= '04:42:21' / UT start time of first exposure in file TEXPSTRT= 5.087519608305E+04 / start time (MJD) of 1st exposure in file TEXPEND = 50875.19609157 / end time (MJD) of last exposure in the file TEXPTIME= 0.7360935 / total exposure time (seconds) QUALCOM1= 'GUIDE STAR ACQUISITION FAILED. OBSERVATION TAKEN ON GYROS ONLY. 'QUALCOM2= 'DEGRADED GUIDING MODE. GYRO GUIDING. CCD SHUTTER CLOSED. 'QUALCOM3= 'STIS CCD VOLTAGES INCORRECTLY SET DURING THIS EXPOSURE 'QUALITY = 'GSFAIL ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'OPUS 2006_6 ' / OPUS software system version number CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.407730398148E+04 / Pipeline processing time (MJD) / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= '52X0.2 ' / aperture name PROPAPER= '52X0.2 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '52x0.2 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 517 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization ATODCORR= 'OMIT ' / correct for A to D conversion errors BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data SHADCORR= 'OMIT ' / apply shutter shading correction PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$jbo08138o_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name DFLTFILE= 'N/A ' / delta flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table APERTAB = 'oref$n7p1032ao_apt.fits' / relative aperture throughput table CCDTAB = 'oref$q4a1311fo_ccd.fits' / CCD calibration parameters ATODTAB = 'N/A ' / analog to digital correction file BIASFILE= 'oref$k5h1101io_bia.fits' / bias image file name SHADFILE= 'N/A ' / shutter shading correction file CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$q9s1550jo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'A Complete Sample of Hot Post-AGB Stars in Globular Clusters 'OBSET_ID= '06' / observation set id TARDESCR= 'STAR;SDO;POST-AGB STAR 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion NUMSTEPS= 3 / Number of peakup search steps PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 62.828701 / position angle of V3-axis of HST (deg) END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 32 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 0.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.9 / x-coordinate of reference pixel CRPIX2 = 16.67 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.34086E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -4.36512E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -4.36391E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.34123E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -161.972 / position angle of image y axis (deg. e of n) SUNANGLE= 67.539276 / angle between sun and V1 axis MOONANGL= 112.609512 / angle between moon and V1 axis SUN_ALT = 36.545483 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= '3' / observation scheduled with only two gyros (Y/N)REFFRAME= 'GSC1 ' / guide star catalog version DATE-OBS= '1998-03-03' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:42:21' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.087519608305E+04 / exposure start time (Modified Julian Date) EXPEND = 5.087519609157E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.736094 / exposure duration (seconds)--calculated EXPFLAG = 'INTERRUPTED ' / Exposure interruption indicator QUALCOM1= 'GUIDE STAR ACQUISITION FAILED. OBSERVATION TAKEN ON GYROS ONLY. 'QUALCOM2= 'DEGRADED GUIDING MODE. GYRO GUIDING. CCD SHUTTER CLOSED. 'QUALCOM3= 'STIS CCD VOLTAGES INCORRECTLY SET DURING THIS EXPOSURE 'QUALITY = 'GSFAIL ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / ST DDF fill present (T/F) STDCFFP = '0x5569' / ST DDF fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 878392 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 22.0191 / (V) CEB A&B Amp Bias OCBCDAV = 22.0191 / (V) CEB C&D amp bias OCBLGCDV= -6.12307 / (V) CEB last gate C&D OCBSWALV= -7.00805 / (V) CB summing well A Lo OCBRCDLV= 0.0194725 / (V) CB reset gate CD Lo OCCDHTAV= -1.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 0.0 / maximum value of good pixels GOODMEAN= 0.000000 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.9 / x-coordinate of reference pixel CRPIX2 = 16.67 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.34086E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -4.36512E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -4.36391E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.34123E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 0.0 / maximum value of good pixels GOODMEAN= 0.000000 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.9 / x-coordinate of reference pixel CRPIX2 = 16.67 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.34086E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -4.36512E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -4.36391E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.34123E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 3 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 0.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 2.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.877270958333E+02 / first axis value at reference pixel CRVAL2 = -5.999621944444E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 3.962105785598E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -1.289507213954E-05 / partial of first axis coordinate w.r.t. y CD2_1 = -1.289507213954E-05 / partial of second axis coordinate w.r.t. x CD2_2 = -3.962105785598E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.877270958333E+02 / RA of aperture reference position DEC_APER= -5.999621944444E+01 / Declination of aperture reference position PA_APER = -1.620518527100E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -161.972 / position angle of image y axis (deg. e of n) SUNANGLE= 67.539276 / angle between sun and V1 axis MOONANGL= 112.609512 / angle between moon and V1 axis SUN_ALT = 36.545483 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= '3' / observation scheduled with only two gyros (Y/N)REFFRAME= 'GSC1 ' / guide star catalog version DATE-OBS= '1998-03-03' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:42:21' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.087519608305E+04 / exposure start time (Modified Julian Date) EXPEND = 5.087519609157E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.736094 / exposure duration (seconds)--calculated EXPFLAG = 'INTERRUPTED ' / Exposure interruption indicator QUALCOM1= 'GUIDE STAR ACQUISITION FAILED. OBSERVATION TAKEN ON GYROS ONLY. 'QUALCOM2= 'DEGRADED GUIDING MODE. GYRO GUIDING. CCD SHUTTER CLOSED. 'QUALCOM3= 'STIS CCD VOLTAGES INCORRECTLY SET DURING THIS EXPOSURE 'QUALITY = 'GSFAIL ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / ST DDF fill present (T/F) STDCFFP = '0x5569' / ST DDF fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 878392 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 22.0191 / (V) CEB A&B Amp Bias OCBCDAV = 22.0191 / (V) CEB C&D amp bias OCBLGCDV= -6.12307 / (V) CEB last gate C&D OCBSWALV= -7.00805 / (V) CB summing well A Lo OCBRCDLV= 0.0194725 / (V) CB reset gate CD Lo OCCDHTAV= -1.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 3 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 0.0 / maximum value of good pixels GOODMEAN= 0.000000 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/o4er06llq_spt.fits b/lib/stistools/tests/data/tastis/o4er06llq_spt.fits deleted file mode 100644 index 353d3946..00000000 --- a/lib/stistools/tests/data/tastis/o4er06llq_spt.fits +++ /dev/null @@ -1,10 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2006-12-08' / date this file was written (yyyy-mm-dd) FILENAME= 'o4er06llq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'o4er06llq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'NGC6752-UIT1 ' / proposer's target name RA_TARG = 2.877270958333E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.999621944444E+01 / declination of the target (deg) (J2000) ECL_LONG= 281.025056 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -37.233590 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 336.481182 / galactic longitude of the target (deg) (J2000) GAL_LAT = -25.635361 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OVL200 ' / aperture used for reference position ELON_REF= 281.025056 / ecliptic longitude at reference position (deg) ELAT_REF= -37.233590 / ecliptic latitude at reference position (deg) GLON_REF= 336.481182 / galactic longitude at reference position (deg) GLAT_REF= -25.635361 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 7436 / PEP proposal identifier LINENUM = '6.061 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '408x ' / flight software version number OPUS_VER= 'OPUS 2006_6 ' / OPUS software system version number / TIME CONVERSION KEYWORDS CLKDRFTR= 3.177507611858E-19 / spacecraft clock drift rate CLKRATE = 1.250000015551E-01 / spacecraft clock rate SPCLINCN= 1.917116197000E+09 / spacecraft clock at UTC0 UTC0 = 5.077957638889E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= '4ER' / program id (base 36) PR_INV_L= 'Landsman ' / last name of principal investigatorPR_INV_F= 'Wayne ' / first name of principal investigator PR_INV_M= 'B. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '06' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'LL ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'SL200 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 3 / proposed number of peakup search steps SS_STPSZ= 150.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 520 / proposed axis1 detector pixel of subarray startSS_A1SZE= 32.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 500 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 26 / word 11/14 (0-255) PSTRTIME= '1998.062:04:40:59 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '1998.062:04:43:53 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OVL200 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '7436_60 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.878924817657E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.002067262062E+01 / declination of v1 axis of st (deg) PA_V3 = 62.828701 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = '0907100497F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = '0877200409F3' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = -1.620518527100E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 2.212941346051E+02 / position of space telescope x axis (km) POSTNSTY= -6.137602338622E+03 / position of space telescope y axis (km) POSTNSTZ= 3.326431287819E+03 / position of space telescope z axis (km) VELOCSTX= 7.548254552711E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= 3.504760465827E-01 / vel of space telescope along y axis (km/sec) VELOCSTZ= 1.445086041097E-01 / vel of space telescope along z axis (km/sec) RA_SUN = 3.438025323525E+02 / right ascension of the sun (deg) DEC_SUN = -6.896091337459E+00 / declination of the sun (deg) RA_MOON = 4.333491743681E+01 / right ascension of the moon (deg) DEC_MOON= 1.159932095736E+01 / declination of the moon (deg) VELABBRA= 12.396160 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.877270958333E+02 / right ascension of reference object (deg) DEC_REF = -5.999621944444E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 4.154976000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.243713242225E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.509412176658E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.904646667956E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.554327868960E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.792587462691E-01 / cosine of inclination ECCENTRY= 1.820544237486E-03 / eccentricity ECCENTX2= 3.641088474972E-03 / eccentricity times 2 ECBDX4D3= 8.045303752171E-09 / eccentricity cubed times 4/3 ESQDX5D2= 8.285953301608E-06 / eccentricity squared times 5/2 ECBDX3 = 1.810193344238E-08 / eccentricity cubed times 3 FDMEANAN= 1.721379765449E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.289750810721E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.052702168831E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 6.644081328846E-02 / argument of perigee (revolutions) MEANANOM= 1.704504435498E+00 / mean anomaly (radians) RCARGPER= 2.593128829936E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 5.164961100092E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.763444731591E-01 / sine of inclination SEMILREC= 6.984629700819E+06 / semi-latus rectum (meters) TIMEFFEC= 4.155010960000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 4.155144590000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'SL200 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;SDO;POST-AGB STAR 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'SDO 'TARKEY2 = 'POST-AGB STAR ' / PROPOSAL INFO: Flux Information MAG_V = 15.390000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = -0.200000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.040000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 1.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 2.877270958333E+02 / target right ascension from proposal (degrees) DEC_PROP= -5.999621944444E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000.0' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'A Complete Sample of Hot Post-AGB Stars in Globular Clusters 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.139441000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248428000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.349762000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369000000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.166700000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -7.063000000000E-05 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076319000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077731000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 7.061000000000E-05 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 2.740126000000E-02 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969927700000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969379700000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -2.739364000000E-02 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.325946300000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -2.060642700000E+02 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.951500900000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -2.434777200000E+02 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -1.952935700000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= -2.436213300000E+02 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.327381100000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= -2.062078800000E+02 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'o4er06llq ' / rootname of the observation setEXPNAME = 'o4er06llq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1989 / Number of words NLINES = 3 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 520 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 36 / Slit Number SLITSIZE= '52x0.2 ' / aperture field of view TFPFNAME= 'SL200 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 3 / Number of peakup search steps PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 10.0 / Integ. time NINTERPT= 1 / Number of Exposure Interrupts START1 = 5.087519609157E+04 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 35 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 53514 / Control section last checksum OCBRADT = 19.5563 / (dgC) CEB Radiator temp OCLLMP1T= 7.49519 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 7.13365 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 2.52404 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 2.34327 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 3.925 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 3.51827 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 7.75806 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 21.4714 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 21.4714 / (dgC) calibration lamp motor 2 temp OENCAFTT= 11.3375 / (dgC) Enclosure aft blukhead temp OENCAIPT= 4.72812 / (dgC) Enclosure aft inner panel temp OENCAOPT= 5.25117 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.4813 / (dgC) Enclosure forward internal panel temp OENCFOPT= 214.648 / Enclosure forward outer panel temperature countOFITAT = 11.9938 / (dgC) Fitting A temp OFITBT = 16.825 / (dgC) Fitting B temp OFITCT = 1.26797 / (dgC) Fitting C temp OHDM15V = -15.2518 / (V) Hold Mode Regulator - 15V OHDP15V = 15.0666 / (V) Hold mode regulator +15V OHDP5V = 4.92569 / (V) Hold mode regulator + 5V OKMDITBT= 21.6672 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 22.5857 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 22.725 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 22.7714 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 29.9979 / (dgC) M1 heater control temp OM1HTRW = 0.451125 / (w) M1 heater power OM2HTRT = 30.6417 / (dgC) M2 heater control temp OM2HTRW = 9.96855E-06 / (w) M2 heater power OMB10RV = 9.99006 / (V) SES A/D 10 reference volt OMB1RADT= 8.83203 / (dgC) MEB 1 radiator temp OMB2RADT= 18.8375 / (dgC) MEB 2 radiator temp OMBCSPT = 26.9719 / (dgC) MEB CS processor temp OMBDIG5V= 5.08137 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 22.8797 / (dgC) MEB MIE processor temp OMBP15V = 14.8817 / (V) Operatore mode regulator +15V OMSC1MT = 20.8589 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.4651 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 20.9599 / (dgC) Mode select cylinder 4 temp OOBBH1T = 20.2 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 20.85 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.9 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 23.25 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.125 / (V) LVPS thermal control system zone B volts OSCMTRT = 18.4781 / (dgC) CCD Shutter motor temp OSEMTRT = 21.0609 / (dgC) Echelle blocker motor temp OSMMTRT = 21.8188 / (dgC) Mode isolation shutter motor temp OSWMTRT = 23.3849 / (dgC) Slit wheel motor temp OTCZ1AT = 23.725 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 8.13814 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.4844 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 7.61533 / (w) Thermal controller power, zone 1B OTCZ2AT = 19.325 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 5.20444 / (w) Thermal controller power, zone 2A OTCZ2BT = 23.6375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.6365 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.6125 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 4.25121 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.0 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 4.13097 / (w) Thermal controller power, zone 3B OTECINV = 5.57183 / (V) TEC input voltage OTECTCV = -7.85646 / TEC temp control voltage OMBMC15V= 14.9012 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.25 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.89163 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.9401 / (V) LVPS CEB +15V OPSCB35V= 30.8745 / (V) LVPS CEB +35V OPSCB5V = 5.53867 / (V) LVPS CEB +5V OPSCM15V= -15.6118 / (V) LVPS CEB -15V OM1FLDV = -1500.89 / (V) M1 Field voltage OM1HBIAV= 139.731 / (V) M1 High bias voltage OM1LBIAV= 137.68 / (V) M1 Low bias voltage OM1M15VC= 0.0704274 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.422466 / (A) M1 -2V discriminator current OM1M2DV = -2.00244 / (V) M1 -2V discriminator voltage OM1MCPC = -41.9536 / (uA) M1 MCP current OM1MCPV = -2250.48 / (V) M1 MCP voltage OM1P15VC= 0.0300366 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275702 / (A) M1 +5V discriminator current OM1P5DV = 5.01343 / (V) M1 +5V discriminator voltage OM1P5VC = 0.492063 / (A) M1 +5V current OM1P5V = 5.19902 / (V) M1 +5 volts OM1P8VAC= 0.738462 / (A) M1 +8V amplifier current OM1P8AV = 8.01221 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 33.3213 / (dgC) M1 charge amplifier temp OM1DCDT = 34.0539 / (dgC) M1 decoder temp OM1MCET = 32.3445 / (dgC) M1 MCE temp OM1LVPST= 37.4727 / (dgC) M1 LVPS temp OM1HVPST= 36.0075 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 152.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.928 / (V) M2 High Bias Volotage OM2LBIAV= 157.851 / (V) M2 Low Bias Voltage OM2M15VC= 0.0728205 / (A) M2 -15V current OM2M15V = -15.8388 / (V) M2 - 15 volts OM2M2VDC= 0.422466 / (A) M2 -2V discriminator current OM2M2DV = -2.0 / (V) M2 -2V discriminator voltage OM2MCPC = -77.6068 / (uA) M2 MCP current OM2MCPV = -2052.45 / (V) M2 MCP voltage OM2P15VC= 0.030525 / (A) M2+15V current OM2P15V = 15.9463 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273748 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.483516 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.737973 / (A) M2 +8V amplifier current OM2P8AV = 8.00977 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.483516 / (V) M2 threshold voltage OM2CAT = 33.8097 / (dgC) M2 charge amplifier temp OM2DCDT = 34.7865 / (dgC) M2 decoder temp OM2MCET = 32.5887 / (dgC) M2 MCE temp OM2LVPST= 38.2053 / (dgC) M2 LVPS temp OM2HVPST= 36.4959 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 22.0191 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.38774 / (V) CEB A/D offset A V OCBADOBV= -2.37797 / (V) CEB A/D offset B V OCBADOCV= -2.37309 / (V) CEB A/D offset C V OCBADODV= -2.34379 / (V) CEB A/D offset D V OCBASPCT= 28.086 / CB aspect/bias pwb temp OCBA35A1= 33.3246 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.2399 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.07164 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.1131 / (V) CEB aspect X +15 analog V OCBA35A2= 34.9009 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2691 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.02299 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.1034 / (V) CEB aspect Y +15 analog V OCBCDAV = 22.0191 / (V) CEB C&D amp bias OCBCDODV= 15.8347 / (V) CEB C&D output diode OCBCLKA1= 27.786 / CB clock X pwb temp OCBCLKA2= 29.6539 / CB clock Y pwb temp OCBCMAA1= -14.9696 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.07164 / (V) CB clock drive X +5V OCBCPAA1= 14.8234 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9696 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.07164 / (V) CB clock drive Y +5V OCBCPAA2= 14.8234 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -6.12307 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.056 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0658 / (V) CEB phase 1 upper low V OCBP2LHV= 1.93352 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.92376 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.056 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.05921 / (V) CEB phase 3 upper low V OCBRABHV= 11.8413 / (V) CEB reset gate AB Hi OCBRABLV= -0.00494145 / (V) CB reset gate AB Lo OCBRCDHV= 11.9775 / (V) CB reset gate CD Hi OCBRCDLV= 0.0194725 / (V) CB reset gate CD Lo OCBS1AHV= 4.94766 / (V) CB serial phase 1A Hi V OCBS1ALV= -6.0156 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.95739 / (V) CB serial phase 1B Hi V OCBS1BLV= -6.02046 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.91361 / (V) CB serial phase 1C Hi V OCBS1CLV= -5.9329 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.91361 / (V) CB serial phase 1D Hi V OCBS1DLV= -5.93776 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.96712 / (V) CB serial phase 3A Hi V OCBS3ALV= -6.03019 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.95739 / (V) CB serial phase 3B Hi V OCBS3BLV= -6.03992 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.91361 / (V) CB serial phase 3C Hi V OCBS3CLV= -5.93776 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.90874 / (V) CB serial phase 3D Hi V OCBS3DLV= -4.99882 / (V) CB serial phase 3D Lo V OCBSABHV= 4.95739 / (V) CB serial phase 2 AB Hi OCBSABLV= -6.01074 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.91847 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -5.94263 / (V) CB serial phase 2 CD low V OCBSM1PV= 5.03758 / (V) CB state machine 1 +5V OCBSM2PV= -0.00737781 / (V) CB state machine 2 +5V OCBSWAHV= 4.97199 / (V) CB summing well A Hi OCBSWALV= -7.00805 / (V) CB summing well A Lo OCBSWBHV= 4.95739 / (V) CB summing well B Hi OCBSWBLV= -5.94749 / (V) CB summing well B Lo OCBSWCHV= 4.92334 / (V) CB summing well C Hi OCBSWCLV= -5.9329 / (V) CB summing well C Lo OCBSWDHV= 4.91361 / (V) CB summing well D Hi OCBSWDLV= -6.98859 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.00083 / (V) CEB transfer gate lower Low V OCBTIMT = 24.8426 / CEB timing pwb temp OCLM5V = -5.1691 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00346399 / Calibration lamps -5V current OCLP30V = 29.5317 / (V) Calibration lamps +30V voltage OCLP30VC= 0.0146175 / Calibration lamps +30V current OCLP5V = 5.25651 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 878392 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.2244 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.000337006 / (A) Slit Wheel motor current OSWMVEL = -0.0154701 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 112 / Mode select cylinder 1 shaft position OMSC3SP = 135 / Mode select cylinder 3 shaft position OMSC4SP = 156 / Mode select cylinder 4 shaft position OMSC1CRP= 1848 / Mode select cyl. 1 resolver position OMSC3CRP= 61753 / Mode select cyl. 3 resolver position OMSC4CRP= 24452 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2559 / CCD Shutter resolver position OSCMTRC = -0.0139194 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = -0.0046889 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 36 / Control section slit position OCSDQEXJ= 1280 / Control section data queue extract OCSDQINJ= 1280 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 41 / Control section Expos Que Insert OCSOBSQ = -30565 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'CmdReset ' / Control section reason for reset OCSDUMPJ= 0 / Control section dump pointer OCSFILLJ= 0 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 0 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFDown ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 37 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªª4ER06LLšÅu aðˆ I ô#ÊÑ -©0À0À°ÇÇPŠŰáðÍÀÍÀ´`¾€½°±P×p³p¬ÀÃà€á@¿ÀÑðÌ@ÌÌÎà¢pÏ ž€¿ð¸ ª Ë`ÁÀÐÐpàÒðÒ0¹`ÒкÀ¹ð¸ ¶ðâá Ñ°Ò°ÑÀÏЦ€½ð¦¼¥`­Ð¬¡€©0¯@¦€®Ð™ðpà0á ¿Pàpã Ç 0  - ¢ —Â4[g «ißQ Ð Ñ ÏÆçêãøò -77L q ß  Ó «Â35 àq Áa¼H Î Ð ÑÆéíäûô -ÅðÃapaa b~pë€$àÀàÛ ð $ÐÁ ÛÅðÃ~°‚` @Á߀ PÁ ß°Là1 ˜°À˜° ˜À ˜ ÀF@¦ F@¦@˜ ð™à€@ f``f@~@h€~@h` f`eÀ~@h`~ €€`f€~`h@Á0€`ÀLà`h ~€h€~@M`€ §€À§x>€ÀßP°Ä€` g8cÁp€€Ðb9 -³p‡œ8ñ9_„d Ÿð€ àñ$%)›`!¥áÏ%F‚__–d–d==#ÊÑ -©0À0À°ÇÇ`Å0Å âÍÀÍÀ´`¾€½À±@×p³€¬ÀÃðpÞÀÀ€ÑàÌ@ÌÌÍ@ @Ñ`ŸÀ¿à¸@ª Ë`ÁÀÐÐ`à ÒðÒ ¹pÒàºÐ¹à¸°¶ðâ@áÀѰҰѰÏФ »à§°½P¦à®à¬°¢©`°P¤ð¬0—ððà0á¿ Ü æðÃ0  - ¢ –Â5Zg «iæQ Ð Ñ ÏÆçêãøó -77O q ß  Ó ­Â3= àr ÅaÆI Ï Ð ÑÆéíäûô -ÅðÃapa a b~pë€%Á Û ð$ÐÁÛÅðÃ~À‚` PÁ ß° PÁ ß°Là1°˜°À˜  ˜À€˜ ÀF ¦ F`¦@™ð™À€PÀf``f`~@h€~`h`€f`f ~@h`~`€€`f@~@h`Á€@ÀM f€~@h€~@M€ §€ §x=àPßPƒ ð€p€ g8cÁP€ € b9 -³p‡œ8ñ9_„d Ÿð€ ðñ$%)›`!¥áÏ&F‚__–d–d==`$m°3Ç–æ -u aðˆ"UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/oc7w11viq_raw.fits b/lib/stistools/tests/data/tastis/oc7w11viq_raw.fits deleted file mode 100644 index f2016de3..00000000 --- a/lib/stistools/tests/data/tastis/oc7w11viq_raw.fits +++ /dev/null @@ -1 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-24' / date this file was written (yyyy-mm-dd) FILENAME= 'oc7w11viq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'oc7w11viq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198673206891E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083250760467E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 13465 / PEP proposal identifier LINENUM = '11.003 ' / proposal logsheet line number PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2014-07-24' / UT date of start of first exposure in file TTIMEOBS= '22:05:06' / UT start time of first exposure in file TEXPSTRT= 5.686292021364E+04 / start time (MJD) of 1st exposure in file TEXPEND = 56862.9202148 / end time (MJD) of last exposure in the file TEXPTIME= 0.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792868061343E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430L ' / optical element in use APERTURE= '0.3X0.05ND ' / aperture name PROPAPER= '0.3X0.05ND ' / proposed aperture name FILTER = 'ND_3 ' / filter in use APER_FOV= '0.33x0.05 ' / aperture field of view CENWAVE = 4300 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 536 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$yal1700po_drk.fits' / dark image file name PFLTFILE= 'oref$x6417094o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$pcc2026jo_lfl.fits' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740no_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 2800.0 / bandwidth of the data SPECRES = 800.0 / approx. resolving power at central wavelength CENTRWV = 4300.0 / central wavelength of the data MINWAVE = 2900.0 / minimum wavelength in spectrum MAXWAVE = 5700.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Alpha Cen: Climbing out of a Coronal Recession? (year 3 continuation'PROPTTL2= ') 'OBSET_ID= '11' / observation set id TARDESCR= 'STAR;G V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 7.470000000000E-01 / target parallax from proposal MU_RA = -3.820000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.100000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2013.4' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS2' / Search method for peakups PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion NUMSTEPS= 3 / Number of peakup search steps PEAKSTEP= 250.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 748587.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 274.962006 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 96.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.723 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 49.9157 / position angle of image y axis (deg. e of n) SUNANGLE= 109.972420 / angle between sun and V1 axis MOONANGL= 120.290939 / angle between moon and V1 axis SUN_ALT = -13.636504 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2014-07-24' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:05:06' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.686292021364E+04 / exposure start time (Modified Julian Date) EXPEND = 5.686292021480E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 33685 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.99128 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 20.192300 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 96.0 / maximum value of good pixels GOODMEAN= 22.986546 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€!€€!€€€€€"€€€€€€€!€€€€€€€€€€ €€€€€€€#€€€ €€€€$€€€ €€€€€€€€€€€!€€€€ €€€€ €€€!€ €€$€€€!€!€ €€"€ €€ € € € €€#€ €€€#€€%€%€€€!€€ € €€ € € €&€€€!€€ €€!€ € €#€€€ € € € €"€€€!€ €€€€"€€!€€!€!€"€"€€!€!€€!€€€ €€!€ € €!€€€€%€€"€"€"€ €€!€!€ € €€ €€€!€ €"€€€€$€ €€ €"€€$€ €%€!€ € € € €"€!€ €%€€ €€%€€ €€ € €€ €€€ €!€€!€ €!€ €#€#€!€€€!€ €€ €#€€"€%€"€€ €%€€ €$€!€€!€€ €!€$€!€$€%€€ €#€$€ €"€%€"€€!€#€#€€#€#€!€€"€#€€ €€ € €#€"€!€"€"€#€ € €#€€#€#€!€€€$€€!€&€€€€!€€!€#€"€ €$€"€€!€#€€ €"€$€!€€&€€"€!€€€€€ €€€€ €€#€"€€$€$€€€#€!€€"€!€!€#€ €!€"€%€€"€$€ €!€"€€!€€€€€!€%€$€#€€)€#€ €#€"€ € €%€'€'€"€"€ € €$€#€€#€#€#€ € €€$€#€ €#€!€ €#€!€ €$€#€#€#€#€!€€€ €$€#€€€%€#€'€!€$€€(€€!€!€!€ €!€€$€ €&€!€"€"€!€€ €#€"€"€!€&€ €€&€ €#€$€#€ €%€#€#€!€"€!€!€€€ €€&€#€€$€#€ €#€$€"€ €%€€ €€$€'€€ €"€ €€"€"€€€$€&€!€!€$€'€!€"€"€ € €"€ €&€"€%€!€&€ €!€!€ €!€#€!€$€#€€#€"€"€€"€"€€ €!€+€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€Y€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€Z€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€#€ €`XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.723 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 96.0 / maximum value of good pixels GOODMEAN= 22.986546 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.723 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1 / length of first data axis NAXIS2 = 3 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 753.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 1.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 2.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.198673206891E+02 / first axis value at reference pixel CRVAL2 = -6.083250760467E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -4.471625030206E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.313179672401E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 5.313179672401E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 4.471625030206E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198673206891E+02 / RA of aperture reference position DEC_APER= -6.083250760467E+01 / Declination of aperture reference position PA_APER = 4.991455704346E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 49.9157 / position angle of image y axis (deg. e of n) SUNANGLE= 109.972420 / angle between sun and V1 axis MOONANGL= 120.290939 / angle between moon and V1 axis SUN_ALT = -13.636504 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2014-07-24' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:05:06' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.686292021364E+04 / exposure start time (Modified Julian Date) EXPEND = 5.686292021480E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 33685 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.99128 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 20.192300 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 3 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 753.0 / maximum value of good pixels GOODMEAN= 321.000000 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END Òñ \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/oc7w11viq_spt.fits b/lib/stistools/tests/data/tastis/oc7w11viq_spt.fits deleted file mode 100644 index 7d1756fa..00000000 --- a/lib/stistools/tests/data/tastis/oc7w11viq_spt.fits +++ /dev/null @@ -1,5 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-24' / date this file was written (yyyy-mm-dd) FILENAME= 'oc7w11viq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'oc7w11viq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198673206891E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083250760467E+01 / declination of the target (deg) (J2000) ECL_LONG= 239.457560 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -42.600007 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 315.719278 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.671453 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV330X050 ' / aperture used for reference position ELON_REF= 239.457560 / ecliptic longitude at reference position (deg) ELAT_REF= -42.600007 / ecliptic latitude at reference position (deg) GLON_REF= 315.719278 / galactic longitude at reference position (deg) GLAT_REF= -0.671453 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 13465 / PEP proposal identifier LINENUM = '11.003 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108333303E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'C7W' / program id (base 36) PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '11' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'VI ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S330X050 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430L ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.300000000000E+03 / central wavelength SS_NSTEP= 3 / proposed number of peakup search steps SS_STPSZ= 250.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 24 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 77 / word 11/14 (0-255) PSTRTIME= '2014.205:22:03:37 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2014.205:22:06:06 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV330X050 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '13465_3 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.197501876358E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.076802331389E+01 / declination of v1 axis of st (deg) PA_V3 = 274.962006 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S7QX000330F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S7QX000694F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 4.991455704346E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 3.145261564486E+02 / position of space telescope x axis (km) POSTNSTY= -6.307810110362E+03 / position of space telescope y axis (km) POSTNSTZ= 2.842386648056E+03 / position of space telescope z axis (km) VELOCSTX= 7.347489178989E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -4.649811046524E-01 / vel of space telescope along y axis (km/sec) VELOCSTZ= -1.844925266142E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.239656883754E+02 / right ascension of the sun (deg) DEC_SUN = 1.977570659161E+01 / declination of the sun (deg) RA_MOON = 9.986293602190E+01 / right ascension of the moon (deg) DEC_MOON= 1.825063479330E+01 / declination of the moon (deg) VELABBRA= 19.952959 / aberration in position of the target ANNPARRA= 0.205775 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.198673206891E+02 / right ascension of reference object (deg) DEC_REF = -6.083250760467E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.326016000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.200436949899E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.609956247047E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.863911088257E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.597386300763E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788431564625E-01 / cosine of inclination ECCENTRY= 4.938209304037E-04 / eccentricity ECCENTX2= 9.876418608075E-04 / eccentricity times 2 ECBDX4D3= 1.605636443093E-10 / eccentricity cubed times 4/3 ESQDX5D2= 6.096477782621E-07 / eccentricity squared times 5/2 ECBDX3 = 3.612681996959E-10 / eccentricity cubed times 3 FDMEANAN= 1.745864255528E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.326285252628E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.110848539056E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 1.603241922496E-01 / argument of perigee (revolutions) MEANANOM= 8.672215377421E-01 / mean anomaly (radians) RCARGPER= 1.086896734316E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 4.664648901807E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.771107904240E-01 / sine of inclination SEMILREC= 6.925811822379E+06 / semi-latus rectum (meters) TIMEFFEC= 9.326613330000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.328538170000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430L ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S330X050 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;G V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'G V-IV 'ALIAS1 = 'ALP-CEN-B ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 1.330000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.100000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 7.470000000000E-01 / target parallax from proposal RA_PROP = 2.198700916667E+02 / target right ascension from proposal (degrees) DEC_PROP= -6.083261833333E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -3.820000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.100000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2013.4' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Alpha Cen: Climbing out of a Coronal Recession? (year 3 continuation'PROPTTL2= ') 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136806000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248360000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350548000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.357230000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -9.660330000000E-07 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 9.657600000000E-07 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 3.747800000000E-04 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -3.750000000000E-04 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.137811000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -3.909200000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.135442000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -4.146700000000E+00 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.135801000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 3.909200000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.138170000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 4.153000000000E+00 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'oc7w11viq ' / rootname of the observation setEXPNAME = 'oc7w11viq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 24 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 784 / Telemetry optical mode number OPTMODE = 'G430L ' / Optical Mode Name MODE_ID = '3.1 ' / IDT Mode identification CENWAVE = 4300 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 62 / Slit Number SLITSIZE= '0.33x0.05 ' / aperture field of view TFPFNAME= 'S330X050' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS2' / Search method for peakups NUMSTEPS= 3 / Number of peakup search steps PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion PEAKSTEP= 250.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 748587.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.3901 / (dgC) CEB Radiator temp OCLLMP1T= 10.3827 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.75481 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.46154 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.63654 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.95865 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.6417 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.8179 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.6938 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.05 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.96367 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.825 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.8313 / (dgC) Fitting A temp OFITBT = 18.8854 / (dgC) Fitting B temp OFITCT = 5.97539 / (dgC) Fitting C temp OHDM15V = -14.9794 / (V) Hold Mode Regulator - 15V OHDP15V = 14.619 / (V) Hold mode regulator +15V OHDP5V = 4.73596 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 34.4333 / (dgC) M1 heater control temp OM1HTRW = 0.250833 / (w) M1 heater power OM2HTRT = 36.5074 / (dgC) M2 heater control temp OM2HTRW = 0.387875 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.8135 / (dgC) MEB 2 radiator temp OMBCSPT = 35.2 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 29.3969 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6672 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6672 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.5766 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.2161 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.3 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.85 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.125 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1445 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.6107 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1427 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 24.7906 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.84455 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.0375 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.98446 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.425 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 12.0911 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.2 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.99214E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.35 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.76426 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.2 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.06 / (w) Thermal controller power, zone 3B OTECINV = 6.0901 / (V) TEC input voltage OTECTCV = -7.74415 / TEC temp control voltage OMBMC15V= 14.6774 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.8802 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.86731 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.8158 / (V) LVPS CEB +15V OPSCB35V= 33.8908 / (V) LVPS CEB +35V OPSCB5V = 5.45597 / (V) LVPS CEB +5V OPSCM15V= -14.308 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.485 / (V) M1 Low bias voltage OM1M15VC= 0.0703785 / (A) M1 -15V current OM1M15V = -15.746 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -42.0513 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.489621 / (A) M1 +5V current OM1P5V = 5.19414 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00488 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.7169 / (dgC) M1 charge amplifier temp OM1DCDT = 37.9611 / (dgC) M1 decoder temp OM1MCET = 36.4959 / (dgC) M1 MCE temp OM1LVPST= 41.3799 / (dgC) M1 LVPS temp OM1HVPST= 40.6473 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 8.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.072967 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0276923 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.473993 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.9843 / (dgC) M2 charge amplifier temp OM2DCDT = 37.9611 / (dgC) M2 decoder temp OM2MCET = 35.7633 / (dgC) M2 MCE temp OM2LVPST= 41.1357 / (dgC) M2 LVPS temp OM2HVPST= 37.9611 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.2339 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.04245 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08137 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.8833 / CB clock X pwb temp OCBCLKA2= 30.7304 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.08137 / (V) CB clock drive X +5V OCBCPAA1= 14.765 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.08137 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.07867 / (V) CEB phase 3 upper low V OCBRABHV= 11.9483 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.90388 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94263 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93307 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.9329 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96712 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03019 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.11542 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.99128 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.03019 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.7998 / CEB timing pwb temp OCLM5V = -5.10585 / (V) Calibration lamps -5V voltage OCLM5VC = -0.000412465 / Calibration lamps -5V current OCLP30V = 29.8236 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0132594 / Calibration lamps +30V current OCLP5V = 5.27597 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 33685 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00763371 / (A) Slit Wheel motor current OSWMVEL = -0.00666193 / (Rad) Slit whell motor velocity OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 137 / Mode select cylinder 3 shaft position OMSC4SP = 221 / Mode select cylinder 4 shaft position OMSC1CRP= 61206 / Mode select cyl. 1 resolver position OMSC3CRP= 2311 / Mode select cyl. 3 resolver position OMSC4CRP= 27873 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 511 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 62 / Control section slit position OCSDQEXJ= 1526 / Control section data queue extract OCSDQINJ= 1526 / Control section data queue insert OCSXQEXJ= 35 / Control section Expos Que Extract OCSXQINJ= 38 / Control section Expos Que Insert OCSOBSQ = -26437 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4300 / Control section optical scan position OCSOPMDP= 784 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 3463 / Control section dump pointer OCSFILLJ= 3463 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 186 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= -50 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªC7W11VIºƒ…#lM±ÐO“ÆI þó"ʤð¼@½ÃÃÐÁ`ÂPß@ËðÌ0ªP°€¿°²@€°Ðª¼ @Þ`½PÎÉÉÉÔ¡@ÖP¢¿Ðþ ¨àÁ Á@ÀÈ`àÑðÑð¹PÐнPµ ¸ð¸°á áÀÍÎàÍðÍ€¨pµp¥@²@¨àÀ`¨€žà¨À¢¨€ œPàÞÀàp¿æíPÆ$  ( -ÿ¡ ˜»3]!d «fÕO Ä Î ÐÆùúô -7b Ø ™Ö »½17 Õ^•G Ã Ì ÑÅöúñúÔÀÃ^À^ð^ð_@„ ê°%PÁ@Úàï€%0ÁÀÚ°ÔàÀˆÀ„€  ÁÀßP  ÁÀß`LàT°˜ `˜°€˜ €˜À`F@¦ F@¦™€€™ð~h@~@h@`f@€f@~Àh@~@h@@f@eà~@h€ f€`Â0~@g~@h`ÀfÀg@€À¦à€ ¦À}à>àà@~Ä@€àƒ•“À°€à€0EU â^‰Ýï lá d ø€„ðñ>öö#&»Ì‘ ‡ ‡¥€ÌàߺÿÿÿÎF‚__–d=ÿ"ʤð¼0½ÃÃÀÁ`Â`ß@ËðÌ0ªP°€¿°²P€°Ðª¼ Àß À ÎÉÉÉÓ0ŸÐÔp¡0¿Ðþ ¨àÁ Á@ÐÈ`àÑàÑà¹PÐнPµ°¸ð¸°â0â@Í ÎàÍàÍ€¨ ¶à¦°²p§@¿€«€¡€¦ð ©¢œ ßPá ¿ß`å Ä€  ( -ÿ¡ —»3Z!d «fáP Ä Î ÐÆøúô -7b Ø ™Ö »½17 Õ^”G Ã Ì ÑÅöúñúÔÀÃ^À^ð^ð_@„ ê°%PÁ@Úàï€%0ÁÀÚ°ÔàÀˆÀ„€  ÁÀßP  ÁÀß`LàT°˜ `˜°€˜ €˜À`F@¦ F@¦™€€™ð~h@~@h@`f@€f@~Àh@~@h@@f@eà~@h€ f€`Â0~@g~@h`ÀfÀg@€À¦à€ ¦À}à> ‚Àß°€ðÃàðƒ•“À €Ð€EU â^‰Ýï lád``€„ðñ>öö#&»Ì‘ ‡ ‡¥€Ìàß»ÿÿÿÎI‚__–d=ÿÌ>m°3Çúæ l+ñÒUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits b/lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits deleted file mode 100644 index dc04d2be..00000000 --- a/lib/stistools/tests/data/tastis/ocmv0lw6q_raw.fits +++ /dev/null @@ -1,2 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocmv0lw6q_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'CD-59D3300 ' / proposer's target name RA_TARG = 1.611740875000E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.978243055556E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 13760 / PEP proposal identifier LINENUM = '0L.001 ' / proposal logsheet line number PR_INV_L= 'Massa ' / last name of principal investigatorPR_INV_F= 'Derck ' / first name of principal investigator PR_INV_M= 'L. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-09-29' / UT date of start of first exposure in file TTIMEOBS= '23:43:50' / UT start time of first exposure in file TEXPSTRT= 5.766098877427E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57660.99082468 / end time (MJD) of last exposure in the file TEXPTIME= 1.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792903059028E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F25ND3 ' / aperture name PROPAPER= 'F25ND3 ' / proposed aperture name FILTER = 'ND_3 ' / filter in use APER_FOV= '24.7x24.7 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$0ac1554lo_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 2130.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Filling the gap --near UV, optical and near IR extinction 'OBSET_ID= '0L' / observation set id TARDESCR= 'STAR;MAIN SEQUENCE O 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'POINT ' / type of acquisition CENTMETH= 'N/A ' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 29.240311 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 12.000000 / the minimum value of the data DATAMAX = 394.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 164.437 / position angle of image y axis (deg. e of n) SUNANGLE= 60.164425 / angle between sun and V1 axis MOONANGL= 63.714752 / angle between moon and V1 axis SUN_ALT = 30.925177 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-29' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:43:50' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.766098877427E+04 / exposure start time (Modified Julian Date) EXPEND = 5.766098878005E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 506.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1560.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 270242 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.94749 / (V) CB summing well A Lo OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCCDHTAV= 18.741400 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 394.0 / maximum value of good pixels GOODMEAN= 31.502701 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €$€€€€€€€ €!€€€#€"€€€!€"€€!€€€!€€€€!€€€ €€ €€!€€"€€€ € €€€€€€€€€€!€"€€€"€€€!€ €!€€€€€ €!€€€"€ € € € €€€!€ €€€ €€€€€€€!€ €€€€€€€€"€ €€'€*€€h€ €€!€€€!€€ €#€€€ € €€€ €€€€!€€€ €€€ €"€€ €€€€€€€€ €€€!€!€€ €€€ €!€€€€#€€€!€ €€€€€ € €€€"€ €€ €#€ €€!€€€€€ €€€!€€€!€€€€!€€€ €€€€€€€"€&€&€ €i€€ €€€!€#€€€$€€€€ €€€"€!€ €#€!€€€ €€€€"€€€"€€€€ €€€€€€ €!€€€ €€€€ €€ €!€€€ €!€€ €€€€"€!€€€"€€ € €!€€ €"€€€€€€€!€ €€€ €€€"€€€€€€€€€€€%€&€€j€€€!€"€€ €€€€€€ € €€€€€ €€ €€€€€€€€€€€ €€"€!€!€€€"€€ €€€€!€!€€€$€€€"€€€!€ €€€"€!€€€!€€€"€€€€!€€€!€€€ €€€€!€€€€€€€€€€!€€€€ €€€€*€(€€h€€€!€€€€"€€€ €€€€ €€ € €!€€€!€€€!€€€€€ €!€"€€€!€"€ €€€!€€"€€€!€ €€€!€ €€€!€€€€€€"€ €€€"€ €€€ €€€ €"€ €€ €€€€€€€€€€€€€€ €€!€€€€€€€"€)€)€€h€€€ € € €€#€€€ € €€€€€€€€€€€ €€ €€€€!€€€ €€ € €!€€€!€€ €"€!€€€ €€€€"€ €€€ €€ € €€€"€€€ € €€€€€ € €€€ €€ €€ €"€€€ €€€€€€ €€€€€€€€ €€€'€*€€g€ €€€€€€ €€€€€ € €€€€ €€ €"€ €!€€€ €€€"€€€€€€€€€€ €€€€!€ €!€€€€€"€€ € €€€€€€"€€€€ € €"€€!€€€!€#€€€€€€€€€€€€€€!€€€!€€€€€€€!€ €€(€*€€h€ €€"€ € €€"€€€€€€€€€!€€€ €€€€!€€!€€ €"€€€€"€€€€€€€ €€ € €€ € €€€€€ €€€€€€ €€€€€ €€ €€€!€ €€€€€€ € €€€"€€!€€€€ €€€€€€€€€€ €€ €€'€+€ €g€ €€€€€€€ €€€€€€€"€€€€€€€€€€€€€€€€ €€€€€€€€€€€!€ €€€€ € € €€!€!€€€€!€ €€"€€€!€€€€ € €€!€€ €€ €€!€€ €€€€€€ €€€€€€€€€ €€€€ €(€(€€g€"€!€€€€€€€!€!€ €€€€€€€ € €€€€€ €€€€€ €€€€€€€€€ €€ € €€ €€ €€€€!€ €€ €€"€€€ € €€€€ €€€€ €€!€€€€€€€€€€€ €"€€€"€€€€€€€€€ €€€€€'€*€€j€!€ €€€€€ € €€ €!€€€ €€ €€ € €€"€€€€ €€€€€€€€€ €€€€€"€€ €€!€€€€ €!€€ €€€ €€!€€!€€€ €€ € €€€"€ € €!€ €€€!€ €€€!€€€!€€ €€ €€€€€€€€ €€€€"€'€(€€i€€€€€ €€€€ €€€€€€€€€!€€ € €€€€€€€€€€€ €€€!€€€ €!€ €€€€€€€!€€!€€!€€ €€!€ €€€€€!€€€€€€€€€"€€€€#€€€€€€€€€€ €€€ €€€€€€€€€!€&€'€€i€"€€ € € €"€ € € €€€"€!€€#€€!€€!€€ €€"€€ € €€ €!€"€€ €€ €€€€€!€€€"€"€ €€ €€€€€€€!€ € € €€!€€€€€ € €€€€€ € €!€€€€€€ €€€ € €€€ €€ €€€€€€€€ €€€(€'€€i€€€€ € €€€!€!€€"€ €€€ € €€ € €€€€ €€€ €€€€ €€€€€€ € €€€ €€"€ €€€ €€€€€€€ €€€€!€€€€€€€ €€€!€€€€ €€€€ €€€€€€!€€€€ €€€€€€€€€ €!€€*€'€€i€"€!€€€ €!€€€€€€€€€€ € €€€ €€€!€€€€!€€ €€€€€€€€€€ €€€€!€!€€€€€€"€ € €€"€€€€€€€"€€€!€"€€€"€€€ €€€ €€€€€€€ € € €€€€€€€€€ €€€€€&€)€€f€€€€€€€€€€ €€€€€€"€€€€ €€€€€€$€€"€€!€€€€€ € €€€€€ €€€ €€€ €€€€€€ €!€€ €€!€€€"€€ €€€€ €€!€€€€€€€€€ €€€€€!€ € €€€€ € €€€€€ € €*€(€€j€!€€€€€ € €€€€€€€ €€ €€€€ €€€€€€€€€€"€€€€€€ €€!€€ €!€€€"€€€€€"€€€€ €€€€€ €€€ €€ € €€€€€€€€€€€"€€€ €!€€€!€€€€€€€€ €€€€€€ €&€(€€h€ €€€€€€€€€"€€€!€€€€!€€€ €!€€€ €€"€€€€"€€ €€€€ €€€€"€€€ €"€€€ €€!€€€€€€!€!€€ €!€!€€$€€ € €€€€€€€"€€€ € €€€€€€€€€€€€€€€€€€€€!€'€*€€g€ €€"€ €€€€€ €€€€!€!€€€ €€€€€€ € €€€$€€€€!€€€€€ € € € €€!€€ € €"€€€"€€ € € €€€ €€€€!€€€€€€ €€€€!€€€ € € € €!€€€!€€€€€€€€€€€€€€€€ €!€+€'€€j€ €€ €€€"€ €€€!€€€€ € €€€€€€"€"€€!€€ €€ €€€€€€ €€€€€€€€"€€€€€€!€#€€#€!€ €€!€ €€!€€€ €!€€€€ €€€!€€€€ €€€!€€€€!€€€€€€€€€€€€€€ €€!€(€)€€h€ €€€"€€€€ €€€€€€!€€€!€€€€€€€ €!€€ €!€!€ €€€€€#€€€!€€€€ €€€!€€€€ €€€!€€€!€!€€€#€€€€ €€€€€€€ €€€€ €€€ €€€€ €€ €€€€€€€"€€€!€€€€)€)€ €g€!€€€ €€€€€€ €!€!€€€€€ € €€€€ €€€ €€€!€€€ € €€ €#€€ € €€€€$€ €€ €€€€ €!€€€!€€€€€€€!€!€€ € € €€ €€€ €€€ €"€€€€€ € €€€!€€€€€€€ €€€€€€€'€*€€g€ €€€"€€€€!€€€€€€ €€€€€!€€€€€€!€€"€ €€€ €€ €€€"€!€€€€€€€ €€ €!€€€ €€!€€€€€"€ €€ €"€€ €!€ €€ € €€€#€ €€"€€€ €!€€€ €€€€ €€ €€€€€ €€€€€%€+€€g€€"€€€€ €€€ € €€ €€€"€ €€€€€€ €€€ €#€€€!€"€ €!€€€€"€€€€!€€€!€€ € €!€ €€ €!€€ €"€ €€!€€€ €€€€#€€ €€ €€€€€ €!€ €€€!€€€ €€€ € €€ €€€€€€€€€!€'€+€€h€ €"€€€€€€€€€€!€€€ € €€€"€€€ €€€€#€€€€#€€#€€€€€€€€!€ €€!€€€€"€ €€!€!€€€#€ €€€€€€!€€€€€€€ €€€€€€€ €€€ €€€ € €€€€€€€"€€€€€€€ €(€%€€k€€€ €€"€ € €€!€€€!€€ €!€€ €€ €€ €€€€€ € €€€€€€"€€!€€!€€€€"€€€ €€€!€€€ €€ € € € €€!€"€€€ €!€ €€ € € € €€€€ €"€ €€ € €€€€€"€€€€€€€€€€€ €€€"€)€)€€i€ €#€ €€€!€€€ €€€ €€€€€!€€€!€€€€€€€ €€€ €!€€€€€€"€!€!€€!€€€ €"€€€ € €!€€€€€€€ €€€€€!€€€"€€€ €€€€#€€€€€€ €#€ €€€€€ €€€€€ €€€€ €€€(€(€€k€€ €€ €€ €!€€€ €€ € €€€€ €€€€€€€€€€€€€€€€€ €€ €€€€!€ €€€€ €€€!€!€€ €€€ €!€€€ €€€€€€€!€"€€€!€€€#€€€€€€€"€€€€ €€€€€€€€€€"€€€!€)€$€€k€ €€ €€€!€€€€€€€€!€!€€€ €€€ €€€ €€€€"€€€!€€€€ €€€€ €€€"€€€ € €€€!€ €"€ € €€€ € € € €"€€€!€ €€!€ €€€ € €€€€€€€€"€€€€!€€€€€€€ €€€!€ € €€(€(€€h€€€"€!€€!€ €€€"€ €€€€ €€€€€€"€ €€ € €€€€ € € €€€€ €€ €€!€ €€€€ €€€€ €€€€€€€ €€€€#€€€€ € €€ €€€€€€€"€!€!€€€€€€ €€€€€€ €€ €€€€€€€ €%€&€ €h€€€€ € €€ €€ €$€ €€ €€!€€€ €€€€€ €€€€€ € €€€€€€€€€€ € € €€ €€€ €€€!€€€ €€"€€ €€€€ €€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€€€)€+€ €f€€€ €€€€€!€€€ € €€!€€€€€ €€€€ €€€€€€€!€€€ €€€€!€ €€€€ €€!€€€ €€#€€€€ €€€!€!€€€"€€€€€!€€€€€ €!€€€€ €!€€ €€€€€€€€€€€€€€€€€€€(€)€€f€€€€€€€€ €€€€€€ €€€!€€€ €€€€!€€€€€€€€€€€!€€ € €€ €€€!€€€€"€€€€ €€!€€€€!€!€€€€€ €€€€€€ €€ €€€€€€€€€€€€€ €€€ €€€€ €€ € €€€'€*€€i€€€€ € €€€€€€ €€€ € €€€!€€€€€!€€€€€ €€€ €€ €!€€€€ €!€€€€€!€"€€€#€!€€€"€ €€!€ €€€!€€€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€)€'€€j€€€!€€!€ €€€!€€€€€ €€€€€€€ €€ €€€€!€ €€€€ € €€€€€€ €€ € €€€€!€€#€ €€€€€€"€!€€!€ €€€€€€!€ €€€!€ €€€€€€€€€€€€€€€€€€€€€ €€€ €€€*€'€€i€ € €€€€ €€!€€€€€ €€€ €€€€"€ € €€€€ € €€€€€€€€€€€ €"€!€€!€€€€€ € €!€€€ €€€!€€€"€€€€ €!€€€€€€€€€€€€€€€€€€€€€ €€!€€€€€ €€!€€€€*€)€€h€ €€"€€€€€€€€ € € €€"€€€€ € € €€€€"€€!€€ €"€€€€€€€€€!€€€€€€€!€ € € €"€€#€€€ € €€€€€€€€ €€!€ €€ € €€€!€€€€!€!€€€€€€€€€€€€€€€€"€€ €(€*€€i€ €€€ € €€ € € €€ €€€€ €€€€€€€!€€ €€ € €€ €€ € € € €€€€ € € €€€€€!€#€"€%€&€ €€€"€!€€!€"€€ €#€€€€€ €€ €€€€ €€€€!€€€€ €€€€€€€€€€€€€€€ €€€%€*€€f€€ €€€€€€ €"€€ €€€€€€€€ €€€€€€€€"€€€ €€€ €€€!€€€€€ €€€€ €"€(€+€*€&€$€ € €"€"€€€€€€€€!€ €€€€!€ €€€ €€€ €€"€€€€ €€€€€ €€€€€€€€€€€'€)€€e€ €!€€€€€€€€€€"€€€€ € €€!€€€€"€€€!€"€€€€€ €!€€€€ €€€ €€ €€#€€&€7€<€>€6€)€"€"€"€ €€"€!€€€ €!€€!€€€ €!€€€!€€€€"€€€!€€€€ €€€€€€!€!€€€ € €€€ €%€)€€f€ €€€€€€€€ € €!€!€€ €€!€€€ €€€ €!€€€!€€€€€€€€"€€ €€€€"€€€!€!€&€+€G€œ€†€@€*€!€"€$€ €!€ €€€ €"€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€ €€€!€€€€ €(€(€€j€€ €!€€ € €€€€ €€"€ €€€"€€ €!€ €€€!€€€€ € €€!€!€€"€€!€€€€€€ €€€€'€7€cŠ8€O€1€&€#€'€ €€ €€€€#€€€€"€"€€"€ €€€€€€ €€€€€€€!€€€€€ €€€€€€€€€ €*€)€€i€€€"€€€ €€€€€€€€ €€€€€ €€€€€"€€€ € € €€!€€€ €!€€"€€€€!€€€"€"€7€Z€œ€”€F€4€)€"€"€#€ €€!€!€€€€€€ €€€€€ €€!€ €€€"€€!€€ €€ €€€€!€€€€€€€ €€€!€(€(€€j€€€€€€€"€€ €€ €€ €"€€€€€€ € €€€€€€€€€€€ €€€€ €€ €€!€ €!€ € €$€+€3€6€6€5€'€$€€!€#€€€ €!€€€ €!€€"€€€ € €!€€!€ €€!€ €€€!€ €€€ €!€€€€€€€€€€ €€€*€+€ €j€€€€ €€€!€€€€€€€€ €€ €€€€!€€€€€€€!€€"€€€€€ €€€#€€€!€€€€#€!€"€&€&€ € €"€€€€ €€ € €€€€ €€€€€€€"€€€€ €€€€€€€€€ €!€€ €€€€€€€"€ €€€*€(€€i€"€€ €!€€"€€€€€"€ €€#€€€ €€€€!€€€!€"€€€ €€€€ €€€ €€€€"€€€€€ €"€€€€"€€ € € €€!€!€€€ €€€"€!€€€"€"€€€€€€ €#€€!€!€€€€€€€€€€!€€€€ €€€"€€ €'€*€€i€ €€€ €€€€€€€€€€ €#€€€€"€€€ €!€€"€ € €€€€€€€€€€€€!€€ €!€€€!€!€€€!€"€ € € €€€"€€€€"€€€€ €€ € € €€€€€€!€!€€€€€€ €€ €€€€€€€€"€€€ € €€*€*€ €g€€!€€€€€ €"€€€"€ €€€€€€"€€€€€€€#€ €€ €€€!€"€€€"€ €€€ €€€ €!€€ € €€€€"€€€ € €€€€€€ €€€!€€€€€€€€€€€ €€€ €€€€ €€€€€€ € €€€€€€€ €€)€)€€g€ € €€€!€€€ €€€€ €€€€ €€ €"€€ € € €€"€€€€€€€€ €€€ €€€€ €€€!€€€"€"€€€ €"€€ €#€!€ €!€ €€ € €€€ €€€ €!€€ € € €€"€ €€€€€€€!€€€€€€ €€€€€€€€ €(€+€€h€ €!€€€€€€€€€€€€€€ €€€"€€€€€€€€€€!€€€€!€€€!€!€ €€ €€€!€"€€!€!€€€€ €€ €!€€€€€€ €€€€€"€€€ €€€!€€€€ €€€€€€ €€€€€€€€ €€€ €€€€ €$€)€€h€€ €€€€€ €€!€€€ €!€€€!€!€€ €!€€€€€€!€€€€!€ €€€€€€"€€€!€€€€ €€€€€€€!€€€€€ €€ € €€€€€€ €€€!€€ €€ €€€€€€"€#€€€ €€ € € €€€!€€€€€€€"€'€'€ €g€€€€€€€€ € € €€€€€€€!€€ €€ €€!€!€€€"€€€€€€€!€€€€€€€€€ €€€€€€€€ €€€ €€€€€€€€!€€€€€€€€€ €€"€€ €€€!€!€€€"€€€€$€€€€€€€ €€€!€&€*€€k€ €€€€€€€€€€!€€"€€€ € € €€€€ €€!€ €€ € €€€ €€€!€€ €€€€€€€€€€€€ €€€!€€€€€€€€"€ €€€€€!€€€!€ €€€!€"€€€!€€€"€€€€€€€€€ €€€€€ €€€€)€'€€h€ €€€ €€€€€€€!€€ €!€ €€€"€€€€ €€"€ €€€!€€€!€ €€!€!€€€!€ €€€!€€€€€€€€€€"€€ €€"€€€€ €€€!€€ € €€€€€€€€€€ €€€€€€€!€€€ €€€€€€€€"€€ €(€+€€i€ €€€€€€€€€€€ €€€€!€€€€€€€€€!€€€ €€€€€€€ € €€€€€€ € € €€€€€ €€€ €€!€€"€ €€ €€€ €€ €€€€€ €!€€€€€€€!€€€€€€ €€"€€€€€€€€!€€€ €&€*€€f€ €€€€€€€€€ € €€€€€€€€€€!€€€ € €€€ € €!€€€€€€ €€€ € €€€€ €€€€€€ €€€€€€€ € €€€ €€€€€€"€€ €€€€€€€!€ €€€"€€€€€€€€€ €€€€€ €€"€'€(€ €h€ € €€€€€€€€€€ €€€ €€!€€!€€€€€€€!€ €€€ €€€€€€€ € €€€!€ €€€€€€€€!€€€€!€€€ €€ €€€€€€€€€ €€€ €€€€€€€€€€€ €€€€ € €€€€€€€€€"€(€(€€h€€ € €€€€€€€ €#€€€€€€€€€€!€€ €€!€€€ €€€€!€€€€ € € €€€ €!€€"€€€€ € €"€ €€€ €€€€ €"€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€)€+€ €i€€€€!€€ €€ €€€ €€€€€€€!€€€€€€ €€€€€€€€ € € € €€ €€€ €€€€€€€€€€€€€€"€€ €€€€€ €€"€€!€€€!€€"€€!€€€€€€€€€€€"€€€€€€€€€€€ €€€(€(€€f€ €€€ €€€€ € € €€€#€€ €€€ €€ €€€€€!€ €€€€€€€€€€€€€!€€€ €€€€ €€ €€!€!€€ €€€€ €€€!€€€€"€€€ € €€ €€€€€€€€€€€€€€"€€€€€€€ €€€€ €€*€)€€e€ € €€€ € €€€€€ €!€€ €!€ €€ €€€€ €€€€ €€€€"€€€€€€€€!€€ €€€€€€€!€€€€€€€€€ €€!€€€"€€€ € €€ €€€€!€€ €€€€€!€€€€ €€€ €€€€€€€€€€€€(€(€€g€ €€!€€!€€€€"€€ €"€ €€€€€€"€€€ €€€€€€€€ €€ € € €€ €€ €!€!€€€"€€€€ €€€ €€€€€ €€ €€€€ €€€€!€€€€€€!€€€€€€€€€€€!€ €€€€€€€€€!€€€ €!€'€&€€i€€€€€€ €€!€€€€€"€€€€€€€€€€€€€"€!€€€!€€€ € €€€ €€€ € €€€€€€ €€€€€€€€€ €€"€€ €€!€€ €#€€!€€ €€€ €€ €€€€€€€€€ €€ €€€€ €€€€€€€#€&€&€€i€€!€€€€€€€ € €€€€€€€€!€ €!€€€€!€€€"€€€ € €€€"€€€ €€!€€ €€€ €€€€€ €€ €€€"€ €€€ €€!€ €€€€ €€€ € €€ €€€€"€€€€€ €€€!€€€€€€€€€€!€€€!€*€(€€i€€€€€€ € €€€ €€!€ € €€€€€€#€€€€ €€€€"€€€ €€€€€€€€€€"€€€ €€€€!€ €€€"€!€€€€€#€€€!€"€€€ €€€€ €€€!€!€€€€€€"€€€€€€€ €!€€€ €€€€€€#€(€*€€m€ €€ € € €€€ € € €€€ €!€€€€€€"€€€ €€!€€€€€€€ €€€!€ €€€!€€€!€€€€€€€"€€ €"€€!€ € €€ €€€ €€€€€€€!€€€€ €€€€€ €€!€ €€€ €€€€€€€!€€€!€"€€ €*€&€€i€!€€€€€€€€€€ €€€"€#€€€ €€€ € €€ €#€€€€!€€€ €€€!€€€!€€€ € €€€!€ €€€€€€€!€€€ €€ €€€€€€€"€€€€€!€€€!€€€€€€€ €!€€ €€€€€€€"€€€€!€€€)€(€€h€€€€!€ €€€€€€!€!€€ €!€ €€"€ €€€€€€€€€€€€€€!€€€ €€€#€€€€!€ €€€€€!€!€€€!€€€ € €!€€"€€€!€€€€!€€€!€€€€!€€€ € €€€€€€€€€€ €€€€€€€€€&€*€€h€#€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€ €€€!€€€€€!€€€€€€#€€€ €€€€ €!€€!€€€ €€€€ € €€€#€ €€€€€!€!€€€€€€€€€€€€€€€€€€ €"€*€€h€ €€€€€!€€ € €€€ €€€€€€€ €€€€"€€€ € €€!€ €€€€€€€€€ €!€€€"€€€€ € €€!€€€!€ €€€€€€ € €€€"€€€€€€€!€€€ € €€€!€ €€€€€!€€€€€€€€€€€€!€'€*€€f€€€ €€€€€€!€€€ €€€€€ €€"€"€ €€€!€€€€€€ €€€€€€€ €€€€€!€€ €€!€€€€ € €€ €€€€€!€ € € €€€ € €€€€€€€€€€€ €€€€ €€ €€€€€€€€€€€€€€ €&€&€€i€€!€€€"€€€ €€€€€"€€ €€ €€€ €"€€€!€"€€!€€€!€"€€!€ €€€€!€€€€€€€€€!€€€€€€€ €€€!€!€€€€ €€€ €€€ €€€ € €€€€€€€!€€€€€€€€€€€€€€€ €€ €&€'€€h€€€€€"€ €€€€€€€ €€ €€€€€€€€€!€ €€€€€€€€€€!€ €€€€€€ €€€€ €€!€€€€€ €€€€ €€ €€ €€€€€€€€ €€€€!€€€€€€€€€ €€€€€ €€€€€€€€€ €'€&€€h€ €"€€€€€€€ €€€€ €€€€€ €€€€ €€€€€€ €€€€€ €€ €€ €€ € €€ €€€€€ €€"€ €€€€€€ €€€€€€€ €€ € € €€ €€€€€ €€€ €€€€ €€€€ €€ €€€€€€€€€€(€'€€g€ €€€€ €€€€ €€€€"€€€€€€"€ €€€€€€€€€€"€€€€€€€€€€€"€€€ €€ € €€€€ €€ €€"€€!€€€€!€ €€€€€€"€€€"€!€€€"€!€€ €€€€€€€€€€€€€€€€€€!€'€)€€h€ €€€€€"€€€€ €€€€€€ €€€€"€€€€€€ €€€€ €€€€€€€ € €!€ €!€ €€€€€€€€€ € € €€ €€€€€€€€€€ € €€€ €€ €!€€€€€€€€€€€€€€€€€€€€€€€€ €)€(€€j€ €€"€€€€!€€€ €€€€€€€!€ €€$€!€€€ €€€"€ €€"€€€€€€€€"€ €€ € €€€€€€ €€€ €"€€€€€€€€€€!€€€!€ €€€ € € €€€€ €€€€€ €€ €#€ €€€€€€€€€€ €€€)€)€€l€€ €€ €€!€€€€€€€€€€€"€€€!€"€€€€€€ €€€€€!€€€ €€€€€€€€€€€€€€!€€€€€!€€ €€€ €€ €!€€€€"€€€ €€€ €€€€!€€€!€ €€€ €€€€ €€€#€ €€€ € €€)€,€€g€"€€€ €€ €€ €€€€€€€!€€€€€€€!€€!€€€€€"€€€€€€€€€ € €€€!€ €€€"€€€ € €€€ €€€!€"€€ € €€€€€€€€€€€€€!€€€€€€€ €€€€!€€€€€€€€€€ €€€(€)€€f€ €!€€€€€€!€€€€€ €€ €€€!€€€€ €€€!€ €€€!€€€!€ €€ €€€€ € €€ €€€€"€!€€!€"€€€€€€€ €€€ € €€€ €€€"€ € €€!€€€€€!€€ €€€"€€€€€€!€€€€ € €€€!€€&€+€€e€ € €€€#€€€€€€"€€€ € €€€ € €€€!€ € €€#€€€ €€€€€€€€€€!€#€€€ € €€€ €€€!€€€ € €€€ €€€ €!€€ €€€€ € € €€"€€€€ €€€ €€€ €€€ €€€€€!€€€€€ € € €%€*€€h€ €"€€€€"€€€€€€€€€€"€€€€€€ €€€€"€€€€ €€€ €€"€€ € € €!€ €€€€€ €#€€€€ €€ € €€€€#€€€€€€ €!€€€€€€€ €€ €€€€ €€€€€€€!€€€€€€€€€!€€"€'€(€€i€€ €€€!€€!€€€€"€€€ €€€€€€€€€!€€€€€ €!€€€ €€€€ €!€€€€!€€€€€€€€€ €€€€ €€€€!€€€"€€€€ € €€€ € €€"€€€!€€€ €!€€€ €€€€€€€!€€ €€€€€#€(€(€€j€ €€€€ € €€ €€€€€ €€€ €€€€$€ €€€€€€€€€€"€ €€€ €€€€€€€€€€€€€€€€!€€€€ €€€€€€€ €€€€€€!€€ €!€€ €€€€€€ €€€€€€€€€€€€€€€€!€ €(€+€ €l€ €€€€€€€€ €€ €€€ €€€€ €€!€€€€€€€€€ €"€ €€€€€€ €!€€€€ €€€ € €€€ €€€!€€€€"€€€€!€ €€€ €€€€€€€€#€ €€€!€€ €€ €€€ €€!€€€€€!€€€€€€€(€(€€j€€ € €#€€€€€"€€€€ €€€ € €€€€€€€€€€€"€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€ €€!€€€!€ €€€€€€ €€€€€!€€€ €€€€€€€€€€€€€ € €€€€€€#€*€'€ €j€ €€€€€"€€€€€€€€€€€ €€€€€€ €€€€€€€"€€!€€€€€€€€€ €€€ €€!€€ €€$€!€!€€€ €€€ €€€€€!€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€!€€€€"€&€(€€g€€€ €€€€€€€ €€€€€€€€€€!€€€"€€€ €"€€ €€€€€€€€ €€€€!€ €€!€€€!€!€€€€€€!€€€€€€€€"€€€ €€€!€#€ €€€€€!€€€€€€€"€ € €€€€€!€€€€€€€"€'€'€€j€€ €"€ €€ €€€€€€€ € €€ €€€€ € €€€€"€€!€ €€ €€€€€€€€€€€€€€ €€€ €!€€€€€€€!€ €€!€€€ €#€!€€!€"€€€"€ €€ € €€€€€€"€€€€€ €€€€€€!€€!€€€€"€)€'€€j€€€€"€€€!€€€"€ €€€€€€€€€!€€€€ €€ € €€€€"€ €€!€€€€€€€€ €€€!€"€€!€€€€€€€ € €€€ €€ €!€ €€€€ €€"€€€€ € €€"€€€ €€€€€€€€€€€€€€!€!€€!€*€(€ €k€€€#€!€€€ € €€ €€€€"€ €€€€€€€€€€€ €€ €€€!€€€€ €€€!€ €€"€€€€ €€€€€€€$€ €€€"€€ €!€€€€#€€€#€€€€!€€€!€€€€!€€€!€€€ € €€€€€€€ €€"€€€!€'€*€ €j€ € €€ €€€!€€€€"€!€€ €€€€ €€€€ €€€ €€€€!€€€ € €€€€€€€€€€€€€€€ € €€€€!€€ € €€€€ €€€€€€ € €€€!€€€!€!€€€ €€€€€€€€€€€€€€ €€€€€"€*€(€€h€"€€€!€ €€€!€ €€€ €€€€!€€€ €€€€€ € €€€€€€ € €€€€!€€€ €€ € €€€ €€ €€€€€ €€€€€€€€!€€€€€€€€€€"€€€€€!€€€€€€€€€€€ €€€€€€ €€!€€ €*€(€€i€ € € €€€€€"€"€€ € €€€ €€€€€€€ €!€€€€€€€"€€€€€€€€ €€"€€"€€€€"€ €€€!€€€€€€€ € €€!€€€€!€€€€€€€!€€€€!€€€ €€€€€€!€ €€ €€ €€€€€€€€%€*€€h€€!€€€€ €€€ €€€€ €€€€€€€€€€!€€€€€ €€€€€€€€ € €€€ €€"€ €€€€€€€ €€€"€€€€ €€€€€€€ € €€€ €€ €€ €€€€€€ €€€€€€€€€€€€€€€€€ € €(€)€€j€ €€ €€€€ €€ €€ €€€!€€!€ €€€€ €€€€€€ € €€€€€€€€€ €"€€€€€€€€!€ €€€€€€€€€€€ €€€ €€€€ € €€€€€ €€ €€ € €€€ €€€!€ €€€ €€€ €€€€€€€€%€&€€f€ €€€€€€€€€€€€ €€€ €"€€€€€€ €€ €€€€€!€€€ €€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€ €€€ €€€ €€€ €"€ €€ €€€€ €€€€ €€€€€€€€ € € € € €€ €(€+€ €i€€ €€€"€€!€€ €€ € € €€ €!€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ € €'€*€€h€ €€ €€ €€€€!€ €€!€€€€€€€€ €€€€€€€€€€€€€!€€"€€€€€€€€€€€"€€€€€ €€€€€€!€€€€ €€€ €€€€€€€ €€€€€!€€€€€€€€€ €€€€€€€€€€€"€'€-€€f€€€€€ €€€€ €€€€€!€ €€€ €€€€ €"€ €€ €€ €!€€€€!€€€ € €€€ €€€€ €€€!€ €€€ € €€€€€€!€€!€!€€€ €€€€€€€ €€€€ €€€€€€€#€€€ €€€€€€€€€ €€!€&€)€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 394.0 / maximum value of good pixels GOODMEAN= 31.502701 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 10.000000 / the minimum value of the data DATAMAX = 331.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 164.437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-09-29' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:45:01' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.766098959612E+04 / exposure start time (Modified Julian Date) EXPEND = 5.766098960190E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 515.8 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1559.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 270241 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 331.0 / maximum value of good pixels GOODMEAN= 31.967800 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€ €"€ €€ €€€ €"€€€ € €€"€€€!€ € €€€ €€ €!€"€€!€ €€€€€€ € € €€€€!€€!€€"€!€€ € €€€€"€€!€€€€"€€€!€€€€$€ €€€€€€!€"€€ €!€ €€ €€€€€€€!€ € €€€€ €)€(€€j€ €"€€!€€!€€€€ €€ €€ €€€ € € €€!€!€€"€"€ €€!€€€€ €€€ €!€€"€!€ €€!€#€€ €!€!€€"€€€€#€!€€€ €€€"€€!€!€ €€€ € € €!€€€!€"€€€!€€€ € €€€"€!€€"€ €€€"€€€"€ €€'€+€€i€ €!€ €€!€€€"€ €€ €"€ €€!€€ €€€€!€!€ €€€ €€€!€€€!€€€"€€€€!€€€!€#€"€€€ €€ €!€€€!€€€€ €€€!€!€!€€€€€ €€ €€ €€!€€€€"€€€€€€€€€€ €€€€€"€€€"€€(€+€€g€€"€€€"€ €€€ € €!€"€"€!€€!€€€!€ €€€€€!€!€ €€ € €€€"€€€€"€€ €#€€€#€€€€!€€€"€€€ €!€"€€#€ € €!€ € €€ €"€€ €"€€€ € €€€€ € €€€€ € € €€€€€€€€€€ €€€!€)€*€€j€€!€"€€ €!€ €€$€#€ €€€€€"€€€€€€ €€"€€€"€€€ €€€ €!€€€!€€€"€€€€ €!€ € €"€€€ €€€ €€€ €"€"€€ €!€€€!€€€"€!€!€€€€ €"€!€€ €"€!€€ €€ €€€!€€€€€€€€€"€(€(€€k€€€ €"€€ €!€€€ €!€€€€€€!€ €€"€€€€!€€€ €"€€€"€€€€ €€!€€ € €€€€€!€€"€€€€!€ €€€ €!€ €€!€ € €"€ €€ €!€€€ €€€€ €€€"€ €€"€ €€€€€€ €€ €€€€€€€€ €(€&€€g€ € €€ €€€"€€€ €"€ €€€ €€$€#€€€"€€€"€€€€!€ € € € €€€ € €€!€ €€€!€ €€€$€ €€!€€€€ €€ €"€€ € € €€ €"€€€!€ €€!€#€ €€ €"€€"€€€€!€ €€!€!€€€"€€€€ €€€"€ €"€%€+€€g€ €€ €€#€€€"€ €€€!€ €€!€€ € €€€€"€ € € € €€!€€€€ €€€ € €€€#€€€€!€€€!€"€€ € €€ €!€€€ €"€€€!€ € €€"€€!€€ €!€"€ €€!€€€€ €"€€!€ €€€!€ €€€!€€€€€€€€ €+€,€€f€ € €€€"€ € €!€"€€€ €€€ € €€€€!€ €!€"€€€"€ €€"€€€!€ €€ € €€€ € €€€"€!€€ €!€€ € €€€"€!€€!€"€ €€€€#€ €!€"€€ €!€€€#€!€€€"€€ € €"€ €"€€€€!€€€€€€€€€ €€#€'€+€€h€ €€€€ € €€ € € €€ €€€€#€€€€!€€€#€ €€!€#€€€!€#€€ €"€€€!€"€€ € €€ € €€€€ € €€!€€€€€€ €!€€€!€€€!€#€€€"€"€€€€€€€€€"€€€€ €€€!€!€€€ €€€ €€€€!€)€'€€j€ €€ €€€€!€ €!€!€!€€"€ €€"€!€€!€!€ €€€"€€ €"€ €€"€!€€€ € €€ €€€€!€!€€ €€ €€€€€!€"€€€#€€ €!€!€€€€!€€!€"€€ €€€!€#€ €€!€"€€€!€ €€€!€€€€!€€€ €€ €€€€!€(€'€€i€ €€€#€€€ €!€€!€€€ € € €€!€ €€!€ €€€$€ €€€#€ €€!€ €!€"€ €€€"€ €€€!€€€ €#€€ € €€€€#€€€€€€#€€€€!€ €€!€!€€€"€€€ €€€ €!€€ €!€ €€!€€€€"€€€€!€€€ €€!€(€)€€g€"€€€"€ €€!€€ €€€€ €€ € €€ €€€ €€€€€!€€€ €€€€"€ €"€!€€"€€ €€!€ €€ €€€€ € €€€ €!€€"€€€!€ €€ €"€!€€€#€€€€"€€ €!€!€€ €!€€€ €€€!€€!€€€€€€€!€€ € €)€,€ €h€€!€€"€ € € € € €"€€€€€€!€€"€!€€€ €!€€€#€ €€ €€€€ €"€€ € €€€ € €€!€ € €€ € €"€ €€€ € € €€!€€ € €"€ €€€!€!€€ €€€!€"€€€!€€€ €€€ €€€€!€ €€ €€€ €€€€!€ €'€'€€i€ €!€ €€!€€€"€ €€€ €!€€€"€€€€ € €€ €!€€€ €€"€€ € €€€€€!€€€€€€ €€€€€!€€€€€€€€€!€"€€€!€ €€!€!€€€"€ €€€€€€!€!€€!€€€€€"€ € €!€€€€€€€"€€€!€(€+€€i€ € € €€€€€€€€€€€€ €€€ €!€€€€€!€€€ €!€!€€!€ €€"€€ € €!€€€!€€€€ € € €€€€€ €€€ €#€€€€ €€€"€€€ €!€"€!€ € €€€€!€€€€€€€ €"€€€!€€€€!€€€ €€€!€*€(€€i€ € € € € €€#€!€€!€ €€€"€€ € € €!€€"€€€"€€ €€!€!€ €€!€€€"€ €€€€"€€€€€€#€"€€"€€€€€€"€"€€€€€€€!€€€!€!€€€€ €€€€€ €!€€€!€€€€€!€€ €€€€€€€ €€ €(€(€ €g€ €€ €€ €€€€€€€€€€"€€ €€€€!€!€€€!€€€€€!€€"€€ € € €€€ €!€€€ €€!€!€€€!€!€€€€€ €€€€€"€ €!€€ €€€€€€€€!€€!€ €€€€ €!€€€!€ € €€"€€€ €!€€ €!€€ €&€+€€g€ € €€€ € € €€ €€€ €!€€ €"€"€ €"€€!€"€€"€€€ €€€€!€!€€€€€€€€€€ € €€€€"€€!€!€€€!€€ €€ €€€"€ €€€ €€€€€ € €$€€€€ € €€!€€€€ €€€#€€€ €€€€€€ €€€(€*€€g€ €€ €€!€ €€€€€€€!€€!€ € € €%€€!€ €!€!€€ €€ €€ €€€€€ €€!€€"€€€€€ €€ €€€€€!€€€€!€ €€!€€€€"€€ €€€€€€€€€€ €€€!€€€"€€€€€€ € €€€€€€€€ €"€'€'€€j€ €€ €€€€€€€!€€€€#€!€€!€€!€€€€€"€!€€€!€€€"€€€€ €€€!€"€€€€€!€€ €!€€€ €!€€!€€€€ € €€€€€€€€"€€€€ €€€€€ €€€€ €€€ €€€€€ €€€€€€€€€€(€*€€e€ €€ €€€!€€€#€€€€ €€€€"€€ €!€€€€ €!€€ € €€ € € €€€€€€€ €€ € €€ €€ €€ €!€€!€ € €€€€!€€!€€€ € € €$€€€!€ €€€€€!€#€€€ € € € €€ €!€€€!€€€€ € €€!€€ €'€)€€h€"€ €€€€€€ €"€€€ €€€ € €!€€!€€€€€ €€"€!€€€ €"€€€ €€€ €"€€€ €€€€"€€ € € €€€%€€€€ €€€€€€€!€€ €€€€€!€€€€"€€"€"€€€€€ € €€ €€€€€€€€€€€"€*€)€€j€"€€€€ € €€ €€€€€€"€ €€ € €€€€€ € €€!€!€ €€€€€!€€€ €"€€!€€€€€ € €€ €%€!€€ €!€€€€#€€€€ € €"€€€€ € €€ €!€!€ €€€€€€ €€€€€ €€!€€€ € €€€!€€€€€(€(€€h€€€€!€€ €"€€€€"€€€ €€€€€ €!€"€ €€€€€€€€€€€€€!€ €€€ €€!€€€"€€ €"€!€ € €€€€ € € €€€ €€€$€!€€€€€€ €!€€€€€€€€€€€€€€#€€€€"€!€€€ € €€€"€)€,€€h€€ €€€€€€ €€€€ € €"€€ € € €€€€€€€!€€€€ €€ €€ €€ €!€€€!€!€€€!€€€€€€€ €€ €€€€ € €!€€€"€ €"€€"€€!€"€!€€€"€ €!€€€€ €€ €€€!€€ €€€€€€€€ €€€ €(€(€€j€ €€€€€€€€ €€€€!€"€ €€€€€ €€€"€ € €€€ €€€ € €€€€€€"€€ €!€!€ €!€€€€€€"€€!€€$€ € €$€€€€"€€€!€"€!€ €€ €€€€ €€€€€€€€€€€€€€€€!€ €€€ €€€!€+€+€€f€€€€!€"€ € €€€€ €€€€€€"€€ €#€€€"€!€€ €€€€€€ €"€€€€€€ €€€€€€ €€€€€!€€!€€€€"€€€"€ €€€!€ €!€ €€!€€€€"€€!€ €€€"€€€€€€€€€€€€€€€ €€!€ €'€)€€i€€ €€"€€ €€€!€€ €€€€€€€€€ €#€€€"€ € €"€€€€€€€€ €€!€€€ € €€ €€€€€!€€ €€!€€€€€ €!€ €€€€€€ €€€€€!€€€ €€"€"€€€ €€€€€ €€€€€ €€€€€€€!€*€)€€j€!€€€#€€€%€€ €€"€€€€€"€€€€€ €!€!€!€!€€ €€€!€€€€ €€€€€€€€€€ €€!€ €€€ €€$€ €€€€"€ €!€€"€ €!€"€€€€€€€€"€"€ € €€!€€€€€ €€ €€€€€€€€€ €€€€(€,€€e€€€ €€ €€€ €€€€€!€!€€€€ €!€€ €!€"€ €€ €€€€€€€!€€€ €€€#€ € €€"€€ €€€€"€ €€ €€€€€"€ €"€€!€€€!€€€€ €€!€€€€!€€!€€€ €€€€€!€€€€€€€€€ € €€ €*€)€€g€€!€€!€ €€ €€ € €€€!€ €€!€€!€€€€€ €€!€€ €€€ € € €€"€€ €!€!€€€€€€€€ €€!€!€€€€€!€€€"€"€€€ €€€ €!€!€€!€€"€€ € €€!€€€!€ €€€€€€€ €€€ €€€€!€€€!€*€(€€j€€!€€ €€€ €!€€€ €€€€€ €€€ €!€€!€ € €!€€!€ €!€€ €€€!€ €€€€ €€€€ €€"€ €€€!€ €€"€€€€€€!€€€ €€ €€€"€€"€€ €!€ €€ €€€ €€ €€€ € €€ €€€€€€€ € €€€!€*€)€€l€€€€ €€€!€€€ € €€€€€€€€€€ €€ €€€€€€€ € €€€€!€"€€ € €€ €€€€!€€ €!€ €"€€€€€€ €€€ € €!€€€€€€€€€%€€ € €€€€!€€€€€€ €€€€€€!€€!€€ € € €€&€)€€j€ €!€€€€€€!€ €€€€ €#€€€ €!€€€€€€€ €€€!€ € €€€€ €€€ € € €€ € € € €€€€!€€ €"€€€ €€€€ € €€"€ €€€!€!€ €€"€ €!€ €€€€€!€ €€€ €€€!€€€€€€€€ €€€€#€&€*€€h€!€€ €€€€ €!€€€€€€ €€€"€€€€!€ € € €€€!€!€!€ €€€€€€!€€€€€€€"€€!€ € €!€"€€!€€€€ €€€"€€€"€ €€€%€ €€ €€€€€€ €€!€€€ € €€€€ € €€€ €€€€€€€ €€&€*€€h€ € €€€€ €"€€€€€€ €!€€€ € €€!€€€!€ €€€€ € €€€€ €€€€€€€ €€€€€€€€€"€!€ €€!€€€ €€!€!€€"€€€!€!€€"€€€€€"€"€€€ €€ €€€€€€€€€ €€ €€ €€€ € € €%€'€€f€€€€ €€€€€ €€€€€!€€ €€€€€€€!€€€€€€€€€€€€!€€€€ €€€ €€€€!€ €€"€!€€€!€€€€€€!€€"€ €€€€€!€"€ €!€ € €€€ € €€€€€€!€#€€€"€ €€€€€€ €!€€"€*€+€€h€ €€€€!€€!€€ €€€!€€€€"€€ € €€"€€ €€€!€€"€€ €€€€€!€ €!€€€€€!€ € €€€ €"€€€€!€ €€€!€ € € €€ €€ €€€€!€€ €€€€ €!€€€€ €€!€€"€€€€€€€!€ €€€€€€ €(€)€ €i€ €€€!€€€ €€"€€ €"€ €€!€ €€€€€ €€"€!€€ €€€#€!€€€€"€€€€!€"€ €€€€"€ €!€"€$€"€!€ € €€€ €€€€€€ € €€€ €!€€!€€€ €€€€€€€ €!€ €"€ € €€€€€€€€€€€€€ €'€*€€i€ €!€#€€€ €"€€€ € €€€ €€€"€€€€€ €€ €!€€€€ €€!€ €€€€€ € €!€#€€€€!€€€!€#€€€€"€€€€€€€!€€€ € €€€€€€€€€€ € €€ € € €€!€ € € €€ €€€€!€€€€€ €#€$€'€'€€i€€ € €€€"€€€€€ €€ €€€€"€€€€!€€€ € €€€ €€€€€ €€€ €€ €€€€€ €€€#€ €€€!€€€€$€€ €"€€!€ € € €€ €€"€€€€ €€€ €€#€ €€€€"€€€€€€€!€€€€!€€€ € € €(€)€€i€ € €€€"€!€€€"€€ €!€ €€€€€€€!€€€"€€€€ €€€€€!€€!€€ €€ € €€€ €"€ €!€ €!€!€"€€€€!€€€ €€€€ €€€ €€€€€€€€€ €€!€ €€ €€ €€€ €!€!€€ € €€€€€€€€€ €*€*€€j€€€€ € € €€$€€"€ € €€€€€€ €€€€ €€€€€€€€€€€ €€€ €€€€ €"€!€€!€!€€!€#€€€ €!€ € €€€€ €"€€€€€€€ €€ €€!€€€€!€ €€€€!€ €€€€€€€€!€€€!€€€€€ €*€(€€h€€€ €€€€€€!€€€€€!€ € € € €€€!€€ €€€€€€"€ €€€€€€€€€€!€€!€€"€€"€#€!€#€€"€!€!€"€!€"€€€€ €€$€!€!€ €!€ €€ €€ €€€!€!€€€ €€€ €€€€ €€!€€€€€€!€€€€(€*€€j€ €€!€€€€€€ €€€€"€ €€ € €€€ € €€€ €€ €€ €"€€€€!€ €"€ €€ € € €€ € €"€€!€"€"€ €"€ €"€€€"€€ €€ €€€"€€€ €€ € €€!€ € €€€€ €€€€#€€€€"€ €€€€€€€€ €!€ €€'€)€€i€"€€€€ € €!€€!€€ € €€!€€ €!€€€€ €€€€!€€ €!€€€€€€€ €€€ € €!€€ € €€€ €!€"€"€!€€ €"€€!€€ € € € €€"€€#€ €€€€$€ € €€€€€"€ €"€€€!€€€€!€€€€ €€€€€€ €€*€)€€g€ €€ €€€€€!€€!€€€€€€ €€€ €€€€€!€ €€€ €€€€ €€€!€€€€"€€€ €€!€€"€%€'€!€"€"€ € €€"€ €#€ €€ €"€€€€€ € €€ €€€€€€€€ €€€ €€€€€€€ €€€€€€€€€ €'€+€€h€€€€ €€€€ €"€€€€€€!€ € €€ €€€€ €€ €!€€€€"€€€€ €#€€€€ € €€€€"€#€)€'€3€4€.€#€€€ €"€€ €€#€"€€"€€€€ € €€!€€!€€€ €€!€€!€€€€€€€€€€€!€€ € €€€€ €'€&€€k€"€€ €€ €"€€€"€€ € €€ € €€ € €€!€€€!€€ €€ €!€ €€€€!€€ €€!€€€€!€€€$€ €*€=€S€P€7€*€$€#€!€%€!€ €€ € €€"€€!€ €"€€ €!€€!€€!€ € €€€"€€ €€€€€€€€€€€€€€€€!€&€(€€j€"€€#€€€!€€€€ €€ €€€€ € €!€€€!€ €!€!€€€€ €!€€!€€€€€€€€!€€€€!€ €"€.€U€è€F€)€'€$€"€$€"€ €€€!€!€ €€ €€!€!€€€ € € €€€€ €€€€!€€€€€€ €€€!€€€€€ €€!€%€*€€h€€"€€€"€€ €€!€€€ €"€ €€€!€!€ € €€€€ €"€€€ €€€€!€€"€ €€ € €€€!€!€€ €%€:€aK(€J€,€&€$€'€#€€!€€€€€€€ €€"€€ €!€€€"€ €€!€€€€€€€€€€€€€€€€€ €!€ €€ €(€(€€k€ €!€€ € €€!€€€€!€!€€€€"€€!€€ €€ €€"€€€€ €€€ € €€€€€€€€ €€"€ €€'€6€C€X€T€?€+€$€%€!€ € € €€€"€ €€ €!€€€ €!€ €€€€€!€€€€€€€€€€ €€€€€€ €€€€!€€€'€,€ €g€!€€€"€!€€€€€€ € €€€ €€€€!€€€!€€ €€€€€€€€€€€€!€!€€!€€€€!€€!€'€*€-€0€0€(€%€ €€"€ €!€€ € €€ €!€"€€ €!€!€€€"€€ €#€€€€"€€€"€€€€€€€€€€€€€€€"€'€)€€i€"€ € €€#€ €€€€€€€ €€€ €€€ €€€€#€!€€€€ €!€#€€€!€€€"€ €€ €"€€€!€#€€ €"€$€ €"€"€ €!€#€!€€ €!€€€!€€ €"€€€€"€"€€€!€ € €"€!€€€€ €€!€ €€€€€€€€ €€ €€€"€&€*€€h€ € €€€!€!€€€"€€€€ €€€"€ €€€$€€€!€!€€€!€!€€ €!€€€€!€€#€€ €€ € €€€ €€€#€ € € €€ € €"€€€"€€€ €!€€!€!€€!€ € €€€"€ €€"€ €€€!€€€!€ €€€!€€€€€€€ €€€!€%€'€€i€ € € € € €€"€€!€!€"€ €€!€€"€!€€€"€€€!€€ € €!€"€€ €€€ €€!€€€"€ €€"€€ € €#€"€€"€ € € € €€!€ €€ €€€€ €€€ €€"€€ €€€ € €€€€ € €€"€"€€€€€€€€€€ €€€ €€€"€'€*€ €k€€ € € €€€!€€€€#€€€€€€"€"€€"€ €€€ €!€€!€!€€€ €€€€€€€€ €€ €!€#€€ €€€ €!€ €€!€ €€€"€€€ € €€€!€€!€€ €€€ €€ €€€€€€€!€€€€ €€€€ €€€!€ €€ € € €"€*€*€€j€"€ €€€"€€€ €€€€€€€!€€€"€ € €€!€!€€ €€€!€€€ €€ €€#€€€"€!€€€€€€ €€€€ €#€€ €"€€€#€ € € €!€€€€€€"€!€ €€"€ €€€€€€€ €€€€!€€!€€€€€€€€€€€€€(€'€€g€ € €€ €€ €€ €!€€€ €"€€"€€€ €!€ €€ €#€€€ € €€!€ €€€€€€ €€€€!€€"€€€€€ €€"€ €!€!€ €!€ € €€€€"€€€€#€!€€€!€€"€€€€€€€ €"€€€"€ €€€€€€€ €€€€€€"€€)€&€€f€€"€€!€€"€€"€ €€€$€!€ € € €€€€ €€ €€#€€"€€€ €"€€€€€€€€ €€"€ €€€ €€€€€€€€€€!€€€!€ €€ €€€"€ € €€€ €€€!€€€!€"€ €€"€"€€€ €€€!€ €€€€"€€€€€€!€)€&€€k€€€ €€€!€ € € €€€€ € € €€€€€€€€ € €€€ €€ € €!€€ €!€€€!€€ € €!€€€!€€€€€€€€"€€€ €!€€ €€ €€#€€ €€€"€!€ €€€ € €!€€€ € €€€€€€€ €€€€ €€€!€€€€"€,€&€€j€ € €#€€€ €!€!€€!€€ €€$€!€€ €€"€€ €€€ € €#€€"€€ €€ €€€€€"€€ €€!€!€€€!€!€€€!€€ €€€€€!€€€"€ €€"€€€ €€"€ €"€€€€€!€€!€€€ €€€€ € €€€€€€€€€€!€€!€'€*€€j€ €€ €!€€€ € €€€"€€€"€€!€€ €€€€€€€ €!€€ € €€€"€€€!€ €€€€€€ €€ €€!€€€€€€ €!€€€€!€€€ €€€$€€€ €€€€!€€€#€€€€ €€€ €€€!€!€€€ €€€€€€€!€€€&€+€€k€ €€€ €!€€€€€€€€€€€!€€!€€!€ €!€ € €!€€€€!€ €€!€€€ €€ € €#€€€€€€€ €€€€"€ €€ €€€€!€€€#€€€ €!€€€€€€€"€€€€€€€€€€ €€€ €€€ €€€€€ €€ € €"€(€*€€g€ €#€€€€€!€€!€€€!€€"€!€!€€€!€€ €€!€!€!€ € €€€!€ €€!€ €€€ €€€!€€€!€!€€ €"€ €!€ €€€!€!€ €€ €!€€€ €"€€"€€€!€€"€ €€€€€€€€ €€€"€€€€ € €€€ €€€€€€€€&€)€€f€ €€"€€ € €"€€€"€€€€€€€!€€ €€€€!€!€€ €!€€€ €€€€€€€!€"€€€"€€€€!€€€€€€!€€€€€€!€€€€€ € €€ €€€€!€€€$€ €€€€€!€"€€€#€€€€€!€€€€€€ €€€"€'€)€€k€ €€!€€€!€ €€"€€€€€ €"€€ €€!€!€"€ €€"€€€ €#€€€"€€€ € €€ €€ €€ €€€€€ €€ € €€€€"€€"€"€€€€€€!€€€€"€€€ € €!€€!€€"€€€ €€€€ € € €€"€€€€#€!€€ €€€€(€*€ -€j€#€€€€ €€#€ €€€ € €€ € €!€€ € €!€"€€€€€€€!€ €€€#€€ €"€€€€!€€€!€!€€!€!€ €€!€€€ €!€€"€#€ €€$€!€€ €!€€€!€€€€!€€€ €"€€€"€€€€ €€€"€€€€€€€!€€€ €€€&€+€€h€!€ €€!€€€€!€€€!€ €€€ €€€#€€€€€€"€!€€€€€€€ €€€!€"€ € €€!€€!€€€ € €€€€ €€€ € €€ €"€€ € €€€"€€€€!€"€€€!€€ €!€€€€€€€!€€€!€€€€€€€€ € €!€!€€*€)€€f€"€ €€€ €€€ € €€€ €€€€ €€€!€ € €€€ €€!€€€!€!€€€ €€€€ €€€"€ €€€€€€ €€€!€ €€€€€€"€ €€ €#€€€#€€€€"€€€"€!€€"€€€€!€ €€€€€€€€ €"€€€€€€€"€"€(€*€€h€€!€ €€ €!€€!€ €€€€!€€€"€#€€€ €€€"€!€€!€!€"€ €€ €€!€ €€€€€€€!€!€€ €€ €€€€"€!€€€ €€€!€!€€€!€€€"€ €€!€ €€€"€€€€"€€€!€!€€€!€!€€"€ € €€€ €€€€€ €#€)€(€€l€€€€€!€€€€€ €€!€€"€€ €€€€€€€€€€ €€ €€ €€ €€ €!€€€!€€€!€€€ € €€€€!€€€ €€€"€ €!€€€€ €"€€€ €€€€"€€€"€€€!€!€€ €!€€€€!€€€€ €€"€€€€ €€€#€*€'€€i€€€!€ €€€#€€€€€€€!€€€€€€ €!€€€!€ €€€!€€€!€"€€ €!€!€ €!€ €€!€€€€ €€€€ €!€!€ € €€"€€€ €!€€€ €#€€€€€€ €!€€€"€ €€€€€€€€€#€ €€!€€€€$€€€€!€ €€*€*€€j€#€€€"€€!€"€"€€€€€ €€!€€€€€€€!€€€#€€ €!€!€€€!€€€!€€€€#€"€€ €"€€ € €€€!€€!€ €€€€#€€ €€"€€€€€ €€!€€!€!€ €€"€!€€€€€€ €€€!€ €€€€€€€!€€€ € €€(€,€€h€ € €€€!€€€$€€€ €"€€€€€ €€!€€ €!€ €€€ €€ €!€ €€€!€€€€€€€€€€ €!€€#€!€ €€#€€€!€ €€€ €€€!€ €€€ €€ €!€!€€€!€"€€"€ €€€!€€€€€€€€€€€€€€€€€€ €*€*€€h€ €!€ €€€!€€!€€ €€€€€ € €€€ € €€"€"€!€ € € €€!€€€€ €€€€"€€ €€€€€ €€€€€€€€€€€€€€!€€ €€€€€!€€!€!€€€€€€!€ €€ € €!€€ € € €€ €€€€ €€€ €€€€$€(€)€€h€ € €€€€!€€€€ €€€€€€ €"€€€ €€"€€ € €€"€ €€€ €€€"€€!€€!€€"€!€€€ € €€!€ €€€€€€"€€€€ €€€!€!€€€"€€ €!€"€€ € € €€€!€€€ €€€€€€€€€€!€ €€€€€€€(€)€€i€€€€€!€ € €€ € €€€ €€€€!€€€ €"€€€!€ € €€"€€ €!€"€"€€ €€€€ €€ € €€€"€€!€€€€€ €€ €€€€€ €€€€ € €€ € €!€"€€€ €€ €€€€€"€ € €€"€"€€ €€€€ €€€!€!€€ €(€*€ €i€!€€€ €€ € €"€ €€"€€€€€€ € € €€€€!€€!€ €€€!€€!€ €€€ €€€€€€€€ € € €!€€€!€!€€€!€ € €"€€€ €€€€ € €€"€"€€€"€ €€€€€€€ €€€€€€€ € €€€€€€€ €!€€!€(€(€€i€ €!€€ €#€€€ €€€€€ €€ €€ €€ € €€ € €€€ €€€"€!€€€ €€ €"€ €€ €"€€€ €!€€€€€€€€ €€ € €€ € €€ €€€"€ €€€€"€€€ € €€€€€€€ €€ €€€!€!€ €€"€€€€€€€€ €&€'€€i€€€€€€ €€"€€ €€!€€€€€€€€€€€ €€€!€!€€€€€€!€€€"€€€€€€€!€!€€€ €€€€"€€€!€€€€!€€€ €€!€€!€€€€"€€€€ €€"€ €€ €€€ €!€€€€€€€€€€€€€€!€'€*€€i€€€ €€€!€€€€#€€€€€€ € €€€!€ €€€#€€€€€€€€€ € € €€€#€€€ € €€ €€ €€€€€€!€€€!€€€!€ €€!€!€ €€€ €€€!€€€"€€€€ €€ €!€ € €€!€€€€€€€ €€€!€ €!€ €*€&€€f€€ € €€ €€!€€€€"€€€!€€€€ €€ € € €€€€ € €!€€€!€€€€€€€!€€€€!€"€ €€€€ € € €€€€€"€€€€€€ € €€€€€ €€ €€"€€!€€€€€€€€€€ €€€€"€€€€ € €€ €€ €*€)€€k€€€!€€€€€ €€€ €€€€ €€ € € €!€€€€!€ €€€€ €€ €€€€€ €€ €€€€ €€€€€€€!€!€€€!€€€ €€€€€ €€€€ € €€€€€€ €€€ €€€€$€ €€€ € €€€ € €€€ €€€!€€€)€-€€i€ €€€!€ €€€!€€ €€ €€€!€€€€€€ €€€€€!€ € €€!€€€€ €€ €!€€€€€ €"€€€#€€€!€#€€€!€€€€ € €€€€€€"€€€"€€€€ €€€"€€€€#€!€ €€€ € €€€€€€ € €€€!€€€'€+€€h€€€€!€ € €€€"€€€ €€€€ €€€"€ €€€!€€€"€€€!€"€€€ € € €€€€€€ €€€€€€€€!€€€€€ €€!€ € €€!€ €€€€€€€ € €€€€€€"€ €€ € €€€ €€€ € €€€€€€ € €€€€*€)€€i€!€€!€€€€€€€€ €€"€!€€€€€€ €€€€€€€ €!€ €€€€!€"€€ € €€€€ €€€#€€€€!€€€ €€€€!€€€€€€ €€ €€ €€€€€€€!€€€€€€€€ €€€€€ € €€€€ €€ €€€!€!€*€(€€k€€€!€€€€!€ €€ € €€€!€ €€!€€ €€€€ €€€ €€ €€€€€€€€€€"€€€€€ €"€€€ €€€€"€"€€€"€"€€€ €€€%€€€€!€€€€ €€€€€€$€ €€€€€€€ €€€€€€€ €€€€€€*€'€€k€ €€€%€"€!€ €€€ €!€€€!€ €€"€"€€€!€ €€ €€€€€€!€ €€€€€€ €€€€€ €!€!€€ € €!€€€ €€€"€!€!€€ € €€€€ €€ € €"€€ €!€€ €"€ €€€€ €€ €€€€€ €€!€€€€€ €€€€ €#€(€€k€€€€€€€€€€€€€€#€!€€€€€"€€!€!€€€ €€!€€€€ €€€"€€!€€!€€ €€ € €!€"€€€€ € €€€€ €€ €€€€ €€€"€€€ €€€€€€"€€€!€€€ € €€€€!€€€€ €€€!€€€€€ €(€)€€h€€ €€ €€€€€ €€"€€€€€€€ €!€€€ €€€€"€€€"€€!€ € €€€€€€€€€€€€ € € €€€"€ €€€!€€€ €!€€ €€ €€ € €€"€€€ €€€€€€€€!€€€!€€€€€€€€€!€€!€€ €€!€)€+€€g€ €€!€€€ €€!€€€€€€€€€€€!€€€€!€€€€€€€"€ €€!€ € €€!€ €€ € €€€"€€€€#€ €€€!€€€€ €€!€€€€€ €€ €€€ €€€€ €€€!€€€ €€€ €€€€€€€€€€ €€€€ € €(€(€€i€ €€€€€€!€ €€"€€ €"€€€€€€ €"€€€ €$€€€€€€€€€!€€€€€ €€€!€€€€€€€ €€€ €€€!€!€€€€€€€€€"€ €"€"€ € €€!€€€ €€$€€ €€ €€€ €€!€€ €€€!€€€ €€€"€*€)€€m€€€€€€€!€ €€!€!€€€€€€"€!€!€€!€€€!€€€€ €!€ € € €€ €€€€ € €€€ €€€ €€€"€"€€ €€€€!€€€€"€€€€!€€€"€€€"€ €€€!€!€€€€"€€#€€€€€€€€€€€€€€!€€!€*€(€€h€ €€"€€€€€€ €€ €!€€ € €€€"€ €€!€€€€#€€€#€ €€ € €€€!€ €€€ €€€€!€€€ €€€ €€€€ €€!€ €!€€€€€€!€€€"€"€€€€€€€€€€!€€€ €€€€!€€€€€€€€€€€€€)€(€€j€ €€€€€€ €€€€€ €€€€€€€"€€ €€!€€!€!€€€€€€€€€€#€€€ €!€€!€!€€€€€€€€€ €€!€€ € €€€€€!€€€€"€"€!€€€€€€"€€€ €€ €€€€€€ €€€€€€€ € €€ € €&€,€€g€ €€ €€ € €!€ €!€!€ €€€ €"€€€€€€€€€€"€ €€€ € €€€ €€€ €€€!€!€ €€€ €€ €#€ €€!€!€€€ €"€€#€€€€ € €€ €€€ €!€ € € € €€ € €€€!€€€€ €€€€€€€ €€€€€€"€!€(€+€€f€€"€€€€!€!€€!€ €€€"€ €€ €€€€!€€€€"€€€ €€ € €€€€ €€€!€€€"€€€ €"€ €€!€!€€ € €€€ €!€ €"€!€€!€!€ €€€#€#€€ € € €€€€€€€€€!€€ € €€€€€€€€€€€"€€ €"€)€*€€i€€ € €€€ € €€ €"€€€!€€€ €€!€€!€ €!€€€€€ €€€€!€€€€€€€€ € €!€ €€ €€€!€ €€€!€"€€ € €€€"€ €€€€"€€!€ €€€ €€€ € €€€€€€!€€€ €€€€ €€€€€€€ €€!€€,€,€€iXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 331.0 / maximum value of good pixels GOODMEAN= 31.967800 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 15.000000 / the minimum value of the data DATAMAX = 5962.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 164.437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-09-29' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:46:47' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.766099082352E+04 / exposure start time (Modified Julian Date) EXPEND = 5.766099082468E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1454.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 15.0 / minimum value of good pixels GOODMAX = 5962.0 / maximum value of good pixels GOODMEAN= 103.345558 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€"€€!€€"€ €#€!€€!€€ €#€%€ €!€%€"€"€"€#€€'€#€,€)€€h€€€€€€!€!€€€ €€€!€ €#€€#€!€"€#€#€"€€"€#€!€-€*€€h€€€ €#€ €!€€€"€€€ €€ €#€!€€"€#€%€$€"€%€€€%€*€,€€i€€€€ €€€!€€€€!€€€!€!€#€"€#€!€€$€!€€ €"€"€,€*€€k€!€!€"€€€€€€€€€€€€"€$€"€€ €€"€!€!€!€#€%€*€'€€i€€€€ €€€ € €€ €!€ €€!€"€ €"€$€!€ €#€€€ €"€"€(€*€€j€"€ €"€€€ €€€!€ €€!€ €"€#€!€%€!€!€ €€€!€ €€€-€,€€k€ €€€€€€€ €€€#€€€!€$€!€!€#€€€€€"€ €€€&€)€€d€ €"€"€€€#€€€€ €€€"€#€#€'€'€#€€ € € €€ €€!€(€*€€i€"€!€€!€ € €€"€!€€€ € € €%€&€ €&€$€"€€€"€€ €"€(€+€€j€ €€ €!€€€!€!€ €€ €€!€$€"€&€'€'€€!€!€€€#€€€*€)€€g€ €"€€€ €!€€ €"€€€$€"€€*€/€-€#€%€"€€!€€€€$€+€)€€g€"€€ €!€€"€ €!€€!€"€!€!€&€0€/€0€-€ €€#€ €€ €"€#€,€+€€f€€!€!€€"€!€!€ €"€ €€!€&€1€\€ˆ€€Q€5€#€ €!€!€ €€$€*€&€€l€ €!€€"€ €€ € €"€!€$€&€2„(†…®‚®€p€3€#€!€€ €€(€)€-€€h€ €€ €!€!€!€€ €%€!€)€1€cƒŒö“Ž’:‡Ò€Y€$€ €%€#€ € €,€,€€h€ € € €#€!€€€ € €!€-€7€sƒ?E—J•S‰q-€r€%€&€"€$€ €"€,€(€€j€€ € € € €€"€€$€"€*€*€[‚ÁŒÿ”’‡Ü€ñ€T€"€$€!€ €#€€*€,€€h€ €!€€€€€"€€!€!€ €$€:„ˆ†¯…³‚c€b€2€#€€!€€#€#€*€+€€h€ € € €!€!€€€€€€"€€%€3€Z€Ž€|€I€0€'€ € € €!€€"€(€-€€h€$€€€!€€ €!€ € €€!€#€"€&€$€/€.€&€"€!€€€ €"€€!€*€,€€h€!€€#€€"€€€€€ €!€€!€€$€!€&€€€#€€!€ € €€#€(€+€€i€ €€€!€!€€ € €€€ €€€€€#€ €€ €!€€€!€ €€€(€)€€i€€€ €€ € €€€€ €€€ €€!€€ €!€€!€€€€€ € €*€)€€j€ € €€€€ €€"€€!€€€ €€ €€"€€ €€ € €€€€€%€*€€h€ €€€ €€ €€€€ € €€"€€€ € €€€"€€€!€ €€!€+€+€€h€!€ €€ € €€ €"€!€ €€€€€ €€ €€ €€"€€€"€"€"€(€,€€i€ €€€€€ €€ €€ €!€€€"€€!€ €€€"€ €€ €!€€!€,€*€€j€€€€€ € € € € €€€€ €€ €€€€€ €€ €€€€#€+€*€€j€€€€€ €€!€!€€!€€€€"€€€"€"€€€ €€€!€€€'€,€€eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 15.0 / minimum value of good pixels GOODMAX = 5962.0 / maximum value of good pixels GOODMEAN= 103.345558 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 1.611740875000E+02 / first axis value at reference pixel CRVAL2 = -5.978243055556E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.35839E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 3.78415E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 3.78311E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.35876E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.611740875000E+02 / RA of aperture reference position DEC_APER= -5.978243055556E+01 / Declination of aperture reference position PA_APER = 1.644344694824E+02 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits b/lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits deleted file mode 100644 index a465897e..00000000 --- a/lib/stistools/tests/data/tastis/ocmv0lw6q_spt.fits +++ /dev/null @@ -1,13 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocmv0lw6q_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'CD-59D3300 ' / proposer's target name RA_TARG = 1.611740875000E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.978243055556E+01 / declination of the target (deg) (J2000) ECL_LONG= 202.233261 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -59.027771 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 287.602116 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.737521 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV25ND3 ' / aperture used for reference position ELON_REF= 202.233261 / ecliptic longitude at reference position (deg) ELAT_REF= -59.027771 / ecliptic latitude at reference position (deg) GLON_REF= 287.602116 / galactic longitude at reference position (deg) GLAT_REF= -0.737521 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 13760 / PEP proposal identifier LINENUM = '0L.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CMV' / program id (base 36) PR_INV_L= 'Massa ' / last name of principal investigatorPR_INV_F= 'Derck ' / first name of principal investigator PR_INV_M= 'L. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '0L' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'W6 ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F25ND3 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 486 / proposed axis1 detector pixel of subarray startSS_A1SZE= 100.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 465 / proposed axis2 detector pixel of subarray startSS_A2SZE= 100.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'CENTROID ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 39 / word 11/14 (0-255) PSTRTIME= '2016.273:23:42:31 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.273:23:47:40 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV25ND3 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '13760_111 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 1.613375787086E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -5.975703409406E+01 / declination of v1 axis of st (deg) PA_V3 = 29.240311 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S4B0000993F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S4B0000953F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 1.644344694824E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -1.750777146139E+03 / position of space telescope x axis (km) POSTNSTY= 6.690593030542E+03 / position of space telescope y axis (km) POSTNSTZ= 1.124886397001E+02 / position of space telescope z axis (km) VELOCSTX= -6.473422309554E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -1.633075537227E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -3.620600280566E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.864410696663E+02 / right ascension of the sun (deg) DEC_SUN = -2.783848125485E+00 / declination of the sun (deg) RA_MOON = 1.764408152273E+02 / right ascension of the moon (deg) DEC_MOON= 2.841874182440E+00 / declination of the moon (deg) VELABBRA= 19.683411 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 1.611740875000E+02 / right ascension of reference object (deg) DEC_REF = -5.978243055556E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 1.001548800000E+09 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.784068052004E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.636010163814E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.853631929968E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.614767167376E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.799248020440E-01 / cosine of inclination ECCENTRY= 3.227105171117E-04 / eccentricity ECCENTX2= 6.454210342234E-04 / eccentricity times 2 ECBDX4D3= 4.481032506335E-11 / eccentricity cubed times 4/3 ESQDX5D2= 2.603551946362E-07 / eccentricity squared times 5/2 ECBDX3 = 1.008232313925E-10 / eccentricity cubed times 3 FDMEANAN= 1.752153088663E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.338136638014E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.129710604722E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.526221538671E-01 / argument of perigee (revolutions) MEANANOM= 6.158698567423E+00 / mean anomaly (radians) RCARGPER= -2.726006377587E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 8.505563882624E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.751129789300E-01 / sine of inclination SEMILREC= 6.916544091177E+06 / semi-latus rectum (meters) TIMEFFEC= 1.001595622000E+09 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 1.001806951000E+09 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F25ND3 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;MAIN SEQUENCE O 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'MAIN SEQUENCE O ' / PROPOSAL INFO: Flux Information MAG_V = 8.520000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.500000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 1.611740875000E+02 / target right ascension from proposal (degrees) DEC_PROP= -5.978243055556E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Filling the gap --near UV, optical and near IR extinction 'PROP_TYP= 'SNAP ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136348000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247904000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350529000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -2.629790000000E-06 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 2.629100000000E-06 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.020200000000E-03 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.020000000000E-03 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.136609000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -1.978244100000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.958961000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.996041800000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136316000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 1.983376700000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.313964000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 2.001174300000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocmv0lw6q ' / rootname of the observation setEXPNAME = 'ocmv0lw6q' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 57 / Slit Number SLITSIZE= '24.7x24.7 ' / aperture field of view TFPFNAME= 'F25ND6 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'POINT ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 506.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.5385 / (dgC) CEB Radiator temp OCLLMP1T= 10.237 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.52885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.24135 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.60865 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.50673 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.78365 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3735 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5393 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.1604 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.7 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.50937 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3875 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.656 / Enclosure forward outer panel temperature countOFITAT = 13.6125 / (dgC) Fitting A temp OFITBT = 18.5021 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -14.9696 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5412 / (V) Hold mode regulator +15V OHDP5V = 4.90136 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.5125 / (dgC) M1 heater control temp OM1HTRW = 0.461667 / (w) M1 heater power OM2HTRT = 33.2417 / (dgC) M2 heater control temp OM2HTRW = 0.22975 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.5563 / (dgC) MEB 2 radiator temp OMBCSPT = 35.15 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.0938 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2229 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.0232 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.4 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1542 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1931 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 24.3781 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.19871 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.0031 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.18683 / (w) Thermal controller power, zone 1B OTCZ2AT = 19.7 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.2012 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.7625 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.97641E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.575 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.4857 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.5 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.523781 / (w) Thermal controller power, zone 3B OTECINV = 6.52653 / (V) TEC input voltage OTECTCV = -7.73439 / TEC temp control voltage OMBMC15V= 14.6774 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9386 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.88677 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.2979 / (V) LVPS CEB +15V OPSCB35V= 33.4043 / (V) LVPS CEB +35V OPSCB5V = 4.94028 / (V) LVPS CEB +5V OPSCM15V= -15.2032 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710134 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.482784 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.73602 / (A) M1 +8V amplifier current OM1P8AV = 8.0 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.2749 / (dgC) M1 charge amplifier temp OM1DCDT = 35.7633 / (dgC) M1 decoder temp OM1MCET = 34.2981 / (dgC) M1 MCE temp OM1LVPST= 39.1821 / (dgC) M1 LVPS temp OM1HVPST= 35.5191 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0276923 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.472772 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 35.7633 / (dgC) M2 charge amplifier temp OM2DCDT = 36.7401 / (dgC) M2 decoder temp OM2MCET = 34.7865 / (dgC) M2 MCE temp OM2LVPST= 40.1589 / (dgC) M2 LVPS temp OM2HVPST= 36.7401 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.59282 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 30.6615 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1718 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0644 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08137 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.3451 / CB clock X pwb temp OCBCLKA2= 30.0655 / CB clock Y pwb temp OCBCMAA1= -14.9696 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.08623 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9015 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.08137 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.93352 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0487692 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.92803 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91847 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.96226 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.95722 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91847 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.95722 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.94766 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.0156 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02046 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90874 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96226 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.05704 / (V) CB state machine 2 +5V OCBSWAHV= 4.92334 / (V) CB summing well A Hi OCBSWALV= -5.94749 / (V) CB summing well A Lo OCBSWBHV= 4.90874 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96712 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97685 / (V) CB summing well D Hi OCBSWDLV= -5.99128 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.2592 / CEB timing pwb temp OCLM5V = -5.12045 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0278762 / Calibration lamps -5V current OCLP30V = 29.9209 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0252752 / Calibration lamps +30V current OCLP5V = 5.19326 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 270242 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00276924 / (A) Slit Wheel motor current OSWMVEL = -0.0301505 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1791 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3585 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 57 / Control section slit position OCSDQEXJ= 3875 / Control section data queue extract OCSDQINJ= 3875 / Control section data queue insert OCSXQEXJ= 24 / Control section Expos Que Extract OCSXQINJ= 25 / Control section Expos Que Insert OCSOBSQ = -29613 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 587 / Control section dump pointer OCSFILLJ= 587 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 82 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCMV0LW6 R*Õ ŒšžÐ’BIddÑæ"Ê¥à¼p½`İÅÂðÃð߀ÌPÌ0¬P±Ã€²à€ ± ª½p PÝà¿pÎÈðÈàÈðÒð¢€Ò ¡ ¿Ðþ ©0Á0Á0ÐÈÀàÒ Ò ¹`Ñ@½µ€¸ð¹@áÐâÍÐÏÍÐÍ`§°¶À¥0³¦Æ©pž © ¥0©¡°žPÞÀà ¿@ÜPëÀ¿ðÐ& ( -þ® «½3+ ½f¹U Æ Ì ÏÆïñëÿðb Ø ™Ñ »½17 Õ^H Ä Ì ÑÅñõíõÔÀÃ^Ð^ð^ð_@ƒ€ê°%pÁÐÚÐï€%PÁÀÚàÔàÀ‡°ƒ0 PÁÐßp ÀÁÀßpLàT°˜ €˜°€˜À€˜À`F@¦ F@¥à™À€ ™ À~`h ~`h`€f@€f`~`gà~`gà f``f@~ h@€f €`Áp~€h ~ h` f€àg€ ¦à€ ¦à|Ð>°~Àà|€Ã0€p€ ¢cÀ°€ 0b9 -³sŠŸÿñ$_l dàà€„ðñ9## S`ƒKK¥Ìà_RI‚__ÿ"ʥༀ½`ÄÀÅÂðÃðßpÌPÌ0¬P±Ã€²à€±ª½pÀà0ÀPÎÈðÈàÈàÐР0ÒÀŸ ¿Ðþ ©0Á Á@ÀÈÀàÒ Ò¹`Ñ@½µ€¸à¹@áÀáàÍÀÏÍàÍ`§´P§P² ©ÇÀª¡Ð¨¦¦pŸð›° ßàà¿€ä@ë Â0$Ð& ' -þ® «½3+ ½f»U Æ Í ÏÆïñëÿðb Ø ™Ñ »¾18 Õ^“H Ä Ì ÑÅñõìõÔÀÃ^Ð^ð^ð_@ƒ€ê°%pÁÐÚÐï€%PÁÀÚàÔàÀ‡°ƒ0 PÁÐßp ÀÁÀßpLàT°˜ €˜°€˜À€˜À`F@¦ F@¥à™À€ ™ À~`h ~`h`€f@€f`~`gà~`gà f``f@~ h@€f €`Áp~€h ~ h` f€àg€ ¦à€ ¦à|Ð>€`à~`Ä@€~P¢cÀ € Pb9 -³sŠŸÿñ$_ld  €„ðñ9## S`ƒKK¥Ìà_Sa‚__ÿ`9m°3ÁÄÔæUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocmv0lw6q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 57 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.2 / fsw located subarray axis1 coord. of target TARGA2 = 515.8 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.5385 / (dgC) CEB Radiator temp OCLLMP1T= 10.1885 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.52885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.19615 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.60865 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.50673 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.78365 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3735 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.1604 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.7 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.63008 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3875 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.6563 / (dgC) Fitting A temp OFITBT = 18.5021 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -15.0377 / (V) Hold Mode Regulator - 15V OHDP15V = 14.9304 / (V) Hold mode regulator +15V OHDP5V = 4.95974 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0929 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 32.4292 / (dgC) M1 heater control temp OM1HTRW = 0.0250037 / (w) M1 heater power OM2HTRT = 34.9208 / (dgC) M2 heater control temp OM2HTRW = 0.071625 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.5563 / (dgC) MEB 2 radiator temp OMBCSPT = 35.15 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.0938 / (dgC) MEB MIE processor temp OMBP15V = 14.8817 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.25 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.0232 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.4 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1736 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1347 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.4057 / (dgC) Slit wheel motor temp OTCZ1AT = 24.9625 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.77709 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.55 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.60845 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.125 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 15.0823 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.6875 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.427813 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.3375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.55441 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.6625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0112581 / (w) Thermal controller power, zone 3B OTECINV = 5.96735 / (V) TEC input voltage OTECTCV = -7.71974 / TEC temp control voltage OMBMC15V= 14.7455 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0165 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90623 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.8158 / (V) LVPS CEB +15V OPSCB35V= 32.5675 / (V) LVPS CEB +35V OPSCB5V = 5.38299 / (V) LVPS CEB +5V OPSCM15V= -14.6875 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.438 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710134 / (A) M1 -15V current OM1M15V = -15.8339 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483272 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.73602 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.2749 / (dgC) M1 charge amplifier temp OM1DCDT = 36.0075 / (dgC) M1 decoder temp OM1MCET = 34.2981 / (dgC) M1 MCE temp OM1LVPST= 39.1821 / (dgC) M1 LVPS temp OM1HVPST= 35.5191 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.0391 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.473504 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 35.7633 / (dgC) M2 charge amplifier temp OM2DCDT = 36.7401 / (dgC) M2 decoder temp OM2MCET = 34.7865 / (dgC) M2 MCE temp OM2LVPST= 40.1589 / (dgC) M2 LVPS temp OM2HVPST= 36.7401 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.57817 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 30.6615 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 4.9938 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.05218 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.3451 / CB clock X pwb temp OCBCLKA2= 30.0655 / CB clock Y pwb temp OCBCMAA1= -14.9307 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.05218 / (V) CB clock drive X +5V OCBCPAA1= 14.6969 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.05218 / (V) CB clock drive Y +5V OCBCPAA2= 14.7455 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.07867 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9581 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9289 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.9282 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.95739 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.93776 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02533 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.06425 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.0765 / (V) CB state machine 2 +5V OCBSWAHV= 4.9282 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.95236 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.00101 / (V) CB summing well C Lo OCBSWDHV= 4.95739 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.2592 / CEB timing pwb temp OCLM5V = -5.13504 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0072784 / Calibration lamps -5V current OCLP30V = 29.5706 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0132594 / Calibration lamps +30V current OCLP5V = 5.23705 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 270241 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00155312 / (A) Slit Wheel motor current OSWMVEL = 0.0241668 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1791 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1537 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 57 / Control section slit position OCSDQEXJ= 3889 / Control section data queue extract OCSDQINJ= 3889 / Control section data queue insert OCSXQEXJ= 24 / Control section Expos Que Extract OCSXQINJ= 26 / Control section Expos Que Insert OCSOBSQ = 3157 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 587 / Control section dump pointer OCSFILLJ= 587 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 84 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCMV0LW6 T*Õ ŒšžÐ’‡íIddÑæ"ʥༀ½`ÄÀÅÂðÃð߀Ì@Ì0¬P±ÃP²à€±ª½pàà`À0ÎÈàÈàÈàѰŸ Ô 0¿Ðþ ©0Á0Á@ÐÈÀàÒ Ò ¹pÑ0½µ€¸à¹@áðá°ÍÐÏÍàÍP¨Àµ0¨´¨`Èp©P ð§¥p¥ðŸ0›À0ß0àà¿€æéÅ " & ' -þ® ª½3+ ½f»U Æ Í ÏÆïòëÿðb Ø ™Ñ »½18 Ô^“H Ä Ì ÑÅñõíõÔÀÃ^À^ð__Pƒ€ê°%@ÁÐÚÀï€%`ÂÚàÔàÀ‡°ƒ0 Âß` à ßPLÐT°˜ `˜°€˜ €˜À€F@¦F@¥à™ €™@ð~`h€~ h` f``f ~`h`}àh@@f`f ~@h@`e €`Á°~ h`~@h`fÀ`fà€ ¦à€À¦À|Ð>€€pßp~ÃÀ0~ ¡cÀ €€b9 -³sŠŸÿñ$_l d``€„ðñ911 U`ƒKK¥Ìà_TI‚__ÿ"ʥༀ½`İÅÂðÃðßpÌ@Ì0¬P±Ã@²à€± ª½p à¿àÎÈàÈàÈàÒ`ŸÐÔð¡¿àþ ©0Á0ÁPÐÈÀàÒ Ò ¹pÑ0½µ€¸à¹@áðápÍÐÏÍàÍP©@µà§°µ§ðÈ0© `¦à¥¦0žð›°ßàð¿PåPèPÆ0!`& ( -þ® ª½3+ ½f¹T Æ Ì ÏÆïòëÿðb Ø ™Ñ ¼½18 Õ^H Ä Ì ÑÅñõìõÔÀÃ^À_^ð_Pƒ€ê°%PÀ Úàï€%0Á`Ú°ÔàÀ‡ ƒ0 Á`Þà  Á`ß0LÐTÀ˜ à˜°€˜ €˜À€F@¦ F@¥à™à€˜àð~ h@~@h `f@ f@~`h@~@h @eà eà~€h@`f`€pÁÐ~@h`}àhÀ`f€Àf€€À¦à€À¦À|À>0€`ß`}ÃÀ €0¢cÀ°€ Pb9 -³sŠŸÿñ$_ld  @€„ðñ911 U`ƒKK¥Ìà_Ua‚__ÿ`9m°3Á&ÔæUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocmv0lw6q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.5385 / (dgC) CEB Radiator temp OCLLMP1T= 10.237 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.52885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.19615 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.60865 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.50673 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.73846 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3735 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.1604 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.7 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.83125 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3875 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.6563 / (dgC) Fitting A temp OFITBT = 18.5021 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -15.2226 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7163 / (V) Hold mode regulator +15V OHDP5V = 4.94028 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 32.2125 / (dgC) M1 heater control temp OM1HTRW = 0.22975 / (w) M1 heater power OM2HTRT = 32.4833 / (dgC) M2 heater control temp OM2HTRW = 0.0275031 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.5563 / (dgC) MEB 2 radiator temp OMBCSPT = 35.2 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.0432 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5661 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2229 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.0232 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.4 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1542 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.4714 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.4057 / (dgC) Slit wheel motor temp OTCZ1AT = 23.7594 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.79396 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.0719 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.86641 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.675 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.9693 / (w) Thermal controller power, zone 2A OTCZ2BT = 23.0 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.474188 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.6125 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 2.03536 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.4125 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.369187 / (w) Thermal controller power, zone 3B OTECINV = 6.28104 / (V) TEC input voltage OTECTCV = -7.74904 / TEC temp control voltage OMBMC15V= 14.7553 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.1138 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.84298 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.2709 / (V) LVPS CEB +15V OPSCB35V= 33.7935 / (V) LVPS CEB +35V OPSCB5V = 4.96461 / (V) LVPS CEB +5V OPSCM15V= -14.1231 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.438 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710134 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483272 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.73602 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.2749 / (dgC) M1 charge amplifier temp OM1DCDT = 36.0075 / (dgC) M1 decoder temp OM1MCET = 34.2981 / (dgC) M1 MCE temp OM1LVPST= 39.1821 / (dgC) M1 LVPS temp OM1HVPST= 35.5191 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.473016 / (A) M2 +5V current OM2P5V = 5.17705 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 35.7633 / (dgC) M2 charge amplifier temp OM2DCDT = 36.7401 / (dgC) M2 decoder temp OM2MCET = 34.7865 / (dgC) M2 MCE temp OM2LVPST= 40.1589 / (dgC) M2 LVPS temp OM2HVPST= 36.7401 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.60258 / (V) CEB A/D offset A V OCBADOBV= -2.57817 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 30.6933 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.2107 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.06677 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0644 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.04731 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0547 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.3451 / CB clock X pwb temp OCBCLKA2= 30.0655 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.04731 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.04731 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.98929 / (V) CEB last gate A&B OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0585347 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCBS1AHV= 4.93307 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.9329 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02533 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.95253 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.95236 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.0156 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.97199 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90388 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96226 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02046 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.13002 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBSWBHV= 4.89901 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.01074 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.2592 / CEB timing pwb temp OCLM5V = -5.1545 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00346399 / Calibration lamps -5V current OCLP30V = 29.5123 / (V) Calibration lamps +30V voltage OCLP30VC= 0.187646 / Calibration lamps +30V current OCLP5V = 5.20786 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00209523 / (A) Slit Wheel motor current OSWMVEL = -0.0198742 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1791 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3585 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 3904 / Control section data queue extract OCSDQINJ= 3904 / Control section data queue insert OCSXQEXJ= 24 / Control section Expos Que Extract OCSXQINJ= 27 / Control section Expos Que Insert OCSOBSQ = 3159 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 587 / Control section dump pointer OCSFILLJ= 587 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 86 / Control section exposure counter OTAFLUXQ= 1559 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5128 / Target acquisition target x position OTATARA2= 5302 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCMV0LW6 VIŒšžÐ’”ßIô "”¥à¼p½`ÄÀÅÂðÄ߀Ì@Ì0¬P±Ã²à€±ª½p°ß¿ðÎÈðÈàÈàÑp¡ ÑÀŸ°¿Ðþ ©0Á Á0àÈÐàÒ Ò¹`Ñ@½µ€¸à¹@âáÐÍÀÏÍÐÍP¦µ@¥P±Ð§ Åp«€¡©0§0§0¡ 0Ðß@á0¾°âíÀ@%À& ' -þ® «½3+ ½f»U Æ Í ÏÆïòëÿðb Ø ™Ñ ¼½18 Õ^‘H Ä Ì ÑÅñõíõÔÀÃ^°_^ð_Pƒê %`€Úðï€% ÂPÚ°ÔàÀ‡°ƒ0 ÂP߀ ÂPßpLðTÀ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€À™À~Àh@~@h€`f @f@~`h@~@h`f`Àeà~h@€f@€PÂ`~@h€}àh`€f€Àf€€À§€ ¦À|Ð>@€Àß@˜0Ã`Ÿ°~ðÝ¡À°€` b9 -³sŠŸÿñ$_ldàà€„ðñ@@ W`ƒKK¥Ìà_V¶I‚__¸i¸HC"”¥Ð¼€½PÄÀÅÂðÃðßpÌ@Ì@¬@±Ã²à€±ª½p €Þ0¾ðÎÈðÈàÈàÑ0 ÀÒŸP¿àþ ©0Á0Á@ÐÈÀàÒ Ò ¹pÑ0½µ€¸à¹@áàáÀÍÐÏÍàÍP¦`µ¦ ±Ð¨@ÅЫ0¡À¨à§0¦à 0ß`á0¾Àå êPà #Ð& ' -þ® «½3+ ½f¹T Æ Ì ÏÆïòëÿðb Ø ™Ñ ¼¾18 Õ^’I Ä Ì ÑÅñõíõÔÀÃ^À^ð^ð_@ƒê°%0ÁÚÐï€%0ÁPÚÀÔàÀ‡ ƒ0  ÁPß`  ÁPßpLÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™€€™ð~h@~@h@`f`f@~Àh`~ h`}àfg~@h€`f€`À ~@h`~@h€€f@Àfà€À¦à€À¦à|Ð>0‚Àß–ÀàŸ€Ý¡À €Pb9 -³sŠŸÿñ$_ld  €„ðñ@@ W`ƒKK¥Ìà_W¶F‚__¸i¸HC`m°0Å(õæ®UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits b/lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits deleted file mode 100644 index 945735b6..00000000 --- a/lib/stistools/tests/data/tastis/ocoa03q2q_raw.fits +++ /dev/null @@ -1,4 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocoa03q2q_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocoa03q2q ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'CERES-2 ' / proposer's target name RA_TARG = 3.019837512434E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.163741093880E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 13693 / PEP proposal identifier LINENUM = '03.001 ' / proposal logsheet line number PR_INV_L= 'Hendrix ' / last name of principal investigatorPR_INV_F= 'Amanda ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2015-08-16' / UT date of start of first exposure in file TTIMEOBS= '16:34:18' / UT start time of first exposure in file TEXPSTRT= 5.725069048968E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57250.69258602 / end time (MJD) of last exposure in the file TEXPTIME= 1.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792905247685E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F28X50LP ' / aperture name PROPAPER= 'F28X50LP ' / proposed aperture name FILTER = 'Long_Pass ' / filter in use APER_FOV= '28x50 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 104 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 104 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$zbi1324bo_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1092.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 7150.0 / central wavelength of the data MINWAVE = 5490.0 / minimum wavelength in spectrum MAXWAVE = 9990.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'The Ultraviolet Spectrum of Ceres 'OBSET_ID= '03' / observation set id TARDESCR= 'DWARF-PLANET; Ceres at 2nd longitude 'MTFLAG = 'T' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'DIFFUSE ' / type of acquisition CENTMETH= 'GEOMETRIC-CENTER' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 214.052200 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 104 / length of first data axis NAXIS2 = 104 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 9.000000 / the minimum value of the data DATAMAX = 9925.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -10.9437 / position angle of image y axis (deg. e of n) SUNANGLE= 151.848297 / angle between sun and V1 axis MOONANGL= 129.889053 / angle between moon and V1 axis SUN_ALT = 22.867542 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2015-08-16' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '16:34:18' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.725069048968E+04 / exposure start time (Modified Julian Date) EXPEND = 5.725069049547E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 527.0 / fsw located subarray axis1 coord. of target TARGA2 = 514.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 87956.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 3824309 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.94263 / (V) CB summing well A Lo OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCCDHTAV= 20.584600 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 9.0 / minimum value of good pixels GOODMAX = 9925.0 / maximum value of good pixels GOODMEAN= 146.611313 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€ €€€€€€ €€"€€€€€€!€€€ €€€€%€ €€€€€€#€€€€€€€#€"€€"€"€€"€"€"€€#€€"€€€ €€€€ €€€ €€€€€€€€€€€€€€ € €€€€€€ €€€€€€!€€ €€€€€€€€€€€&€&€€i€ €€€€€!€€€€€€€ €€€€€ €€ €€ € € € € €€€€"€"€€€!€€ €!€ €€€!€#€€!€$€ €"€€€ € €!€ €!€€€€€!€€€€ €€€ € €€€€€€!€€€€€€€€€€€€€€€€€€!€"€€€€€€€€€&€(€ €e€ €€€ €€€€ €€€"€€€€ €€€ €€€ €€€ €€€ €€€ €"€€ €€!€!€!€$€ €$€€"€ €$€#€€#€ €€!€€€€ € €€ €€€!€ €!€€!€€€€€€ €€€ €!€€ €€€€ €€€ €"€€"€#€€€€€€€€ €€€€€!€(€(€€g€ €€€€€ €!€ €€€€€€$€€€€€€€€!€€€€ €"€€€"€!€€€€€"€€ €!€€!€!€€€$€%€"€"€$€ €€!€ €€€ €#€€!€!€€ €€€€ €€€€ €€€€!€€€€€€€ €€€!€€€ €€ €€€€ €€€€€€€€)€)€€f€ €!€ €€€€€€ €€€€ €€€€€€ € €€€ € €!€!€ €"€#€ €!€ €!€€"€€#€$€#€$€€!€ €!€€€%€#€€%€!€ €€€€!€€!€"€ €€ € €"€€ €€ €€€ €!€€€€€€€€€€€€ €€€ €€€!€€€€€€€€€€€$€$€€e€€€"€"€€€€€€!€€€€€€€!€€€€€€"€ €!€€ €"€€"€!€€€ €€"€%€!€#€"€ €!€"€€$€#€%€#€€$€ € €"€"€!€!€ €€!€€"€€"€€€!€€ €€€€ € €"€€€#€€€ € € € €$€ €"€€€€ € €€€€€€€€€€$€&€€b€ €€#€ €€€€€!€€!€€€€€€€€€ €"€€€€€ €€ €€ €€!€€!€€"€"€!€€#€#€€#€#€$€#€$€"€!€!€€!€"€€"€€€#€#€ €#€€ €!€ € €€!€€€€€ €!€€€€€!€#€€€€€€"€ €€#€€€€€€€€€€€€'€'€ €e€"€€ €!€€ € €€€ €€€€€€€€€ € €€€€€€!€€"€ €€€€%€"€€ € €!€!€#€ €#€"€#€#€#€$€'€#€ €&€!€"€$€"€#€ €€!€ €#€€€€ €!€ €€€€ € €€€€"€"€ € €"€ € € €!€€€€ €#€ €€€€€€€€€€€(€)€ €d€"€"€ €€!€€€ €"€"€€!€€€€€€€ € € €€€€ €!€€!€"€€"€"€ €"€!€!€ €€%€#€#€ €!€%€"€'€%€$€"€$€%€$€!€%€ €#€"€!€€"€"€€€€ €€ €!€ €€!€€#€ €€€€€ €!€%€€€€€ €!€€€€!€ €€€€€€€€€%€$€ €g€$€#€"€ €!€ €"€€#€!€ € €€ €€€€€"€€ €#€€€"€€€ €€$€ €$€€$€"€$€€$€#€$€$€#€!€'€%€$€#€%€!€!€#€$€"€!€ €"€€ €€!€€ €€!€€€#€€€!€ € €€"€€€ €€€"€"€€€!€!€!€ €"€€ €€€€€€€€€€€&€'€€h€€ €&€ €#€ €"€€!€ €€€€!€€€€!€€€€!€ €"€"€€€ € €"€!€ € €!€#€€!€'€%€!€%€ €&€(€&€'€"€#€$€"€(€&€%€"€!€ €#€#€&€!€ €&€"€"€#€€ € € €€€ € €"€!€"€#€#€#€€€!€"€€ €"€!€€!€€€ €€€€€€€€€'€%€€g€$€ €€#€"€#€€!€"€"€ €!€€€!€!€€!€ €!€ €$€€€ € € €€€ € €!€!€#€€$€#€&€$€"€#€#€%€"€$€'€(€+€&€&€!€'€'€$€!€'€#€"€"€"€€ € € €!€€"€€€€€"€€"€ €!€"€ €€€%€#€$€€ €€"€ €€ €€€ €€€€€€€€'€%€€e€!€$€"€$€#€!€%€"€#€"€€!€"€ €"€ €€ €€€"€#€€#€#€!€!€#€€€"€€!€"€!€#€$€&€$€%€#€"€&€%€'€(€&€(€)€"€%€%€'€%€(€#€#€!€€"€!€#€"€"€"€#€!€ € €"€€"€€€!€ €$€!€#€ €€€"€€€!€€€€€€€€€€€€€ €€%€'€€h€%€!€#€"€#€"€"€%€€"€ €€ €!€!€"€€€"€"€!€"€!€€€"€ €"€"€#€ €"€%€ €$€!€ €#€#€'€$€'€)€%€)€(€,€(€&€'€%€&€)€'€'€&€&€"€#€#€"€"€ € € €"€€"€€€€"€€"€#€#€ € €!€€$€€ €!€!€#€€€ €€ €€€€€€€€€€&€&€ €g€$€"€%€#€$€#€ €$€&€"€"€!€€€€"€€"€€"€ €"€ €!€"€%€"€!€$€!€#€€"€!€'€!€%€%€$€'€&€&€)€,€+€(€-€,€*€*€(€-€(€'€)€(€(€!€%€%€%€$€!€!€ €"€ €€#€"€"€#€!€#€ €€&€'€"€(€#€€ €!€"€ €!€€€€€€€€€€€€€€(€'€€f€$€!€"€"€'€"€$€"€#€$€ €€!€"€"€ €"€!€#€€€€!€€ €!€"€€€&€€€#€&€#€(€&€#€)€)€*€(€+€)€+€-€+€-€.€,€)€,€'€)€(€+€(€#€)€#€"€%€"€ €"€#€€ €!€!€&€&€'€"€"€#€$€#€%€"€"€!€"€€!€€ €€€€€€€€€€€€€€&€(€€d€€"€"€!€$€#€$€#€%€'€%€"€$€ €"€ €"€€ €"€ €#€!€€"€€"€%€"€ €$€"€"€$€&€%€'€)€'€(€+€*€+€*€-€0€-€.€)€-€1€-€*€0€,€+€,€*€&€'€&€'€ €#€!€€"€!€ € €*€€€'€#€"€"€!€#€%€%€ €"€!€€€€€€€€€€ € €€€€€€#€'€€f€€&€"€'€%€#€%€%€#€(€&€%€$€%€"€€"€#€ €"€ €"€ €!€ €#€#€€"€%€#€#€$€'€%€&€(€%€*€-€,€+€(€,€0€0€2€2€0€-€)€.€0€2€-€)€*€*€)€(€#€'€"€"€$€#€ €#€#€&€"€€#€%€&€"€%€#€$€ €!€"€"€!€€€€€€€€€€€€€€€€ €&€#€€g€€ €!€#€%€"€*€$€'€#€'€%€&€'€!€#€"€&€!€ €€%€ €#€"€#€!€€$€"€$€$€!€&€"€'€&€(€(€+€*€,€/€2€,€.€1€2€3€-€/€/€/€,€-€-€+€.€-€$€(€&€#€(€#€#€!€)€'€#€#€%€$€$€"€$€"€€$€"€"€$€€€!€€ €€€€€€€€€€€€€€'€&€€g€ €!€!€#€"€#€"€#€)€%€&€&€&€(€"€%€"€$€ €€"€€#€%€%€€#€"€ €"€#€#€&€&€'€%€&€)€(€*€1€-€/€6€2€2€3€6€4€0€2€4€.€0€2€-€-€*€*€)€'€'€(€&€$€"€'€&€%€)€"€(€-€'€#€#€&€"€€"€!€€!€#€€€€€€€€€€€€€€€€€%€&€€f€€#€"€ €"€!€&€"€(€'€'€*€%€%€ €"€%€&€'€€!€€%€!€#€&€"€%€%€&€#€&€&€%€'€(€(€+€.€0€-€3€5€/€4€4€5€3€2€0€6€7€3€1€1€/€2€2€*€(€)€+€(€'€'€%€*€+€&€(€%€(€%€*€&€&€ €"€ €%€ €"€ €"€€€€€€€€€€€€€€€€€%€(€€i€"€ €€€"€"€ €&€'€&€'€*€%€'€'€"€)€%€#€ €$€ €"€$€#€#€€$€#€#€%€'€&€*€%€(€,€.€0€2€5€5€5€8€5€8€6€7€7€5€4€/€2€5€3€2€.€0€*€/€+€)€%€*€*€'€,€%€%€*€(€%€)€$€%€$€&€%€ €#€€!€€€€€€€€€€€€€€€€€ €€%€'€€i€!€"€"€#€"€"€'€"€%€'€'€*€$€'€&€'€(€&€'€%€$€%€%€%€"€$€%€"€%€#€ €(€'€&€.€/€-€2€1€0€4€8€4€1€;€5€;€:€6€7€2€7€6€2€3€5€+€2€1€,€&€,€+€)€+€*€$€*€'€(€*€*€#€%€&€%€$€ €"€!€!€€"€€€€€€€ €€€€€€€€€€€'€(€€i€€ € €"€$€!€#€"€#€%€'€-€#€#€*€+€+€*€&€'€&€'€$€ €%€$€%€$€$€!€#€%€(€(€,€.€+€1€3€4€8€5€2€9€<€4€3€;€3€6€4€0€.€5€1€-€1€4€0€.€.€-€/€-€*€,€,€+€*€(€&€)€&€&€#€$€$€#€#€€€€€ €€ €€€€€€€€€€€€€€€'€%€€h€ €€€!€ €"€€%€'€&€$€%€(€,€'€)€'€&€%€*€%€)€*€(€)€ €#€'€%€(€(€&€)€%€+€1€1€0€6€3€4€6€3€6€:€5€9€5€6€3€3€3€2€1€2€7€-€.€0€0€/€/€0€1€,€0€.€.€.€-€'€&€(€$€(€!€€"€!€!€ €"€ €"€!€€€€ €€€€€€€€€€€€*€&€€h€€ €€€ €€"€%€$€&€%€$€(€"€,€)€*€*€*€)€%€)€$€&€(€'€&€#€'€$€'€*€+€-€+€2€7€5€4€6€=€>€5€;€6€8€:€8€4€5€6€5€1€0€1€5€3€4€6€4€4€0€6€2€1€0€/€-€(€+€*€*€'€*€#€ €!€!€€"€€ €€€€"€ € €€€€€ €€€€€€€!€&€%€€h€ €€"€ €€&€#€#€ €&€%€%€$€+€*€'€.€%€)€)€)€(€#€*€%€'€*€'€(€$€)€*€-€+€/€7€3€5€8€>€<€8€:€=€9€9€4€3€5€1€6€0€4€.€/€7€3€2€/€4€5€8€3€0€/€3€*€0€(€,€)€'€(€#€$€"€!€€"€ €€€€!€€€ €€€€€€€€€€€€€€*€'€€f€€!€€ €"€"€#€€"€"€%€&€%€$€*€+€+€+€*€*€)€-€'€(€&€'€)€)€)€(€*€,€/€/€4€5€;€4€:€:€>€9€9€;€2€9€9€5€.€:€3€0€2€4€4€-€3€0€2€.€-€5€5€0€6€.€2€1€1€(€+€'€)€!€#€"€"€"€!€€ €€ €€ €€!€€€€€€€€€€€€€€(€&€ €e€ €€!€€$€€!€ €€ €!€$€(€'€+€&€*€(€/€.€0€*€,€*€,€.€&€(€&€+€/€-€,€9€8€<€@€=€=€>€A€<€;€8€8€;€1€2€2€4€3€2€1€0€2€1€0€1€0€7€6€0€2€8€2€-€2€0€*€-€-€*€'€(€!€"€!€ € €!€ € €€#€€€€€€€€€€€€€€€€ €&€(€€i€ €$€ €€!€ €!€#€%€%€#€$€*€&€'€+€)€*€*€)€+€,€-€/€,€/€*€+€-€-€-€1€3€3€8€:€?€>€@€?€B€=€?€:€6€:€5€2€2€-€.€.€2€0€5€0€4€5€1€7€6€8€9€4€4€4€0€3€1€-€*€&€#€!€$€€$€ €€!€€ €€€!€€ € €€€€ €€€€ €€€€€*€(€€i€!€ €"€!€"€ €!€ €%€"€#€&€#€'€*€,€/€*€,€1€-€/€.€.€+€*€+€*€-€-€.€1€1€7€<€?€7€=€D€D€B€B€A€@€:€:€8€5€/€2€3€3€/€0€7€1€2€5€5€7€4€9€3€5€6€0€1€,€/€)€*€%€&€"€&€!€€€&€!€€%€€!€€€€ €€€€€€€€€€€€€(€&€€g€ € €€€€%€ € €!€!€ €#€!€(€(€'€'€)€+€)€*€0€0€/€/€1€2€1€3€.€4€0€3€=€=€C€G€I€L€B€B€B€:€<€>€<€8€4€1€5€)€.€4€2€4€4€9€2€;€8€;€8€5€4€5€1€/€3€,€)€'€'€$€%€#€€#€#€€€#€#€ €"€€ €€ €€€€€€€€€€€€€'€)€€h€"€"€€#€€€ €%€"€ €#€'€&€$€'€(€*€*€*€+€(€/€6€.€4€/€1€0€3€5€5€.€7€:€<€B€J€G€J€I€G€@€A€>€;€:€9€5€1€6€.€0€6€5€4€2€7€:€4€:€:€8€3€8€4€1€/€/€/€,€)€&€&€%€!€!€&€€ €"€ € € €#€ €€€€!€€€!€€€€€ €€€€'€%€€f€"€"€ €€!€ €#€"€"€#€$€"€!€%€*€&€*€.€.€+€,€,€-€3€0€3€3€6€6€5€5€<€;€=€J€B€I€P€L€K€H€M€D€?€A€?€8€<€7€:€5€5€9€2€4€6€5€6€:€;€7€:€4€7€3€/€6€4€(€%€*€'€'€$€&€!€%€#€ €€#€€€"€ €€€!€€ €€€€!€€€€€€€(€(€€g€ €"€ €!€!€"€ €!€$€$€ €"€#€$€!€*€'€%€-€/€0€4€1€4€2€2€4€7€7€7€;€:€?€C€E€H€N€O€T€S€O€N€K€F€A€@€:€8€7€4€6€:€5€6€:€8€5€8€>€5€<€:€9€8€3€4€0€*€)€)€&€ €&€$€!€#€#€#€!€#€€€"€€€€€€€€€€€ €€€ €€€€)€&€ €g€!€"€"€€#€€"€&€!€!€%€&€%€%€(€$€&€,€+€-€.€.€1€2€1€6€8€7€=€:€:€A€B€K€L€R€Y€Z€\€X€V€X€M€L€K€A€F€<€B€8€:€6€8€8€6€9€?€>€:€;€:€4€8€7€9€1€4€1€*€)€*€(€(€%€'€$€%€#€#€#€$€$€$€"€#€"€ €!€"€ €€€€€€#€€€€ €'€&€€h€ €"€#€#€€!€#€!€"€$€"€$€'€$€#€)€+€)€(€1€,€-€2€4€4€7€=€9€>€B€@€D€F€J€P€S€U€]€_€b€Z€X€U€[€K€M€J€F€G€E€>€@€=€<€7€=€8€;€;€8€:€9€<€4€5€:€/€,€+€*€&€#€*€$€#€"€!€"€€$€"€€ €€€€€€€€€€€€€€€€€€&€)€€d€ €!€€$€$€€€#€!€&€$€#€$€#€(€)€*€*€+€.€(€3€7€3€8€9€6€6€:€=€D€>€L€Q€\€Z€d€d€g€n€b€g€a€a€U€S€U€Q€G€D€A€A€=€@€B€6€:€;€<€;€B€5€4€5€5€0€/€.€*€(€'€$€&€%€&€'€#€#€ €€€!€$€€ €!€"€€€ €€€€!€€€!€€€€(€(€€j€€!€€ €$€!€"€"€ €#€"€!€!€(€%€&€)€&€,€.€.€/€0€9€3€3€<€;€=€;€I€M€P€Z€a€f€c€i€r€h€r€p€r€k€d€Z€Y€Y€W€J€L€K€D€@€?€?€;€@€@€B€@€:€3€2€0€-€2€,€'€*€(€$€'€'€"€&€%€$€ €"€#€ €!€€!€!€€ €€€€€€€"€€€€€€'€)€€g€ €#€ €!€ € €€ €#€"€"€(€&€'€$€*€)€)€'€+€*€4€.€3€4€7€8€A€E€E€J€Q€X€d€i€q€m€€‰€€„€…€„€‡€t€o€m€i€X€[€V€T€E€I€G€I€B€B€?€=€=€9€5€4€6€0€-€*€/€*€'€'€#€%€%€$€%€#€ €!€!€ €€€€#€ €€€ €€€€€€€€€€€(€$€€i€ €€#€€#€!€&€#€!€$€%€#€&€(€'€'€)€'€%€,€+€.€3€2€6€6€=€A€C€G€M€\€^€_€t€~€…€”€œ€Ÿ€¥€±€±€ž€€‰€„€z€m€b€\€T€L€G€H€K€@€C€>€B€?€>€0€8€2€4€/€.€+€*€)€,€&€%€'€&€#€%€#€!€ €"€€ €#€"€€€€€€€"€€€€€€€€#€*€€h€€"€#€€"€#€$€ €"€$€"€%€'€&€*€(€(€*€*€(€/€/€4€3€6€<€<€B€G€J€U€Z€c€m€†€Œ€€¿€Í€Ö€á€í€È€Ê€Ì€®€¥€“€€p€m€m€Z€U€Q€M€H€F€D€>€>€=€:€5€2€2€.€)€+€*€)€&€)€&€$€#€&€$€€%€!€€!€!€ €"€%€€€€ €€€€€€ €€€€&€'€ €g€$€€$€€ €€%€#€"€#€'€"€)€%€#€,€&€*€(€+€/€,€+€2€4€=€@€>€H€K€V€Y€j€€•€§€Ç€æ:CPM6€é€Ì€»€–€Š€y€m€d€a€Z€T€S€J€?€D€;€;€:€9€1€.€/€-€,€)€%€*€&€$€!€#€$€"€#€ €€#€#€!€!€$€€€€!€€€ €€€€€€€€&€'€€e€€€$€!€€!€$€$€'€%€ €#€#€*€'€&€,€$€+€)€%€0€-€7€7€9€@€F€H€P€V€f€{€Œ€ª€É€ú_¬‚‚n‚k‚G‚¤e€ê€Â€¥€“€…€z€e€d€b€V€R€J€J€B€<€8€5€2€+€(€-€(€)€,€(€#€#€%€ €"€€ €!€"€ €€ € €€!€ €€€€€€€€€€€€€(€'€ €g€ €!€ €"€!€ €$€#€%€#€#€$€%€+€$€&€)€,€+€1€/€.€0€6€6€;€A€<€J€R€Z€k€Š€¢€Â"¾‚šƒË„ƒ……„Ä„5ƒW‚m¶5€ý€Ñ€·€–€…€{€g€_€Z€S€I€B€A€=€;€1€3€1€0€+€'€-€'€)€(€$€"€'€ €€#€"€€€!€"€ €€€€ € €€€!€ €€€ €€€€'€'€€i€€!€€!€€%€%€!€#€"€$€€$€(€%€%€+€'€)€,€0€0€3€2€3€;€B€C€O€X€d€v€Ž€¿‚ƒq…J‡ ˆñŠ|ŠÉŠˆe†š„¨ƒ0ðJ €×€´€¤€‡€t€f€V€U€E€G€?€>€:€:€5€-€/€*€(€,€(€)€%€%€%€"€!€"€#€$€"€"€$€ €"€!€€€ €€€ €€€€€€€€€#€'€€h€€#€ €"€$€&€ €"€&€ €$€$€&€'€&€*€(€&€0€+€.€-€0€4€9€;€A€H€T€W€k€€€¬€ñ׃† ‰öŽü“Õ–N—G•ù“9޵‰?…{ƒe‚X€Ú€°€–€‚€p€i€Y€O€P€F€D€<€4€5€.€.€.€(€(€(€'€%€&€$€%€$€"€#€'€"€"€ €€$€!€!€ €€"€€€€€€€€€€€(€%€€e€#€"€€!€"€%€&€%€#€ €%€&€%€+€(€*€'€*€+€*€/€3€7€5€:€7€B€I€T€c€r€˜€Ü‚ü…ÔŠš“9™FžßŸQŸ]ž,š˜“—ŠÅ…‘ƒõY€Ð€¬€‹€v€f€Z€K€N€F€?€<€:€/€1€-€2€)€$€%€$€(€(€"€"€!€"€ €€#€€$€#€€€€€€€€€€ €€€€€€€'€'€€h€€$€€#€%€#€%€%€%€&€%€'€(€(€&€(€'€(€/€*€2€6€5€<€7€@€F€G€V€a€€·‚ „`‰’š/žq Â¢‚¢«¢ð¢ä¡4Û“ô‰Ÿ„œ‚µ6€ð€¿€Ÿ€‰€l€^€W€N€I€;€:€=€0€0€)€.€*€(€)€+€$€&€&€'€"€%€#€!€"€€"€"€#€ €€€ €€€€€!€€€ € €€€'€%€€h€"€"€€!€%€"€ €&€(€%€%€'€)€)€(€+€+€.€-€2€-€5€:€;€9€@€F€D€X€g€†€¾R‚²…«M—Û …¢´¤f¤Ì¥–¥¤±¡ØœfÀ†•ƒw‚p€Õ€¦€Š€s€`€S€N€G€E€7€4€3€1€0€.€-€+€&€+€(€)€#€#€%€"€%€&€€"€#€#€€€€€€€€€"€€€!€€ €€ €%€(€€g€"€"€#€#€!€"€$€&€(€%€$€%€%€(€)€,€,€.€-€4€2€5€6€:€>€?€G€O€Z€l€€Üvƒ2‡ ®™Øž°¡F£O¤>¥r¥d¦Å¥ß£æ B•pˆŠ„K‚’š!€Ý€©€‹€t€h€T€R€I€A€=€2€2€-€.€.€*€)€'€(€%€$€(€"€$€(€€€!€#€"€ €!€€€ €€€€€€€ €€ €€€€(€'€€h€€ €#€€&€ €%€%€$€%€&€'€*€)€+€(€.€/€.€2€1€;€5€8€:€E€E€Q€V€o€†€Øƒc‡¢‘½šIŸ¡Ü£¤l¦¦¦”¦S¤±¡j˜3Šj„ê‚Ò¯9€ë€´€‘€~€a€U€L€F€B€8€7€2€5€2€.€+€-€(€'€*€'€%€$€$€€%€ €!€"€€€"€ €€€€€€€€€€€€€€€)€(€ €h€€#€!€$€"€%€#€$€%€#€'€(€%€+€,€+€(€/€3€/€6€3€7€;€A€D€I€N€X€n€–€É–ƒ[‡+e™ú¡£4¤$¤·¥½¦Z¦¤ô è—¼Šå….‚è¬-€ñ€«€€p€g€T€L€B€A€6€5€4€2€.€-€,€%€&€)€&€)€$€%€€"€ €!€#€€€!€€€!€€€€ €€€€€€€ €€€&€(€€i€ €#€#€ €"€#€"€'€%€"€'€&€&€'€)€,€+€0€2€.€4€5€:€?€@€C€G€R€Z€k€€Ë_ƒ -†ô–Ùœ· b¡1£z¤]¤ ¥6¥6¢ºžû•‰§„ø‚ÅÁ0€Ð€¢€ˆ€m€\€Z€J€D€=€8€6€-€4€/€-€-€%€(€&€#€%€ €"€#€$€$€$€"€ €€€ €€€€€€€€€€€€€€ € €'€(€€g€!€'€€'€$€%€$€$€%€%€%€&€&€'€*€*€*€0€/€3€2€8€:€;€B€C€H€O€Z€m€~€½,‚j„‰ü““™Äž$ N¡û¢ü£‡£Š¢Ú w›­º‡ž„Y‚ƒ—€Ê€©€€€g€b€P€J€?€:€7€8€5€0€.€*€)€)€'€(€$€&€#€$€$€ € €$€€!€ €"€€ € €€€€€€€€€€€€€€(€)€€h€$€ €"€"€"€"€$€"€&€$€%€$€(€,€&€*€*€.€1€1€2€;€8€5€>€E€E€P€X€l€|€«€ô¾ƒ]†R#”§™ÙyŸ]¡ ¡2 âŸœ$”ÚŠí…胄‚[€ô€ª€”€u€`€V€F€C€<€D€:€6€0€3€-€-€+€)€"€&€&€%€$€#€"€"€#€€#€ €#€!€€€€€€€€€€€€€€€€€'€(€€i€€"€ €#€ €%€#€!€%€$€$€'€$€+€*€+€-€/€*€/€/€:€:€9€@€B€F€H€R€f€{€š€Ç?‚T„‡co”9˜í›œdœÁœ›š+”†ŒJ†Ç„D‚ެ€Ó€™€‚€j€^€P€K€A€:€6€4€3€1€0€*€*€+€)€%€#€(€"€"€€(€ € €"€€€€€€€!€ €€€€ €€€€€€€€€(€&€€f€ €$€ €!€"€%€&€$€%€"€"€#€)€)€)€+€)€,€/€/€1€0€6€=€=€?€G€O€[€a€u€Š€®€ç}‚z„†‰‹\”•ݕⓤºŠP†}„m‚Å­)€Ó€«€€r€f€O€F€?€>€6€0€0€/€/€-€.€-€*€&€%€%€$€ €%€#€€ €!€#€#€ €#€€ €€€€€€€€€€€€€€€€'€'€€f€$€€#€#€!€%€#€%€$€!€$€%€%€$€*€*€(€1€*€*€2€2€<€7€?€=€D€K€V€[€j€s€•€¼€ìf‚=ƒM„Ć鉊(‰õˆ˜†Ý…ƒ¸‚•Í9€Ý€¨€€r€`€X€O€H€C€?€7€2€2€2€1€+€+€,€(€'€%€'€#€$€#€%€€€ €#€€ €€ € €€€€€€€€ €€ €€€€€€$€&€€f€!€"€€€#€ €"€!€%€$€&€%€(€'€%€&€*€*€-€/€+€4€/€>€<€B€L€I€N€N€j€r€‡€£€¶€æ=¿‚X‚þƒ¨„„2ƒÃƒB‚²ô]€Ï€œ€‡€w€i€^€U€Q€@€?€:€6€4€1€/€0€+€+€%€)€+€#€'€&€&€#€#€%€ €"€ €"€"€€ €€€€ €€€€€€€ € €€€€€#€%€€i€$€ €€ €"€%€€#€"€!€€#€(€(€'€(€*€*€,€*€2€2€1€5€<€@€C€G€Q€R€c€i€w€€€—€«€É€ú%„°Ó߬H€ã€¦€”€ƒ€q€e€Z€X€P€I€A€<€9€9€3€/€+€.€(€.€(€'€+€€%€!€ €%€#€ €#€!€€€€€€ €€"€€€ €€€€€€ €€€€€"€'€ €i€€€!€!€€!€'€€ €%€"€ €%€'€(€!€+€&€+€*€*€1€3€5€<€;€F€H€Q€X€]€`€c€q€ˆ€”€˜€±€µ€Ò€â€î€ç€à€È€µ€ž€–€|€t€m€j€^€Q€V€E€G€=€7€:€5€1€4€,€,€(€)€'€&€)€'€%€#€&€#€#€"€€€€ €"€€€€ €€€€€€€€€€€€€€€&€&€€g€ €"€€#€%€€$€$€"€$€$€'€%€#€(€%€*€*€,€0€.€-€4€6€<€@€E€K€I€Q€V€Z€Z€b€n€‚€ƒ€Š€Š€‘€‘€—€š€Ž€€z€}€r€i€_€k€Z€P€F€G€F€@€B€=€7€6€5€/€.€*€)€*€,€'€(€&€(€$€&€&€#€#€#€&€€ € €€€€€€€€€!€€€€€€€€€€'€%€€e€$€!€"€!€ €%€%€"€!€€&€"€'€(€)€"€,€'€,€)€-€0€2€9€7€?€C€E€J€M€N€^€`€`€t€e€o€q€q€q€u€n€t€l€l€g€a€d€[€[€X€U€N€L€G€D€@€A€9€7€-€.€*€,€)€-€*€$€+€(€%€"€"€€ €"€"€€!€#€€ €!€ €€€€€€€ €€€€!€€€€€€'€$€€h€$€€ €!€!€€$€#€"€$€(€$€%€ €)€$€'€*€*€)€-€2€3€8€?€>€@€B€H€L€M€X€U€U€_€\€i€`€b€a€b€Z€b€X€[€W€_€T€P€S€S€H€E€D€E€>€;€6€9€9€8€0€'€+€+€,€*€+€&€&€%€$€'€&€%€€"€€"€€€!€ €€€€€€€€€€€€€€€€€€(€(€€f€ €€€€ €#€€!€€€'€ €&€%€"€'€+€,€*€.€*€/€4€8€6€=€?€C€E€G€P€R€S€O€R€Z€[€P€Y€V€T€W€P€O€K€O€H€B€H€E€O€M€E€C€?€?€@€7€4€2€5€3€-€+€'€*€&€,€$€*€'€$€&€$€!€#€ €€!€!€!€€€€ € €€€€€€€€€€€€€€€%€&€€f€ €€ €"€!€!€ €!€"€!€%€%€%€%€%€%€)€1€*€+€/€/€5€2€=€:€>€@€;€?€G€J€K€J€H€K€M€J€K€S€M€K€J€N€I€H€C€D€B€F€@€=€B€=€>€7€8€7€=€+€-€2€0€/€(€(€(€'€$€(€#€%€#€€!€"€#€ €"€"€ €€!€€ €#€€€€!€€€ €€€€€€€ €'€'€€f€"€"€!€€%€€€#€ €"€$€!€#€#€%€'€&€'€*€.€+€1€1€6€8€8€:€?€:€@€B€D€B€<€G€D€J€?€J€I€B€J€D€A€C€>€D€>€<€?€?€?€<€<€?€:€8€3€7€/€1€1€/€-€,€)€'€)€'€%€'€'€#€"€€!€"€$€!€#€ €!€€€€€€€€!€€€"€€ €€€€€€$€&€€h€€€€!€%€"€"€$€$€$€#€ €$€%€&€'€'€&€,€/€1€2€4€9€:€5€D€>€B€=€?€>€B€>€@€@€?€B€A€C€E€?€?€;€:€6€7€8€:€<€;€7€<€9€7€7€6€6€8€2€2€,€0€/€-€.€(€'€&€%€&€€&€"€"€!€"€ €!€ € €#€ €€!€!€€€€€€€€€€€€€€€'€&€ €c€ € €€ €"€ €€#€#€#€%€&€"€'€$€'€)€(€*€0€.€1€3€5€5€:€8€:€8€;€:€<€8€<€:€9€:€>€:€=€5€8€=€8€6€7€5€0€6€8€1€5€5€2€4€1€2€4€6€3€4€*€/€-€*€)€*€#€+€(€%€%€"€#€"€$€$€ €!€$€€!€€€ €!€ €€€€!€€€€€€€€€ €&€(€€g€ € €€€#€#€€"€$€€ €%€'€'€*€(€*€*€,€/€2€.€2€7€1€3€5€4€:€6€4€6€3€2€9€5€6€7€8€3€5€3€1€5€5€.€0€-€/€,€5€/€0€4€3€2€2€2€0€6€-€0€0€-€0€-€)€(€#€(€&€&€#€!€$€ €€"€!€€ €!€€€!€€€€€€€€€€€€€€€€&€%€ €g€€!€ €€!€#€ €€%€!€"€#€€+€%€)€+€-€,€*€.€.€/€4€1€2€0€7€3€1€0€0€/€5€2€6€0€4€3€4€1€,€1€-€-€-€-€0€,€)€-€*€+€3€-€0€.€3€-€.€1€1€-€0€-€)€+€*€"€&€"€#€!€$€$€ €€#€!€€!€€€€€€ €€€€€€€€€€€€€€%€'€€g€ €!€"€€!€$€€ €#€$€#€&€%€%€'€'€*€)€-€/€0€/€5€1€*€1€/€6€/€/€,€/€/€-€4€/€0€3€-€1€0€2€.€.€0€)€'€*€-€)€*€.€,€+€/€,€.€+€0€0€*€-€-€*€.€*€&€+€(€&€$€$€$€ €!€ €€ €"€!€€!€!€€€ €€€€€€€€#€€€€€€€'€%€ €e€"€!€€#€$€€#€$€ €%€$€&€€'€*€/€)€)€.€1€-€.€1€.€1€/€'€/€.€/€+€/€2€0€0€/€0€1€,€.€-€*€,€*€/€,€,€*€)€,€+€)€(€)€*€+€+€-€*€*€,€*€)€)€-€-€-€*€+€'€&€ €"€$€"€€€€ €€"€$€€€€€€€€€€€€€€€€€€€&€'€€e€ € €!€€€!€"€"€#€&€(€$€$€&€(€&€)€+€.€-€0€)€-€1€2€.€-€+€'€,€-€)€-€-€,€+€*€-€.€-€+€,€,€(€(€*€,€)€*€'€&€(€(€+€$€'€(€)€)€+€-€-€1€,€)€,€-€,€(€(€&€%€$€%€$€ €$€€€€€€€€€€€ €€€€€€€€€€€€€&€'€€g€!€"€ €!€!€ € €"€"€#€'€&€(€'€%€+€(€)€-€-€,€,€*€+€(€)€'€+€)€-€-€(€*€*€,€,€2€+€*€*€*€*€+€)€'€)€*€(€)€)€+€%€'€)€(€#€)€'€,€*€.€.€(€(€-€&€+€&€%€&€'€%€%€!€"€%€€€ € €€ €€€€€€ €€€€€€€€€ €€€€%€%€€i€ €€€€€"€"€"€%€(€&€"€"€'€)€)€*€*€,€*€&€,€(€-€+€(€(€,€+€(€+€(€)€)€*€(€*€(€0€'€)€'€+€(€$€*€(€#€$€(€"€(€'€&€%€&€$€$€(€*€)€+€&€+€'€+€)€%€&€&€&€&€'€&€&€#€"€€€€ €"€€€€€€€€€€€€€€ €€€€€'€'€€f€ €"€€ €€"€#€"€%€!€)€&€'€(€%€'€1€*€*€+€'€(€*€,€&€*€)€&€(€-€'€(€)€*€*€)€,€(€(€)€/€&€&€'€'€(€%€%€&€!€$€%€"€'€(€"€&€)€)€%€"€&€'€(€%€)€%€#€(€+€&€$€)€!€"€$€"€€€!€€€ €"€€€€€€€€€€€€€€€€€%€(€€h€ €€€#€!€"€"€$€"€$€#€'€'€(€-€)€%€+€'€*€)€+€(€%€&€&€&€*€+€&€(€&€(€'€$€*€)€"€*€*€%€!€'€'€%€%€%€%€$€%€%€"€$€&€%€#€%€#€!€%€'€$€$€)€%€)€'€+€$€(€(€#€(€$€&€%€€#€ €€€#€€€€€€€ €€€€€€€€€€€€#€%€€f€ €€#€€€#€%€ €!€(€%€(€+€*€'€)€(€'€!€(€*€)€,€&€%€$€&€'€#€"€'€'€$€%€'€(€$€)€(€%€!€$€%€'€%€)€&€#€'€ €€*€!€"€!€&€"€&€&€ €'€)€&€%€%€)€(€'€'€(€'€%€%€#€&€"€"€"€€€€€€!€€€€€€€€€€€€€€€€€%€)€€g€€"€€€!€!€&€(€%€!€%€+€+€$€)€)€'€'€)€*€%€(€)€"€&€*€ €!€!€(€%€(€*€&€'€(€'€%€'€&€€$€&€#€$€"€$€'€"€ €#€%€€%€"€"€€&€!€#€#€%€%€&€%€$€$€$€)€&€)€&€$€&€&€(€ €€$€!€!€ €#€€ €€€€€€€€€€€€€€€ €*€$€ €g€€€€!€€!€'€%€!€$€&€&€"€+€'€&€'€'€'€$€#€&€"€$€%€#€$€&€#€%€#€#€&€'€*€'€#€$€"€!€%€'€#€%€%€'€#€"€$€'€#€ €#€&€€#€#€#€!€#€$€ €(€'€!€#€'€&€#€(€&€%€$€&€#€"€"€#€"€!€!€!€€€€€€€€€€€€€€€€€€ €#€'€€e€€€ €"€ €&€#€ €'€)€$€%€*€$€&€)€&€#€'€&€$€%€#€#€$€#€&€$€!€#€&€"€*€%€'€"€+€'€ €'€&€$€%€$€'€"€"€$€"€#€%€#€€"€#€"€!€%€&€ € €$€ €!€%€$€!€#€'€*€%€&€(€#€"€'€$€€#€&€€!€"€ €€€€€€€€€€€€€€€€€"€%€€e€ €€!€#€$€"€!€(€(€!€'€*€)€(€(€(€&€)€'€€#€%€"€"€$€#€$€%€'€ €&€%€&€%€%€"€&€"€"€%€#€#€"€!€ €!€%€!€€%€"€ €"€$€€€!€"€€#€&€%€ €$€ €"€&€$€!€$€'€'€!€!€'€"€"€!€%€€!€€€€ €€€€€€€€€€€€€€€ €#€)€€e€€$€#€#€!€ €"€%€(€%€%€*€$€'€#€&€%€!€ €$€&€!€#€ €&€ €#€'€"€!€#€$€"€#€&€$€%€#€#€#€!€"€!€ €"€ € €$€#€#€€"€!€€#€%€!€#€ € €"€"€!€€$€$€!€"€%€*€)€ €"€)€!€#€&€#€€#€€ €€€€€€€€€€€€€!€€€€€€&€&€€h€"€!€€$€#€#€"€$€)€"€#€'€#€#€!€#€€ €!€$€!€%€$€ €!€"€#€!€#€%€%€#€%€%€#€$€#€#€"€$€#€$€€%€"€€"€"€€$€%€ €"€$€!€!€€$€!€"€€€€!€!€"€€"€!€ €#€"€'€"€"€#€%€!€&€€%€€ €€€€€€€€€€€€€ €€€€€)€"€ €i€$€€#€€#€€"€#€%€&€%€%€$€&€#€&€"€"€#€€"€€!€"€#€€$€!€$€#€ €$€$€#€%€%€€%€$€"€€#€ €#€"€"€ € €€#€"€!€!€€ €€"€ €€&€€#€"€#€#€ € €!€"€!€%€#€"€€(€$€$€ €"€"€!€"€€€€"€€€€ €€€€€!€€€€€€&€'€ €e€"€"€#€"€%€%€#€#€$€$€#€"€$€$€#€!€"€ € €"€ €€$€#€ €$€ €"€€"€"€!€$€$€"€!€!€%€€#€ €#€ €"€"€#€!€"€"€€!€$€€ € €€#€!€ €€€#€ €€ €#€"€€!€ € €€%€ €$€!€!€ €!€#€"€"€$€ €€€€€ €€€€€€€ €€€€€&€'€€e€ €$€"€#€$€$€$€$€"€!€#€#€!€%€€!€€ €!€€"€$€$€!€€!€ €"€!€!€#€"€!€"€!€$€'€!€"€$€€€"€"€ €€!€€"€€!€!€!€€#€!€#€€"€€ €€ €!€€€"€!€$€#€ €!€!€"€#€!€#€!€"€$€"€ €!€!€€$€€€€€€€€€€€€€€€$€#€€g€"€!€%€ €%€!€$€(€!€!€!€€€"€"€ € €€€€€€ €$€!€!€€$€€"€€"€%€$€"€ €!€$€ €"€ €€ € €!€!€#€ €!€€€!€€€€€€ € €€!€ €€€"€ €€€ €€"€!€€"€!€ €€!€ €!€#€"€!€€€"€€€€€€€€€€€€€€€'€'€€d€ €$€$€"€$€%€#€€%€€"€€"€€€ €€€€!€!€€ € €"€"€€€€$€!€€ €"€"€#€&€"€€€€ €€#€ € €€€€€!€ €€!€ €€ €€!€ € €"€€€!€€€€€€€"€!€#€!€#€"€#€"€"€#€$€ €€ €€€€ €€€€€€€€€€€€&€%€ €g€"€#€!€$€!€€#€"€!€"€€#€€ €€"€€"€€ €€€€"€ €!€ €€ €!€"€€ €"€€"€!€ €#€€!€!€"€#€€ €€"€€!€ €€€"€€ €€ €#€ € €€!€€€ €€€"€€€€#€ €€!€#€!€€!€ €!€"€ €#€€€€€€€ €€€€€€€€€$€&€€c€"€$€ €"€ €€"€ €€€€€!€!€€€€€€"€!€ €!€€€!€#€ €#€€"€#€"€ € €"€"€€#€€ €€ €€€€!€€€ €€ €€#€€!€€€ €€€€!€!€ €€ € €€€€€ €€€ €€"€ € €€"€!€€€!€€€€ €€ €€€€€€€ €€"€&€€f€"€€"€"€"€#€€#€ € €€€€"€€€ €€€€€€€€ €€!€#€"€€"€ €€!€#€!€"€"€"€ €!€€€€€€€€€!€€€€ € €€€€€€€€!€€€€€€€€€€€€€€#€#€€ €"€ €#€ €#€ €!€"€ €€€ €€€€€€€€€$€*€€f€!€!€!€€"€€ €€€€€€€€"€"€€€€ €€€ € € € €€ €!€ €#€€"€€"€€"€"€€ €€€ €€ €€€€€€ €€€€€€€ €€€€€€€ €€ €€€€€ €€€#€!€€€!€€€ €"€€!€€€ € €€€€€€€€€€€€(€$€€g€€€!€ €€€ €€ €"€€€€€€!€€€€€!€€€€"€€€#€ €€€!€!€€ €!€!€€"€#€€€€!€€€€€€!€€€€!€€€€ €€"€€€ €€ €€ €!€€€!€!€€€ €€!€"€€€"€!€€!€ €€"€€€"€€ €€€€ €€€€€&€$€€d€€#€€€€€€€€ €€€€€€!€€€€€€€!€€€ € €€€€"€€!€!€$€!€!€#€€€!€ €€€€€€!€€€!€#€€€ € €€€€€€€€€€€€€€ €€ €€€€€€€ €€€€€#€ €€€"€€ €€€€€€€€€€€)€%€€e€"€"€!€ €€€€€€€€ €€€ €€€ €€€€ €€€€€€"€ €€#€€"€!€€ €"€€"€!€ €€€€€€€€€ €€€€!€€€€€€ € €€€€ €€€!€€€€€€€ €€€€€€€!€ €€ €"€€€"€€€ €€€€€€€€€"€(€€h€€ €!€€!€€!€€€ €€€€€€€#€€€ €€€€€ €€#€€ €€ € €!€ €!€€€!€ €€€€€€€€€€€€€€€€€!€€€€ €€€€€€€€€€ €€€€€€€€ €€€€ €€€!€€€€!€€€€€€€€€€€€*€&€€e€ € €€ €€€ €€€€€€€€€€€€€€!€€€ €€€ €€€"€€€#€€€ €!€!€€€€€€ €€ € €€€€ €€€€ €€!€€€€€ €€#€€€€€€"€€ €€€€€€€€ €€ €€€ €€€€€ € €€!€ €€€€€€€*€&€€g€€€€€€€€€€€ €€ € €€ €€ €€€€€€!€€€€€€€"€ € €!€#€!€€ € €€€ € €€!€€!€€€€€€"€€€ €€€€€€€ €€€€!€€€€€€€€€€€€€€!€€€€€€€!€€ € €!€€€€€€€"€€'€'€€b€€€€€€€€€"€ €€ €€€€€€€€ €€€€€€ € €€€"€€€!€!€€€!€€€€ €€€€€€€€€€ € €€€€€€ €€€€€€€ € €€€"€€€€ €€€ €€€€€€€ €€€€!€€€€€€€€€€€€€€&€'€€f€€€€€€€€€ €€€€€!€€€€!€€€€€€€€€€€"€€ € €€€€€ €€€!€€€€€€"€€€€ €€€!€ €€€€ €€ €€€€ €€€€"€€€€€€€€€€€€€€€€€€€€€€ €€!€€€€ €€€€€(€*€€e€€€€€€€€€"€"€€€ €€€€!€€€!€€€€"€€ €"€ €€€€€€€€€€ €€€!€€€€ €!€€€€€€€€€ €€€ € € €€€€€ €!€€€"€!€€ €€€€€€€€€€€€ € €€€ € €€€€€€"€!€"€!€€€%€,€€fXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 9.0 / minimum value of good pixels GOODMAX = 9925.0 / maximum value of good pixels GOODMEAN= 146.611313 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 104 / length of first data axis NAXIS2 = 104 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 11.000000 / the minimum value of the data DATAMAX = 9976.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -10.9437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2015-08-16' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '16:35:31' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.725069133450E+04 / exposure start time (Modified Julian Date) EXPEND = 5.725069134028E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.500000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.0 / fsw located subarray axis1 coord. of target TARGA2 = 516.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 87849.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 3824309 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 9976.0 / maximum value of good pixels GOODMEAN= 146.789856 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€!€€€€€€€"€€€€ €!€€€€€€€€"€€€€€€€€ € €€€€ €€€"€€€"€"€€!€ €#€ €!€$€"€!€$€ €!€€#€ € €€ € € € €€€ €€€€€€€€€€€ € €€ €€€€€€€€€€€€€€€€€€€ €€+€*€€i€ €€€€"€ €€€€€€€!€€€€€€€ €€€€€€€"€€!€€€!€ €€€#€$€ €$€ €€ €!€"€ €#€"€"€!€!€$€#€€"€"€ €€"€"€€!€#€€€ €€€"€ €€€!€€€€ €€€€€€"€€€€€€€€€€€€€€€€€€"€&€,€€i€€€ € € €€"€€€€!€€€€€€€€€€!€€€€€"€€€€€€ €€€€ €!€€!€ €€€"€€!€%€"€ €$€#€€!€ € €#€€ €€€€ €€#€€ € €!€!€€ € €"€€€€€€€€€€€€€€€€€ €€€€€€€"€€€ € €(€(€€g€€#€€€€!€€€€€€!€ €€ €€€€€€€€€!€€€!€#€€!€ €"€€#€€€!€!€€€ €$€€!€"€#€"€$€$€#€!€"€&€#€€ €€!€#€!€$€#€!€€€€"€€€€€€€!€!€€ €!€€€!€€€ €€€€€€!€€€ €€€€€"€€"€+€(€€i€$€ €#€#€€€€€€€€€€€€€€ €€€€$€€€!€ €€!€ €"€€€€€"€€"€€€"€ € €"€€!€!€€!€€#€$€€%€"€#€!€!€€ €€"€€€ €!€€"€ €€!€!€€ €€€€€€€€!€€€€€€€€€!€ €€!€€ € €€ €€€'€'€€i€"€ € €€€!€!€€"€€€ €€€ €€ €€€€!€€€€ €!€ € € €€€€€€ €!€€!€!€€ € € €%€"€&€ €#€%€"€!€!€#€€ €"€$€!€ €"€€!€"€"€"€€!€!€€€€"€€"€€€€€€€€€€€!€€ €€€€#€€€!€!€€ €€ € €)€&€€g€€ €€"€ € €!€€ €"€€€€€!€€€€ €€€€€€ €"€!€ €"€€"€ €€€ €!€"€#€!€%€$€ €€%€!€%€ €#€$€"€"€"€!€$€$€ €"€!€ €"€$€!€!€€€!€€ €€#€€ €€"€€!€€€€ €€€€€€ € €€"€€ €$€€€€€€!€€€(€)€€g€"€"€ €!€"€€!€€€€ €"€€€"€€€€€€€€ €€€€!€"€ €!€"€"€€ €!€!€€!€ €!€€ €$€#€ €#€#€%€€"€&€#€"€€$€ €!€$€€€"€$€!€€ € €€€ €!€€#€"€ €#€ €€€ €€€€ €€ € €!€€ €$€ €#€€!€ €€"€€€ €'€(€ €g€!€€"€€$€$€€$€€€!€ € €"€€!€€€€ €€!€€"€ €!€!€€ €€ €"€€€€€"€#€!€"€€€%€!€"€#€ €$€$€€#€#€"€!€"€$€#€$€"€€#€€ €!€ €!€!€"€€ €€€€!€ €€€€€€ € € €€"€"€ €€€€!€!€€"€€€€€€€&€*€ €f€"€€!€#€!€€"€"€€#€"€€€€!€€€!€ €€€€€ € €€ €!€ €€€€"€%€#€!€#€"€!€€€#€#€$€&€$€$€"€(€$€#€&€%€€#€%€&€%€&€%€ €€#€€!€#€"€€€€€!€"€ €€€ €!€ €€€!€ € € €!€€"€ € €!€!€€€ €€ €€€€(€)€€f€!€#€#€ €!€€%€%€ € € € €€€€€€€#€!€€€ €€ €€"€€#€€€!€ € € € €€€ €€"€"€!€#€#€&€'€%€#€%€%€(€'€$€(€#€#€#€"€"€"€€ € €&€"€$€€€$€ €!€ €€"€€€€€€€!€ €€!€ €#€€ €"€€€"€!€ € €!€€€€(€&€ €e€$€ €!€ €#€$€"€$€"€"€!€"€"€€€€€€€!€!€!€ € € €!€ €€!€#€#€"€ €!€"€€$€#€"€&€$€$€%€ €$€&€%€ €*€%€$€$€'€%€%€%€$€#€&€#€%€€!€€€$€!€€ €€€!€$€!€!€"€€€ €€#€"€ €€!€#€!€!€!€#€"€ €"€€€€€!€€#€'€&€ €f€"€"€%€ € €"€"€#€%€#€#€ €"€#€!€€ € €€€€€ €€!€€#€!€€!€€!€ € €!€$€"€"€#€ €"€"€€!€&€'€$€%€$€&€&€'€(€&€$€'€&€"€%€#€"€ €$€ €€€!€€#€!€€€€ €€#€€€!€ €$€ €"€"€!€"€#€€$€€€!€€€ €€€€€€%€)€€e€$€€€#€!€€%€!€$€"€!€$€!€ € €$€ €€€!€!€€€"€ €!€#€€€ €#€ €$€ €€ €#€#€!€#€ €$€$€#€'€%€&€(€&€%€(€(€(€'€*€&€'€&€'€%€"€!€!€"€&€$€%€€#€"€€€"€ €€#€!€!€"€!€$€#€!€ €€!€!€€"€ € € €€ €€!€€€€€'€'€€g€ €€€#€ € €#€%€$€!€&€#€$€#€"€!€%€"€€!€€"€!€€"€€€ €#€"€€ €%€ €#€#€"€€#€$€"€#€&€$€#€'€*€$€%€)€)€&€%€,€!€&€(€(€)€(€*€"€%€(€%€!€$€$€"€"€€&€€!€!€€€#€€!€!€"€€"€€#€ €"€"€!€ €€€€€€€€€ €$€$€€f€€!€"€!€ €€"€"€#€#€%€!€$€#€ €%€$€€ €€€€€€€€ €"€€ €#€!€$€€%€€!€"€#€"€"€$€$€"€&€'€"€)€*€'€(€,€*€*€-€-€)€*€'€)€*€%€'€$€#€!€"€"€"€#€€"€€$€€#€&€#€ €$€$€"€€&€!€€$€%€ €€€€€€"€€€€€€(€+€€h€!€€€ € €"€ €"€'€"€#€#€$€"€%€$€&€!€#€€ € €!€"€"€$€€€#€$€"€"€$€ €!€€$€#€&€'€$€!€&€&€'€*€%€*€&€-€,€-€+€,€+€/€*€(€(€)€&€*€%€'€(€$€'€$€&€#€ €"€!€!€€"€"€#€$€&€€#€(€%€!€$€!€$€"€!€!€€€ €€€€€€€+€%€€h€€€€!€"€€#€ €%€ €'€$€'€!€$€#€"€%€&€#€$€$€ €$€&€"€"€!€#€ €"€%€#€#€€!€!€€%€#€#€$€&€"€+€+€*€&€0€2€+€-€-€*€1€.€2€)€&€/€*€&€)€)€(€"€&€#€!€$€$€!€ €&€(€#€%€#€$€!€%€$€!€#€"€'€"€$€%€#€ €€€€€€ €€€€%€)€€k€€€€€#€%€#€€#€$€"€"€%€%€&€'€(€%€)€&€$€!€#€#€ € €!€"€ € €$€ €#€!€"€!€$€%€$€%€&€'€)€(€+€'€+€-€.€*€1€0€0€/€/€-€,€0€1€/€-€.€/€&€%€'€%€%€%€(€%€ €'€"€!€#€%€&€$€%€"€!€%€&€#€€"€!€#€€€€€ €€€€!€€€(€(€€g€€€€!€€€"€$€&€ €"€#€%€!€&€&€#€'€#€#€"€$€&€$€"€$€€!€&€%€€#€%€&€!€&€%€€'€(€$€&€*€&€(€)€.€/€.€1€1€-€2€2€1€2€0€/€,€-€/€*€.€&€*€)€(€(€%€%€$€)€%€$€"€'€"€&€%€%€%€'€&€ €%€$€ €#€€"€ €€€€ € €€€€€(€(€€g€€ €€€€€#€"€#€&€%€%€&€(€%€#€+€%€%€)€#€"€"€#€$€#€#€$€"€€$€#€!€$€#€%€!€!€*€#€$€'€-€'€+€,€-€.€1€/€.€0€8€-€4€6€1€/€0€0€0€.€(€-€&€#€+€'€"€)€&€!€$€(€'€&€&€&€%€%€'€'€"€ €%€$€!€#€!€€€€€€€€€"€ €€(€(€ €h€€!€€€€"€€"€€"€%€#€*€#€%€$€&€'€%€&€%€%€&€#€"€&€$€$€"€$€!€ €#€(€"€#€%€'€%€$€*€&€-€*€*€)€,€.€1€1€=€1€7€5€1€1€/€5€4€2€+€2€0€)€(€*€#€#€%€(€%€%€,€%€&€'€'€%€&€%€ €$€#€$€!€!€%€€ €€€€€€€€"€€€€+€$€€e€ €€€"€€€ € €!€%€$€%€!€%€(€%€'€)€)€$€#€(€'€'€$€(€$€€'€#€$€!€%€"€"€#€%€#€(€(€'€*€.€.€+€/€3€0€1€4€9€0€8€3€8€5€4€6€1€0€8€-€3€.€,€*€(€*€&€'€(€*€(€(€(€&€'€$€$€"€%€&€#€€%€$€€€€!€€€€ €€€€€€ €'€*€€h€ € €!€€€"€!€€!€"€€#€#€+€!€&€'€$€'€&€'€&€(€'€&€$€&€"€%€!€#€$€#€#€$€&€$€*€&€$€*€-€-€1€/€0€0€7€;€7€9€7€:€5€9€3€5€9€6€1€3€/€2€)€-€-€-€+€*€,€)€(€(€/€'€#€-€(€#€'€-€$€%€$€$€!€ €$€€€ €€€"€ € € €€€€%€*€€h€ €!€€€"€€€#€ € €€%€#€#€'€&€%€#€*€&€*€*€,€$€%€'€+€#€(€'€$€'€$€#€#€$€%€#€'€(€+€(€/€0€0€0€1€5€5€8€7€7€8€9€8€3€3€9€5€0€5€6€0€,€.€.€+€/€,€+€,€-€.€#€*€*€%€)€)€*€&€'€&€ €!€!€€"€ € €€€€€€€"€€€ €(€(€€g€ €€"€ €€€ € €€!€$€ € €&€(€!€%€+€'€+€)€)€,€+€)€*€*€$€'€(€$€&€$€'€$€)€%€)€(€-€-€2€.€1€3€1€8€9€>€;€4€1€<€6€4€5€6€3€6€4€2€3€/€2€,€0€3€-€0€*€/€.€,€+€*€)€*€*€%€%€'€'€$€!€#€€ € €"€€€!€€€ €€€€"€€%€+€€e€€!€!€€ €€€€"€ €!€"€&€ €#€(€'€'€(€)€(€*€*€*€(€%€*€'€(€&€&€$€&€)€$€%€'€&€+€+€0€/€3€4€4€8€7€:€5€8€9€7€8€4€4€5€1€3€9€4€4€6€4€1€2€2€.€0€3€/€*€/€+€/€*€(€*€'€(€)€&€!€#€#€ €€!€€€€€€€ €€€€ €€€$€-€€j€ €€€!€!€€€€"€ €"€ €!€ €'€$€%€)€'€'€+€(€,€*€(€+€)€(€+€(€%€&€+€&€#€'€,€*€+€.€5€9€3€7€6€9€5€:€8€:€4€:€6€8€6€1€6€4€1€,€4€1€1€5€4€/€1€4€4€.€2€3€*€,€-€.€)€*€)€$€%€"€$€!€!€!€ €€€ €€€!€€€€€€€!€(€(€€k€ € €#€ €€ € €€€$€#€€#€$€"€$€(€%€%€,€+€%€,€+€+€,€*€,€)€(€)€'€'€'€,€*€+€,€-€5€0€6€:€8€5€>€<€<€=€<€6€;€8€4€1€4€5€2€0€2€2€-€4€0€4€5€3€3€1€6€1€0€1€0€-€)€,€'€'€&€'€%€#€"€"€€!€€ €€€!€€€!€€ €€!€€'€*€€d€€ €€€ €€#€"€"€ €€€!€#€!€'€%€%€%€+€'€,€.€*€*€.€0€-€*€,€,€)€(€-€(€+€/€0€.€/€7€:€<€@€:€;€@€?€6€;€9€6€4€6€5€4€4€6€6€6€0€3€2€0€7€5€7€3€4€3€/€1€2€1€)€-€&€&€#€)€#€"€#€#€!€€"€€ €"€!€€€#€€€€€€€(€*€€i€€ €€"€€€€!€€"€$€!€ €#€"€!€!€'€&€'€%€,€(€*€1€*€'€+€.€-€)€+€(€(€,€.€+€(€1€:€4€<€=€=€=€=€D€?€>€B€9€8€5€6€.€1€2€3€1€.€3€2€0€4€6€2€;€9€5€3€5€5€,€*€-€*€(€*€#€#€"€!€ €€€"€#€"€€€€€€€€€ € €€"€&€'€€g€ €€ €€€#€#€€"€$€!€!€€#€ €#€'€ €%€+€'€+€-€1€.€-€2€0€/€/€-€0€+€.€*€,€-€2€7€4€8€?€=€@€;€C€B€;€:€=€=€>€9€1€2€5€0€3€4€7€2€-€2€:€8€4€<€6€6€3€1€.€0€5€)€,€+€'€%€&€'€#€!€ €#€€#€"€€€!€€€€!€ € €€€€(€*€€g€ €€ €€€ €€%€"€!€"€"€"€"€€"€ €#€'€$€&€)€+€-€*€,€1€(€.€.€2€0€.€,€/€/€1€1€2€A€B€@€=€F€D€F€F€B€D€=€7€6€5€0€2€*€4€8€4€2€5€7€4€7€;€9€:€;€=€0€4€0€,€0€-€*€'€%€'€#€#€#€%€"€€ €#€€€#€€€€#€€ € €€€ €$€'€€i€€!€€"€!€€#€!€ €€!€€!€#€&€!€#€%€'€'€*€*€&€+€,€&€-€3€3€,€1€5€3€0€0€2€1€6€;€<€B€E€G€D€J€I€D€A€J€A€6€3€:€6€3€/€3€3€/€6€5€1€8€8€5€7€A€;€8€7€2€2€0€2€/€)€,€'€#€"€%€&€€"€(€€$€€"€ €€!€"€ € €€€€ €"€'€*€€i€€ €!€€€"€!€#€#€!€€%€€€€%€%€$€&€'€#€*€*€)€,€,€-€/€/€/€4€/€.€2€/€0€5€:€?€@€>€C€G€D€M€M€L€E€C€<€@€=€A€7€7€4€2€5€:€:€4€6€5€4€5€8€9€7€8€<€:€0€6€1€0€&€(€%€$€%€#€#€"€ € €€ € €!€$€#€€ €€ €€€€€€*€+€€f€€ €€ €"€€€!€ €!€€#€#€#€#€!€#€#€'€&€#€-€-€'€+€3€/€0€5€0€,€3€5€/€9€5€6€:€C€C€G€M€E€P€O€J€N€M€C€B€H€7€8€B€:€8€7€5€;€6€7€7€8€7€7€:€:€=€<€5€5€4€3€.€-€,€$€$€&€&€%€%€#€€$€#€€€!€€€!€"€!€€ €!€€€!€"€&€€j€€€€ €€€"€!€!€ €!€€!€!€#€!€&€$€"€$€%€&€&€&€/€*€0€2€1€/€2€3€7€4€8€>€@€@€?€K€L€N€M€N€R€S€S€L€K€L€I€H€@€A€7€7€9€8€3€8€7€6€8€C€:€;€>€?€8€9€5€/€0€.€*€)€)€)€%€%€&€"€ €%€ €"€ € €€€!€€€€€€€ €€€(€(€ €i€€ €$€€€#€ €!€#€ € €$€€!€!€#€%€$€%€(€'€ €)€(€)€,€-€-€4€+€/€4€5€6€=€=€>€C€A€K€Q€V€T€Z€_€X€X€^€U€M€M€F€E€C€E€=€:€7€?€>€=€<€>€=€=€?€>€8€<€5€1€3€1€+€'€'€)€'€%€'€%€#€'€$€!€!€"€€!€!€ €!€€ €€ €€€€€(€(€€i€"€€ €"€!€!€#€ €€€!€$€!€"€$€"€&€!€%€$€$€'€'€&€*€-€-€.€2€/€4€7€7€;€=€:€B€F€H€L€W€[€b€a€d€d€a€b€Y€X€P€L€D€J€F€C€>€@€>€=€=€;€<€:€:€A€=€;€7€8€5€.€/€,€-€(€&€&€%€!€$€(€#€€#€"€!€€$€€ €€€€€ € €€€!€#€(€€h€€!€€€"€€€#€!€!€%€€ €"€&€"€$€#€%€$€%€$€&€*€,€*€)€0€/€4€2€9€8€9€=€?€E€K€P€U€_€\€_€j€g€h€m€l€n€h€P€V€T€T€H€O€H€A€A€C€A€B€B€>€?€@€A€:€:€7€5€3€/€0€,€$€(€&€%€%€&€"€"€!€ € €€!€"€ €€ €€€"€ € €€€€(€(€€i€ €€€ €€"€ €"€#€!€#€"€$€!€%€$€&€%€'€%€'€$€%€%€+€,€-€0€/€7€3€7€5€B€B€@€M€U€S€V€g€m€l€r€z€€y€t€v€t€g€i€]€\€R€R€S€L€G€D€G€B€<€;€;€B€?€<€9€9€5€1€,€,€&€+€&€'€%€'€"€ €"€#€!€#€$€€€ €"€€€€€€ €€€!€,€%€€j€$€€!€€"€€€€€ € €%€€#€€'€"€%€%€%€&€%€(€*€*€-€,€.€/€.€0€5€7€B€B€G€D€P€^€h€n€w€„€}€‰€ˆ€€‘€”€ˆ€}€€l€e€Z€W€U€T€P€H€H€D€@€D€@€=€C€?€:€4€/€0€-€-€,€'€&€$€%€$€%€$€%€$€"€#€€€€€€€€"€!€!€€€€€+€'€€f€ €#€ €"€ €!€ €"€!€"€ €#€#€$€%€$€#€%€'€"€*€'€&€%€*€+€,€.€,€1€6€<€>€@€H€C€R€]€d€k€x€ƒ€‰€Ÿ€«€®€À€²€º€ª€¤€š€Œ€ƒ€w€e€Z€Y€O€V€P€J€@€G€C€?€C€=€:€9€4€/€0€'€,€(€&€%€!€&€'€&€%€%€"€€"€"€ €€#€€ €€ €€€€€€%€(€€g€€ € €"€€ €"€ € € €€!€ €$€"€%€#€%€&€%€"€&€)€*€)€-€/€0€2€3€4€:€=€A€I€Q€W€_€j€€€™€¯€À€Ø€ï€ú€ý€è€Ò€Ã€²€€€q€e€_€b€S€Z€R€J€J€B€<€=€:€8€.€4€5€*€+€*€*€%€*€%€#€%€'€%€"€#€#€ €!€€€"€€€€ €€€€€€(€'€€i€€ €#€€€€ €#€ €"€!€$€$€$€"€"€%€&€#€#€$€%€+€&€&€)€+€+€4€3€3€8€=€B€F€V€Y€W€o€€˜€·€ä€ö4\}Ž{]@€å€Ë€¥€”€ˆ€{€h€g€_€U€Q€L€G€B€;€:€:€5€1€0€1€(€*€)€(€'€$€(€%€$€#€ €#€€€"€€ € €!€ €€!€€€€€€#€)€ €i€ €€€ €€ € €#€€"€"€€&€&€'€#€%€!€"€%€&€&€*€)€)€/€*€.€1€6€6€9€<€F€F€U€a€q€{€˜€°€ä"Ž‚)‚¶ƒƒ#‚è‚u‚¬P€þ€Ù€¹€€‰€€m€`€^€Y€P€O€C€>€9€7€4€3€*€.€'€(€*€*€#€)€%€"€$€!€!€#€#€€ € €"€€ €€€ €€€€!€€%€*€€d€€!€€ €"€€€!€€$€%€$€&€'€"€€#€%€&€&€)€&€$€-€*€(€,€-€0€3€2€:€=€B€G€V€h€t€‚€°€ÚT‚ƒS„¼…Ô†B†ƒ…ó…B„>ƒùz€ß€¾€¥€Ž€|€w€h€^€P€S€H€C€A€6€7€6€/€-€*€(€&€'€'€&€%€$€ €"€!€€#€ €"€€#€ €!€ €€€€€€€€'€*€€j€ €!€"€!€€"€#€ €!€€#€!€$€%€#€"€"€)€(€(€,€*€(€*€(€-€.€.€1€.€5€<€:€B€Q€Z€l€„€š€ÓH‚p„"†8ˆØ‹«ÆŽy¹‹%ˆ…³ƒÃ‚k”€ì€¾€€Š€y€g€\€T€P€E€C€A€:€5€.€0€1€,€-€+€,€%€$€€'€#€$€$€$€"€"€€€!€ €"€!€ €€€ €!€€€(€*€€k€"€€"€€€"€!€€!€$€!€$€!€$€"€)€$€%€(€ €'€%€,€,€)€-€-€1€/€6€6€;€:€A€W€a€l€€¾2‚+„‡ZŒ—’ì—¤š6šëš˜’ËŒ†Ø„‚j†.€å€Ã€¢€~€u€k€]€P€K€E€>€5€1€3€.€.€-€'€+€&€'€(€&€!€"€€#€!€$€ €!€#€€!€€€ €€€€€ € €)€)€€h€ €€€!€"€!€!€#€€ €"€!€"€'€%€#€$€%€$€(€&€(€&€-€-€/€0€.€2€8€9€<€@€H€V€d€~€¡€û¤ƒH†¼3•{›çž‹ŸÇ¡œ¡q ßݘAü†µƒ™‚6n€Ý€°€Ž€v€r€a€R€J€I€A€<€5€4€/€.€)€*€'€)€&€%€#€€!€%€"€%€"€#€!€%€"€ €!€€€€€€€!€ €(€*€€h€ € €€ €€#€€%€!€ €#€$€$€$€&€$€%€(€%€(€&€*€+€-€+€1€-€1€3€7€@€?€A€M€Z€j€€²‚:„ÄŠƒ”E›¼ž÷¡¥£;£—£Ö¤e¢ÞŸ——‹…Aƒ -»G€ý€Å€˜€t€h€]€Y€O€F€;€6€5€.€-€*€0€*€(€+€&€$€&€&€€#€#€"€ €€ €"€€€€€€€ €€€"€"€$€&€€g€€ €"€ €"€"€!€!€ €€ €#€$€$€(€%€&€%€&€&€&€-€&€)€1€.€-€0€4€9€9€?€I€O€X€g€Ž€Îa‚݆8Ž·˜Ëž¡¢Ñ¤£¥b¥ä¥™¥s£xžü’(‡šƒÒ‚%„$€Þ€¯€ƒ€t€a€W€J€I€?€=€6€0€/€,€-€*€&€(€%€"€%€'€"€$€#€!€€!€"€$€!€ €"€ €€€€€€€ €)€'€€h€€!€€ € € €$€ €%€$€$€(€'€%€*€%€%€&€"€"€+€)€-€1€,€3€.€4€1€:€:€@€G€O€W€o€€Ô‹ƒQ‡G÷™Òž„¡í£ü¤Ç¥z¦Y¦ø¦F¤¤¡—9‰™„“‚¤š4€ß€­€’€x€g€S€P€C€;€:€2€2€3€.€/€&€'€'€)€&€)€'€$€'€$€#€€ €"€#€!€€"€!€€€!€!€€€ €%€)€€g€ € €€$€!€€!€$€€%€%€"€%€#€*€%€(€&€(€'€-€+€-€*€1€0€5€1€3€9€C€=€J€O€]€u€”€Þƒa‡‰‘r™¼žP¡N¢Ê¤z¤À¥è¦¦Œ¤Q¢ ˜½Šù…‚ت;€ç€®€™€p€f€T€K€E€>€9€5€8€0€,€.€*€+€*€&€%€#€#€"€!€!€#€"€#€€"€€#€€€ €€€€€€ €&€'€ €g€ €!€$€"€ €€"€!€!€!€#€#€$€%€#€'€&€'€*€(€%€)€-€+€'€/€3€0€3€5€>€8€H€S€]€q€š€Í‚ƒ3†Õ͘°” º¢Þ¤J¤r¥•¥Ë¥»£ Ä˜bа… ‚óÁ=€ì€ª€€t€a€U€L€F€A€:€5€1€/€1€(€'€*€(€$€&€'€$€$€ €"€ €&€"€ € €€ €€€€!€€€ €€"€)€(€€g€ €"€$€€!€€€%€"€$€€#€$€%€+€)€'€(€(€*€(€+€-€.€0€,€4€2€:€9€>€@€A€U€\€p€’€ÄN‚Á…oŒé–[œŸˆ¡Á¢í£‰¤A¤î¤Ú¢qž&”F‰„È‚¥¯&€Ô€ž€…€n€[€Q€K€B€?€;€:€5€*€+€*€(€%€,€'€#€)€#€!€"€!€"€€#€€€ €€€€ €€€!€€€ €'€%€€k€€ €€€€!€!€ € €"€%€!€#€"€&€"€#€&€(€,€+€*€+€/€1€0€/€2€9€7€@€?€J€R€^€h€Œ€·‚+„ˆ‹‘?˜†œÞŸÆ¡?¢£¢ò¢^Ÿq™ÐŽM†Ðƒí‚Gx€ú€¼€–€w€j€R€N€J€G€:€6€1€3€0€7€,€*€(€#€"€"€$€#€$€!€€$€ €!€€€€€ €"€ €€€€€€€(€)€€i€€%€€€"€#€€$€#€$€%€$€&€$€%€$€'€'€(€+€+€(€(€,€.€/€/€4€3€:€=€D€I€S€[€m€‡€ €ÛЂׅhŠê’˜¬›¸ž-ŸlŸŸžš_‘•‰$…*ƒñ-€ä€§€‹€w€c€U€I€G€D€;€4€7€4€/€,€+€%€'€$€*€$€&€$€#€#€#€!€"€ €#€€ €€!€€€ €€€ €€"€&€(€ €f€!€€"€€!€"€ €"€"€!€€&€$€$€'€#€"€-€)€+€'€-€.€+€1€1€/€5€7€=€8€A€C€J€Z€e€u€–€­íƒ>…{Š^‘b•¶˜ššš†šT–O‰†…¨ƒ¡‚@q€ù€»€Š€~€f€[€N€F€C€@€:€7€4€0€.€)€-€$€'€%€(€'€$€(€#€"€%€#€€€"€"€€€€!€€ €€€ €€!€*€'€€j€€€$€ €€ €€€€$€%€ €"€"€"€$€(€*€$€'€+€$€+€0€.€*€.€7€8€8€A€D€D€P€O€c€v€ˆ€¢€É/éƒE„û‡ä‹ê‘7᎗‹,‡¦…9ƒ•‚@… €¼€ž€‚€m€\€S€I€>€@€;€6€1€4€)€+€,€,€(€,€*€&€!€#€%€#€!€!€"€!€ €€€!€ € €€€€€€€€€(€'€€f€$€#€ €€#€!€€ €!€€%€#€&€&€'€#€(€&€&€-€'€(€*€+€-€-€-€-€-€7€9€>€L€R€T€\€g€y€”€¯€×ª‚•ƒ©„ò†3†µ†Ï…Ý„îƒò‚õ‚j€ó€¾€Ÿ€…€j€a€Y€P€C€C€9€9€4€5€0€-€0€*€&€%€)€&€%€&€&€$€!€$€€ €&€!€!€€€€€€!€€ €€!€€€(€'€€h€ €€€€€!€!€$€€!€%€#€%€"€$€"€$€*€%€"€'€(€'€*€(€.€-€6€3€7€9€B€D€L€U€X€e€p€z€š€°€ÊMÔ‚F‚¥‚ꃂ‚ƒÜz -€æ€ª€”€‚€g€f€[€M€H€E€;€7€:€5€0€,€-€+€*€)€*€'€"€(€"€ €%€"€ €%€"€!€!€€"€!€ €!€€ € € €"€€€ €(€&€€g€€!€€€"€&€"€"€€&€!€"€#€!€#€'€)€&€%€)€&€,€)€,€*€.€1€4€0€6€;€?€C€K€N€]€]€g€s€€‹€š€Â€Ó05XlF'€ü€Ü€Â€›€‡€z€l€i€W€T€L€D€D€:€9€/€3€,€.€/€(€,€*€)€)€&€%€%€%€$€%€ €!€!€€€!€!€ €!€ €€€€€ €€€€)€(€€g€ € €€€!€€"€"€ €$€"€%€ €!€"€(€$€$€(€%€%€)€)€(€-€0€/€,€1€4€:€A€F€C€L€W€[€a€j€u€€€…€š€›€´€µ€Â€Â€¾€³€±€€”€†€w€j€h€`€X€T€J€I€G€:€?€5€5€/€/€)€-€0€)€'€&€)€'€$€(€ €%€%€#€#€"€"€€€"€#€€ €€€€"€€€€€*€%€€f€!€!€ €"€ €"€€#€€%€$€"€!€'€#€$€!€'€&€&€*€)€(€)€,€-€(€0€7€5€<€:€A€K€J€M€V€c€c€b€t€t€z€„€€€…€€‡€‡€ƒ€r€p€d€j€^€_€S€H€L€E€A€B€=€7€5€4€3€/€/€+€*€$€,€&€$€&€'€"€#€"€ €"€#€$€!€!€!€€!€€€€€€€€€€€'€%€€h€€!€€€"€"€"€$€!€"€ €#€$€$€€$€"€$€%€+€)€%€*€+€,€+€-€/€/€5€=€D€A€@€H€N€O€W€U€c€d€e€f€j€p€n€e€o€k€e€e€_€_€Y€]€U€T€S€L€H€D€C€7€5€7€6€1€1€/€-€)€%€'€&€(€%€'€%€&€)€€!€%€€€#€#€ €€€€€€"€ €€€€€€*€(€€f€ € € €%€ € €"€$€ €€€!€€#€€$€$€(€#€#€(€*€'€*€,€-€-€2€3€8€9€>€B€C€F€N€M€W€X€[€Z€^€Z€a€a€a€_€W€Z€[€R€S€Z€O€L€M€L€K€H€D€H€@€7€>€9€1€0€1€/€/€*€.€'€%€$€%€&€%€#€"€"€#€€ €#€$€ € €!€!€€ €€€€€€€€"€&€(€€i€ €€ €€€€!€!€€"€%€!€$€$€!€#€&€"€%€%€(€(€&€(€)€/€-€5€3€3€9€?€>€:€H€K€C€M€M€M€U€S€T€O€U€V€S€S€R€J€J€N€O€J€K€J€J€@€F€D€A€<€<€7€;€9€4€2€.€-€-€+€&€&€*€#€&€%€€%€%€$€!€"€€!€"€!€€€€!€"€€ €€!€ €€€$€*€€f€ €#€€€!€ €€"€ €"€€!€#€!€#€%€&€&€'€(€ €'€&€-€)€0€1€7€3€;€:€8€=€D€D€C€F€H€F€J€G€M€Q€N€I€N€M€I€I€G€J€F€=€A€B€E€@€@€A€B€=€>€;€7€:€6€4€1€/€,€,€*€-€*€&€&€$€'€"€#€€ €!€€ €€"€$€€!€ €!€!€€€€€!€€€(€)€ €j€"€€€€€€€€€#€#€€#€$€"€€#€"€*€&€%€'€(€(€,€-€1€3€3€5€5€8€>€6€@€C€@€<€>€?€B€D€L€G€B€F€C€<€=€D€=€;€@€?€:€;€=€<€<€:€8€3€5€6€0€7€/€2€/€-€+€,€&€#€(€%€&€#€(€"€$€"€#€ € €#€€€$€€€ € €€"€"€€€€ €%€(€€g€ €€€€€!€$€ €€"€!€€"€€ €#€&€#€&€'€'€%€'€-€)€)€0€3€5€;€7€6€>€7€;€<€9€=€=€=€<€;€<€=€C€A€=€;€?€8€;€9€5€4€6€4€5€4€:€:€3€5€7€8€3€5€4€3€,€/€,€*€+€'€&€%€(€"€&€$€#€#€$€%€!€"€!€€€€€€€€€€€!€€€&€*€€f€ €€€ €"€€!€#€ €€!€"€#€ € €!€!€'€'€'€&€+€,€)€-€0€3€/€3€7€5€5€:€6€5€=€9€8€4€<€>€:€>€=€:€6€9€:€6€1€7€5€1€5€6€4€.€2€4€0€2€.€/€1€9€2€+€-€1€.€/€1€*€%€%€'€(€$€'€$€€%€€€"€"€ €€ € €€€€€€€ € €€€*€"€ €j€!€€€€ €€#€€€"€#€ €#€€%€!€#€"€#€'€&€'€(€/€/€+€/€6€0€6€2€6€:€7€;€4€5€4€5€1€.€7€:€2€7€5€7€0€7€4€/€1€/€.€0€.€+€-€1€3€5€,€3€5€3€1€1€2€.€/€+€,€-€)€*€&€(€#€"€"€#€ €"€"€#€€€€€€€#€!€€ €€€€€€%€*€€h€ € € €€!€ €"€ €!€ € €!€"€"€#€"€%€'€(€*€*€(€-€+€-€+€/€2€4€4€/€0€4€1€5€0€0€5€1€3€3€/€/€6€1€2€0€2€2€0€-€*€1€-€0€/€(€0€+€+€,€0€0€/€/€3€1€+€,€2€,€(€-€*€&€*€&€$€#€!€&€!€€%€€€"€ €€!€€€€ € €€€€€€)€*€€g€ €€€"€€€ €#€€€#€!€ € €$€#€€%€)€'€'€+€)€+€(€1€0€.€-€2€3€1€2€/€,€0€-€-€+€3€1€-€:€1€.€/€6€0€.€/€*€*€)€+€-€+€-€*€'€,€,€,€*€-€0€0€+€-€/€-€+€/€-€%€)€*€%€%€&€$€€#€"€ €€!€ €€€"€€ €€€€ €!€€€"€(€'€€k€€€#€€€€ €€€"€#€ €!€#€#€"€%€$€$€#€.€(€(€*€/€.€*€/€+€-€3€2€2€/€,€/€,€.€1€*€1€1€-€-€+€.€*€)€+€,€*€,€-€'€(€,€*€(€*€-€,€$€1€'€.€0€.€*€+€.€+€,€*€)€*€'€(€(€!€"€%€€€$€!€€&€!€€€€€€€€€€€€!€'€*€€g€ €$€ €€"€€€ €"€€ €"€!€€#€"€#€&€&€+€'€+€)€*€0€*€-€,€,€-€3€1€/€,€+€-€/€*€-€.€4€,€*€-€-€*€,€+€+€*€)€*€&€%€)€+€(€+€*€&€'€*€'€+€.€.€.€.€-€,€*€*€,€)€(€)€'€&€%€!€#€"€#€ €!€!€!€€ €€€€ €€€€€€€ €*€'€ €j€ €€€€#€€"€!€€€!€€!€#€#€ €!€'€(€(€*€'€*€*€*€,€*€.€)€+€.€,€+€-€(€+€'€'€*€+€'€.€*€+€*€+€-€%€(€*€'€'€)€*€(€(€*€'€%€$€+€&€)€*€*€(€*€#€,€+€(€*€'€)€)€)€)€$€%€!€#€#€"€€€!€€€€€ €€€€€ € €€€!€%€%€€i€ € € €€!€€€€#€"€!€"€ €"€#€&€$€)€'€*€+€*€$€-€,€+€-€-€)€,€)€+€(€%€+€&€)€'€+€-€)€*€(€'€(€%€%€+€&€(€)€&€#€ €%€(€#€%€)€'€%€(€&€$€'€(€(€(€*€*€*€(€(€&€%€$€*€'€$€#€ €"€!€ € €€ €!€!€€ €€€€€€€€€!€#€(€€g€€€€€€€ €!€ €€ €%€!€#€#€%€&€%€'€&€*€)€&€+€)€&€(€*€&€)€'€)€(€-€&€)€*€+€'€+€*€%€'€(€*€'€&€&€+€&€'€+€&€%€*€$€"€%€%€'€)€$€&€&€'€#€$€%€)€)€)€+€)€&€)€'€%€'€#€&€&€$€!€!€!€€ €!€€!€!€€€€!€€!€€€€'€'€ €h€€€ €€ €€!€ €€€#€ € €#€"€&€'€'€'€%€*€*€'€#€*€'€*€,€'€*€(€(€(€$€*€'€(€)€%€)€'€&€+€%€)€%€(€'€&€"€"€&€#€'€$€'€&€(€&€'€$€&€$€$€&€'€$€%€)€*€(€(€'€)€&€'€&€'€$€%€"€%€ €"€!€€€ € €€€€!€€€€€€€ €'€)€€g€ € €€€€ €€€$€ €€$€(€"€"€#€'€ €*€(€(€$€&€'€&€'€(€&€(€*€&€%€'€%€'€(€%€*€&€(€ €(€'€)€'€#€%€'€(€%€%€*€ €$€$€'€#€&€#€#€!€%€"€#€"€&€"€%€$€%€#€&€'€+€&€$€%€(€&€$€#€"€&€ €$€€€€"€€€€€ €!€€€€€€(€)€ €e€ €€€€!€!€€€#€€ € €$€%€&€'€(€%€$€)€+€(€*€&€'€(€$€'€%€&€"€%€)€$€(€'€'€'€)€)€#€*€'€$€)€%€%€%€"€€#€&€ €$€!€%€!€&€#€'€ €€"€"€(€ €'€%€&€"€%€,€$€$€&€'€$€&€'€#€#€)€%€!€€!€€€!€€€€€€€€ €€€ €$€(€€h€!€!€€ €€€€€ €€$€%€!€%€$€%€(€%€'€)€(€&€*€*€#€$€%€#€"€!€&€!€%€%€'€#€&€%€$€)€*€#€$€*€"€$€%€$€ €$€#€"€$€%€ €&€#€(€"€€$€#€"€$€"€"€"€!€"€)€'€$€&€%€!€&€%€)€#€$€ €$€&€#€#€"€€!€€€€€€€€"€€€€€&€'€€h€ €€€ € €€€ €"€!€"€"€$€(€&€$€(€&€%€)€$€$€)€"€&€#€%€'€&€ € €#€!€$€$€#€%€#€%€$€$€%€$€&€&€#€&€"€$€&€"€"€"€%€#€!€ €$€!€€"€"€$€"€ €$€"€#€#€&€(€!€€%€%€'€%€&€#€'€#€%€&€ €"€ €!€€€€€€!€€€€€€€€(€(€€d€ €€€€€!€€€"€&€ €"€'€#€%€'€"€$€%€%€%€&€%€#€$€"€$€#€#€#€%€#€"€&€&€€&€%€$€&€#€"€(€€ €"€$€%€ €!€%€#€#€ €#€%€"€$€!€"€€$€#€#€%€$€"€ €#€%€%€ €'€'€#€'€%€%€'€$€$€%€'€$€#€#€ €€ €€€€€€€€€€€€'€%€€e€ €€ €€€!€€€!€"€"€(€#€!€$€#€$€#€'€'€ €$€ €"€"€%€%€&€%€"€"€!€&€"€#€%€ €$€$€&€$€%€'€%€#€$€$€#€!€#€$€$€"€!€"€"€!€&€!€#€$€!€#€"€%€#€€!€#€$€ €$€%€#€$€&€$€$€&€€%€#€%€$€"€$€€€ €#€€!€€€€€€€€ €(€'€ €f€ €€€!€€€€ €$€!€$€#€#€*€"€&€&€(€%€%€$€"€"€"€"€"€€$€"€"€$€!€!€"€#€%€ €'€"€#€#€$€%€!€!€%€"€"€€%€$€ €#€ €"€"€ €€€#€#€€"€€$€#€'€#€!€%€€"€ €$€"€"€%€$€%€"€€%€&€%€%€!€"€€€€€ €€€€€€€€€'€'€€f€€€€ €€!€&€ €"€"€ €#€$€&€'€$€%€$€%€€ €%€"€#€ €"€#€"€$€%€ €!€!€"€"€%€#€!€€!€$€#€"€"€ €"€ €"€#€ €"€"€#€%€!€"€"€%€€"€€&€#€!€#€"€!€!€ €!€€€ €"€€ €%€#€$€&€"€%€ €"€#€%€$€€!€ €€ €€€€€€€€€*€*€ €i€€"€€"€€€$€!€ €"€#€"€!€"€!€$€"€!€ €%€!€'€ €"€€!€"€!€"€#€#€€ €"€"€%€"€#€#€#€#€#€$€%€€&€€"€"€$€%€€ € €!€"€%€€€$€!€&€!€€€€€#€!€!€€€#€!€€#€#€#€%€$€ €#€!€#€#€#€!€€!€"€ €€ €€€€€€€€%€&€€f€€!€!€€!€€"€"€€%€€#€#€"€$€$€$€!€#€%€"€€€#€!€#€€ €€ €"€%€€!€#€"€€%€!€!€#€$€€!€"€$€ €"€!€ €€€"€#€"€#€€ €€€"€ €"€#€!€"€ € €€€"€€€ €€€#€ € €#€"€"€!€#€!€$€$€€€"€!€€ €€€€ €€€ €&€+€€f€ €€€€"€!€"€#€&€'€%€"€%€"€#€!€"€€#€ €"€!€!€"€€ €€€"€"€€%€!€!€!€!€€€$€#€!€#€#€!€€€"€"€!€"€&€ €€!€#€!€ €"€#€€!€#€!€"€!€!€€"€ €€€ € €€€!€€"€$€$€!€"€"€!€ €"€#€!€€"€€!€€ €€ €€€€€&€'€ €g€!€ €€ € € €"€"€"€%€"€#€ €"€€#€'€"€€"€"€€€€#€$€ €"€€ € €!€"€!€ €"€#€"€!€$€"€"€$€!€!€ €#€€#€ €€€"€€ €!€!€€!€€ €€€#€ € €!€ €€"€ €€ €€"€"€€€!€€%€ €#€!€%€"€€#€!€€ €€!€€€€ €€€€&€*€€c€ € €€!€!€#€!€"€!€!€%€!€&€'€ €$€%€€€!€!€€"€ € €€"€ €€!€ €€#€!€#€€€"€€ €#€#€"€!€#€€ €€€"€!€#€"€ €!€€ €€#€ € €#€ €"€€"€ €€!€€€ €!€ €€€€€€€€!€#€#€ €"€"€ €$€"€#€€"€€€€€"€€€%€(€€e€ €$€€€€"€"€"€!€"€€"€€€$€#€€!€€ €€!€!€€"€"€ €€€€€€€€!€€"€ € €$€"€#€€ €!€ € €!€!€ €"€€!€!€€€€!€€#€!€!€€€ €€€!€€€ €€ €€€€€€"€€"€€€€!€!€$€!€ €"€!€€"€€€ €!€€€ €&€'€€i€ €€#€ €!€"€"€#€ €€€"€€ €€"€€€ €€"€€€€€ €€€€€"€€€€"€€€!€ €#€"€#€!€€ €!€€€€#€€#€€€€€ €€€ €€"€ €€€ €!€€€ €€€€€€€ € €€€ €€€ € €€€!€€"€"€!€ €€"€€€€€€'€(€€g€ € €€ €#€€"€ €"€€#€ € €€ €€€€€€€€€ €€ €!€"€€€"€€"€!€€€#€"€€ €"€"€€€!€€ €#€€ €€€ €€€€€€€"€€€!€€€€€€ €€€€€!€€€€€#€€€€€ €€€ €€#€€$€ € €€"€ € €€€€)€)€€i€ €!€"€#€"€!€ €"€€€€€€"€ €€€€ €€€€€€ €€!€€€€ €€"€€€ €€€$€"€€ €€€!€€!€€€"€€€€€ €€€ €€$€€€!€€€€€€€€€ €€€€ €€€€€€ € € €#€€€€ €!€€€ €#€€!€€€€ €&€&€€f€€€ €€ €€€ € € €€€€€€€€€€€€€€!€€€€€€"€"€€€€€€€"€€"€"€"€€€#€"€!€€€€€€#€€!€€ €€€€€€€€€€€€€€ €€!€€€€€€€€€€€ €€€ €€€ €"€"€€€$€€!€ €€€*€-€€f€$€€€!€!€!€!€€ €€#€€€€€€€ €€€€€ €€€€!€€!€ €€€!€€€ €"€"€"€!€ €€"€#€€€€€€#€!€€€€ € €€€€€€€€€ €€€€!€!€€€€€€!€€€!€€€€ €€€€ €€€"€€€"€€€!€€€€"€'€)€€f€ €!€ € €€€€!€!€ €€€€€ €€€!€€€!€€€€€€€ €€€€$€ € €"€#€€ €€ €€!€€€"€#€ €€ € € €!€ € € €€€€€"€€€€€€€ €€!€€ €€€€"€€ €€€€€€€€€€€€€€"€!€€ €€€"€ €€!€&€(€€e€!€€!€€!€!€ €€€€€€ €€€€€€€ €€€€€€€ €€€€€€!€€€€€"€!€!€"€"€€ €"€€ €€€ €€€€€€€€€#€€€€€€€€€€€ €€€ €€ €€€€€€€€€€€€!€€€€€€€€€€!€ €"€"€'€,€€i€ €!€€!€"€€€€€ €€€€€€ €€€!€€€€€€€!€€ €€€€ €"€€"€"€ €"€€"€ €€€€!€€!€ €€€€€€€€€€ €€€"€€ €!€€€€€€€€€€€!€ €€ €€€€€€€€€€€€!€€€€!€€€#€ € € €,€)€€g€€"€#€!€€ €€€€ €€€ €€€€"€€€€!€€€ €€€€€€ €!€€"€"€#€!€€"€ €"€€€€€€"€ €"€"€ € € €€€"€"€€€€€€€€€ € €€€€ €€€€!€€€€€€€!€€€€€€€ €€€"€ €€€%€!€€$€!€!€*€*€€eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10816 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 9976.0 / maximum value of good pixels GOODMEAN= 146.789856 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 104 / length of constant array axis 1 NPIX2 = 104 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 52.997 / x-coordinate of reference pixel CRPIX2 = 53.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -465.0 / offset in X to subsection start LTV2 = -463.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 11.000000 / the minimum value of the data DATAMAX = 6056.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= -10.9437 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2015-08-16' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '16:37:19' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.725069258487E+04 / exposure start time (Modified Julian Date) EXPEND = 5.725069258602E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.3 / fsw located subarray axis 1 coord. of aperture APERA2 = 514.4 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1204.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 6056.0 / maximum value of good pixels GOODMEAN= 99.871109 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€€€€€€€€€€€€€€"€€ € €€€€ €€)€)€€d€€€€€€€€€€€€€€€€ €!€€€€€€€€€€%€$€ €e€€€€€€€€€€€€€€€€€€€ €€€€€€€€$€(€€c€€€€€€€€€€€€€€€ €€ €€€€€€€!€€€&€&€ €d€€€€€€€€€€€€€€€€€!€ €€€€€€€€€"€%€€d€€€€€€€€€€€€€€ €€€ €€€€€€€€€€'€(€ €g€€€€€€€€€€€€€€€#€"€€€€€€€€€€€&€&€€e€€€€€€€€€€€€€€ €€€$€€€€€€€€€€&€(€€c€€€€€€€€€€€€€€€!€"€€€€€€€€€€€&€(€ €g€€€€€€€€€€€€€€€#€%€&€#€€€€€€€€€'€*€€`€€€€€€€€€€€€€€"€*€0€,€!€"€€€€€€€€'€&€€d€€€€€€€€€€€€€!€*€E€a€W€;€%€€€€€€ €€%€)€ €d€€€€€€€€€€€!€!€5€é‚óƒ×ƒ:G€J€$€€€!€€€!€(€%€ €f€€€€€€€€€€€)€*€iƒªŒù‘µŽÕ…‡€¸€A€€€ €€€€(€+€€b€€€€€€€€€ €€(€5€ˆ„´‘Z—¨”µ‡e€ã€U€ €#€€€€€(€&€€c€€€€€€€€!€€€'€+€v„2ä•g’m†Š€Á€I€ €€€€€€&€'€€b€€€€€€€ €€€€€&€J‚‡A‰ü‡Ü‚Í€_€+€€€€€€ €'€*€€g€€€€ €€€€€€€€€*€L€¨€þ€Ê€]€/€ €€€€€€€&€&€€h€€€€€€€€€€€€"€€€(€;€5€(€€€€€€€€ €$€(€€f€€€€€€€€€€€€€€€€#€ €€€€€€€€€€&€)€€e€€€€€€€€€€€€€€€€ €€€€€€€€€€€%€)€ €a€€€€€€€€€€€€€€€€€€€€€€€€€€€%€*€ €c€€€€€€€€€€€€€€€ €€€€€€€€€€€€$€&€ €e€€€€€€€€€€€€€€€€€€€€€€€€€€€&€)€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€(€&€€f€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€(€€c€€€€€€€€€€€€€€€€€€€€€€€€€€€&€&€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€%€(€€`€€ €€€€€€€€€€€€€€€€€€€€€€€€€'€'€ €`€€€€€€€€€€€€€€€€€€€€€€€€€€!€$€*€€eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 6056.0 / maximum value of good pixels GOODMEAN= 99.871109 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 3.019837512434E+02 / first axis value at reference pixel CRVAL2 = -3.163741093880E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.38444E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -2.67771E-06 / partial of first axis coordinate w.r.t. y CD2_1 = -2.67697E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.38482E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.019837512434E+02 / RA of aperture reference position DEC_APER= -3.163741093880E+01 / Declination of aperture reference position PA_APER = -1.094564752045E+01 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits b/lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits deleted file mode 100644 index d32e3700..00000000 --- a/lib/stistools/tests/data/tastis/ocoa03q2q_spt.fits +++ /dev/null @@ -1,21 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'ocoa03q2q_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocoa03q2q ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'CERES-2 ' / proposer's target name RA_TARG = 3.019837512434E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.163741093880E+01 / declination of the target (deg) (J2000) ECL_LONG= 297.367386 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -11.186652 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 10.040481 / galactic longitude of the target (deg) (J2000) GAL_LAT = -29.171545 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV28X50LP ' / aperture used for reference position ELON_REF= 297.367386 / ecliptic longitude at reference position (deg) ELAT_REF= -11.186652 / ecliptic latitude at reference position (deg) GLON_REF= 10.040481 / galactic longitude at reference position (deg) GLAT_REF= -29.171545 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 13693 / PEP proposal identifier LINENUM = '03.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'COA' / program id (base 36) PR_INV_L= 'Hendrix ' / last name of principal investigatorPR_INV_F= 'Amanda ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '03' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'Q2 ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F28X50LP ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 3.0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 484 / proposed axis1 detector pixel of subarray startSS_A1SZE= 104.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 463 / proposed axis2 detector pixel of subarray startSS_A2SZE= 104.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'GEOMETRIC ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 81 / word 11/14 (0-255) PSTRTIME= '2015.228:16:34:16 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2015.228:16:39:36 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV28X50LP ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '13693_2 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 3.018849343480E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -3.165595469476E+01 / declination of v1 axis of st (deg) PA_V3 = 214.052200 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'SCHN000911F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'SCHK000675F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = -1.094564752045E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -3.011494389985E+03 / position of space telescope x axis (km) POSTNSTY= -5.585185767648E+03 / position of space telescope y axis (km) POSTNSTZ= 2.759939212808E+03 / position of space telescope z axis (km) VELOCSTX= 5.995210266196E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -4.214763738626E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -1.987615019341E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.456143003646E+02 / right ascension of the sun (deg) DEC_SUN = 1.375731290861E+01 / declination of the sun (deg) RA_MOON = 1.666704993381E+02 / right ascension of the moon (deg) DEC_MOON= 4.240738047776E+00 / declination of the moon (deg) VELABBRA= 20.320471 / aberration in position of the target ANNPARRA= 4.647622 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = 'T' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'S ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'Y' / parallax correction used (Y, N, or A) RA_REF = 3.019837512434E+02 / right ascension of reference object (deg) DEC_REF = -3.163741093880E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.658656000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 2.409074560722E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.615830988428E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.861583604410E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.596635865649E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.786689621591E-01 / cosine of inclination ECCENTRY= 7.446961416497E-04 / eccentricity ECCENTX2= 1.489392283299E-03 / eccentricity times 2 ECBDX4D3= 5.506505125154E-10 / eccentricity cubed times 4/3 ESQDX5D2= 1.386430858470E-06 / eccentricity squared times 5/2 ECBDX3 = 1.238963653160E-09 / eccentricity cubed times 3 FDMEANAN= 1.747284263264E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.329612887381E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.116144634254E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 2.683700343510E-01 / argument of perigee (revolutions) MEANANOM= 7.317577417211E-01 / mean anomaly (radians) RCARGPER= 1.083947380026E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 4.229888956230E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.774315185848E-01 / sine of inclination SEMILREC= 6.919347741484E+06 / semi-latus rectum (meters) TIMEFFEC= 9.659134900000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.663572560000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F28X50LP ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'MOVING TARGET ' / target type TARDESCR= 'DWARF-PLANET; Ceres at 2nd longitude 'TARGCAT = 'SOLAR SYSTEM ' / first target category TARKEY1 = 'DWARF-PLANET 'TARKEY2 = 'Ceres at 2nd longitude ' / PROPOSAL INFO: Flux Information MAG_V = 8.000000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.500000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information MT_LV1_1= 'STD=CERES ' / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 0.000000000000E+00 / target right ascension from proposal (degrees) DEC_PROP= 0.000000000000E+00 / target declination from proposal (degrees) PEQUINOX= 'J2000.0' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'The Ultraviolet Spectrum of Ceres 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136341000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247896000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350540000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -1.663740000000E-06 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 1.663300000000E-06 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 6.454600000000E-04 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -6.450000000000E-04 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.057635000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -4.015093000000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.856243000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -4.035270300000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.215280000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 4.020315300000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.416672000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 4.040489700000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocoa03q2q ' / rootname of the observation setEXPNAME = 'ocoa03q2q' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 11781 / Number of words NLINES = 13 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 104 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 104 / subarray axis2 size in unbinned detector pixelsCORNERA1= 484 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 463 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 54 / Slit Number SLITSIZE= '28x50 ' / aperture field of view TFPFNAME= 'F28X50LP' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'DIFFUSE ' / type of acquisition DFIELD = 2 / Diffuse Field Method CENTMETH= 'GEOMETRIC-CENTER' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'RETURN-TO-BRIGHTEST' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 527.0 / fsw located subarray axis1 coord. of target TARGA2 = 514.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.5036 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.23558 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.60288 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.32019 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.50673 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0881 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5393 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.5857 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.1188 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 4.00391 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.5188 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.7438 / (dgC) Fitting A temp OFITBT = 18.6458 / (dgC) Fitting B temp OFITCT = 6.09609 / (dgC) Fitting C temp OHDM15V = -15.174 / (V) Hold Mode Regulator - 15V OHDP15V = 14.6385 / (V) Hold mode regulator +15V OHDP5V = 4.84298 / (V) Hold mode regulator + 5V OKMDITBT= 24.7995 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.4583 / (dgC) M1 heater control temp OM1HTRW = 0.071625 / (w) M1 heater power OM2HTRT = 33.7292 / (dgC) M2 heater control temp OM2HTRW = 0.0610833 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.2677 / (dgC) MEB 2 radiator temp OMBCSPT = 35.65 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.7 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.25 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1679 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1834 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0922 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 24.3781 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.99633 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.6188 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.50726 / (w) Thermal controller power, zone 1B OTCZ2AT = 19.9625 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.9056 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.775 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.822 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.0375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.197417 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.75 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.334833 / (w) Thermal controller power, zone 3B OTECINV = 6.77203 / (V) TEC input voltage OTECTCV = -7.6172 / TEC temp control voltage OMBMC15V= 14.8136 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0748 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90136 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4828 / (V) LVPS CEB +15V OPSCB35V= 31.5556 / (V) LVPS CEB +35V OPSCB5V = 4.98407 / (V) LVPS CEB +5V OPSCM15V= -15.4367 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.48254 / (A) M1 +5V current OM1P5V = 5.20635 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 36.0075 / (dgC) M1 charge amplifier temp OM1DCDT = 36.4959 / (dgC) M1 decoder temp OM1MCET = 35.0307 / (dgC) M1 MCE temp OM1LVPST= 39.6705 / (dgC) M1 LVPS temp OM1HVPST= 36.2517 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 152.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.635 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.044 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.9609 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481807 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.4727 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 39.6705 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.60747 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3611 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.2107 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.05218 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.045 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.04731 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 33.0416 / CB clock X pwb temp OCBCLKA2= 30.857 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.09596 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.08623 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99418 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.93352 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.07867 / (V) CEB phase 3 lower low V OCBP3UHV= 5.45848 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.07867 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0487692 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= -0.0195898 / (V) CB reset gate CD Lo OCBS1AHV= 4.91361 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.90874 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.99631 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02533 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.05938 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.92334 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94749 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02533 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.97199 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.89901 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95253 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= 0.0023521 / (V) CB state machine 1 +5V OCBSM2PV= 5.08623 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.94263 / (V) CB summing well A Lo OCBSWBHV= 4.89901 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.01074 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.8952 / CEB timing pwb temp OCLM5V = -5.1545 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00193823 / Calibration lamps -5V current OCLP30V = 29.5706 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0238333 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 3824309 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.000337006 / (A) Slit Wheel motor current OSWMVEL = -0.0228103 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1793 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2559 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 54 / Control section slit position OCSDQEXJ= 624 / Control section data queue extract OCSDQINJ= 624 / Control section data queue insert OCSXQEXJ= 49 / Control section Expos Que Extract OCSXQINJ= 50 / Control section Expos Que Insert OCSOBSQ = -27869 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 15942 / Control section dump pointer OCSFILLJ= 15942 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 34 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCOA03Q2". |àPs2ÈIhhÏä"ʤл°¼€ÃPÄ0ÁÐÂðÞÐÌPÌ@«°@¿ ²°€°ðª`¼`Þ€¾°ÎÉÈðÈðÒà 0Ó0  ¿Ðþ ¨`ÀÁ0àÈàÒ Ò ¹pÑ0½`µ¸à¸ðââÍ ÎðÍàÍp§°¶¨ ´0¦p¿à« ¢¦ €§À¡Ÿp€ß á¿pÝ€åÐÀ€P& ( -þ¯ «½3+ ½f¸T Å Í ÏÆòôîó7L q Ù ™Å ®½1 áp Ä^µI Ã Ì ÑÅõøð -ÔÀÃ^ ^ð^ð_P„àê %`ÂPÚðï€%@Á`ÚàÔàÀ‰„° °Á ß` €Àðß`LàT°˜ `˜°€˜À ˜À`F@¦F ¥à™À€ ™ À~@h@~ h €`f €e@~€h@~@h `f Àeà}àh@@f €€ÁÐ~@h@}àh`€f€Àf€€ §€ ¦À~>@€àßp|°Ã €~°zZµ“À €€€b9 -³sŠžñ'_l d Ÿð€„ðñ6pp12#`‘>F>F¥€Ìá_"F‚__–d=ÿ"ʤл ¼ÃPÄ0ÁÐÂðÞàÌPÌ0«°@¿°²°€°ðª`¼`! à°¾ ÎÉÈðÈðÑ  Ô°¡à¿àþ ¨`ÀÁ@àÈàÒ Ò ¹`Ñ0½`µ¸à¸ðâ â@ÍÎðÍðÍp©¶à¥°±Ð§ÀÁP« €§0¡€©p¢0ž@ß á¾ðáàè€Èð `& ( -þ¯ «½3+ ½fºU Å Í ÏÆòôíó7P q Ø ™Å ­½1 áp Ã_¹K Ä Ì ÑÅõøð -ÔÀÃ^À^ð^ð_P„àê°%0Á`Ú°ï€%@ÁPÚ°ÔàÀ‰„À  Áðß`  ÁÐß`LÐT°˜°€˜°À˜ €˜À`F@¦ F ¦™à€™à~Àh@~@h€`f`€f`~`h`~@h`@f@eà~@h€`f €pÀ`~h`~@hÀ`f€Àfà€À¦à€ ¦à~>€€à}`ÃÀð`zZ¶“À € b9 -³rŠžñ'_ldàà€„ðñ6pp12#`‘>F>F¥€Ìá_#I‚__–d=ÿ`6m°3ÖæW”UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocoa03q2q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 11781 / Number of words NLINES = 13 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 104 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 104 / subarray axis2 size in unbinned detector pixelsCORNERA1= 484 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 463 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 54 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 2 / Diffuse Field Method CENTMETH= 'GEOMETRIC-CENTER' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.0 / fsw located subarray axis1 coord. of target TARGA2 = 516.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 5.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.5036 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.23558 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.60288 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.32019 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.55192 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0881 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5393 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.1188 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.96367 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.5188 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.7438 / (dgC) Fitting A temp OFITBT = 18.6458 / (dgC) Fitting B temp OFITCT = 6.09609 / (dgC) Fitting C temp OHDM15V = -14.9015 / (V) Hold Mode Regulator - 15V OHDP15V = 14.8136 / (V) Hold mode regulator +15V OHDP5V = 4.77974 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 34.65 / (dgC) M1 heater control temp OM1HTRW = 0.472208 / (w) M1 heater power OM2HTRT = 33.8375 / (dgC) M2 heater control temp OM2HTRW = 0.0125069 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.2677 / (dgC) MEB 2 radiator temp OMBCSPT = 35.65 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.7 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5661 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.25 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2229 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1196 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.2028 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2028 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0922 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 23.5875 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.4904 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.8625 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.50726 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.6969 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.575 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0750006 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.65 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.678375 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.85 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0187569 / (w) Thermal controller power, zone 3B OTECINV = 6.36287 / (V) TEC input voltage OTECTCV = -7.73439 / TEC temp control voltage OMBMC15V= 14.7358 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0359 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.87217 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.6288 / (V) LVPS CEB +15V OPSCB35V= 33.5795 / (V) LVPS CEB +35V OPSCB5V = 4.79433 / (V) LVPS CEB +5V OPSCM15V= -14.9502 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.438 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -0.04884 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9316 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483028 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 36.0075 / (dgC) M1 charge amplifier temp OM1DCDT = 36.4959 / (dgC) M1 decoder temp OM1MCET = 34.7865 / (dgC) M1 MCE temp OM1LVPST= 39.6705 / (dgC) M1 LVPS temp OM1HVPST= 36.2517 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 148.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8584 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.0928 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.482051 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.4727 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 39.6705 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58793 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3611 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08137 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.045 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5506 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.19813 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0547 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 33.0416 / CB clock X pwb temp OCBCLKA2= 30.857 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.20786 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.21272 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9483 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.90388 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.88911 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.87469 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.95236 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.92334 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.9428 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03019 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.9329 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03506 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.11056 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.02533 / (V) CB summing well C Lo OCBSWDHV= 4.98658 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.927 / CEB timing pwb temp OCLM5V = -5.09612 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0255876 / Calibration lamps -5V current OCLP30V = 29.9209 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0339267 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 3824309 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.000337006 / (A) Slit Wheel motor current OSWMVEL = 0.0226988 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1793 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 1 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 510 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 54 / Control section slit position OCSDQEXJ= 640 / Control section data queue extract OCSDQINJ= 640 / Control section data queue insert OCSXQEXJ= 49 / Control section Expos Que Extract OCSXQINJ= 0 / Control section Expos Que Insert OCSOBSQ = 4901 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 15942 / Control section dump pointer OCSFILLJ= 15942 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 36 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCOA03Q2$. |àPs;±IhhÏä"ʤл°¼€ÃPÄ0ÁÐÂàÞÐÌPÌ0«°@¿°²°€°ðª`¼` Àß ½àÎÈðÈðÈðÔ@¢ÓPŸP¿Ðþ ¨`ÀÁ0ÐÈàÒ Ò¹pÑ@½pµ¸à¸ðâ â Í ÎðÍàÍp¦@´ ¦À´0§ ¿P© Ÿð©@¢@¦@ŸPß àð¿ÞpìP¾ p& ' -þ¯ «½3+ ¾fºU Å Í ÏÆòôíó7J q Ø ™Å ¯½1 áp Ã^¶J Ã Ì ÑÅõøð -ÔÀÃ^À^ð^à_P„àê°%@ÁÀÚ°ïp%PÃ@ÚÀÔàÀ‰„À  Ã`ß`  Ãpß`LÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™€€™ð~i }@h``f`€f`~`h~€h`f`f~@h€`eà€P ~@h`~@h``f € fà€À§€À¦À~ ?~ðà{`à€0zZµ“À €€pb9 -³sŠžñ'_ld à€…ñ6€€1%`‘>F>F¥€Ìá_$F‚__–d=ÿ"ʤл ¼€ÃPÄ0ÁÐÂðÞàÌPÌ0«°@¿°²°€°ðª`¼`àÞ ½`ÎÉÈðÈðÒP ðÕÀ¢p¿Ðþ ¨PÀÁ@àÈàÒ0Ò¹pÑ@½`µ¸à¸ðá áàÍ ÎàÍàÍp¨Àµ ¥²@¨ÐÁð©žÐ¨p¢°¨À pœPÀÞÐà€¿æ0ì°Ç$0& ( -þ¯ «½3+ ¾fºU Å Í ÐÆòôîó7S q Ø ™Å ­½1 áo Å^»J Ä Ì ÑÅõùð -ÔÀÃ^À^ð^à_P„àê°%@ÁÀÚ°ïp%PÃ@ÚÀÔàÀ‰„À  Ã`ß`  Ãpß`LÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™€€™ð~i }@h``f`€f`~`h~€h`f`f~@h€`eà€P ~@h`~@h``f € fà€À§€À¦À~ >Ðà}Ä0€€€@zZ¶“À°€Àb9 -³rŠžñ'_ld`` €„ðñ6€€1%`‘>F>F¥€Ìá_%R‚__–d=ÿ`6m°3Ã(ÒæW)UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocoa03q2q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.3 / fsw located subarray axis 1 coord. of aperture APERA2 = 514.4 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.5604 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.23558 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.60288 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.32019 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.55192 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0881 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.5857 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.1188 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.92344 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.5188 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.656 / Enclosure forward outer panel temperature countOFITAT = 13.7438 / (dgC) Fitting A temp OFITBT = 18.6458 / (dgC) Fitting B temp OFITCT = 6.09609 / (dgC) Fitting C temp OHDM15V = -15.0377 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.7992 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0464 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.0792 / (dgC) M1 heater control temp OM1HTRW = 0.22975 / (w) M1 heater power OM2HTRT = 35.875 / (dgC) M2 heater control temp OM2HTRW = 0.472208 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.3245 / (dgC) MEB 2 radiator temp OMBCSPT = 35.7 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.7 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5156 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1679 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1445 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1153 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0922 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 24.6188 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.67591 / (w) Thermal controller power, zone 1A OTCZ1BT = 22.9 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.00132 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.5 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 12.6013 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.5375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.98821E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.275 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.832969 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.575 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.266125 / (w) Thermal controller power, zone 3B OTECINV = 6.78567 / (V) TEC input voltage OTECTCV = -7.62697 / TEC temp control voltage OMBMC15V= 14.7358 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.8608 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8965 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.0958 / (V) LVPS CEB +15V OPSCB35V= 32.2367 / (V) LVPS CEB +35V OPSCB5V = 5.62138 / (V) LVPS CEB +5V OPSCM15V= -14.9794 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.48254 / (A) M1 +5V current OM1P5V = 5.20635 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 36.0075 / (dgC) M1 charge amplifier temp OM1DCDT = 36.4959 / (dgC) M1 decoder temp OM1MCET = 35.0307 / (dgC) M1 MCE temp OM1LVPST= 39.6705 / (dgC) M1 LVPS temp OM1HVPST= 36.2517 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 180.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8486 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.0928 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481319 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.7169 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 39.9147 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.60258 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3611 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1718 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.13002 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5506 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.02299 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 33.0416 / CB clock X pwb temp OCBCLKA2= 30.857 / CB clock Y pwb temp OCBCMAA1= -14.8821 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.03758 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9404 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.06677 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.98929 / (V) CEB last gate A&B OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.93352 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0585347 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.95722 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.90874 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.97199 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02533 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.00587 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.96712 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90388 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.16407 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBSWBHV= 4.90388 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.00587 / (V) CB summing well D Lo OCBTGLHV= 5.00604 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.927 / CEB timing pwb temp OCLM5V = -5.16423 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00804128 / Calibration lamps -5V current OCLP30V = 29.5123 / (V) Calibration lamps +30V voltage OCLP30VC= 0.158327 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00452746 / (A) Slit Wheel motor current OSWMVEL = 0.0271029 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1793 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 1 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2562 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 655 / Control section data queue extract OCSDQINJ= 655 / Control section data queue insert OCSXQEXJ= 49 / Control section Expos Que Extract OCSXQINJ= 1 / Control section Expos Que Insert OCSOBSQ = 4903 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 15942 / Control section dump pointer OCSFILLJ= 15942 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 38 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5130 / Target acquisition target x position OTATARA2= 5300 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+C- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCOA03Q2&I|àPsHáIô "”¤À»°¼€ÃPÄ0ÁÐÂàÞÐÌ@Ì@«°@¿À²°€ °ðª`¼`àÞ ¾ ÎÉÈðÈðÒp¡ Õ ¢¿Ðþ ¨PÀ€Á@ÐÈàÒ Ò ¹`Ñ0½`µ¸à¸ðáÀáÍ ÎðÍàÍp¨ ´Ð¥²P©ÁÀ©žÐ¨ ¢Ð©  ÀŸ€`ß à`¿`ápèȰ @& ( -þ¯ «½3+ ½f¸T Å Í ÏÆòôîó7Z q Ø ™Å ­½1 áp Ã^³J Ã Ì ÑÅõùð -ÔÀÃ^°^ð^ð_P„àê°%pÂ`Úðïp%PÁÚàÔàÀ‰„À àÁ0ß` €Áß`LðTÀ˜°€˜À€˜ €˜À€F@¦ F@¥à™À€À™à~`gà~ h Àf €f ~`h@~@h@`f@ eà~h@`f €PÂÐ~@h€~h`€f€Àf € §€À¦à~ > €`ß@”`àŸÐ°RÝ¡À°€@ b9 -³sŠžñ'_ld  (€„ðñ1'`‘>F>F¥€Ìá_&ÿÿ -´a‚__–d=²Ê²PC"”¤Ð» ¼€ÃPÄ0ÁÐÂàÞàÌ@Ì0«°@¿À²°€±ª`¼P@à ¿ ÎÉÉÈðÑð `Ô ¡à¿Ðþ ¨PÀÁ@àÈàÒ Ò¹pÑ0½`µ¸à¸ðá áðÍÎðÍàÍp©0¶¥±°¨€ÁઠŸà§À¢ ©€¢0 ÞÀàP¿ ß åÀÀ& ( -þ¯ «½3+ ½fºU Å Í ÐÆòôîó7\ q Ø ™Å ¯½1 áp Ã^½H Ä Ì ÑÅõùð -ÔÀÃ^°^ð^ð_P„àê°%pÂ`Úðïp%PÁÚàÔàÀ‰„À àÁ0ß` €Áß`LðTÀ˜°€˜À€˜ €˜À€F@¦ F@¥à™À€À™à~`gà~ h Àf €f ~`h@~@h@`f@ eà~h@`f €PÂÐ~@h€~h`€f€Àf € §€À¦à~ >0~Þð“€Ã Ÿð~ðRÝ¡À €0 b9 -³sŠžñ'_ldàà€„ðñ1'`‘>F>F¥€Ìá_'ÿÿ -´I‚__–d=²Ê²PC`m°0Åóæ´UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octka7jeq_raw.fits b/lib/stistools/tests/data/tastis/octka7jeq_raw.fits deleted file mode 100644 index 2bc1b83f..00000000 --- a/lib/stistools/tests/data/tastis/octka7jeq_raw.fits +++ /dev/null @@ -1,2 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octka7jeq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'octka7jeq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD-84937 ' / proposer's target name RA_TARG = 1.472354829369E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 1.374073865235E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14161 / PEP proposal identifier LINENUM = 'A7.002 ' / proposal logsheet line number PR_INV_L= 'Peterson ' / last name of principal investigatorPR_INV_F= 'Ruth ' / first name of principal investigator PR_INV_M= 'C. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-05-09' / UT date of start of first exposure in file TTIMEOBS= '23:15:29' / UT start time of first exposure in file TEXPSTRT= 5.751796908743E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57517.96908975 / end time (MJD) of last exposure in the file TEXPTIME= 0.2 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792987773148E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430L ' / optical element in use APERTURE= '0.2X0.09 ' / aperture name PROPAPER= '0.2X0.09 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '0.2x0.09 ' / aperture field of view CENWAVE = 4300 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$08o14513o_drk.fits' / dark image file name PFLTFILE= 'oref$x6417094o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$pcc2026jo_lfl.fits' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740no_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 2800.0 / bandwidth of the data SPECRES = 800.0 / approx. resolving power at central wavelength CENTRWV = 4300.0 / central wavelength of the data MINWAVE = 2900.0 / minimum wavelength in spectrum MAXWAVE = 5700.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'The Intersection of Atomic Physics and Astrophysics: Identifying UV 'PROPTTL2= 'Fe I Lines from Metal-Poor Turnoff Stars 'OBSET_ID= 'A7' / observation set id TARDESCR= 'STAR;F3-F9 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 1.400000000000E-02 / target parallax from proposal MU_RA = 3.731000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -7.744000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2016.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 5 / Number of peakup search steps PEAKSTEP= 69.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 791686.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 309.998108 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 2.000000 / the minimum value of the data DATAMAX = 95.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 85.0564 / position angle of image y axis (deg. e of n) SUNANGLE= 95.223709 / angle between sun and V1 axis MOONANGL= 51.758282 / angle between moon and V1 axis SUN_ALT = 47.382477 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-05-09' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:15:29' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.751796908743E+04 / exposure start time (Modified Julian Date) EXPEND = 5.751796908975E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.200000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336789 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 2.0 / minimum value of good pixels GOODMAX = 95.0 / maximum value of good pixels GOODMEAN= 26.076750 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€ € € €€ €€ €€€ €€€€ €€ €€€€!€€!€€€€€€€€€€€ €!€ €€€€€!€€€€€€€!€ €€"€€€€€€€€€ € €€"€€€€ €€!€!€€"€ €€€!€€"€€€"€€#€ € €€€€#€ € €%€!€ €"€ €€ € €"€ €"€ € €€€!€!€€€ €€€€ €!€€ € €€&€ €#€"€"€€ €€€ €€€€€€€€!€ €€$€€!€"€ € €!€"€"€!€€"€$€"€&€ € €$€!€!€!€ € €"€"€$€#€"€"€€$€€ €!€&€%€"€$€"€$€ €%€"€!€!€"€ €#€ €%€ €€€#€$€#€'€€!€#€"€#€ €"€#€€#€%€"€"€%€#€ €$€"€#€ € €%€€€"€€#€ €"€$€ €"€"€ €$€"€!€"€%€"€#€!€$€ €!€&€&€%€!€$€#€ €#€ €'€'€"€$€%€$€€"€$€ €€"€"€#€%€"€ €€ €#€€"€#€"€#€ €$€$€!€ € €!€ €%€!€"€"€€ €$€$€€$€"€$€"€(€"€"€"€"€"€#€ €!€ €$€"€#€ €"€"€"€"€"€#€"€ €€€€!€ €$€ € €"€%€#€€!€(€"€$€$€#€#€ €"€ €#€#€$€!€#€!€€#€"€(€"€#€!€#€&€#€#€#€#€%€#€€%€$€€$€%€$€#€"€€ €#€"€$€ €$€ €"€#€#€!€#€(€#€$€"€#€!€"€ €$€#€$€$€"€"€(€#€%€ €'€$€#€#€"€$€$€#€#€ €%€$€#€$€!€%€(€"€#€%€"€'€!€'€&€$€(€€!€#€#€#€(€"€$€€&€$€"€#€"€ €"€$€$€!€#€$€$€&€ €"€#€ € €#€#€$€%€!€#€#€$€&€$€$€!€%€$€"€$€ €€!€!€!€"€"€€"€%€"€!€$€$€€€!€$€"€€!€ €!€%€€ €!€#€!€"€!€$€"€€!€!€$€!€ €€€€"€ €$€ €€!€ € €$€!€!€!€"€!€#€"€"€$€"€!€!€ € €%€!€!€!€ €"€ €!€!€ € €€!€ €"€!€"€ €%€ € €#€ €€€€ € €"€ €€€#€"€!€€€€!€€€ €€€"€€!€€!€"€!€"€€ € €!€#€ €€!€€€€ € €"€ €€€"€€€€€ € €€ € €€ €€€€ € €!€€€€'€€ €€Z€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€!€€€€ €€€ € €€€€€€€€€ €€€ € €€€€€€€€ €€ €€€€€!€ €$€"€ € € €€$€"€ €(€!€"€€€!€€"€"€"€"€$€'€"€ €!€%€€ €€%€€$€$€"€'€$€'€&€(€%€)€'€$€%€&€$€€!€&€&€"€ €+€#€&€&€&€(€+€(€(€%€€ €+€)€)€'€'€)€(€!€)€&€"€!€"€(€$€ €(€+€,€'€-€+€-€*€)€)€,€-€,€,€%€,€*€)€-€-€)€(€*€&€(€,€+€*€,€)€*€,€+€&€)€)€&€&€,€)€(€+€)€$€#€(€(€*€/€.€&€+€*€.€,€,€.€,€,€)€,€-€(€+€*€,€/€0€*€*€*€+€.€)€0€(€)€/€,€+€&€,€-€+€)€.€+€.€1€-€*€(€)€(€-€/€)€,€-€2€(€-€-€-€0€-€,€3€+€,€.€#€/€+€+€,€+€(€.€,€,€.€.€1€(€-€,€*€-€#€%€)€(€)€/€*€*€*€-€*€,€+€.€)€-€/€,€1€1€4€.€7€1€-€+€.€2€,€+€3€2€0€5€-€4€1€.€/€-€3€0€0€+€*€2€3€5€.€.€-€2€0€,€*€+€3€0€,€0€*€1€2€,€4€1€1€3€-€4€1€0€2€3€2€3€.€.€+€/€3€)€/€0€-€-€*€0€.€0€-€/€.€1€-€3€,€0€3€0€0€/€+€5€0€3€.€.€3€/€/€-€/€4€.€2€-€-€0€2€1€/€0€.€2€4€1€.€4€0€2€2€/€+€/€-€1€*€1€.€.€0€5€/€2€0€2€.€-€-€-€0€5€2€-€1€.€,€0€/€,€.€+€0€/€0€2€1€.€,€/€/€-€.€+€,€.€+€1€.€/€/€,€/€1€*€,€+€*€)€'€%€-€)€/€.€2€3€0€/€+€-€*€.€.€0€0€.€0€5€0€*€0€,€.€3€2€.€1€/€+€+€/€1€-€-€+€*€*€/€1€.€,€1€+€/€0€)€5€4€)€+€/€4€4€*€0€-€0€.€2€/€)€-€.€3€/€1€1€1€*€2€-€*€0€-€5€+€+€0€/€.€1€-€*€5€(€1€.€2€0€.€0€1€0€0€/€.€0€)€/€-€-€,€1€0€0€.€,€1€0€-€.€0€.€0€/€0€0€+€1€,€*€,€/€-€.€5€-€0€1€/€1€/€.€.€+€.€+€,€0€*€0€3€-€+€-€2€.€.€2€.€.€-€.€-€.€1€.€-€0€(€+€0€.€0€*€.€,€.€0€.€)€0€.€-€-€.€(€*€,€.€1€0€/€/€*€(€,€0€.€-€-€*€,€*€)€-€-€*€-€+€.€+€.€2€,€*€.€*€+€/€-€,€*€0€/€+€-€-€.€,€.€/€+€,€,€/€0€+€+€)€0€)€-€-€*€.€(€+€*€+€.€0€*€+€(€(€/€)€(€%€*€)€-€(€+€0€,€*€)€-€+€*€+€.€+€1€-€+€(€.€*€.€*€-€-€.€+€,€+€.€)€*€*€(€*€0€.€,€-€,€*€+€&€-€&€(€*€(€+€-€,€%€%€*€'€*€,€,€€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€!€€ €€€€€€€ €€ €€ €€€ €€€€€€ €€!€€€€€"€"€€"€€ €"€€ € € € €€!€!€$€€€€ €€#€ €!€"€€"€€"€ €!€ €€ €!€!€"€ € €"€ €"€ €"€!€€€€ €$€"€€!€"€$€€€%€"€ €"€ € €"€€"€&€"€"€$€!€"€ €#€ €$€$€ €$€#€(€€#€'€!€!€%€$€ €"€!€&€ €€"€"€!€!€!€#€%€$€"€$€%€&€"€$€!€%€#€€&€$€$€#€#€ €%€"€"€!€%€&€(€ €$€$€$€'€(€&€#€"€&€ €'€$€!€"€&€*€ €"€!€%€&€)€&€&€!€(€"€&€%€#€#€%€%€)€%€$€&€!€%€%€$€$€&€€)€$€.€'€$€#€*€*€$€&€+€&€*€'€%€(€(€/€0€-€)€'€'€*€,€3€+€.€)€)€/€(€&€(€*€,€0€/€-€1€-€2€)€)€+€'€$€.€,€2€1€3€7€0€:€6€2€4€3€8€4€3€/€0€,€(€-€0€6€6€1€8€6€9€:€5€4€5€:€7€0€)€1€6€=€<€3€5€<€6€5€2€-€)€&€,€0€4€5€:€<€8€3€@€7€?€7€>€2€;€<€B€8€;€@€=€?€7€;€<€6€:€?€;€:€F€@€B€A€;€C€8€?€:€7€<€>€>€@€7€6€4€0€0€8€<€8€?€>€<€9€4€A€>€<€9€8€:€<€9€:€@€:€6€6€C€B€B€7€B€;€=€B€=€=€8€@€8€>€;€=€=€;€<€>€>€;€>€<€:€:€;€@€B€>€5€F€<€B€>€@€B€@€;€B€=€=€@€D€;€;€<€A€@€A€:€9€=€<€>€=€@€9€=€=€?€9€7€7€0€2€:€=€;€@€<€<€>€E€@€@€<€>€>€5€?€6€@€@€A€A€B€;€8€:€D€A€?€B€@€?€B€C€@€B€@€>€B€@€>€:€8€H€:€:€?€9€C€@€F€B€B€A€8€A€>€@€=€?€8€B€C€A€C€>€>€8€=€C€;€?€;€:€@€8€@€:€<€@€@€9€G€?€C€7€C€@€@€<€<€>€D€D€=€C€A€>€<€=€=€>€<€>€?€>€:€>€D€D€@€E€@€:€D€=€=€:€;€C€<€;€A€A€A€9€@€9€:€?€C€>€6€;€4€;€7€7€<€6€5€9€:€>€:€7€<€=€>€2€9€<€4€7€@€@€=€8€=€:€8€:€;€2€9€9€:€B€4€2€8€9€;€;€4€6€6€6€;€8€;€9€2€4€7€:€8€7€7€0€+€5€>€1€6€4€:€4€8€8€=€;€=€9€4€4€8€?€=€<€=€5€6€8€9€A€<€;€:€=€:€=€:€4€7€=€:€5€?€;€;€;€8€:€8€6€A€9€>€;€6€5€;€;€2€5€:€8€;€8€<€1€1€9€<€4€5€=€>€4€4€9€5€6€8€<€6€:€:€;€4€7€:€1€<€3€5€8€7€2€9€3€7€4€:€;€7€A€;€2€<€:€;€:€5€:€4€8€5€<€3€1€:€6€6€8€9€3€9€6€<€4€;€2€3€4€<€<€2€4€5€8€:€5€.€3€8€/€5€5€0€4€=€.€5€7€7€3€4€6€7€8€0€5€7€3€3€6€.€0€0€5€3€9€<€1€6€4€5€5€0€1€4€5€3€6€,€3€3€7€3€5€2€6€0€1€*€4€9€3€5€7€*€0€7€4€2€4€3€2€5€;€0€4€.€2€/€0€4€5€2€3€/€5€/€1€-€0€/€1€+€1€6€-€6€8€1€/€1€6€1€-€-€1€3€6€/€,€0€0€0€4€2€.€,€4€.€0€.€+€-€+€0€1€+€2€5€/€2€*€,€3€/€0€0€-€-€0€.€*€*€0€.€,€2€1€1€5€1€2€0€-€,€1€1€-€-€1€.€,€0€(€*€/€*€,€.€1€)€1€*€)€%€-€/€*€*€.€2€€!€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ €€"€€€€€€!€#€€€€€€€€€€€€€€€€€ €€ €€€ € €€ € €€€#€ €"€€€!€!€ € € €€ €€€!€!€!€#€"€€"€ €"€!€!€€€ €"€€€ € € €$€"€€€ €€€ € €!€ €$€ €&€€ € € € €€€"€"€&€(€"€#€$€!€!€€#€"€$€'€ €$€"€"€(€#€$€#€!€$€%€$€$€#€$€$€"€!€€ €!€!€'€"€€ €#€&€!€%€"€&€#€"€%€"€!€#€$€!€#€€"€%€'€$€ €#€%€€#€!€%€€&€"€&€%€€!€%€$€%€'€%€#€'€"€"€!€#€%€"€&€€$€ €'€&€#€#€#€€"€ €$€€$€#€%€ €)€$€#€ €"€'€ €%€$€!€$€€"€"€%€€!€$€!€%€$€$€%€€"€"€"€%€%€ €$€$€#€!€%€"€#€$€#€"€$€#€%€€$€'€%€#€$€&€"€"€!€#€(€%€€!€"€'€#€"€"€#€!€$€ €&€'€$€"€"€%€#€!€!€!€ €!€%€#€#€!€!€"€'€"€$€%€#€ €$€#€%€!€"€&€ €!€!€"€#€"€"€!€"€!€ €&€ €€€!€ €(€#€%€%€"€&€€#€#€ €%€%€"€"€"€#€€"€"€ €#€€&€ €!€#€!€!€$€!€!€#€"€€"€"€€"€ € €!€ €€$€$€ € €#€€"€!€€#€$€$€#€&€#€!€ € €"€ €!€€"€ € € €"€ €!€ €$€ €$€€#€"€"€$€%€€€"€#€$€ €"€!€!€€€ €"€ €!€ €!€ €#€(€€€!€!€€(€€!€ €%€"€€$€$€ €%€#€%€!€"€ €$€!€#€ €%€"€%€"€ €$€"€#€!€#€"€!€"€#€#€"€"€%€#€#€$€#€"€"€#€!€€"€$€$€!€%€"€#€#€"€"€!€%€#€!€ €$€&€#€!€!€!€#€"€!€"€!€€"€!€"€"€'€€€"€"€ €€#€"€$€!€"€&€€"€#€"€"€!€ €&€ €%€ €"€"€&€$€"€!€%€€€ €€"€$€$€"€€!€$€ €!€€!€%€€"€$€"€"€"€€ €!€"€"€"€!€ €!€€€!€€ €€ €!€#€"€$€€#€€!€€€€ €"€"€€€"€!€!€ €!€ €€!€€€#€"€€ € € €#€ €!€ €€ € €!€€ €#€€€#€%€!€€"€ €€"€!€€€ € €€"€!€#€€ €€!€€€€€€€ € €€ €%€€"€ €€€€ €€€ € €€ € €€ € € €€€!€%€€€ € € €€!€ €€€"€"€"€€ €$€€ €"€€€€€€€ €€€€€€€€€€€ €€€"€€€€€€€ €!€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€$€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€%€%€ -€YXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 2.0 / minimum value of good pixels GOODMAX = 95.0 / maximum value of good pixels GOODMEAN= 26.076750 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 5 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 83580.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 3.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 1.472354829369E+02 / first axis value at reference pixel CRVAL2 = 1.374073865235E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.651689048488E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.909536683068E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.909536683068E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 1.651689048488E-06 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 1.472354829369E+02 / RA of aperture reference position DEC_APER= 1.374073865235E+01 / Declination of aperture reference position PA_APER = 8.505628885498E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 85.0564 / position angle of image y axis (deg. e of n) SUNANGLE= 95.223709 / angle between sun and V1 axis MOONANGL= 51.758282 / angle between moon and V1 axis SUN_ALT = 47.382477 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-05-09' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '23:15:29' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.751796908743E+04 / exposure start time (Modified Julian Date) EXPEND = 5.751796908975E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.200000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336789 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 5 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 83580.0 / maximum value of good pixels GOODMEAN= 25960.400391 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END ?µF|U|] \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octka7jeq_spt.fits b/lib/stistools/tests/data/tastis/octka7jeq_spt.fits deleted file mode 100644 index 51f0c1d0..00000000 --- a/lib/stistools/tests/data/tastis/octka7jeq_spt.fits +++ /dev/null @@ -1,5 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octka7jeq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'octka7jeq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD-84937 ' / proposer's target name RA_TARG = 1.472354829369E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 1.374073865235E+01 / declination of the target (deg) (J2000) ECL_LONG= 144.772433 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = 0.505208 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 220.996264 / galactic longitude of the target (deg) (J2000) GAL_LAT = 45.473104 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV200X090 ' / aperture used for reference position ELON_REF= 144.772433 / ecliptic longitude at reference position (deg) ELAT_REF= 0.505208 / ecliptic latitude at reference position (deg) GLON_REF= 220.996264 / galactic longitude at reference position (deg) GLAT_REF= 45.473104 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14161 / PEP proposal identifier LINENUM = 'A7.002 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CTK' / program id (base 36) PR_INV_L= 'Peterson ' / last name of principal investigatorPR_INV_F= 'Ruth ' / first name of principal investigator PR_INV_M= 'C. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= 'A7' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'JE ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S200X090 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430L ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.300000000000E+03 / central wavelength SS_NSTEP= 5 / proposed number of peakup search steps SS_STPSZ= 69.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 25 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 5 / word 11/14 (0-255) PSTRTIME= '2016.130:23:11:49 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.130:23:16:35 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV200X090 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14161_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 1.472255046440E+02 / right ascension of v1 axis of st (deg) DEC_V1 = 1.382635298955E+01 / declination of v1 axis of st (deg) PA_V3 = 309.998108 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'N6U6000023F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'N6U7000178F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 8.505628885498E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -1.055957298875E+03 / position of space telescope x axis (km) POSTNSTY= 6.281126344101E+03 / position of space telescope y axis (km) POSTNSTZ= -2.698499425957E+03 / position of space telescope z axis (km) VELOCSTX= -7.295207789720E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -3.307308525843E-01 / vel of space telescope along y axis (km/sec) VELOCSTZ= 2.084886843520E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 4.706100246234E+01 / right ascension of the sun (deg) DEC_SUN = 1.760718988195E+01 / declination of the sun (deg) RA_MOON = 9.337386654583E+01 / right ascension of the moon (deg) DEC_MOON= 1.845468527532E+01 / declination of the moon (deg) VELABBRA= 4.976529 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 1.472354829369E+02 / right ascension of reference object (deg) DEC_REF = 1.374073865235E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.888480000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.872954235311E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.619134097922E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.860277451972E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.597674571971E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.791524901935E-01 / cosine of inclination ECCENTRY= 7.942683363019E-04 / eccentricity ECCENTX2= 1.588536672604E-03 / eccentricity times 2 ECBDX4D3= 6.680984828377E-10 / eccentricity cubed times 4/3 ESQDX5D2= 1.577155475130E-06 / eccentricity squared times 5/2 ECBDX3 = 1.503221586385E-09 / eccentricity cubed times 3 FDMEANAN= 1.748082164740E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.333688540659E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.122631237909E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 2.443968679015E-01 / argument of perigee (revolutions) MEANANOM= 1.992314880786E+00 / mean anomaly (radians) RCARGPER= 1.129707214553E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 5.465021927603E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.765405533493E-01 / sine of inclination SEMILREC= 6.917114925536E+06 / semi-latus rectum (meters) TIMEFFEC= 9.888928010000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.894499090000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430L ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S200X090 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;F3-F9 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'F3-F9 ' / PROPOSAL INFO: Flux Information MAG_V = 8.320000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.200000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 1.400000000000E-02 / target parallax from proposal RA_PROP = 1.472354487500E+02 / target right ascension from proposal (degrees) DEC_PROP= 1.374081388889E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 3.731000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -7.744000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2016.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -1.500000000000E+01 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'The Intersection of Atomic Physics and Astrophysics: Identifying UV 'PROPTTL2= 'Fe I Lines from Metal-Poor Turnoff Stars 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136816000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248371000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350558000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -5.367540000000E-08 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 5.366100000000E-08 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 2.082400000000E-05 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -2.100000000000E-05 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.137213000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -7.170200000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.135773000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -7.314400000000E+00 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136419000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 7.170200000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.137859000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 7.314700000000E+00 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octka7jeq ' / rootname of the observation setEXPNAME = 'octka7jeq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 25 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 784 / Telemetry optical mode number OPTMODE = 'G430L ' / Optical Mode Name MODE_ID = '3.1 ' / IDT Mode identification CENWAVE = 4300 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 20 / Slit Number SLITSIZE= '0.2x0.09 ' / aperture field of view TFPFNAME= 'S200X090' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 5 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 69.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 791686.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 2.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 24.7526 / (dgC) CEB Radiator temp OCLLMP1T= 12.0337 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 11.2567 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 6.68173 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 6.09423 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 7.81154 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 7.04327 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 12.0381 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.7714 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.725 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.4063 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.75 / (dgC) Enclosure aft inner panel temp OENCAOPT= 4.40625 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.4375 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.4 / (dgC) Fitting A temp OFITBT = 19.125 / (dgC) Fitting B temp OFITCT = 7.26289 / (dgC) Fitting C temp OHDM15V = -14.921 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7844 / (V) Hold mode regulator +15V OHDP5V = 4.84785 / (V) Hold mode regulator + 5V OKMDITBT= 24.749 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.8607 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 33.7833 / (dgC) M1 heater control temp OM1HTRW = 0.398417 / (w) M1 heater power OM2HTRT = 34.0 / (dgC) M2 heater control temp OM2HTRW = 0.0505417 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 21.4031 / (dgC) MEB 2 radiator temp OMBCSPT = 36.75 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 30.75 / (dgC) MEB MIE processor temp OMBP15V = 14.8623 / (V) Operatore mode regulator +15V OMSC1MT = 21.7682 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.7177 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.45 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.4755 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.6018 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.85 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1736 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2028 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.75 / (dgC) CCD Shutter motor temp OSEMTRT = 24.0417 / (dgC) Echelle blocker motor temp OSMMTRT = 24.85 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2036 / (dgC) Slit wheel motor temp OTCZ1AT = 24.6531 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.55785 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.1406 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.93386 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.3125 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.4419 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.2375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 9.99607E-06 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.875 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.850146 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.225 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0112581 / (w) Thermal controller power, zone 3B OTECINV = 6.43106 / (V) TEC input voltage OTECTCV = -7.82228 / TEC temp control voltage OMBMC15V= 14.7358 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9192 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8965 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.765 / (V) LVPS CEB +15V OPSCB35V= 31.3804 / (V) LVPS CEB +35V OPSCB5V = 5.21272 / (V) LVPS CEB +5V OPSCM15V= -15.3102 / (V) LVPS CEB -15V OM1FLDV = 30.9768 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0710623 / (A) M1 -15V current OM1M15V = -15.8339 / (V) M1 - 15 volts OM1M2VDC= 0.421245 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -0.04884 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483028 / (A) M1 +5V current OM1P5V = 5.20635 / (V) M1 +5 volts OM1P8VAC= 0.735775 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 35.7633 / (dgC) M1 charge amplifier temp OM1DCDT = 36.2517 / (dgC) M1 decoder temp OM1MCET = 34.7865 / (dgC) M1 MCE temp OM1LVPST= 39.4263 / (dgC) M1 LVPS temp OM1HVPST= 36.0075 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 172.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0720391 / (A) M2 -15V current OM2M15V = -15.8584 / (V) M2 - 15 volts OM2M2VDC= 0.42149 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -76.337 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.9658 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.483516 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735531 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.2517 / (dgC) M2 charge amplifier temp OM2DCDT = 37.2285 / (dgC) M2 decoder temp OM2MCET = 35.0307 / (dgC) M2 MCE temp OM2LVPST= 40.6473 / (dgC) M2 LVPS temp OM2HVPST= 39.9147 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.57817 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 32.792 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.13002 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2107 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0352 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 34.4663 / CB clock X pwb temp OCBCLKA2= 32.3451 / CB clock Y pwb temp OCBCMAA1= -14.9307 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.08623 / (V) CB clock drive X +5V OCBCPAA1= 14.7163 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9307 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.0911 / (V) CB clock drive Y +5V OCBCPAA2= 14.7358 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.37895 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.9282 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.94766 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.04479 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.96712 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.95722 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.0156 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.14948 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.9329 / (V) CB summing well A Lo OCBSWBHV= 4.90388 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -6.00587 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 29.4215 / CEB timing pwb temp OCLM5V = -5.10099 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0301648 / Calibration lamps -5V current OCLP30V = 29.9015 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0324848 / Calibration lamps +30V current OCLP5V = 5.2711 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1336789 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0173626 / (A) Slit Wheel motor current OSWMVEL = -0.0125341 / (Rad) Slit whell motor velocity OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 137 / Mode select cylinder 3 shaft position OMSC4SP = 221 / Mode select cylinder 4 shaft position OMSC1CRP= 61207 / Mode select cyl. 1 resolver position OMSC3CRP= 2310 / Mode select cyl. 3 resolver position OMSC4CRP= 27875 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3585 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 20 / Control section slit position OCSDQEXJ= 3421 / Control section data queue extract OCSDQINJ= 3421 / Control section data queue insert OCSXQEXJ= 0 / Control section Expos Que Extract OCSXQINJ= 4 / Control section Expos Que Insert OCSOBSQ = -11925 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4300 / Control section optical scan position OCSOPMDP= 784 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 2014 / Control section dump pointer OCSFILLJ= 2014 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 106 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -25 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTKA7JEQjƒ…#†Ö?X›I þó"Ê£pº » ÁP ¿ÀÀÐÝÐÌ̪°¯€¿±`€°©Àº  ßp¾ÀÎ É0ÉÉÓ@¢ Ó€ ¿Ðþ § ¿0Á0àÆ°ßðÑÐÑà¹0Ðð¼Ðµ°¸ð¸°áðâ Í`ÏÎͨ0´`¥p²¨°¾ ¨žð© ¢à¦àŸ0ààß à¿`ßPå@Ãp & ( -þ¯ ª½3+ ½fºT Å Í ÐÆñóíò7V q Ø ™à ¯¾1 áp Å_¼I Ä Ì ÑÅó÷î -ÔÀÃ^À_^ð_P‡°ê°%`Â`Úðï€%0ÁÐÚ ÔàÀ‹à‡° ÁÐß Áàß LÐTÀ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™ð~ h@~@h `f@ f@~`h@~@h@`e  eà~@gà`f`€P ~@h€~h``f€Àf €À§€À¦à>ð~à€{Ä0€àpTeÕ'À°`ðEU â^‰Ýï lã dàà€…ñ ] ]QkÌ‘ÞÞ¥€Ìá_jÿÿÿçI‚__–d=ÿ"Ê£pº »ÁP ¿ÀÀÐÝÐÌ̪°¯p¿±`€°©ÀºðàÀÀ°Î É É É ÑpŸðÕ¡ ¿Ðþ § ¿ Á0ÐÆ°àÑÐÑà¹0Ðð¼Ðµ°¸ð¸°â âÍPÏÎÍ€©@µÀ¥p±¨¾à©€Ÿ §`¡@¨@ `œp°ÞÐàÀ¾ÀÜðè½& ( -þ¯ «½3+ ½f¸T Å Í ÐÆñóíò7` q Ù ™à ®¾1 áp Â^ºJ Ä Ì ÑÅó÷î -ÔÀÃ^À_^ð_P‡°ê°%`Â`Úðï€%0ÁÐÚ ÔàÀ‹à‡° ÁÐß Áàß LÐTÀ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™ð~ h@~@h `f@ f@~`h@~@h@`e  eà~@gà`f`€P ~@h€~h``f€Àf €À§€À¦à>à߀~PÄPðÐTeÕ'À°@€EU â^‰Ýï lãd  €„ðñ ] ]QkÌ‘ÞÞ¥€Ìá_kÿÿÿçF‚__–d=ÿÌm°3ÇEæ †F|?µU|]UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11h4q_raw.fits b/lib/stistools/tests/data/tastis/octr11h4q_raw.fits deleted file mode 100644 index fd5192d1..00000000 --- a/lib/stistools/tests/data/tastis/octr11h4q_raw.fits +++ /dev/null @@ -1,4 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11h4q_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'octr11h4q ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD128620 ' / proposer's target name RA_TARG = 2.198653030565E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083245979488E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.001 ' / proposal logsheet line number PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-08-28' / UT date of start of first exposure in file TTIMEOBS= '19:57:49' / UT start time of first exposure in file TEXPSTRT= 5.762883181762E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57628.83384507 / end time (MJD) of last exposure in the file TEXPTIME= 0.3 / total exposure time (seconds) QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792987825231E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F25ND5 ' / aperture name PROPAPER= 'F25ND5 ' / proposed aperture name FILTER = 'ND_5 ' / filter in use APER_FOV= '24.7x24.7 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$09k14507o_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1844.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5804.0 / central wavelength of the data MINWAVE = 2120.0 / minimum wavelength in spectrum MAXWAVE = 10000.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Alpha Centauri at a Crossroads 'OBSET_ID= '11' / observation set id TARDESCR= 'STAR;G V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 7.470000000000E-01 / target parallax from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'POINT ' / type of acquisition CENTMETH= 'N/A ' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 298.774689 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 10.000000 / the minimum value of the data DATAMAX = 108.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 73.7837 / position angle of image y axis (deg. e of n) SUNANGLE= 85.352730 / angle between sun and V1 axis MOONANGL= 112.903816 / angle between moon and V1 axis SUN_ALT = -28.188631 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '19:57:49' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762883181762E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762883181878E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 556.0 / fsw located subarray axis1 coord. of target TARGA2 = 472.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 278.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 349046 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 19.800000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 108.0 / maximum value of good pixels GOODMEAN= 29.947100 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€!€€€€€€€€"€€€€€€€€€€€€€€ €€€€!€€€€€€€€'€'€€j€€€€€€ €!€€€€ €€€€€€€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€€€€&€*€€h€ €€€€€ €€€€€€€€€€€€€€€€€!€€€ €€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€!€€€€€€€€ €€€ €€€€€ €€ €€€€€€€€€€€€€€€€ €$€*€€e€ €€€€€€€€€€ €€!€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€&€'€€i€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€)€ €g€€€€€ €€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€(€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€ € €%€)€€j€€€€ €€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€!€€€ €€€€€€€€ €€ €€€€€€€€(€(€€h€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€ € € €€€€€ €€€€€€€€€€€€€€€€€€€€(€(€€i€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€*€'€ €i€ €€€€€€€ €€€€€€€€€€ €!€€€ €€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€€€ €€€€€€€€€€€€€&€)€ -€h€€€€€€€€€ €€€€€ €€€€€!€€€€€€ €€€"€€€!€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€'€$€€i€ €€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€&€&€€c€€ €€€€€€€€€€€€€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€'€*€€j€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€!€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €'€*€€g€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€#€)€€h€ €€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€'€&€€i€€€€ €€ €€€€€€€€ €!€€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€&€(€€h€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€"€€€€€ €€€€€€ €€€€ €€€ €€€€€€€€€€€#€'€(€€g€ €€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€(€)€€j€ €€€!€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ €€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€€€*€*€€g€ €€€"€€!€€€€€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€"€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€)€'€€i€ €€€€€€€€€!€€!€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€ €!€€€€€€€€€€!€€€(€*€€f€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€!€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€!€%€&€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€!€€€€€€€€€€€€€€€ €€€€ €€€€ €€€ €€€€€€€€€€€€€€€€€€€€€!€'€(€€i€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€€€€€ €€€€€€€€!€€€€€€€€€€€€€€ €€€€€!€%€)€€d€€#€€€ €€€€€ €€€€€€€ €€€€€€€€€€ €€€€ €€€€!€€€ €€€€€€€€€€€€€€ €€€€ € €€€€€ € €€€€€ €€€€€€ €€€ €!€€€€€€€€€€€€€€€€€€€%€*€€g€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€€€€€€)€+€ €k€!€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ €€€€ €€€ €€€"€€€€€ €€€ €€€€€€€!€€€€ €€€€€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€&€'€€f€ €€!€€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€!€!€€€€€€ €€€€€ €€€€€€€!€€€€€€€€€€€ €€€!€(€&€€h€€€€€€€!€€€€€€€!€€€€€!€€€€€€€€€€ €€€€€€€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€ €(€&€€g€€€€€€ €€ €€€€€€€€€€€€ €€€ €€€ €€€€!€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€#€)€ €e€€€€€€€€€€ €€€ €€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€(€(€€g€"€€€!€€€€ €€€€€€€!€€€€€€€€€€"€!€€€€ €€€€€€ € €€€ €!€€€€€ €€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€!€€*€*€€j€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€ €€€€€€€€€€€ €%€(€€i€€€!€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€!€€€ €€€€€€€!€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€!€&€(€€i€ €€€€ €€€ €€€ €€€€"€€€€€€€€€€€€€€€€€€!€€€ € €€€€€€€ €€€ €€€€€€€€ €€€ €€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€€€€€€'€*€€f€€ €€€€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€(€&€€i€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€"€€€€ €€€ €€€€€ €€€"€€€€ €€€€€€€€€€ € €€€€€€€€€€!€€€€ €€€€€€€)€%€€i€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ €€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€#€)€€b€€ €€€€€€€€€€€€€€€!€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€!€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€&€%€€f€ €€€€€€€€€€€€€€ €€€€€€€€€ € €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €"€€€€€€ €€€€ €€€€ € €€€€€€€!€€€ €€!€€€€€€€€*€(€€f€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€'€'€€g€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€ €€€€ €€€ €€€€ € €€€ €€€€€€€€€€€€€€€ €€€!€(€*€€j€ €€€€€€€€€€€€€€!€ €€€€€€€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€$€(€€g€€€€€€€€€€€€€ €€!€€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€#€(€€h€€"€€€€€!€€€€€€€€€€€€€ €€ €€€ €€€€€ €€ €€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€!€€€€ €€€€€€€+€'€€h€ €€€"€ €€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€(€)€ €e€ € €€€€€€€€ €€€!€€€€€€ €€€€€"€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€'€%€€i€€€ €€€€€ €€ € €€€€€€€!€€€ €€€€€€€€€€€€€€€€!€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€ €)€(€€h€€€€€€€€€€€€€€€€€€€!€€€€€ €€!€€€€€€€ €€€ €"€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€ €#€*€€g€€!€ € €€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€)€&€ €j€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€"€€€€ €!€€€€€€€€€€€€€ €€€€€€€'€(€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€"€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€&€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€!€ €€€ €€€€!€€€!€€€€€€€€€€€€€€ €%€)€€g€ € €€€€€€€€€€"€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€!€€€€€€€€€!€$€+€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€!€€€€ €€€€€€€ €€€€€€€ €€€ €!€&€&€€g€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€$€&€€i€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€(€€i€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€!€€€€ €€€€€€€ €€€€€€#€€ €€€€€€€€€€€€€€€€€€€€€%€'€€g€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €&€'€€g€€€€€ €€€ € €€ €€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€&€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€ €!€€€'€)€€h€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€)€€g€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€'€'€€h€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€(€*€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€)€&€€h€€ € €€€€!€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€(€(€€e€€€€€ €€€€€€€ €€€€€€€€!€€€€€€!€ €€€€€€ €€€€€€€€!€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€%€€f€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €&€)€ €i€€€€€€€"€ €€€€"€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€!€€€€€€€ €€€€€ €€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€*€€i€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€€!€€ €€€€€!€€€€€€€€€€€"€€€!€€€€ €€€€€€€€€€€€€€ €€€€€€€€€%€%€€h€€€€€€ €!€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€)€&€€g€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€(€)€ €h€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€!€ €€€€!€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €&€'€€f€ €€€ €€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€&€&€€e€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€%€(€€f€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€ € €€ €€€ €"€€€ €!€€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €&€'€€h€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€€€ €'€)€€g€€€€€€€€ € €€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€!€€€€€€€€€€ €€€€ €€€€€€€ €€€€ €€€"€€€€€€€€€€€€€€€€€€€ €$€)€€f€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€!€€€€€€€ €€€!€€€€ €%€%€€j€€€€ €€€€€€€€ €€€€€ €€€€€ €€€ € €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €&€*€€g€ €€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€%€*€€g€€€ €€€€ €€€!€€€€!€€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€€€!€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€(€&€€h€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ € €€€€€€€€!€€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€€€'€+€€g€€€€€€€€€ €!€€€€€!€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€)€€e€€€!€€€€!€€€€€€€€€€€€€€€€€€!€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€!€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€*€(€ €g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€(€+€€f€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€!€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€!€(€*€€g€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€"€€€€€€€ € €€€€€!€€€€€€ €€€!€€€€ €€€!€€€ €€€€ €€€€€€€€€€€ €€€ €€€€(€(€ €d€ €€€€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€ €€€ €!€€€€€€€€€€€€€ €!€€€ €€€€€€€€ €€€€ €€€!€€€€€€€#€€€€€€€€€€€€€€€€€€€€&€)€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €'€&€€l€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€ € €€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€,€€e€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€!€€€€€€€ €€€ €€€€€€€€€€€ €€€€€€€ €€€ €€ €€€€€€€€€€ €€€ €€€€€€€€€€€€€€€ €€€€€$€)€€g€€€€€€€ €€€€€€ €€€€€€ €€€€€€ €€€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€*€)€€h€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€!€€€€€€€ €€€€€€€€ €€€€€€ €€€€€ €€€€€€€€€€€€€€€ €(€+€€f€€€€€€ €€ €€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€+€€f€ €€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ € €*€*€€h€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€!€ €€€€€€€€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€!€€ €€€€€€€ €€€€€ €€€€€€€€€€€!€€"€*€*€€i€ €€€€€€€€ €€ € €€€€ €€€€€€€€€€€€€€€€€€€€!€€€€!€€€€€€€€!€€€€!€€€€€ € €€ €€€€€€€ € €€€€!€ € €€€€ € €€€€€€€€€€€€€€€!€€!€+€*€€fXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 108.0 / maximum value of good pixels GOODMEAN= 29.947100 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 10.000000 / the minimum value of the data DATAMAX = 107.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 73.7837 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '19:58:59' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762883262762E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762883262878E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 546.0 / fsw located subarray axis1 coord. of target TARGA2 = 563.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 280.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 349046 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 107.0 / maximum value of good pixels GOODMEAN= 29.836901 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€ €€€€€€€€€€€€€€€'€'€€j€€€€€€€€€€€€€€€€€€ €!€€€€€€ € €€!€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€&€&€€k€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €*€(€ €i€€€€€!€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€!€€€€€ €€€€€€€€€€€€€€€€€ €'€(€€g€€€€€€ € €€€€€€€ €€€ € €€€€€€€€€€€€€€€€ €!€€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€ €)€'€€f€€€€€€€€€!€€€€€€ €€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €%€(€€h€ €€€€ €€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€ €€€€#€€€€€€€ €€€€ €€€€€€ €€€€€€€€€€ €€€€€!€€!€€ €€€€€€€€€€€€€€€€€ €€€$€(€€e€€ €€€€€€€€€€€€ €€€"€€€ €€€€€ €€€ €€€€€€€"€€€€€€!€€€€€"€€€"€€€€€€€"€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€&€&€€g€€€€ €€€€€€€€€€€€€€€€€€€ €!€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €'€*€ €f€€€€€€€€€€ €€€€€ €€€€€€€€!€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€!€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€(€)€€f€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€'€)€€i€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €(€'€€g€ €€€€€€€€€€€€ €€€€€€€€€€€€!€€€€€€€€€€€€€€€€!€€€ €€€€€!€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€(€)€€i€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€"€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€)€€g€€ €€€ €€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€j€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€h€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€(€'€€h€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€(€(€€g€€€€€ €€€€€!€€€€€€ €€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€'€€k€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€!€€€€€€€€€€ €$€&€€c€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€)€'€€h€€€€€€€€€€€€€€€€ €€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €(€)€€f€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€ €€€ €€€€€€€€€€€ €!€€€ €€€€ €€ €€€€€€ €€€€€€€€€!€€€€€€€€€ €€€€€€€ €€!€&€&€ €h€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€*€ -€i€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€ €€ €"€€€ €€€€€€€€€€€€€€€€ €&€)€€h€€€ €€€€€€ € €€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€!€(€(€€i€€€€€€€€€€€€€€!€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€&€(€€f€€€€€€€€!€€€€€€€€€€!€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €%€*€€f€!€€€€€€€€!€ €€€€€€!€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€(€*€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€(€€k€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€ € €€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€&€'€€i€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€$€&€€h€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€(€(€€g€€€ €"€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€ €€€(€%€€i€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€(€)€ €f€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€&€+€€h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€"€&€*€€i€€€"€€€€€€€€€€€€€€€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€(€*€€h€€€€€ €€€€€€€€€€€!€€€€€€€ €€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€'€(€€h€€€!€€€€€€€€€€€€€!€€€€€€€€€€€€€€€ €€€€€€"€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€*€&€€g€€€€"€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€&€*€€i€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€(€€h€€€€€€€€€€€€ €€€€€€€€"€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€*€'€ €h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€(€ €h€ €€€€€€€€€€€€€€€€€ €€€ €!€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€&€(€€g€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€)€'€€j€€€!€€€€€€€€€€€€ €€€!€€€€€€€€€€ €€€€€€€€€€ € €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€&€(€ €h€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€!€€€€€€!€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€+€€f€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€&€*€€f€ €€€€€€€€€€€€"€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€&€&€€j€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€#€'€€g€€€€ €€€€€€ €€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€i€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ € €€€€€€€€€ €€€€€ €€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€'€)€€i€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€%€(€€j€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€ €&€#€€i€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€!€€€"€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€!€€€€ € €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€)€(€€h€€€€ €€€€!€€€€€€€ €€€€ €€€€ €€€€€€€€€€!€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€'€*€€e€ € €€€€€€€!€€€!€€€€€€€€ €€€ €€€ €€€€€€€€ € €€ €€€€€€€€!€€€€ €€€"€ €€!€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€'€&€€g€€!€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€"€€€€&€&€€h€€€€€€€ € €€€ €€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€%€(€€i€ €€€€€€€ € €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€(€)€ €g€€€€€€€€€€€€!€ €€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€ €&€*€€i€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€!€€€€ €€€ €€€ €€€€€ €€€€€€€€€€€€€€!€%€'€€k€ €€€€€!€€€€€!€€€€ €€€€€€€ €€€€€€€!€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€!€&€(€€g€€€€!€€€€€€€€€€!€€€€€ €€€ € €€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€"€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€&€)€€g€€€€!€€€€€ €€€€€€€ €€€€€€€€€€€€€€ €!€€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€*€€h€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€!€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€'€€g€ €€€€€€€€€ €!€€€€€€ € €€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€(€'€€i€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€'€(€ €g€€€€€€€€€€ €€€€€€€ €€!€€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€#€€€ €€€€€€€"€€€€€€€€€€€€ €€€!€€€ €€€ €€€(€'€€f€€€€€€"€€€€€€€€ €€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€ €€€€€€€€ €€ €€€ € €€€€€€€€€€€€€€€€€€€€!€€€€€€€€ €%€'€€h€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€"€€€€€€€€€€€€€€€€€€€€€€'€'€€i€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€ €€€%€*€€g€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€%€'€€g€€€ €€€€€€€€€€€€€€ €€€€€€€ € €€€€€€ €€€€€€€€€€€ €€€€€!€€€€€€€€€€€€€€"€€€€€€!€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€*€(€ €f€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€ €€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€'€(€€f€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€!€€€€€€€ €€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€'€(€ €h€€ €€€ €€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€!€€€€ €'€&€€h€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€'€&€€g€€€€ €€€€€€€€€€€€€!€€ €€€€€€€€€€ €€€€€€€€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €*€&€ €h€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€"€€€€ €€€€€€€€€%€)€ €g€€€€€€€€€ €€€€€€€€€€"€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€(€&€€h€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€ €#€'€€h€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€(€&€€i€€€€€€€€€€€€€€€€€€€ €€€!€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€ €%€)€ €h€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€ € €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€"€%€)€€d€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€!€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €(€'€€h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€€"€€€'€'€€i€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(€'€€g€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €%€)€€g€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€&€)€ €h€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €'€(€€f€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€ €€€€ €€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€*€€g€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€'€(€€h€ €€€€€€€€€ €€"€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €%€+€€f€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€"€€€€€€€€€€€€ €€€€€€!€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €&€(€€e€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€(€(€€g€€€€ €€€€ €€€€€ €€€€€€€€€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€!€€€€€€ € €€€€€€€ €€€€€€€!€€€€€€€€€€€€€€ €€€€€€€€€€€)€'€€e€€€€€€€€!€€€ € € €€€€€€ €€€€€€€€ €€€ € €€€€€€!€€€ € €€€€€€€€€€€ €€€ €€€!€€"€€ € €€€ €€€ €€€€€€€€€€€€€€€€€€€!€€€€ €€€€€#€*€€g€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€"€€€€€ €€€€€€!€€€ €€€€€€€€€ €€ €€€ €€€€€ €€€!€€€€"€ €!€€ €€€€€€€ €€€€ €€€€€€€!€(€)€€fXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 10.0 / minimum value of good pixels GOODMAX = 107.0 / maximum value of good pixels GOODMEAN= 29.836901 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 13.000000 / the minimum value of the data DATAMAX = 5969.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 73.7837 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '20:00:44' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762883384392E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762883384507E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.6 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.3 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1178.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 5969.0 / maximum value of good pixels GOODMEAN= 102.403336 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€€€€€€€€ €€€€€ €€€!€€$€#€%€ € € €$€+€,€€i€ €€€€€€€€€€€€€€"€#€#€ €"€€#€%€#€"€€#€,€+€€h€€€€€ €€€!€€€€!€€ €!€#€€ €!€!€#€€ € €€%€,€'€€k€€!€!€€ €€€!€€€€€€€€"€!€ €€!€€€&€€!€!€)€,€€f€€€€ €€ €€€ €!€€ €€€ €!€&€!€€ €€€€$€ € €*€,€€g€€€€€€€€€€€€€€€ €€ €"€€ €!€ €€!€€€)€*€€i€€€!€€€ €€€€€ €€€"€"€€#€%€!€"€"€"€€€ € €(€*€€f€ €€€€€€€ €€€€€€!€"€ €%€#€€€€ €€€ €"€&€*€€g€ €€€€"€€€ €€€ € €€ €$€"€#€€#€€€ € € €€!€(€'€€g€ €€€€ €€€€€€€€€ €€#€€#€"€€€ €"€€€ €)€-€€k€€"€€€€ €€€ €€€€€€%€$€%€&€!€!€€€€€€€'€&€€h€€€ €€€ €€€€€€€€"€&€-€.€#€"€#€€€€!€€#€*€,€€f€€€€€€€ €€€!€ €€€"€*€.€6€,€!€#€!€€ € €!€#€)€,€€f€€€€!€€€€€€ €€€ €(€C€_€o€R€5€"€ €€€€€$€)€.€€g€€€ €€€€€ €€ €!€$€(€p‚7„1„šƒ€Æ€:€ €%€€€&€#€)€-€€h€€!€€ € €€€!€"€ €#€.€? ˆ;‘’¥‹e‚T€j€+€€€!€ €&€'€&€€i€ €€ €€ €!€€ €!€#€ €3€GUŠ;•Ž—QŽå‚€—€3€"€%€"€€€,€*€€f€ €€!€ € €€€€ €!€#€.€C-ˆ¹“«”¼ -‚S€o€,€#€€#€"€!€*€+€€f€!€€ €€€€€ €€ €€"€/€’ƒª‡Ñˆ„¨€ì€=€ €!€#€!€€ €&€*€€f€€€ €€€€€€€ €€ €#€.€c€¶€·€y€6€'€€€!€€€ €'€)€€h€€ €€ €€€ €€€€€ €€#€"€4€9€-€"€€€€ € € €€*€)€€g€€€€€€€€€ €€€ € € €#€"€&€#€€€€€€ €€€)€(€€f€€€ €!€€€€€€€€€€ €€"€#€!€€€€€€€€"€'€*€€e€€€€ €€€€€€€€€€€€€"€€"€€€€€€€!€$€*€€g€€ €€€€€€€€€€€€"€€ €€€€€€€€€!€€'€-€€g€€€€€€€€€€€€€€€€€€ €€€€€€€€ €%€(€€g€€€€€"€ €€€€€€€ €€!€€€€€€€€!€€€!€+€,€€i€€ €€€ €€€€ €€€!€€€€€€€€!€€€€€€€+€)€€i€€!€€€€€€€"€€€€"€€€€€€ €€€€€€€€,€-€€j€€€€ €€ €!€€€€€€ €€€ € € €€!€€€ €"€ € €+€+€ €eXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 5969.0 / maximum value of good pixels GOODMEAN= 102.403336 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.198653030565E+02 / first axis value at reference pixel CRVAL2 = -6.083245979488E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.93785E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.35436E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.35398E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.93894E-06 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198653030565E+02 / RA of aperture reference position DEC_APER= -6.083245979488E+01 / Declination of aperture reference position PA_APER = 7.377992955322E+01 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11h4q_spt.fits b/lib/stistools/tests/data/tastis/octr11h4q_spt.fits deleted file mode 100644 index ac17aaf0..00000000 --- a/lib/stistools/tests/data/tastis/octr11h4q_spt.fits +++ /dev/null @@ -1,28 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11h4q_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'octr11h4q ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD128620 ' / proposer's target name RA_TARG = 2.198653030565E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083245979488E+01 / declination of the target (deg) (J2000) ECL_LONG= 239.456317 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -42.600371 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 315.718398 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.671012 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV25ND5 ' / aperture used for reference position ELON_REF= 239.456317 / ecliptic longitude at reference position (deg) ELAT_REF= -42.600371 / ecliptic latitude at reference position (deg) GLON_REF= 315.718398 / galactic longitude at reference position (deg) GLAT_REF= -0.671012 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CTR' / program id (base 36) PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '11' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'H4 ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F25ND5 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 486 / proposed axis1 detector pixel of subarray startSS_A1SZE= 100.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 465 / proposed axis2 detector pixel of subarray startSS_A2SZE= 100.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'CENTROID ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 80 / word 11/14 (0-255) PSTRTIME= '2016.241:19:56:37 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.241:20:01:43 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV25ND5 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14341_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.198116149851E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.075039782928E+01 / declination of v1 axis of st (deg) PA_V3 = 298.774689 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S7QX000303F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S7QX000751F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 7.377992955322E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 3.693489992171E+03 / position of space telescope x axis (km) POSTNSTY= -5.756888313217E+03 / position of space telescope y axis (km) POSTNSTZ= 1.029847970359E+03 / position of space telescope z axis (km) VELOCSTX= 5.960037102328E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= 3.207519996207E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -3.445171814936E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.574879372047E+02 / right ascension of the sun (deg) DEC_SUN = 9.424223166009E+00 / declination of the sun (deg) RA_MOON = 1.140513369335E+02 / right ascension of the moon (deg) DEC_MOON= 1.751793036256E+01 / declination of the moon (deg) VELABBRA= 17.932581 / aberration in position of the target ANNPARRA= 6.336406 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.198653030565E+02 / right ascension of reference object (deg) DEC_REF = -6.083245979488E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.985248000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 9.224995310035E-16 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.632723719787E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.854922446700E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.611489684075E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788982405165E-01 / cosine of inclination ECCENTRY= 3.481316200895E-04 / eccentricity ECCENTX2= 6.962632401791E-04 / eccentricity times 2 ECBDX4D3= 5.625603899513E-11 / eccentricity cubed times 4/3 ESQDX5D2= 3.029890622654E-07 / eccentricity squared times 5/2 ECBDX3 = 1.265760877390E-10 / eccentricity cubed times 3 FDMEANAN= 1.751361059135E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.332628209537E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.120943668516E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.629772297467E-01 / argument of perigee (revolutions) MEANANOM= 6.002321112115E+00 / mean anomaly (radians) RCARGPER= -2.001854621750E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 4.918950280228E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.770093110381E-01 / sine of inclination SEMILREC= 6.916637511529E+06 / semi-latus rectum (meters) TIMEFFEC= 9.985798390000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.990285970000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F25ND5 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;G V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'G V-IV 'ALIAS1 = 'ALP-CEN-A ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 0.010000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.100000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 7.470000000000E-01 / target parallax from proposal RA_PROP = 2.198685291667E+02 / target right ascension from proposal (degrees) DEC_PROP= -6.083267777778E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -2.400000000000E+01 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Alpha Centauri at a Crossroads 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136348000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247904000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350521000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -3.327610000000E-06 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 3.326700000000E-06 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.291000000000E-03 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.291000000000E-03 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.136579000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -1.978989800000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.958929000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.996787200000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136281000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 1.982686900000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.313932000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 2.000487400000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11h4q ' / rootname of the observation setEXPNAME = 'octr11h4q' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 58 / Slit Number SLITSIZE= '24.7x24.7 ' / aperture field of view TFPFNAME= 'F25ND5 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'POINT ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 556.0 / fsw located subarray axis1 coord. of target TARGA2 = 472.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.163 / (dgC) CEB Radiator temp OCLLMP1T= 10.4798 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.84856 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.50673 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.96442 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.81731 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.13942 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.7759 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.3583 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.9625 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.91172 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.0 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9625 / (dgC) Fitting A temp OFITBT = 18.9813 / (dgC) Fitting B temp OFITCT = 6.01562 / (dgC) Fitting C temp OHDM15V = -14.9988 / (V) Hold Mode Regulator - 15V OHDP15V = 14.8623 / (V) Hold mode regulator +15V OHDP5V = 4.91596 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.1917 / (dgC) M1 heater control temp OM1HTRW = 0.366792 / (w) M1 heater power OM2HTRT = 34.65 / (dgC) M2 heater control temp OM2HTRW = 0.0375006 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.7568 / (dgC) MEB 2 radiator temp OMBCSPT = 35.4 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.3464 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.324 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.2643 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.85 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.2028 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2028 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1932 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 25.2083 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.2493 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.8625 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.32175 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.35 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.436 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.7625 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.195937 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.5 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.76426 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.4875 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.06 / (w) Thermal controller power, zone 3B OTECINV = 6.24012 / (V) TEC input voltage OTECTCV = -7.74415 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0748 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90623 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4634 / (V) LVPS CEB +15V OPSCB35V= 31.2831 / (V) LVPS CEB +35V OPSCB5V = 4.87217 / (V) LVPS CEB +5V OPSCM15V= -15.3491 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.421001 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.7582 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.492552 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.0075 / (dgC) M1 MCE temp OM1LVPST= 40.8915 / (dgC) M1 LVPS temp OM1HVPST= 40.1589 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 210.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0720391 / (A) M2 -15V current OM2M15V = -15.8486 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.0208 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481319 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735043 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 37.4727 / (dgC) M2 charge amplifier temp OM2DCDT = 38.4495 / (dgC) M2 decoder temp OM2MCET = 36.2517 / (dgC) M2 MCE temp OM2LVPST= 41.6241 / (dgC) M2 LVPS temp OM2HVPST= 41.6241 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3293 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.09596 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.09596 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.9783 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9015 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.04731 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -4.00882 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0852 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.47794 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0341208 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.92334 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.9428 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.93776 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02533 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96712 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0171077 / (V) CB state machine 1 +5V OCBSM2PV= 5.04731 / (V) CB state machine 2 +5V OCBSWAHV= 4.9282 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.96226 / (V) CB summing well C Hi OCBSWCLV= -6.0156 / (V) CB summing well C Lo OCBSWDHV= 4.95739 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.9588 / CEB timing pwb temp OCLM5V = -5.10099 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00193823 / Calibration lamps -5V current OCLP30V = 29.9015 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00749175 / Calibration lamps +30V current OCLP5V = 5.25164 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 349046 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0137143 / (A) Slit Wheel motor current OSWMVEL = -0.0051939 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24427 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 511 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 58 / Control section slit position OCSDQEXJ= 1364 / Control section data queue extract OCSDQINJ= 1364 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 38 / Control section Expos Que Insert OCSOBSQ = -31507 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 236 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11H4ì*Õ ‹k5àóIddÑæ"Ê¥0¼ ¼ðÂððÁ Âß Ì@Ì ªÀ° Âಀ° ©ð¼€ ßð¿ ÎÉÉÉÔà¡ðÔ@Ÿð¿Ðþ ¨ðÀàÁ0ÐÈpàÒÒ¹PÑ ½@µ°¹¸°â â Í ÎÐÍðÍ€©0¶ð¦À³€¨ÀÄ©p P©¢§P à߀á¿€Ý`äð¿à  ( -þ  —¼3W!d «fáP Ä Í ÐÆ÷ùò -77i r Ø ™à ­½1) áp Ã^³I Â Ì ÑÅøüó  -ÔÀÃ^À^ð^ð_P„Ðê %@ÂÀÚÀï€%PÁÐÚàÔàÀˆð„ €Áà߀ ÐÁàßpL°T°˜ `˜°`˜ €˜À`F@¦ F`¥à™À€p™ ð~`h€~€h`f`€f ~`h`}àh`@f`f ~@h@ f €@ÁP~ h`~@h`€f``fà€À¦à€ ¦à~0>ð€àà€~ÐÃð0PSvcÀ°0€@b9 -³rŠžýñ'_kd ø€…ñ:TT%&í`ƒ››¥€ÌáßìF‚__–d–d==ÿ"Ê¥0¼ ¼ðÂððÁ Âß0Ì@Ì ªÀ° Âಀ°©à¼pðÞp¾0ÍðÉÉÉÕ°¢€Õ¡`¿àþ ¨ðÀàÁ@ÀÈpàÒÒ¹Pѽ0µ°¹¸ ââÍ ÎàÍàÍp¨µ¨´°¨PÃ@ªð¡°©`¢¨À¡€œ` ßpá¿@à`é0Ä @  ( -þ¡ —»3W"d «fÖP Ä Í ÐÆ÷ùó -77s r Ø ™Ä ¯½1) áp Ä^µI Â Ì ÑÅøüó  -ÔÀÃ^À^ð^ð_P„Ðê°%PÁðÚàï€%@ÁðÚÐÔàÀ‰„  Áàß` ÀÁPß`LÐT ˜°€˜°€˜  ˜À`F@¦ F@¥à™À€™ ð~`h@~@h` f €f`~`h@~@h``f`eà~@h@`f €PÁP~`h`~@h`€f€Àfà€À§€À¦à~@>ßp}Ã@€ €PSvcÀ°€b9 -³rŠžýñ'_k d``€„ðñ:TT%&í`ƒ››¥€ÌáßíI‚__–d–d==ÿ`:m°3Áp¸æUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'octr11h4q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 58 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 546.0 / fsw located subarray axis1 coord. of target TARGA2 = 563.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.163 / (dgC) CEB Radiator temp OCLLMP1T= 10.4798 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.84856 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.50673 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.96442 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.81731 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.09423 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.7088 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.5857 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.4063 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.9625 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.87148 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.0 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.0063 / (dgC) Fitting A temp OFITBT = 19.0292 / (dgC) Fitting B temp OFITCT = 6.05586 / (dgC) Fitting C temp OHDM15V = -14.9404 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7747 / (V) Hold mode regulator +15V OHDP5V = 4.81866 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.0292 / (dgC) M1 heater control temp OM1HTRW = 0.250833 / (w) M1 heater power OM2HTRT = 36.6224 / (dgC) M2 heater control temp OM2HTRW = 0.408958 / (w) M2 heater power OMB10RV = 9.98029 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.7568 / (dgC) MEB 2 radiator temp OMBCSPT = 35.35 / (dgC) MEB CS processor temp OMBDIG5V= 5.03272 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 29.3464 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.125 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1153 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1427 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 23.6562 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.47353 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.3781 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.42294 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.0375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 12.5317 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.85 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.72925 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.7875 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.300479 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.8375 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.644021 / (w) Thermal controller power, zone 3B OTECINV = 6.0219 / (V) TEC input voltage OTECTCV = -7.82716 / TEC temp control voltage OMBMC15V= 14.6871 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9192 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.84785 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.1639 / (V) LVPS CEB +15V OPSCB35V= 33.054 / (V) LVPS CEB +35V OPSCB5V = 5.51921 / (V) LVPS CEB +5V OPSCM15V= -14.8529 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.8071 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.488156 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.2517 / (dgC) M1 MCE temp OM1LVPST= 40.8915 / (dgC) M1 LVPS temp OM1HVPST= 40.1589 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 184.0 / M2 event counter OM2PCV = -701.026 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0720879 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.421001 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.2161 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481807 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.735043 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 37.7169 / (dgC) M2 charge amplifier temp OM2DCDT = 38.4495 / (dgC) M2 decoder temp OM2MCET = 36.2517 / (dgC) M2 MCE temp OM2LVPST= 41.8683 / (dgC) M2 LVPS temp OM2HVPST= 41.6241 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58793 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.3293 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1912 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.09596 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.9783 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.04731 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9289 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.92803 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.01074 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.97685 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.90874 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.9329 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03019 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91847 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.95236 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.0156 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.01326 / (V) CB state machine 2 +5V OCBSWAHV= 4.93307 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.95236 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.00101 / (V) CB summing well C Lo OCBSWDHV= 4.96226 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.927 / CEB timing pwb temp OCLM5V = -5.13018 / (V) Calibration lamps -5V voltage OCLM5VC = -0.029402 / Calibration lamps -5V current OCLP30V = 29.7069 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0223914 / Calibration lamps +30V current OCLP5V = 5.23705 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 349046 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0137143 / (A) Slit Wheel motor current OSWMVEL = 0.0212307 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24427 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 2560 / CCD Shutter commanded position OSCRSVP = 2558 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 58 / Control section slit position OCSDQEXJ= 1378 / Control section data queue extract OCSDQINJ= 1378 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 39 / Control section Expos Que Insert OCSOBSQ = 1263 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 238 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11H4î*Õ ‹k5é~IddÑæ"Ê¥0¼ ¼ðÂððÁ  ß0Ì@Ì0ª°° Âð²€°©à¼p €ß`¾`ÎÉÉÉÔ°¡@Öp¢0¿àþ ¨ðÀðÁ ÀÈpàÒÒ¹Pѽ0µ°¹¸ á áÍ ÎàÍðÍp¦`´§°³à¦Á«@¡À§Ð à©¢ œÐÞÐà¾Àáàê Ç`!  ( -þ  —»3X!d «fÏP Ä Í ÐÆ÷ùó -77\ q Ø ™Ä ®¼1- áp Ã^µJ Â Ì ÑÅùüó - -ÔÀÃ^À^à^ð_@„Ðê°%0ÁpÚ°ï€%0Á€ÚÀÔàÀˆð„  Á€ß  ÁpßLÐT°˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™@ð~`h@~@h `f€àf`~ h€}àh``f`f~`h`f`€PÀà~Àh`~@h`fÀ€fà€À¦à€ ¦À~ >~ ßà|àÃÀ€PSvcÀ°0`b9 -³rŠžýñ'_kd Ÿè€„ðñ:bb%'ï`ƒ››¥€ÌáßîF‚__–d–d==ÿ"Ê¥0¼ ¼ðÂððÁ0 ß0Ì@Ì ª°°°Âð²€° ©à¼€pÞ¾ÍðÉÉÉÔp¡pÔŸ°¿àþ ¨ðÀðÁ@ÐÈpßðÒÒ¹PÑ ½0µ°¹¸°ââÍ ÎÐÍðÍ€¨ð¶Ð¦²à¨`ÃÀ©ŸÀ¨¢0¦ðŸÐ`ß`àð¿pÜ@å¾0ð  ( -þ  —»3X"d «fâQ Ä Í ÐÆ÷ùó -77O r Ø ™Ä ¬¼1, áp Ã^¸H Â Ì ÑÅøüó  -ÔÀÃ^À^ð^ð_P„Ðê°%PÁðÚàï€%@ÁÐÚÐÔàÀˆð„  Áàß`  ÁPßpLÐT ˜°€˜°€˜À€˜À€F@¦ F@¥à™À€™ ð~`h@~@h``f@€f`~`h@~@h`@f`eà~@h@ f €@Áà~@h`~@h``fàÀfà€À§€À¦à~@? €à~pÄ@€SwcÀ° € b9 -³rŠžýñ'_k dààH€…ñ:bb%'ï`ƒ››¥€ÌáßïR‚__–d–d==ÿ`:m°3ÁþTæUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'octr11h4q' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.6 / fsw located subarray axis 1 coord. of aperture APERA2 = 516.3 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.163 / (dgC) CEB Radiator temp OCLLMP1T= 10.4798 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.84856 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.50673 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.96442 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.77212 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.09423 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.7088 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.4063 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.9625 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.79102 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.0438 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9625 / (dgC) Fitting A temp OFITBT = 19.0292 / (dgC) Fitting B temp OFITCT = 6.01562 / (dgC) Fitting C temp OHDM15V = -15.135 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7066 / (V) Hold mode regulator +15V OHDP5V = 4.85271 / (V) Hold mode regulator + 5V OKMDITBT= 24.85 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.5875 / (dgC) M1 heater control temp OM1HTRW = 0.440583 / (w) M1 heater power OM2HTRT = 34.7042 / (dgC) M2 heater control temp OM2HTRW = 0.0610833 / (w) M2 heater power OMB10RV = 9.98029 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.7568 / (dgC) MEB 2 radiator temp OMBCSPT = 35.4 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.3464 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5661 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.35 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.324 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.3 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2126 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5643 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1427 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 24.8938 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.99633 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.0688 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.45667 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.425 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.4128 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.95 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.335062 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.8 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.867323 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.5625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.111531 / (w) Thermal controller power, zone 3B OTECINV = 6.36287 / (V) TEC input voltage OTECTCV = -7.69533 / TEC temp control voltage OMBMC15V= 14.7844 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.88677 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.3369 / (V) LVPS CEB +15V OPSCB35V= 31.9643 / (V) LVPS CEB +35V OPSCB5V = 4.68731 / (V) LVPS CEB +5V OPSCM15V= -15.3588 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.7582 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.488645 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.2517 / (dgC) M1 MCE temp OM1LVPST= 41.1357 / (dgC) M1 LVPS temp OM1HVPST= 40.1589 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 178.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721368 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.1184 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.482295 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.735043 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 37.7169 / (dgC) M2 charge amplifier temp OM2DCDT = 38.4495 / (dgC) M2 decoder temp OM2MCET = 36.2517 / (dgC) M2 MCE temp OM2LVPST= 41.8683 / (dgC) M2 LVPS temp OM2HVPST= 41.6241 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.59282 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.3293 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.10083 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0644 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1815 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.12029 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0839 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.9783 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.9307 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.11056 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.8821 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.11056 / (V) CB clock drive Y +5V OCBCPAA2= 14.7942 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.47794 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9581 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9289 / (V) CB reset gate CD Hi OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.9282 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.9329 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.89901 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95253 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.02533 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91847 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.97685 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.10083 / (V) CB state machine 2 +5V OCBSWAHV= 4.92334 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.95236 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -5.99614 / (V) CB summing well C Lo OCBSWDHV= 4.96226 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.9588 / CEB timing pwb temp OCLM5V = -5.24694 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0126186 / Calibration lamps -5V current OCLP30V = 29.2593 / (V) Calibration lamps +30V voltage OCLP30VC= 0.171304 / Calibration lamps +30V current OCLP5V = 5.12029 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00452746 / (A) Slit Wheel motor current OSWMVEL = -0.011066 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61735 / Mode select cyl. 3 resolver position OMSC4CRP= 24427 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 512 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 1393 / Control section data queue extract OCSDQINJ= 1393 / Control section data queue insert OCSXQEXJ= 37 / Control section Expos Que Extract OCSXQINJ= 40 / Control section Expos Que Insert OCSOBSQ = 1265 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 240 / Control section exposure counter OTAFLUXQ= 280 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5600 / Target acquisition target x position OTATARA2= 5430 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11H4ðI‹k5öRIô "”¥0¼ ¼ðÂððÁ0 ß0Ì0Ì ª°° Ã±ð€° ©à¼€@Þð¾ÐÎÉÉÉÕP¢`ÔP  ¿àþ ¨ðÀàÁ@ÐÈpàÒÒ¹PÑ ½0µ ¹¸ ââ0Í ÎàÍðÍp¨ ¶§ ´¨àÃð©À °©€¢ð§p 0€ßpá ¿@Üç ¼°Ð  ( -þ  —»3W!d «fÑP Ä Í ÐÆ÷ùó -77Y r Ø ™Å ®½1+ áp Ã^·I Â Ì ÑÅùüó - -ÔÀÃ^Ð^ð^ð_P„Ðê°%@ÂÚÐï€%`Â@ÚðÔàÀˆð„  ßp à ߀LÐT°˜ `˜°€˜ €˜À€F`¦ F@¥à™ €™@€~`h€~ h` f@€f ~`h€}àh``f@f ~`h@àf €PÂ~€h`~@h`fà€fà€À§€ ¦à~0=€Þp–Â@Ÿp~€Ý¡À°€@€b9 -³rŠžýñ'_kd  €…ñqq%(ñ`ƒ››¥€Ìáßðà6F‚__–d–d==¶Æ·C"”¥0¼ ¼ðÂððÁ0 ß0Ì0Ì ª°°°Ã ²€°©à¼€°ÞÀ¾ðÍðÉÉÉÓ@ PÔÀŸð¿Ðþ ¨ðÀàÁ0ÐÈpàÒÒ¹Pѽ0µ ¹¸°áàâÍ ÎÐÍðÍ€¨0¶0¥ ±à§Pè žÐ§`¡¦žÀPPß àÀ¿PåðïÐÈ%p  ( -þ  ˜»3W!d «fÎO Ä Í ÐÆ÷ùó -77b q Ø ™Ä ­¼1+ áp Ä^¹G Â Ì ÑÅùüó - -ÔÀÃ^Ð^ð^ð_P„Ðê°%@ÂÚÐï€%`Â@ÚðÔàÀˆð„  ßp à ߀LÐT°˜ `˜°€˜ €˜À€F`¦ F@¥à™ €™@€~`h€~ h` f@€f ~`h€}àh``f@f ~`h@àf €PÂ~€h`~@h`fà€fà€À§€ ¦à~0>p@ß`— à P€àÝ¡À € @b9 -³rŠžýñ'_k d``€„ðñqq%(ñ`ƒ››¥€Ìáßñà6I‚__–d–d==¶Æ·C`m°0Å+öæšUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11hrq_raw.fits b/lib/stistools/tests/data/tastis/octr11hrq_raw.fits deleted file mode 100644 index 7315b89b..00000000 --- a/lib/stistools/tests/data/tastis/octr11hrq_raw.fits +++ /dev/null @@ -1,8 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11hrq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'octr11hrq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198635806010E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083171559884E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.009 ' / proposal logsheet line number PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-08-28' / UT date of start of first exposure in file TTIMEOBS= '22:33:14' / UT start time of first exposure in file TEXPSTRT= 5.762893975392E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57628.93975507 / end time (MJD) of last exposure in the file TEXPTIME= 0.1 / total exposure time (seconds) QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.792987817130E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'AVAILABLE ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430M ' / optical element in use APERTURE= '31X0.05NDA ' / aperture name PROPAPER= '31X0.05NDA ' / proposed aperture name FILTER = 'ND_0.4 ' / filter in use APER_FOV= '31x0.05 ' / aperture field of view CENWAVE = 4194 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 536 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$09k14507o_drk.fits' / dark image file name PFLTFILE= 'oref$x6417095o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'N/A ' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740oo_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 286.0 / bandwidth of the data SPECRES = 7490.0 / approx. resolving power at central wavelength CENTRWV = 4194.0 / central wavelength of the data MINWAVE = 4051.0 / minimum wavelength in spectrum MAXWAVE = 4337.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Alpha Centauri at a Crossroads 'OBSET_ID= '11' / observation set id TARDESCR= 'STAR;K V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 7.470000000000E-01 / target parallax from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 7 / Number of peakup search steps PEAKSTEP= 39.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 871184.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 298.776215 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 7.000000 / the minimum value of the data DATAMAX = 102.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 512.443 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.194000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 0.276 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 73.7853 / position angle of image y axis (deg. e of n) SUNANGLE= 85.277679 / angle between sun and V1 axis MOONANGL= 112.064964 / angle between moon and V1 axis SUN_ALT = 99.688759 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:33:14' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762893975392E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762893975507E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 3912833 / Slit Wheel Absolute position OMSCYL1P= 1165 / Mode select cylinder 1 position OMSCYL3P= 4474 / Mode select cylinder 3 position OMSCYL4P= 2551 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.39359 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 19.800000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 7.0 / minimum value of good pixels GOODMAX = 102.0 / maximum value of good pixels GOODMEAN= 26.989389 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€!€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€!€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€!€ €c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€"€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€ -€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€"€ -€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€ €a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€!€ €b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€"€ €b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€$€ €d€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ € -€c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€!€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€ €_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€$€ -€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€"€ -€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€"€ -€b€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€!€ €`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €d€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€e€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€"€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€"€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€ € €c€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€$€€a€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€#€€d€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€!€ €c€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€"€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€"€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€$€#€ -€`€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€!€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€!€€€€€€€€!€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€!€€€€€€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€!€€€€!€€€€€€€€€€€€€€€€€€"€€€€€€€€€€ €€€€€€ €€ €€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€!€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€!€€€ € €€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€&€!€ €f€€€€€€€€€€ €€€€!€€€€€€€!€€€€€€€€€€€€€ €€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€"€€€€ €€€ €#€€€€€€€€!€€€€€€ €€€€€€€!€€€€€ €€!€€€€€€€%€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€!€€€€€€€€€€€ €€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ €€€€ €!€€€€ € € €€ €€ € €€€€€€"€€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€!€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€!€€€€€€€€€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€ €!€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€ €€€€!€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€ €€€€ €€€€€€€€!€€€ €€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€ €!€€ €€€€€€€€€€€€ €€€€€ €€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€ €€€€€€ € €€€€€€€ €€€€€€€€€€€€€ €€€€€€ € €€€€€ €€ €€€€€€€€ €€€€€€€€€€€€€!€€€€€€€€€€€€€€€"€€!€!€ €#€€ €€€€€ €"€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €&€"€€dXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 512.443 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.194000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 0.276 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 7.0 / minimum value of good pixels GOODMAX = 102.0 / maximum value of good pixels GOODMEAN= 26.989389 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 512.443 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.194000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 0.276 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 7 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 5478.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 4.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.198635806010E+02 / first axis value at reference pixel CRVAL2 = -6.083171559884E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -3.025072624896E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 1.040240581429E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.040240581429E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 3.025072624896E-06 / partial of second axis coordinate w.r.t. y LTV1 = -5.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.198635806010E+02 / RA of aperture reference position DEC_APER= -6.083171559884E+01 / Declination of aperture reference position PA_APER = 7.345585543213E+01 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= 73.7853 / position angle of image y axis (deg. e of n) SUNANGLE= 85.277679 / angle between sun and V1 axis MOONANGL= 112.064964 / angle between moon and V1 axis SUN_ALT = 99.688759 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-08-28' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '22:33:14' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.762893975392E+04 / exposure start time (Modified Julian Date) EXPEND = 5.762893975507E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= 'Take Data Flag NOT on throughout observation. 'QUALCOM2= 'STIS CCD shutter closed during all or part of exposure. 'QUALCOM3= ' 'QUALITY = 'EXPSHORT; LOCKLOST; TDF-DOWN 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 3912833 / Slit Wheel Absolute position OMSCYL1P= 1165 / Mode select cylinder 1 position OMSCYL3P= 4474 / Mode select cylinder 3 position OMSCYL4P= 2551 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.39359 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 19.800000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 7 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 5478.0 / maximum value of good pixels GOODMEAN= 3019.285645 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END f À¼ƒ \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/octr11hrq_spt.fits b/lib/stistools/tests/data/tastis/octr11hrq_spt.fits deleted file mode 100644 index 0debe3b5..00000000 --- a/lib/stistools/tests/data/tastis/octr11hrq_spt.fits +++ /dev/null @@ -1,7 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-25' / date this file was written (yyyy-mm-dd) FILENAME= 'octr11hrq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'octr11hrq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'HD128621-2 ' / proposer's target name RA_TARG = 2.198635806010E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -6.083171559884E+01 / declination of the target (deg) (J2000) ECL_LONG= 239.454860 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -42.600042 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 315.717930 / galactic longitude of the target (deg) (J2000) GAL_LAT = -0.669992 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV31X050A ' / aperture used for reference position ELON_REF= 239.454860 / ecliptic longitude at reference position (deg) ELAT_REF= -42.600042 / ecliptic latitude at reference position (deg) GLON_REF= 315.717930 / galactic longitude at reference position (deg) GLAT_REF= -0.669992 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14341 / PEP proposal identifier LINENUM = '11.009 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CTR' / program id (base 36) PR_INV_L= 'Ayres ' / last name of principal investigatorPR_INV_F= 'Thomas ' / first name of principal investigator PR_INV_M= 'R. ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '11' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'HR ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S31X050A ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430M ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.194000000000E+03 / central wavelength SS_NSTEP= 7 / proposed number of peakup search steps SS_STPSZ= 39.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 24 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 89 / word 11/14 (0-255) PSTRTIME= '2016.241:22:26:35 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.241:22:34:41 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV31X050A ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14341_3 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.198098937909E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -6.074964542967E+01 / declination of v1 axis of st (deg) PA_V3 = 298.776215 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S7QX000303F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S7QX000751F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 7.345585543213E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -5.690923929175E+03 / position of space telescope x axis (km) POSTNSTY= 3.901414330490E+03 / position of space telescope y axis (km) POSTNSTZ= 4.863803313753E+02 / position of space telescope z axis (km) VELOCSTX= -3.573995025294E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -5.660478654107E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 3.586778540455E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.575828216411E+02 / right ascension of the sun (deg) DEC_SUN = 9.387229370430E+00 / declination of the sun (deg) RA_MOON = 1.155073447865E+02 / right ascension of the moon (deg) DEC_MOON= 1.736828000555E+01 / declination of the moon (deg) VELABBRA= 9.093157 / aberration in position of the target ANNPARRA= 6.335736 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.198635806010E+02 / right ascension of reference object (deg) DEC_REF = -6.083171559884E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.985248000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 9.224995310035E-16 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.632723719787E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.854922446700E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.611489684075E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788982405165E-01 / cosine of inclination ECCENTRY= 3.481316200895E-04 / eccentricity ECCENTX2= 6.962632401791E-04 / eccentricity times 2 ECBDX4D3= 5.625603899513E-11 / eccentricity cubed times 4/3 ESQDX5D2= 3.029890622654E-07 / eccentricity squared times 5/2 ECBDX3 = 1.265760877390E-10 / eccentricity cubed times 3 FDMEANAN= 1.751361059135E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.332628209537E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.120943668516E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.629772297467E-01 / argument of perigee (revolutions) MEANANOM= 6.002321112115E+00 / mean anomaly (radians) RCARGPER= -2.001854621750E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 4.918950280228E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.770093110381E-01 / sine of inclination SEMILREC= 6.916637511529E+06 / semi-latus rectum (meters) TIMEFFEC= 9.985798390000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.990375950000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430M ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S31X050A ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;K V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'K V-IV 'ALIAS1 = 'ALP-CEN-B ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 1.330000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 0.100000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 7.470000000000E-01 / target parallax from proposal RA_PROP = 2.198667958333E+02 / target right ascension from proposal (degrees) DEC_PROP= -6.083193333333E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -3.819000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 3.210000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.3' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Alpha Centauri at a Crossroads 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136548000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248102000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.347265000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.364430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -2.918650000000E-04 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076200000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 2.917800000000E-04 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.132300000000E-01 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969900000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969350000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.131990000000E-01 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.248404000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= 7.046400000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.024335000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.514750000000E+01 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.024692000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= -7.046400000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.248761000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 1.515390000000E+01 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'octr11hrq ' / rootname of the observation setEXPNAME = 'octr11hrq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 24 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 800 / Telemetry optical mode number OPTMODE = 'G430M ' / Optical Mode Name MODE_ID = '3.2 ' / IDT Mode identification CENWAVE = 4194 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 59 / Slit Number SLITSIZE= '31x0.05 ' / aperture field of view TFPFNAME= 'S31X050A' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 7 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 39.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 871184.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.3333 / (dgC) CEB Radiator temp OCLLMP1T= 10.6255 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.94567 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.37115 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.82885 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.59135 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.00385 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.8429 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.9107 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 18.9333 / (dgC) Enclosure aft blukhead temp OENCAIPT= 14.225 / (dgC) Enclosure aft inner panel temp OENCAOPT= 4.28555 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.9125 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9625 / (dgC) Fitting A temp OFITBT = 19.3167 / (dgC) Fitting B temp OFITCT = 6.01562 / (dgC) Fitting C temp OHDM15V = -15.135 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.73109 / (V) Hold mode regulator + 5V OKMDITBT= 24.951 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.9536 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9536 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9536 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 36.0475 / (dgC) M1 heater control temp OM1HTRW = 0.324625 / (w) M1 heater power OM2HTRT = 35.1917 / (dgC) M2 heater control temp OM2HTRW = 0.020005 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.8135 / (dgC) MEB 2 radiator temp OMBCSPT = 35.45 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.5484 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 22.0208 / (dgC) Mode select cylinder 1 temp OMSC3MT = 22.2734 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.7281 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.2643 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.25 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.6 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 22.2 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.232 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2418 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.7036 / (dgC) CCD Shutter motor temp OSEMTRT = 24.3953 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3047 / (dgC) Slit wheel motor temp OTCZ1AT = 25.2444 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.18184 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.4844 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.18683 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.3875 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 11.581 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.425 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0550031 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.6875 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.747083 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.225 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.0262556 / (w) Thermal controller power, zone 3B OTECINV = 6.43106 / (V) TEC input voltage OTECTCV = -7.75392 / TEC temp control voltage OMBMC15V= 14.8039 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90136 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.4363 / (V) LVPS CEB +15V OPSCB35V= 34.8638 / (V) LVPS CEB +35V OPSCB5V = 5.31002 / (V) LVPS CEB +5V OPSCM15V= -14.2691 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0704274 / (A) M1 -15V current OM1M15V = -15.746 / (V) M1 - 15 volts OM1M2VDC= 0.420513 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -42.149 / (uA) M1 MCP current OM1MCPV = -2252.97 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8437 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.489866 / (A) M1 +5V current OM1P5V = 5.19414 / (V) M1 +5 volts OM1P8VAC= 0.735043 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 38.6937 / (dgC) M1 charge amplifier temp OM1DCDT = 38.9379 / (dgC) M1 decoder temp OM1MCET = 37.4727 / (dgC) M1 MCE temp OM1LVPST= 42.1125 / (dgC) M1 LVPS temp OM1HVPST= 41.6241 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 10.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 228.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721856 / (A) M2 -15V current OM2M15V = -15.8535 / (V) M2 - 15 volts OM2M2VDC= 0.420757 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -77.9976 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304274 / (A) M2+15V current OM2P15V = 15.956 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.481807 / (A) M2 +5V current OM2P5V = 5.18193 / (V) M2 +5 volts OM2P8VAC= 0.734799 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 38.9379 / (dgC) M2 charge amplifier temp OM2DCDT = 39.6705 / (dgC) M2 decoder temp OM2MCET = 37.4727 / (dgC) M2 MCE temp OM2LVPST= 42.8451 / (dgC) M2 LVPS temp OM2HVPST= 43.0893 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.2339 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.14461 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.02785 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.915 / CB clock X pwb temp OCBCLKA2= 30.7621 / CB clock Y pwb temp OCBCMAA1= -14.9404 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.01326 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.8918 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.00839 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -4.00882 / (V) CEB last gate A&B OCBLGCDV= -3.39359 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93841 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.45848 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0390036 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.92334 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94749 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.01074 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93793 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.97199 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03019 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00251285 / (V) CB state machine 1 +5V OCBSM2PV= 5.11542 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.9329 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -6.95218 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.8634 / CEB timing pwb temp OCLM5V = -5.17883 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0103299 / Calibration lamps -5V current OCLP30V = 29.5512 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0286397 / Calibration lamps +30V current OCLP5V = 5.19326 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 3912833 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0197949 / (A) Slit Wheel motor current OSWMVEL = -0.00225783 / (Rad) Slit whell motor velocity OMSCYL1P= 1165 / Mode select cylinder 1 position OMSCYL3P= 4474 / Mode select cylinder 3 position OMSCYL4P= 2551 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 70 / Mode select cylinder 3 shaft position OMSC4SP = 242 / Mode select cylinder 4 shaft position OMSC1CRP= 5213 / Mode select cyl. 1 resolver position OMSC3CRP= 56644 / Mode select cyl. 3 resolver position OMSC4CRP= 22275 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 1 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 513 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 59 / Control section slit position OCSDQEXJ= 1680 / Control section data queue extract OCSDQINJ= 1680 / Control section data queue insert OCSXQEXJ= 1 / Control section Expos Que Extract OCSXQINJ= 3 / Control section Expos Que Insert OCSOBSQ = -31437 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4194 / Control section optical scan position OCSOPMDP= 800 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 5531 / Control section dump pointer OCSFILLJ= 5531 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 50 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -21 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A-B+ ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCTR11HR2ƒ…#‹k5 SWI þó"Ê¥»ð¼Ðà ÃàÁpÂ@ßËÐÌ ª°@¿0² €° ©€¼€@Þ ½@ÍàÉÉÉÕС°ÔàŸ€¿Ðþ ¨àÀÐÁ@àÈ0àÑ€Ñ0¹@Р½@µ°¹¸@âPâ`ÍpÎÍàÍp©@¶°¦³¨Ð¿¨àŸ°©P¢€¦àŸpàÀßá ¿pã ðpİ$Ð  ( -þ¢ ˜º3_"d ¬fÖO Â Í ÐÆýþø  -77r r Ø ™Æ ®»1= áo Ã^µJ Á Ì ÑÅþø -ÔÀÃ^À^ð^ð_@„ ê°%`ÂÚðï€%PÁÚàÔàÀˆÐ„ €Ààßp ÐÀÐß`L°T˜°`˜°€˜ €˜Ð`F@¦ F ¥à™À€€™ð~`h€~€h  f€€f ~àh@~@h``f@eà~@h@Àf€pÂ0~@h~@h€Àf€Àg@€À§ € ¦à~=ð€0ß`|Ã0€0~ ;´cÀ°€€`z ÷^Fò]ÝDWl  €„ðñ;3b ƒ››¥Ìáß2ÿÿÿëF‚__–d–d==ÿ"Ê¥»ð¼ÐÃÃàÁpÂ@ßËÐÌ ª°0¿0²0€° ©¼€ ðßp¾ÍÐÉÉÉÕ¡pÔðŸ@¿Ðþ ¨ÐÀÐÁ@ÐÈ@àÑpÑ0¹@н@µ°¹¸@âPâPÍpÎÍÐÍp©0¶à¥Ð²À¨¾à¨ÀŸ€© ¢P¦ Ÿ@œàpßá ¿€å@ðÆ &  ( -þ¡ ˜º3_!c «fËQ Â Í ÐÆüþø  -77j r Ø ™Å ®»19 áp Ã^·G Á Í ÑÅþø -ÔÀÃ^À^ð^ð_@„ ê°%`ÂÚðï€%PÁÚàÔàÀˆÐ„ €Ààßp ÐÀÐß`L°T˜°`˜°€˜ €˜Ð`F@¦ F ¥à™À€€™ð~`h€~€h  f€€f ~àh@~@h``f@eà~@h@Àf€pÂ0~@h~@h€Àf€Àg@€À§ € ¦à~=à€P߀} Ã0€ €P;´‚cÀ pz ÷^Fò]ÝDW l`_耄ðñ;3b ƒ››¥Ìáß3ÿÿÿëI‚__–d–d==ÿ b;m°3Ç'æ K Àf¼ƒ UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocu252cmq_raw.fits b/lib/stistools/tests/data/tastis/ocu252cmq_raw.fits deleted file mode 100644 index c5e08cc3..00000000 --- a/lib/stistools/tests/data/tastis/ocu252cmq_raw.fits +++ /dev/null @@ -1 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 9 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocu252cmq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocu252cmq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'BD+41-3306 ' / proposer's target name RA_TARG = 2.897528976868E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 4.163172208435E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14143 / PEP proposal identifier LINENUM = '52.001 ' / proposal logsheet line number PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-06-06' / UT date of start of first exposure in file TTIMEOBS= '08:30:05' / UT start time of first exposure in file TEXPSTRT= 5.754535423443E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57545.35630818 / end time (MJD) of last exposure in the file TEXPTIME= 2.1 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793002016204E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= 'F28X50OII ' / aperture name PROPAPER= 'F28X50OII ' / proposed aperture name FILTER = 'OII ' / filter in use APER_FOV= '28x50 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$08o14516o_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Probing the nature and evolution of the oldest known planetary syste'PROPTTL2= 'm through Lyman-alpha observations 'OBSET_ID= '52' / observation set id TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM;K III-I 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 2.803000000000E-02 / target parallax from proposal MU_RA = 9.894000000000E-02 / target proper motion from proposal (degrees RA)MU_DEC = -6.324900000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET ACQUISITION PARAMETERS ACQTYPE = 'POINT ' / type of acquisition CENTMETH= 'N/A ' / target acquisition centering method CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CHECKBOX= 3 / Size of checkbox for finding algorithms TARGAREA= 0.0 / Area of target (detector pixels) SOFFACSL= 0.000000000000E+00 / caculated offset of target in long slit / POINTING INFORMATION PA_V3 = 34.014980 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 12.000000 / the minimum value of the data DATAMAX = 409.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 168.996 / position angle of image y axis (deg. e of n) SUNANGLE= 107.862694 / angle between sun and V1 axis MOONANGL= 117.726654 / angle between moon and V1 axis SUN_ALT = -57.370529 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-06-06' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:30:05' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.754535423443E+04 / exposure start time (Modified Julian Date) EXPEND = 5.754535424600E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 526.8 / fsw located subarray axis1 coord. of target TARGA2 = 512.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1442.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 2562157 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 19.094300 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 409.0 / maximum value of good pixels GOODMEAN= 31.250799 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END € €€€"€ €€ €€€€!€€€€€€€ €€€€€€€!€€ €€€€€!€ €€€!€€€ € €€ €€!€€!€€€€ €€€!€€€€!€€€€€€€!€€€€"€ €€€"€€#€€€€€€€!€€€€€ €€€€€ €€"€€€"€)€&€ €j€€€!€€€€€€€"€ € €€"€€€€€€ €€€€€€€€!€ €€ €!€€!€€€"€€€€€!€€€ €€€ €!€!€€€ €€€€€€€€€€€ €€€!€€€€€€€€€€ €€€€€€€ € €€€€"€€€€€€€#€)€'€€f€€€€€€!€€ €€ €€€€!€€€ €€€!€€€ €€"€€€€€€€ €€€€€€ €€€€"€€€€€ €€!€€€ €€#€ €€€€€ €€ €€€€€€€€ €€€€€€€€€€"€ € €€€€€ € €€€!€€€€€!€%€+€€g€ €€€€!€!€€€"€€€€€€€!€€"€€€€!€!€€€ €€€€!€€€€ €€€€ €€!€"€ €€€€€€€€€!€€€€€€€€!€€€"€€€€€!€€€ €€ €"€€€€!€€€€ €€€ €€€€€€€€€ €€€€+€(€€h€€€€€€€€ €€€ € €!€€!€!€€€ €€ €€ €€€€ € €€ €€€!€€!€€ €€€#€ €€!€€€€€ €€!€ €€€€ €€!€€€€€!€€€€€€€€!€€ €€€€ €€€!€ €€ €€€€€!€€€€€€€€€€*€(€€k€€€€!€!€€€ €€€ €€€€ €€€ € €€ €€€€€€€€ €€€ €€€€"€€€!€!€€€"€€€€€€€€€€€"€€€"€!€€€ €€€€ €€€"€€€€€ €€€ €€€€€€!€€€ €€€€€€ €€!€€€"€&€*€€l€€€"€€€!€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €!€€€€€€€"€"€€€€€€€€€€ €€€€€€€"€€€€"€€ €€€€€ €€€€€€€€€€€!€€€€€€€€€€€€€ €€&€)€€h€€€€ €€!€€ €€€€€ €!€€€ €€€€€€€€ €€€€€€ €€€€ €€€ € €€€€ €€"€€€€€€€€ € €€€€€€€€€€ €€€ €€€ €€€€€€€€ €€€ €€€!€ € €!€€€€€!€€€€€(€)€€h€€€€€€€ €€ €€ €€ €€€!€€€€€€€"€!€€ €€€€ €€€!€€"€€€€€€€!€€ €€€€€€€€"€€€€€ € € €€ €€ €€!€€€€€€"€€!€€!€€€ €€!€€€€€€€!€€€ €€€€€€€(€+€€i€€€ €€€€€€ €€ €€€€€€€€€€€ €€ €"€€€€€€€€€€€ €€€€ € €€€€€€"€€€!€€€ €€€€€ €€ € € €€ €€€€€€€€ € €€ €€€€€€€€€€€€!€€€€€€ €€€€)€*€€j€!€€€€€€€ €€€€€€€!€€ €€!€ €€€€€€€€€"€ €€€€€€ €!€€€!€€€€ €€€ €€€"€€€"€"€€€€€ €€!€€€"€€€€ €€€€€€€€€€€ €€€!€€€€€€€€€€€€€€!€'€*€€j€ €€ €€€ €€€€!€!€€€€€€€ €€ €€€€€€€€!€€€€ €€€€ €€€!€€€ €€€ €€ €€€€ €"€!€€€ €€ €€ €€€€€€€€€€€ €€€ € €€€€€€ € €€€€€€€€€€€€€€!€$€*€€f€€ €€€€"€€€!€€€"€€€ €€ €€€€€€€€€€€€€€!€ €€!€!€ €€€€€€"€€€ €€€€"€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€(€*€€k€ € € €€€€€€!€€€€€€€ € €€ €"€€ € €€€€€€€ €€€!€€€€"€ €€€€€€ € €€€ € €€€€€€ €€€€ €€#€ €€€!€ €!€€€€€€€€€"€€€€!€!€€€€€€€€€#€ €€€€€€'€*€€k€"€€€ € €€€€ €€€€€€€ €€ € €€€€€€€ €€€ €€€€€€€€ €€€!€€€€€€ €€€€$€"€!€ €€€€€ €€€€€€€$€€€!€ €€€!€€€"€ €€#€€€€€€€€ €€ €€!€€€ €€€€(€(€€l€ €€€"€€€€€€€!€€€ €€€€!€€€"€!€€ € €€!€€ €€€€€€€€€€€ €€ €!€€€ € €€€!€€€€€€€€€€€€€€"€"€€€ €€€ €€€€€ €€€€€€ €€€ € €€€ €€€€€€ €!€*€)€€i€€ € €€€ €€€€!€ €€€ € €€ €€€€€€€!€!€€€ €€€ € €€"€"€ €€€€€€!€€€€€€€ €€€€!€!€€ €!€€ €€€€€ €€€€€€ €€€ €€€€€ €€€€€€€ €€€€€€€€€€ €€%€)€€g€€!€€€€"€€€€ €€€€€€"€ €€€ €€€ € €€ €€€€!€"€€€!€€€€€€€!€!€€ €€€€€€€ €€€€€ €€€ €€€€€€€"€ €€"€€€€ € €€€€ €€€ €€€€€€"€€€€ € €€€!€€(€+€€h€ €€€€ €€€€€!€€ €!€€€ €€€!€€€€€ €€ €€€€€ €€ €€€ €€€ € €!€ €€ €!€€"€ €€€!€ € € €€€€ € €€€!€€€€€€€€€€€ €€€!€€€€€€€€€€€€€€ € €€€€ €"€)€*€€i€ €€€€ €€!€ €€ €€€€€€ €€€€€!€€€ €€!€€€€ €€€€ €€!€ €€$€!€!€€ €"€€€€€€€!€€€€€€€"€€€ € €€€!€€€ €€€!€ €€ €€€€ €€€€€€€€€€€€€€€€€€ €*€)€€g€ €€ €€€€#€€€€€ €€"€ €€€ €€€!€"€€€ €€€€€€€€€ €€ € € €€€€ € € €€€€€€!€€€ €€€!€"€€€ €€€€ € €€€"€€ €!€ €€€€€€!€€€€€€€€€€€ €€€€€€€€(€'€€j€€ €€€€€"€€€€€€#€€€€€€€€ €€€€€€€"€€€€€€€ €€ €€ €€€!€€€€ €€€"€ €€"€€€ €!€€ €€!€€€€!€€ €!€€€€ €€€ €"€€ € €€€!€€€€€€€!€!€€€€€€ €#€'€+€€i€ €!€€€€€€€€"€€ €!€€€€!€€€!€!€€€ €€€€€€ €"€€€ €€€€€ €€!€€€!€€€€€"€€€€€€!€!€€€ €€€€!€€€ €€€€!€ €€€€€ €€ €€€€€€€€€€€€ €€€€€€ €(€+€€j€ €€€ €€€€ €€€€!€ €€€€€€€ €€ € €€€€ €!€€€!€€€ €€€€€!€€"€€€ €€ € € €€€€€€€"€€€ €€€€€€€€ €€ € € €€€ €€€!€€€€ €€€!€€€€€€€€€€ €€ €€(€+€€j€ €€€€ €€€ € €€€#€€€€€€€!€#€€€€€ €€€€ €€€ €€€€!€#€€ € €!€€€€€€"€€€ €€€€"€€€ €€€€€€€€ €€€ €"€€!€€!€€ €!€€€€€€ €€€€€€€€€€ €€€€!€+€(€ €i€€€€ €€€€ €€ € €€€ €!€€€€ €€€€€€ €€€ €€€€"€ €€€€€€!€€€€€€ €€€€€"€€€€€€€ € €€€"€ €€€€€!€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€"€)€%€€g€€€€€€€ €€€€€€ € €€€€€€€"€€€€€ €€€€€€€€€ € € €€€€€ €!€€ €€€€€"€€€€€€€€€€ €€€€€€€€€!€!€€€€€€€"€€€€€€€€€€€€€ €€"€€€€€&€*€€g€!€€ €€ € €€€€ €€€€€€€€ €€€ €€ €€€ €€€€€ €€€ €€€€ €€€€€€€ €€€ €€€€ €€€ €"€€ €€!€€ €€€€!€€€€"€€ €€€€€€€€€€€€€€€€€€€€€€€€!€*€)€ €j€ €€€ €€ €!€ €€€!€€ €€€ €€ €€€€€ €€€!€€ €€!€ €€ €€€€€€ €€€"€ €€€!€€ €€€!€€!€€€€€€€€€ €€€€!€€€!€€€ €€€€€ €€ € €€€€€€€€€€€€ €€"€€€)€*€€h€"€€€€€€€ €€€ €€€!€€€€€€€€ €€€€€€€€€ €€€ €€€€€ € € €€€€€€€ € € € €€€!€€€€€€€€€€€ €€€€ € €€€"€€€ €€€€€€ €€€€€ €€€€€€!€ €€€)€%€€i€€€€ €€€€€ €€ € €€ € €€€€€€€€€€€ €€€€ €€€€€€!€€ €€€ € €!€€"€ € € €€€€€ €€€ €€ €€€€€€ € € €€ €€€€€ €€€€€€€€€€€€€ €€€€!€€€€€€€*€)€€i€€€€€ €€!€€€!€ €€€ €€€!€ € € €€€€€€€€ €€€€€€€€€€€€€!€ € €€€€ €€€€€€€€€ €€€€€€!€ € €"€€€ €€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €)€)€€i€€ €€!€€€€€€€€€€€ €€€ €€€!€€€€€ €€€!€€€€€€€ €€€€€€ €€€!€€ €€!€€ €€!€"€€!€€ €€€€€€#€ €€!€€€€#€€€€€€ €€€€€€€€ €€ €€€€€ €€€€€(€(€€k€€€€€€ €!€€€€€€€€€€ €€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€!€!€€€€€€€€€€€!€€€€ €€ €€€€€€€€!€€€ €€€€#€€€€€€€€€€€€€€€!€€€€$€)€€g€€ €€ €"€€€€ €€€ €€€ €€"€€€€€€€€€€!€€!€€€€!€€€€€€€€ €€€ €€€€ €€€ €€ €€€"€€€€€€€€€€€€€ €!€€€€€€ €€€€€€€€€€€€€€€€€ €€ €"€(€+€€i€€ €€€"€ € €€€€!€€€ €€!€€€€€€"€€€€€€€ €€€€€€€€€ €€€ €€€!€ €"€€€ €€€€€€€€ €!€ €€ €€€€€€€€€€€€ €€€€€ €€€€€ €€€€€€€€€€€€€!€*€)€€h€ €€ €€€€€€€€€ €€€€€€€€€€€€€ €€€ €€€€ € €€€€€ €€€€€ €€ €€€€€€ € €€€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€€€€€€€"€€€€€€€€(€)€€i€ €€€€€€ € €€ €€€€€€€€€ €€€€ € €€€ €€€€€€!€€€€€€€€€ €€€"€€€€€€ €€€€€!€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€!€€€(€(€€j€!€€€€€€"€€€€"€€€€€€€€ €€!€ €€€€!€€€€€!€€!€€€€ €€!€€!€€"€€ € €€€€€€€ € €€€€€€€€ €!€€€€€€€€€!€€€€€€€€€€ €€€€€€€ €€€€!€€€ €(€(€€j€€€€€€€€€"€€ €€€€€€€€€€ €€ €€€€€€€€€!€€€ € €€€€ €!€€€€€!€!€€€€ €€ € €€ €€€€€"€€€ €€€!€€€€€€€€€€ €€€€€€€€€€€ € €€€ €€€€€+€'€€k€€€€€€!€€€ €!€ €€€!€€€€€€€€ €€€ €€€ €€€€€€ €€€€ €!€€€"€!€€ € €€ €€€€€€ €€€€ €€€€€ €€"€ € €€€€€!€€ €€€!€€€€€€€€€€€€€€!€ € €!€€"€(€&€€i€€ €€!€€!€€€€€"€€€€€ €€€€€€€€€€€€€€€€ €€!€€€€€ €€"€!€ €€"€ €€€€ €€!€€€ €€€€!€€€€€€€€€€€ €€€#€€€€€!€€ €€€€€€€€€€€€€€€€€'€*€€h€!€ €€€ €€€!€ €€€€€€€€€€€€€€ €€€"€ €€€€€€!€€€€€€!€$€€ €!€€€€€€€€ €€€ €€€ € €€€€€ €€ € €€€ €€€"€€€€€€€€€€€€€€€€€€€€€ € €€ €(€(€€j€€ €€€€€!€€€€€!€ €€€€€€€€€€ €€ €€€€!€€€€€€€ €!€"€€"€"€%€%€€!€€€€€€"€€€€€€"€ €€!€ €€€€€€ €€€€€!€€€!€€€€€€€€€€€"€€€€€€€ €€€"€)€(€€i€€€€€€€#€€€ €€€€!€€€€€€€€€!€€€€€ €€€€€€€!€€€ €€"€#€(€&€€%€!€€€ €"€€€€€€€€€€€!€€ € €!€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ €)€'€€h€ €€ €€€ € €€€€ €€€€€€€€ €€€€!€€€€ €€ €€€€€ € €€€ € €€+€+€%€ €&€!€€!€€€ €€€€€"€€€ €€€€€"€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€!€$€*€€j€ € € €€€€ €€$€€€€€€€€€€€€€€!€!€€ €€€€$€€€€€€ €€!€"€/€v€‚€<€%€$€"€€#€!€€€€€€ €!€€€ € €€€€€ €€€€€#€€ €€€"€ €€€€€ €€€€€€ €€€€"€€€!€€€+€(€€i€ €€€"€ €€ € €€€ €€€ €€€€ € €€ €€€€€!€€€ €€€€ €€€€ €!€"€<€ð™€a€-€%€"€"€!€€€!€€€€€€€ €€€€€€€"€€€€€€€"€€€€€€€€€€ €!€€€€€€€#€€€€ €€€*€)€€i€€€€€€ €€€€€€ €€€ € € €€€€€€€€€ € €€€€€€€ € € €€ €"€.€|€²€V€*€(€ €#€€€ €€€!€€!€€€!€€ €€€€€!€"€€!€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €)€'€ €j€ €€ € €€€ €€€€€€€!€€€ €€€€ €€€€€ €€€€€€€ € €€€€!€€#€+€1€+€%€#€!€ €€€€ €€€€ €!€€€€!€€ € €€€€!€€€€ €€€€€€€€ €€€€€ €€€€€€€€ €€€€€*€(€€i€€ €€€!€€!€ €€"€€€ € €€ €€€!€ €€ €€€€€€€€€ €€€€€€ €€€ €!€!€#€ € €€€€€!€ € €€€€€€€"€ €€€!€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€'€(€€i€€ €€€€ €"€€€€€€ €€€#€€ €€ €€"€€€ € € €€ €€€€€€€€€!€€€!€ €€ €!€!€€ €€€€€€"€€€ €!€€ €€€€!€€€€€!€€ €€ €€€ €€€€€€€€€€€€€€€€!€€€€"€&€)€€h€€€ €€!€ €€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€ €€#€ €€€ € €€€€€€€€€€€€€€€€ € €€€ €€€€"€ €€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€'€'€€i€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€!€€€€€€€€€€ € €€€!€€ €"€€€€€€€!€€€ €"€€€€€€€€€€€€€ €€€ € €€€ €€€!€€ €€€€€€€€€€€€€€*€(€€i€€€€ €€€€ € €€!€€€€€€!€€€€€ €€€ €€€€€€€€€€€€€€ €"€€"€€€€€!€€ €€€!€€€ €€ €€€€ €€€€€€€ €€€€€€€!€€€€€€€!€€€€€€€€€€€€€€ €)€(€€k€ €!€"€€€€#€€€ €€€ €€€€ €€€!€€€€€€€€€€€€€€€ €€€€€€€€€€€!€ €€ €"€€€ €€€€€!€€€€€€!€€€€€ €€€ €€€ €€ € €€€!€!€€ €€€€ €€€€€€€ €"€)€)€€j€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€!€€€ € €€€€€!€€€€€€€€€€€€€€€€€ €€ € €€ €€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€€€'€)€€g€€ €€€€€€ €€€€€€€€€ € €€€€€ €€€€!€€€"€€€€€€€€€€€€€ €€€ €€€€€ € € €€ €"€€€!€ €€ €€€€€€€!€ €€€€€€€"€!€€€€€€€€€€€€€€€€€€€&€*€€h€ €€€€€€€€!€€€#€€€€€€€€€€€€€€€€€€€ €€ €€€€ €€€€€€€€ €€!€€€€ €€€€€€€ €€€ €€€€ €€€€€€€#€"€€€€€€ €€€€€ €€€€€€€€ €€€€€'€(€€g€€€€€€€€ €€€€ €€€€€€€€€€€€€ €€€€ €€€€€€€!€€€€!€€€!€€ €€€€€€!€€€€ €€ €€€ €€€€€€€€ € € € €€€€€€€€€"€€ €€€€€€€ €€€!€€€€ €(€+€€l€ €€€!€€€ €€€€€ €€€€!€€€€€€ € €€€€€ € €€€€€€ €!€€ € €€€€€€€"€€!€€€ € € €€ €€!€!€€"€€€€ €€ €€€€ € €€€€€€ € €€!€€€€€€ €€ €€ €€ €€€ € €+€*€€i€€€€ €€ €€ € €€€€€€€€€€€€€€€€€"€€ €€€€€€€€ €€€ €€ € € €€ €€ €€€€€€€ €€#€€€ € €€€ €€€€€€€!€€€ €€!€€€€€€€ €€€€€€€€€€€€€€ €(€'€€k€€!€€€€ €€€"€!€€€€€€€€€€€€ € €€€€€€€ €€€€!€€€€€ €€€ €€!€€!€€ €€ €€€ €€€€€€€!€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€&€(€€h€€€€€!€€€!€"€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€ €€€!€€"€€€€€€€ €€€#€€ €€€€€€€€€€"€€€€€"€€€€€ €€€"€!€€€€€€€€€€ €€€€€€#€(€'€€i€€€€ €#€€€€€ €€€€€"€€€€€ €€€ €€€€€€€€€€€€€€€€€!€€€!€€€€€€€€ €€€€€ €€ €€ €€€€€€ €€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€!€ €)€*€€g€ €€€€ € € €€!€€€€ €!€€ €€€€€ €€€€€€€€€€€ €€€€€€€€€€€!€€!€€!€€!€€€ €€€€€€€ €€€ €€€€€!€€€!€€€€ € €€€ €€€€€€ € €€!€€€ €€€!€€ €€'€*€€g€€€€€ €€€€ €€€"€€€€€€€€€€€€€€€€€€ €€€€€€!€€€€€€ €€€€€€€€€ €€"€€€€ €€€€€€ €€€ € €€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ € €(€*€€h€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € €€!€€ € €€!€€€€€€€"€€€ €!€€ € €€€€€€€ €€€€ €€€€€€€€€€€€€€"€€€ €'€*€€k€€€€€ €€!€€€€!€ €€€€€!€€€€€€€€€€ €€€€€€€€ €€€€ €€€€€€€€€€!€ €€€!€€€€€€€ €€€€€€"€"€€€€ €€€ €€€€ €€€€€ €€€€€€€€€ €€€€!€'€+€€j€€€ €€€€€€€ €€!€ €€ €€€€€ €€€€"€€!€€ €€€€€€€ €€€ €€€€€€€€€€€!€€€€€ €!€€€€€ € € €€!€€€!€€€€ € €€€€€€€"€€ €€€€€€€€€€€€€€€!€$€*€€j€ €!€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€!€€€€ € € €€€€€€€ €€€€$€€€€€"€€!€€€€!€€€ €€€€€€€€€€€!€€€€€ €€€€€€€#€$€*€€i€€€€€!€€€€€€€€ €€€!€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€ € € € € €€€ €€!€ €€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€€€€€€"€'€(€€g€€€ €€€€€!€ €!€€€€€€!€€!€ €€€ € €€€€ €€€ €€ € €€ € €€€€ €€€€€€€"€€€#€ €€€€ €€ € €€€"€€€ €€€€ € €€€ €€€€!€ €€€€€€ €€€!€€€€€€€€!€€ €'€(€ €h€ €€€ €€€€!€€€ €€€€€€€!€€€€!€€ € €€€€€€€ €€€€€ €€€€€€!€€€€ €€€€€€€!€€€€!€€€€€€€ €€€ €€€ €€€€€€€ €€€€ €€€€€€€€€€€€€€ €(€'€€g€€€ € €€€€€€€€€ €€€€€€€€!€€€ € €€€€€€€€€ €"€€€€!€€€€ €€ €€€€!€€€€€€€€€€€€€€€€€€"€ €€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€%€(€€i€€!€ €€ €€€€ €!€€€€€€€ €€ €€ €€€€€€ €€€€€€€€€ €€€€€ €"€€!€ €€€"€!€€€€€€€!€ €€ €€ € €!€!€€€€€€ €€€!€ €€€ €€€€€€ €€€€!€€€€€€€€!€€$€*€€j€ €€€€€€€€€!€ €€ €€€!€€€€€€€!€€€€ €€€ € €€€€€€!€€€€€€€"€€€€ € €€ €€€€ € €€€ €€€€€ €€€€€€ €€€!€€€€€€€€"€€€ €€€€€€€€€€€€ €%€*€€m€ €€€€€€€ €€€€€€€ €€€€€ €€€€€€ €!€€€€€€€€€€€€€ € €€€!€€€€€!€€€€€€€€€€€€!€€€ € €€€€ €€€€€€€€€ €€ €€€ €€€€€€€ €€€€ €€€*€)€€i€ €€€ €€€ € €€€!€€€#€€€ €€€€ € €€€€ €€€ €€ €€€€€€!€€ €€€€"€€€€"€€€€€ € €€€€ €€€€€€€ €€€€€€€ €!€€€ €€€€€€€€€€€ €€€€€€€ €€€"€'€)€€l€ €€ €€€€!€€€€ €€€!€€€ €€€€ € €€ €€€ €€€€ €€€€ €€€ € €"€€€€€€€€€ €!€€€!€€€!€ €€€€€€ €€€€ €€€€ €€€ €€€ € € €€!€€€€€ €€!€€€€€€€€€(€)€€j€€€€€!€ €€€"€€€ € €€€€ €€€€ €€€€€€ €€ €€€€ € €€€€€!€€"€!€€€ €€€€€€€"€€€€ €€€€€€€ €€€!€€€€"€€€€€€€ €€€!€€€€€€€€€€€€€€€€€&€.€€h€€ €€€ € €€€€ €€€€€€!€ €€€ €€€"€#€€€ €€€€€€€€€€ €€€€!€€€€€€€€€€€!€€€€ €€"€€ €€€€€€€€€ €€€€€€€€€€€!€€€€ €€€€€€€ €€€ €€€'€(€€i€"€ €€!€!€€€ €!€€ €!€€€€ €€€€ €€€ €€€ €€€€€ €€!€€€€€€€€€€ €€€ €€€€€!€€ €€!€€€€€€"€€€€ €€€€€€€"€€€€ €€€€€€€ €€ € €€€€ €€€ € €€ €*€'€€j€ €€€ €€€€€€€"€€€€!€€€ €"€€ €€€ € €!€€€#€€€€€€€!€€€€!€!€€ €€€ €€€€ €€€€ €€€!€€€€€€€€€€€"€€€€€€€ € €€!€€€€€€ € €€€€"€€€€ €€€€)€(€€i€ €€€€€€€€€€€€€ €€€€"€€€€€€ € €€€ €!€€€"€€€€€€!€"€€€€€€€#€€€€€ €€!€€€"€€€€€!€€ €#€€€€ €€€€€€ € €€€€€€ € €€!€€€€!€€€€€€€€"€%€(€€j€€ €€€ €€€€ €€€ € €€€€!€€€€€€€ € €€ € €€€ €€€€ €€€!€€€"€€ € €#€€ €€!€€€€€€€"€€€€ €€€€€€€€€€ €"€€ €"€€€€ €€€€€€ €€€€!€€€€ €€€ €€&€*€€k€€ €€€!€"€€€!€€€ € €€€€!€€€€ €€!€€€€€€€€€€€!€€€€€€€"€€€ € €€€ €€€€!€€€ €€€€€€€ € €€€ €€€€€€ €!€€€ € €€€"€ €€€€€€€€€€€€€€€ €(€)€€h€€€€€ €€€ €€€€ €€€€ €€€€€€ €€€"€€€€ €€€€€€€€!€€€€ €€€"€€€€!€€€€ €€ €!€€€€ €€ €€€€€€€€"€€€ €!€€€"€€€€ €€€ €€€€€€€€€€!€"€€"€(€)€€k€ €€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ €€!€€€€€€€€€€€ €!€ € €€ €€€€€€#€€€€"€€€!€€€!€€€€ €!€€€€€€!€€€€ € €€€€€€€€€€!€€€€€€"€)€)€€g€€€!€€€€€€€€!€€€€€€€€€€€ €€€€€€ €€€€ € €€€!€€€€€€€€€€!€€€€ €€€ €€€€ €€€€ €€€ €€€ € €€€ €!€€!€€€€ €€€€€€€ €€€€€€€€€€€!€&€%€€g€€€!€€€€€€€!€€€ €€€€!€€€€!€€€€!€€€€€€"€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€ €€!€€€ €€€€€€€ €€ €!€€€ €€€€!€€€€€€€€€€€€€€€ €&€)€€i€€€€€€ €€€€ €€€ €€€!€ €€€ €€€€ €€€€€€"€€€€ €€€!€€€€ €€€ € €€€€€€€€€€"€ €€€ €€€ €€€€€€€ €€€€!€€€€€€€!€ €€€#€€€€€€€ €€€ € €€(€+€€e€€ €€€€€€€!€€€ €€€€€€€€€€€€€€€ €€€€€€ €!€€€€ € € €€€€€€€€!€!€€€€€€ € €€"€ €€ €!€!€€€€€€!€€€ €€€ €€€€€€€€ €€€€ €!€€!€€€€ €€€(€,€€g€ €€€€€€"€€€€€"€€ €€€€€ €€€€€€€ €€€!€€€ € €€€!€€€€ €€€€€€€€€€€"€€€€€€€ €€ €!€ €€ €"€€€!€€€€"€€ € €€€€€€ €€ €€€€€€€€ €€!€ €€"€*€*€€i€€€€€€€€€€€ € €€ €!€€€€€€!€ €€€€€€€€€€!€€€€€€€!€!€€€€ €€!€!€€€"€€€!€€€€ € €€ €!€€€€€ €€€€€ €€€ €"€€€ €€€€ €€€€€€€ €€€ €!€€€ €+€)€€h€ € €"€€€€!€€€ €"€€€€€€!€"€€ €€!€€ €€€ € €€€€€ €€ €€ €€ €€!€€€€€€€ €!€€€€€€€€!€€€€€€ € €€€ €€€€"€€€€ €€€ €€€ €!€€€#€€€€€€ € €€€€#€&€,€€h€€ €€€€€€€€€€€!€ €€€!€€€!€€€€€€€!€€€€ €€€"€ €€€ €€€!€!€€€€€€€"€ €€€!€ €€€€€€ €€€€€€€!€€€ €€€€€ € €!€€€€€€€€ €€€€€€€€€"€€€*€+€€f€€"€ €€€€€€ €€€€€€€ €€€€ €€€€"€€ €"€€€€€€€€ €€€€€€€€€ €€€€ €€€ € €€ €€ €€ €€€€€€€€€€€€€€ € € €€€€€ €!€€ €€ €€€€€€€€€€ €€ €*€)€€f€ €€€€!€€€€€ €€€!€ €"€ €€€"€€€€€€ €€€€€€€ €€€€€!€!€€€ €€€"€€€"€€€€€"€€#€€€"€€ €€ €!€ €€!€ €€€!€ €€ €€€€!€€€€€€€ € €€€ €€€€€€€€€"€+€,€€g€ €€!€ €€ €€€€€"€ € €€ €€€ € €€ €!€€€€€€€ € €€€€€ €"€"€€€€€€ €€€€"€ € € €€€ €!€€€€ €€€€ €€!€"€€!€!€€ € € €€€!€ € €€ €€€"€ €€ € €€€€€€€!€ € € €(€*€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 12.0 / minimum value of good pixels GOODMAX = 409.0 / maximum value of good pixels GOODMEAN= 31.250799 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 100 / length of first data axis NAXIS2 = 100 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 11.000000 / the minimum value of the data DATAMAX = 130.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 168.996 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-06-06' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:31:17' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.754535506776E+04 / exposure start time (Modified Julian Date) EXPEND = 5.754535507934E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 533.1 / fsw located subarray axis1 coord. of target TARGA2 = 515.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 611.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLWA2= 0 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 2562156 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.7024 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.92803 / (V) CB summing well A Lo OCBRCDLV= 0.0097069 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 130.0 / maximum value of good pixels GOODMEAN= 30.952999 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€€€"€€€ € €€€"€€€ €€€€€€€€ € €€€€€€ €€ € €€€€€€€€ € €€ € €€€€ €€"€€€!€ €€"€ € €€!€€€ €"€ €€ €!€€€"€€€€€€€€ €€€€€€€€€€ €€€!€ €€€'€*€€g€€€€€ €€!€€€€ €€€ € €€€€€€€€€€€€€€€€€!€ €€€"€€€€ €€€ €€€"€€€€€ €€!€!€€€"€€€€!€€€ €€€€!€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€€ €'€(€€i€€€ €€€€ €"€€#€€ €€€€€ €€€€€€€€€ €€ €€€ € €€ €€€€€"€€€€€€€€!€€!€€€€"€€€"€ €€€€ €€ € €€ €€ € €€€ €!€€€€€€€€!€€€€ €€€"€€€€€€€€€%€*€€h€€€€€€"€ €€ €€ € € €€€€!€€€€€€€!€€€!€ €!€€ €€€!€ €€!€ €€€€€€€€€€ € €€€€€€€€€€€€€€#€!€€#€ €€€ €€ €"€€€€€€€€€€€€€€€ €€€!€€€€€!€&€+€€f€"€€€€!€€€€€€€€€€€ €€€€€€€!€!€€€€€€€€€€€€€€"€€€€ €€€€€€#€€€!€€ €€"€ €€€€ €€€€€€"€€€€€€€€€€€€€€!€€€€ €€€€€€"€€€€€€€*€+€€l€!€€€!€€€€€€€€€€"€€€€€ €€ € €€€€€€€€€€€€€€ €€€ €"€"€€!€€€€#€€€€!€ €€!€ €€€€€€€€€ € €€€€"€€€€€€€!€ €"€€ €€ €!€€€€€€€€€€!€ €€ €*€*€€k€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€€€€€€!€€€€ €€!€€€€!€ €€ €€€€€€ €€#€€€"€€ €€ €€€€€ €€ €€€€€€€€€€€€€€!€'€)€€j€€€ € €€ €!€€€€€€!€"€€€ € €€€€€€€€€€€€€€€€€ €!€€€€€"€€€€ €!€€€ €€€€€€€ €€€"€€€€"€€€€€€€€€€€€€€€!€ € €€€€€€€€€€ €€€ €€€ €(€*€€g€ €€€€€€€€€ €€€!€€€ €€€€€€€€€€€€€€€ €€€€€ €€€€€ €!€ €€!€€€ € €€€!€!€€ €€€ €"€€€€€€€€€€€!€€€ €€€€ €€€ €€€€€€€€€€€€€€€!€€)€'€€m€ € €€€€€ €€"€€€€€ €€!€€€€€€€€€€"€€€€!€€€€€€€!€€€!€ €€€€ €€€ €€ €€ €€€ €€ €!€€ €€€€€"€€€€"€€€ €€€€€ €€€€€!€!€€€€€€€€€€€€€ €*€(€€i€€ € €€€€€€€€ €€€€€€€€ €€€ €€€ €€ €€€€€€€€!€"€€€€€€€"€€€€€€ €€€€€ €€€€ €€€ €€€!€€€€€€€!€!€€€ €€€€€€€€"€€€€€€€€€€€€€!€(€)€€i€€€!€€€€€€€€€€€!€€€ €€€€ €€€ €€€ €"€€€€ € €€€ €€€€€€"€€€€ €!€€€€€€€€€ € €€€!€€€€ € €€€ €€€!€ €€ €€€€!€€€€€€€€€€€#€€€€€€€ €%€(€€l€€ €€€€"€€€€€ €€€€€€!€€€€€€€!€€€€€€€ €€€€€€€ € €€ €€€€€€€€"€€€ €€€€ € €€€€€€!€€€€€€€€€€"€€€€!€€€€€€€ € €€€€€€€"€€€€!€%€*€€g€€#€!€€€ €€€€ €€€ €€!€€!€€€€€€€ €€ €€€€ €€€€ €€€ €€€€€€€ €€€€€€€€ €€€ €€€!€"€€ €!€€ €€"€€ € €€€€ €€€ € €€€€€€€!€€€€€€!€€€€€€€(€)€€g€#€€€ €€€€€€ €€€€€€ €€€!€€€ € €€ €€ €€€€ €€ € €€€"€€€€€€€€€€ €€€€€€€€!€€€ €€€€ €€€"€!€€"€"€€€€€€€ €€€€ €€€€€€ € €€€€€€€!€€€*€&€€h€ €€€ €€ €€€€€€€€€!€€€!€!€€ €€€€!€€€€!€€€€€€€€€€€€€€"€€€ €#€€€ €€€€!€€€€€€€"€€€€€€ €€€€€€€€ €€€€ €€€€€€€€€€!€€€€€€€ €)€(€€g€€€ €€€€€€€€!€€€€€€ €€€€€€€€€€€€"€€€ €€€€ €€€ €€€€ €€€€€€"€€€€"€€€ €€€€ €€€€€€€!€€€!€!€€€ €!€€€€€€"€ €€€€€€€€€€!€€€ € €'€*€€g€€€€€€€€€!€ €€€€ € €€"€€€€!€€€ €€€€€€!€€€€ €"€€ € €€€"€!€€€!€!€€€€€€ €€€€"€€€ € €€€€ € € €€€€"€€€ €€€€ €€€€ €€€€€€€€€€!€€€€€€&€*€€h€€€€€€€€€€ €€€€€ €€€€!€ €€ €€€€€€€€!€€€ € €!€€!€ €€€ € €€€€€ €€€€!€$€€ €€€ €€ €€!€€€€€"€€€€€€€€€€€ €€ €€!€€€!€€€€€€€€€€€€€&€'€€i€ €€€!€€€€€€€€ €€€€ €€€€€€€€€!€ €€€€ €€€€€€"€€ €"€€€ €€!€€€€€€ €€€€!€€€€!€€€"€ €€€€€€€€€ €€€€€€€€ €€€€€€€ €€€"€€€€€€€€*€)€ €h€ €€€ €€€€€€ €€€€€€€!€#€€€€"€€€€€€€€€€€€€€€€€€€€€"€!€€€ €€€!€!€€€€€€ € €€ €€€€ €€€ €€ €€ € €€ €€€€€€€€€€€€€€ €€€€€€€€ €*€'€€m€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€!€€€ €€"€€ €€€€€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€!€€€€€ €€€!€€€€€€€€€€€!€ €€€€)€%€€i€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€ €€ €€!€€€"€€€€€ €€!€!€€€ € € € €€€!€€€€€€€€€€€!€€€€ €€€€ €€€€€€€€€&€*€€j€€€€€€€€€€€ €€ €€€€€€€€€€#€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€ €€!€€€ €€€€€€€ € €€€€!€€ €€€€€€€€!€€€€€€€€€€€€€€!€€€*€*€ €h€ €€€€€ €€€€€ €€€€€€€€ €€ €€€€€€€€€ €€€€€ €€€€€€€€!€€"€ €€€!€ €€€!€€ €€€€€€ €€€€ €€€€€ €€€€€€€ €€€€€€!€€€€€€€€€€€ €€ €)€&€€j€ €€€ €€€€€€€"€€€€€€€!€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€!€ €€ € € €€€ €€€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € €€€(€&€€j€€€€€€€€€€€€€€€€ €€€ €€€€€!€!€€!€€€€€€€€€€€€€ € €€€€€ €€€€ €€€€€€€!€€€€€€!€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€'€&€€d€ €€!€€ €€€€€€€€€€€€€ € € €€€€€€€€€€€ €€€ € €€ €€€€€€€$€€€€!€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€ €€"€€ €€€€€€€ €€€€€€!€(€)€€g€€€ €€€€€€€€ €€€€"€€€€€€€€€€ €€ €€€€€€€ € €€ €€"€"€!€€€!€€€€€€€€€€€€€!€€€ €€€€€€€€€ € € €€€!€€€€€ €€€€€€€€€€€€€€€ €€€%€)€€i€ €€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€ €€€€€"€€€€€€€€€!€€ €€€"€€€€€€ €€€€€€€"€€€€€ €€€ €€€€€€€ €"€€!€€€€€€€€€€ €€ €&€*€€l€€ €€€€€€ €!€ €€€€€€€€€€"€€€€€€€ €€€€€€€€€€€!€€€€ €€ €€ €€!€€ € € €€€ €€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €&€)€€h€€€€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€!€ € €€€ €€€€€€ € €!€€€€€€!€ €€€€€€!€ €€ €€€€€€€ €€€€€€€ €€€ €€€€€€€€)€(€€f€€€€€€!€€!€ €€€€€€€€€!€€€€ €€€€ €€€€€€ € €€€€€€€!€€ € €€€€ €€€€€ €€#€€€!€€€€€ €€!€$€€!€ € €€ €€€€€€€€€€€€!€€€€€€€€€€€€€#€(€'€€h€€€€ €€€€€€!€€€€€€€ €€€€€€€ € €€€€€€€€€€"€!€€€ € €€€€€ €€"€€!€!€€€ €€€€!€€€!€€€!€€€ € € €€€€€€#€!€€€ €€€€€€€€€€ €€€€€€€€€%€(€€k€€€"€€€€€€€ €€€ €!€€€ €€€€€€€ € €€€€!€€€€€ €€€€!€!€€€€€€!€ €€€!€ €€ € €!€€€€€€ €€€€€€€ € €€€€€€€€€ €€€€!€€€ € €€€€€€€€€€ € €#€)€€h€€€€€ € €€€ €€ €€!€€€€ €€€€€€€€€€€€€€ €€€!€€€€€€€ €€€€ €€€€€€€ €€ €€€€ € € €€#€ €€€"€€€€€€€!€€€ € €€€ €€€€€€€€ €€€€€€€€!€)€,€€d€€€€€!€€ €€€€ €€ €€€ €€€€€€ € €€€€ €€€€€€€€€ €€€€ €€€€!€€€ €€€€"€ €€€"€€€€€€€ € €€"€!€€ €€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€*€)€€h€$€€ € €€€ €€ €€"€€€€!€€ €€€€€ €€€ €€€€€€€"€€€€ €€€€"€ € €!€€€€!€€€ €€€€ €€€!€ €€€€ €€ €!€€€€ €€€€€€ €€€€€€€€€€€€€€€!€€€€€€!€)€%€€k€€€€ €€€€€€€€€"€ €€€ €€€€€€€ €!€€€ € €€ €€€€€€!€€ €€€€!€€€!€ €€€!€€€ € €€€ €€€€!€€€!€€€€!€€€€€€!€"€€€€€€€€€ €€€€€€€€€!€€€€%€'€€k€€€€€€!€ €€€ €€€€ €€€€€€€€€€ €€€€!€€€ €!€€€ €€€!€€€€ €!€€€ €€€€€€€€€€ €€€!€€ €€€€€€"€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€ €€!€'€(€€j€€€€€€€€€ €€€€!€€€€€€€€€€€€€€€€€€ €€€!€ €€€€€€ €€€€"€€€#€"€€€€ €€€€€€€€€!€€€€!€€€€!€€ € €€€ €€€€€€€€€€€€ €€€€€€€€€&€(€€h€$€€€€ €€€€ €€€€€€€ €€€€€€€ €€€€€€€€€€"€!€€€€€€€€€€€!€€€€€€€€€ €€€€€€€€€!€€ €€€€€€€!€"€€!€€€€€ €€€ €€€€€€€!€€€€ €€€(€)€ €g€ €€€"€€€€ €€€€!€€€€€€€!€€€€€€€ €€€€€€€€€€€€€€ €€€€!€€€!€€€€€€€€€€€€€€"€€ €€€€€!€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€)€*€€j€€€€€€€€ €€€€€€€!€€€€€€€€€ €€€€€ €€€ €€€€€ € € €€€€ €€€#€€€€#€ €€!€€€ € €€€€€€€€!€€€€€€ €€€€€ €€€ €€"€€€€ €€€€€€€€€€€€)€*€€j€€€"€ €€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€"€€€€!€€ €€€€ €€€€!€€€ €"€ €€$€€ €"€€€€ €€€ € €€€ € €€€€€€"€ €€€€€€€ €€€"€€€€€€€€!€€€€(€(€€j€€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€ €€€€€ €€€€€!€€€ €"€€!€€!€€€"€€€€€€€€!€€€€€€ €€€ €€€€ €€€€ €€€ €€€€€€€€€€€!€€€€ €€(€(€€i€€ €€€ €€€€€€€€€ €€!€€€€€€€€€€€€€€ €€€€"€€€ €€€€€€€€€€€#€#€€#€ €€!€!€€!€ €€ €€€€€€€€ €!€€€€€€€€€€€€€€€€€€€€€€€€€€€€*€(€€g€"€€€€€€€ €€€€"€€€€€€€€€€!€€ €€€€€ €€€ €€€€"€ €€€€€€€€€€$€&€ €€!€ €!€€"€ €€€€€€€"€€€€€"€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€!€)€(€€i€€€€ €€€€€€€€€€"€ €€€€€€ €€€€"€€€€€€ € €€€€!€€€ €€€€€!€€#€"€&€#€&€#€ €$€€ €"€!€ €€€€€€€€€€€ €€€€€€ € €€ €"€€€€€€€€€€ €€€€€€€€'€'€€i€€€€€€#€ €€€€€€ € €€€€€€ €€€€€€€€!€€€ €€€€!€ €€€ €€€€€€#€#€*€D€-€$€'€"€&€€€€€€!€€€€ €€€€ €€€€€€€#€€€!€€€€€€€€€€ €€€€€ €€€!€€'€&€€g€"€€€€€€€€ €€€€€ €€ €!€€€€€€€€€€€€€ €€€€ € €€ €€€€ €€€€"€"€1€‚€V€%€%€&€&€!€"€ €€"€€€€€!€€€ €€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€&€*€ €h€"€€€€!€€€€ €€€€€€€€€€€€€!€€€€ €!€€€€€€€€€€€€€"€!€€ €"€ €€-€C€O€0€*€%€$€ € € €!€ €€€€"€€€!€€€€€€€ €€€€€€€€€€ €€€€€€€ € €€€!€€€€+€%€€h€€€€€ €€€ €€€€€€€€€€ € €€€!€€€€ €€ €€€€ €€€"€€€€ €#€€ € €€€$€#€!€)€%€#€ €"€$€€€ €€ €€€ €€€!€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€#€'€'€€g€€€€€€€€€€ €"€ €€€€€€€€€ €€€€ €€€"€€€€!€€€€ €€€€"€€!€€€ €$€€"€#€#€€!€!€€ €€!€€€€€€€€€€€€€€ €€€ €€€ € €€€"€€€€€€€€€€€€€€€!€&€)€€i€€ €€€€€€€€!€€ €€€€€"€€€€€€€$€€€€€€€ €€€ €!€ €€€€€!€"€€€ €!€€€!€€€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€€ €€€€€€€ €€€€€€&€*€ €g€€ €€€€€€€!€€€€!€€€€€€€ €€€€ €€€!€€€€€€€ €€€"€ €€ €"€€€€ €€€"€€€€€€€ €€€€€€€!€€€€€€€!€ € €€€ €€ € €€€ €€€ €€€€€€€€€€€€€ €'€'€€i€ €€€€€€ €€€€€ €€€ €€€€€€€"€€€ €"€ €€€€€ €€€€ €€€ €€€€ €€ €€"€ €€€€€€!€ €€ € € €€ €€€€!€€€€€€€ €€€!€ €€€€€€€!€€€!€€€€€€€€€€"€(€)€ €j€€!€€ €€€€ €€€ €€€€€€ €€€€€€€€!€€€€ €€€€ €€€€€€ € €€€€€€€€€€€€€!€ €€€€€€#€€€€ €€€ €!€€€ €€€€ €€€ €"€€€€€€€ €€€€€€€€€€€%€*€€k€€€€€€€€€€€€€€ €€€€€ € €€€€€€€€ €€€€€€€€€ €€€!€€€€€€ €€!€€€€€!€€€!€€€€€€€€ €€€€€€€€€€€€€€€€€€"€€€€€€€€€€!€€€€€&€+€€h€€€€€ €!€€€ €€€"€€€€!€€€€€€€€ € €€€€€€€€€€€€€ €€€ €€€€€€€ €€€€€€€ €€€€#€ €€"€ €€€ €€€€ €€€€€€ €€€€ €€€€€€€ €€€€€€€€€€(€'€€i€ €€€€€€€€€€€ €€€ € €€€€€€€€€€€ €€€€€€€€€€€€€€€€€#€€€€€€€!€€€€!€€€ € €€€!€€€"€€ €€€€€€€€€#€€€€€€€€€€€!€€€€€€ €€€€(€&€€i€€€€!€€ €€ €€€€€€€!€€€€!€€!€€€€ €€€€€€€ €€€€ € €€€€€€€€€€ €€€€€€€€€€€€ € €!€ €€€€€€"€€€€€€ €!€€€€ €€!€€€€€€€€€€€€€€€€&€*€ €k€€€€ €€€€€€€€€€€€€€€€€!€ €€€"€€€€€€€€€€€€€€ €€ €€€ €€"€ €€€€€€€€€€€€€ €€€€€€€€€€!€€€€€€€€ € € €€€€€€€€€€€€€€€€€%€(€€k€€€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€€€ €€€ €€€€"€€€!€€€€€€€€€€ €€€€ €€€€€€€€#€€€€€ €€€€€€€€€ €€€€€€ €€€€€€€€€€€€€ €*€&€€i€!€€€€€€€ € €€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €!€ €€"€ €€€€€€€€€€€ €€€ €€€!€ €€€"€€ € €€€€€€€€€€€€€€€€€€€€€€€€€)€(€€i€ €€€"€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€"€€€ €€€€!€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€*€'€ €i€"€€ €€€€ €€!€€€€€€€€ €!€€€€€"€€€ €€!€€€€!€ €€ €€€€€ €€€€€ €€€€€!€€€!€€€€ €€€ €€€€ €€€€€€€!€€€€€€€€€€€ €€€!€€€€€€€€€€€!€*€'€€i€€€ €€€!€€€!€€€€€€€!€€€€€€€ € € €€€€€!€€€€€€€€€€ € € €€€ €€€€€ €€ €!€€€€ €€€#€€ €€€ €€"€€"€€ €€€€€€€ €€€ €€€€€€ €€€€€€€€€€*€(€€g€€€€€ €€€€€€€€ €€€€€€€€€€€€ €€!€€€€€€ € €€€€€€"€€€€!€ €€€ €€€€!€€ €€€€€€€€€€€€€ €€€!€€ €€€€€€€€€€€€€€€€€€€!€€€€€€#€(€ €j€ €€€!€€€€€€€€ €€ €€€€€ €€€€€€ €€€ €€€€ €€€€ € €€€€€€€ € €"€!€€€€!€ €€€€€€€!€€€€€€€€ €€ €€!€€€€€€€€€€€€€€€€€€€€ €€€€€ €(€&€€g€ €€€€€€€€€€€"€€€€€ €€€€€€€€ €€€€!€€€€€€€€€€#€ €€€€€€€ €€€€€€€"€ €€€ €€€€€€ €€ €€€€€"€€€€€€€€€€€€€€€€€€€€€€ €€€€)€*€€k€€!€€ €€€€€ €€ €€ € €€€ €€€€ €€€€€€€€€€!€ €€€ €€€€€€ € €€€€€€€€€€€ € €€€€€€€€€€ €€€€ €€#€€€€€ €€€ €€€€€ €€€€€€€€€€€€"€ €&€'€€h€€€€€€€€€#€€€€€ €€ €€€ €€€€€€€€ €€€€ €€€ €€ €€€€ €€€€€€€ € €€€€ € €€€€€€€€€€€€€€ €€€ €€€ €€€€!€€€ €€€€€€€€€€€€€€€€€)€(€€j€ €€€€€ €€€€€€€ €€ €€€ €€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€ €€€€€ € €€€€€€€€€€ €€€ €€ €€€€€€€!€€€€€€€€€€€€€ €€€€€€€(€)€€i€ €€€€€€€€€€€€€€€ €€!€€€€"€€€€€€€€€ €€ €€€€€€€ €€ €€€!€€ €€!€!€€ €€ €"€€€ €€€€"€€€ €€€€€€€!€€€€€€€€€€€€€€€€€€€€€€ €€€(€(€€i€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€!€€€€€€€€€ €€€€€€ €€€ €€€€ €!€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €'€'€€h€ € €€€€€ € €€€€!€€€€€€€€€€€€€€€ € €€€€€€€ €€€!€€€€!€!€€€€€€€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€ €!€€€€ €€€€€€€€€€€€€€€€'€)€€f€€€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€!€€€€€"€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€(€'€€h€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€"€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €"€ €€ €€€€€€!€€€€€€€€€€€€€€€€€€€&€&€€e€ €€€ €€€€ €€€€€!€€ €€ €€€€€€€€€ €€€ €€€€€€€€€€€ €€€€€ €€€!€ €€€€€€ €€€€!€€"€€€€€€€€ €€€€ €€€ €€€€€€€€ €€€€€€€€€ €€€!€%€(€€i€ €€€ €€€€€€€€€!€€€€ €€€€€€€ €€ € €€€€€€€ €€€€ €€€€!€ €€€€€€ €€€ €€ €€€"€€€#€€€ €€€!€€€€€€€€€€€€€€ € €€€€€€€ €€€€€ €€€!€&€+€ €h€ €€€€ €€€€€€€€ €€€€€€€€€ €€!€€€€ €€€€€€€€€€€ €€€!€€€€€€ €€ €€€€"€€ €€ € €€ €€€€€€€€€ € €€€€€€€€€€€€€€€€€€€ €€€€€€€)€(€€j€€€€€€!€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€!€€€€€€€€€€€€€€€ €€€€€€€€€€!€ €€€!€€€€€€€€€€€€€€€€€%€)€€j€ €€€ €€€€ €€€€€€€€€€€!€€€ €!€€€€ €€ € €€€€€€€€€ € €€€€ €€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€)€)€€f€ €€€€€€€ €€€€€€ €€€€€€€ €€€€€ €€€€€€€€€€"€€€€€ €€€!€€ €€€€€€€ €€€ € €€€€!€€€€€€€ €€ €€ €€€€€€ €€€€€€€€€€€€€€€€ €€€)€(€€j€€€€€€€€€€!€ €€€!€€€ €€€€€€€!€€€€€€ €€€€€€€ €€€ €€€€€ €€€ €€€€€"€€€€€€€€€€€€€ €€€€ €€!€€€€€€€€€€€€€€€€€€€€€€€ €"€$€(€€i€ €€ €€€€ €€ €€€€€!€€€€ €€"€ €€€ € €€€!€€€€ €€€€€€€€€€€€€ €€€!€ €€€€€ € €€€"€€"€€€€!€€€ €€€ € €€€!€€€€€€€€€€€€€€€€€ € €€€ € €(€)€€e€€€€€€ € €€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€!€€€€€€!€ €€€€ €€€!€€€ €€€€!€€€€ €€€!€€ €€ €€€€€€€€€€ €€€€€€€€€€€€€€ €€ €'€+€€g€ €€€€€€€!€€€€€ €€€€€€€€€€!€€€ €€€ €€€€€€€€€€€€!€€"€#€€€€ €€€€ €€€ €€€!€€€ €€€€"€ €€€ €€€€€ €€€€€€€€€€€€€ €€€€€€€€€!€*€'€€g€"€€ €€€€ €€€€€€€€!€€€ €€€!€ €€€€€€€ €€€!€€€ €!€ €€€€ €€ €!€€€ €€€€€€€€€€!€€€€ € €€€€€€€ €€ €"€€€€€€€€€€€€€ €€€€€€€€€€€!€'€'€€h€€€€ €€€€€€€ €€€€€€€€€!€€€€€€€€ €€€€€€€!€€€€ €€€€#€€€ €€€€ €€€ €€€ €!€€€€€€ €€€€ €"€€€ €€€!€€!€!€ €€€€€€€"€€€€€€€€€€€#€(€'€€h€€ € €€€"€ €€€ €€€ €€€€ €€€ € €€ €"€€€€ €€!€!€€€€€€€"€ €€€ € €€€€€€€ €€€€€€"€ €€!€€€€€ €€€€€€!€€€ € €€€ €€€ €€€€!€€€€€€€€€€€€"€(€*€€h€ € €€€€€€ € € €!€€!€€€€!€€€!€€€"€€€!€€€€€€€ €€€€ €€€€€€ €€ €€€ €€€ €€€€€€€€€€€€"€€ €€€€€€€€€ €€€€€€€€€€"€€€€€€€€€€€€€'€)€€h€€€€€€€€€€€€€€€!€€€€!€€€€€€€ €€€€€€€ €€€€€€€€!€€€ €€€ €€€€€€€€€€€€€€ €€€€€ €€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€€€(€*€€h€€€€€€€ €€€€ €€€€€€€"€€€ €€€€!€€€€€€€€€€€€€€!€ €€€€€€ € €€€!€€ €€€€€ €€€€€€€€€€€ €€€ €€€€ €€€ €€€€€€€!€€€€€€€€ €€€"€'€&€€j€€ €€€€€ €€€€!€€€€€€€€€€€!€€€€€€ €€€€€€ € €€€€!€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€€€€!€€€€€ €€€€€€ €€€ €"€€€ €€€€€€€€€%€&€€i€€!€€€€ €€€ €€€€€€€€€€€#€€€€"€€€€€€"€€€€ €€€€!€€€€€€€!€€€!€€€ €€ €€€"€€€€€€€€€€!€€€€€€€"€€€ €€€€€ €€€€€€€€€€€ €€€€€%€*€€i€€€€€€€€€€€€ € €€€ €€€€€€!€ €€€€€€€!€€€€!€€ €€€€€€€€€€€€ €€ €€ €€€ €!€€€€ €€ €€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€ €€"€(€*€€f€€€ €€€€€€€€€€ €€€€€€€€€ €€€ €€€€ €€€ €€€ €€"€ €€ €€ €€€ €€ €€€ €€€€ €€€€ €€€€€€ €€"€ €"€€€€"€€ €€€€€€€€€€€€!€€€ €€€€€€!€ €)€(€€g€€€€€ €€€€€€€€€€"€€€!€€€€!€€€€ €€€€€€ €€€€€€ €€€ €€ €€!€!€€€€€€"€ €"€€€ €€€€ €€€€€€€€€€!€€ € €€ €€€ €€€€€€€€!€€ €€€ €€€€"€*€,€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 10000 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 11.0 / minimum value of good pixels GOODMAX = 130.0 / maximum value of good pixels GOODMEAN= 30.952999 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 2 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 100 / length of constant array axis 1 NPIX2 = 100 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 50.997 / x-coordinate of reference pixel CRPIX2 = 51.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -467.0 / offset in X to subsection start LTV2 = -465.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 30 / length of first data axis NAXIS2 = 30 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 14.000000 / the minimum value of the data DATAMAX = 5885.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= ' ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 168.996 / position angle of image y axis (deg. e of n) SUNANGLE= 0.000000 / angle between sun and V1 axis MOONANGL= 0.000000 / angle between moon and V1 axis SUN_ALT = 0.000000 / altitude of the sun above Earth's limb FGSLOCK = ' ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= ' ' / number of gyros scheduled, T=3+OBAD REFFRAME= ' ' / guide star catalog version DATE-OBS= '2016-06-06' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:33:04' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.754535630702E+04 / exposure start time (Modified Julian Date) EXPEND = 5.754535630818E+04 / exposure end time (Modified Julian Date) EXPTIME = 0.100000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / TARGET ACQUISITION PARAMETERS TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 515.5 / fsw located subarray axis 2 coord. of aperture APERLKA1= 536.997 / axis 1 detector pixel of acq aperture center APERLKA2= 516.001 / axis 2 detector pixel of acq aperture center MAXCHCNT= 1170.0 / counts in the brightest checkbox BOPOFFA1= 0.000000000000E+00 / axis 1 offset (arcs) object moved off aperture BOPOFFA2= 0.000000000000E+00 / axis 2 offset (arcs) object moved off aperture OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLWA2= 30 / Target acquisition X pixels to slew / ENGINEERING PARAMETERS OSWABSP = 1236385 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.39848 / (V) CEB last gate C&D OCBSWALV= -5.95722 / (V) CB summing well A Lo OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCCDHTAV= 0.000000 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 14.0 / minimum value of good pixels GOODMAX = 5885.0 / maximum value of good pixels GOODMEAN= 103.106667 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €€€!€€€€ €€€ € €€€€!€"€!€%€!€ €#€%€ €"€ €#€*€-€€i€€€€€€€ €!€€€€€ €"€!€#€$€ €#€#€#€#€"€#€!€%€,€,€€j€€#€€€€€ €€€€€ €!€€ €!€#€ €€"€ €!€"€#€€!€+€*€€k€€€ €€€€€€€€€"€ € €"€€€"€%€"€€€"€"€€"€*€(€€i€€"€ €€!€€€€€€€€€!€ €!€&€ € €#€#€€ €!€€ €.€*€€j€ €€€€€€ €€€€€€€€!€#€ €!€€€€ € €€€#€(€*€€j€€ €€€ €€€€!€€€!€€€#€#€ €€€ €€€€€€"€*€+€€h€ €€€ € €€€€€€€!€!€€#€#€$€"€!€€€€ €!€€$€*€(€€i€ €€€€€!€€ €€€ €!€€#€#€$€%€#€€!€!€€€€€#€(€(€€k€€€€!€€€ €€€€€!€ €€#€"€"€#€!€!€€€€€€€(€*€€h€€!€€€€ €!€€!€€€€€#€(€+€$€"€#€€!€€€ €€€)€,€€f€ €€€€ € €€€€€!€ € €%€,€2€,€)€#€€€€€€"€ €&€*€€h€ € €€€€€€€€ €#€€€'€9€L€X€=€+€ € €€!€"€!€#€'€,€€i€€ €€ €€€"€€€"€$€$€(€ƒà‚Þ‚¨n€V€*€!€€"€"€€%€*€-€€e€€!€"€€€€ € €!€#€&€.€N‚‰Ú¢`‡n€E€(€€%€%€ €#€+€+€€l€€ €€€ €"€€ €"€#€(€3€b‚ÖŽ–ý–2Š€<€.€%€!€€€€ €€"€+€*€€k€€€€€€€€€!€€!€ € €"€ €&€%€ €"€ € €€!€€€!€+€+€€k€€€€€"€€€ €!€€€€€€ €"€€€ €€ €€€!€!€!€+€*€€g€€€€€ €€ €€€€!€€"€"€ € €€ €$€€€€€€€!€(€*€€i€ € €€€ €€€€!€€€!€€ € €!€€"€#€€€€ € €€ €(€(€€h€ €€€ €€€ €!€€€€€€€€ €€ €!€€€ €€€€"€&€)€€g€"€€€!€€€€!€€€ €€€€ €€€ €€€€"€€€!€"€'€,€€f€€€€!€€ €€€€€ €€€€€€€!€€€€€€!€ €!€+€+€€i€€€€€€€!€€€€€€€€€€€€€€€€€€!€"€'€+€€k€!€€€€€€€ €€€!€€€€€€€€€€€ €€ €€€)€-€€f€€€!€!€€€!€€€€€€€!€€€€!€€€!€€€!€!€€)€+€€gXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 900 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 14.0 / minimum value of good pixels GOODMAX = 5885.0 / maximum value of good pixels GOODMEAN= 103.106667 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 3 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 30 / length of constant array axis 1 NPIX2 = 30 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 15.997 / x-coordinate of reference pixel CRPIX2 = 16.001 / y-coordinate of reference pixel CRVAL1 = 2.897528976868E+02 / first axis value at reference pixel CRVAL2 = 4.163172208435E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 1.38416E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 2.69225E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.69151E-06 / partial of second axis coordinate w.r.t. x CD2_2 = -1.38454E-05 / partial of second axis coordinate w.r.t. y LTV1 = -502.0 / offset in X to subsection start LTV2 = -500.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.897528976868E+02 / RA of aperture reference position DEC_APER= 4.163172208435E+01 / Declination of aperture reference position PA_APER = 1.689963937500E+02 / Position Angle of reference aperture center (de END \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocu252cmq_spt.fits b/lib/stistools/tests/data/tastis/ocu252cmq_spt.fits deleted file mode 100644 index fe687116..00000000 --- a/lib/stistools/tests/data/tastis/ocu252cmq_spt.fits +++ /dev/null @@ -1,21 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 3 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocu252cmq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocu252cmq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'BD+41-3306 ' / proposer's target name RA_TARG = 2.897528976868E+02 / right ascension of the target (deg) (J2000) DEC_TARG= 4.163172208435E+01 / declination of the target (deg) (J2000) ECL_LONG= 303.534585 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = 62.790028 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 73.360821 / galactic longitude of the target (deg) (J2000) GAL_LAT = 12.890520 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV28X50O2 ' / aperture used for reference position ELON_REF= 303.534585 / ecliptic longitude at reference position (deg) ELAT_REF= 62.790028 / ecliptic latitude at reference position (deg) GLON_REF= 73.360821 / galactic longitude at reference position (deg) GLAT_REF= 12.890520 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14143 / PEP proposal identifier LINENUM = '52.001 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CU2' / program id (base 36) PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '52' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'CM ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ ' / Support schedule specified operating mode SS_APER = 'F28X50O2 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 0 / proposed number of peakup search steps SS_STPSZ= 0.000000 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 486 / proposed axis1 detector pixel of subarray startSS_A1SZE= 100.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 465 / proposed axis2 detector pixel of subarray startSS_A2SZE= 100.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= 'CENTROID ' / proposed target acquisition centering method SS_PKCNT= ' ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 5 / word 11/14 (0-255) PSTRTIME= '2016.158:08:29:17 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.158:08:34:13 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV28X50O2 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14143_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.898654412750E+02 / right ascension of v1 axis of st (deg) DEC_V1 = 4.165033721086E+01 / declination of v1 axis of st (deg) PA_V3 = 34.014980 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'N2JU001340F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'N2K1001229F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 1.689963937500E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -2.508432356619E+03 / position of space telescope x axis (km) POSTNSTY= -5.546909811184E+03 / position of space telescope y axis (km) POSTNSTZ= -3.284351470348E+03 / position of space telescope z axis (km) VELOCSTX= 6.843993378416E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -3.277533135345E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 3.082759658532E-01 / vel of space telescope along z axis (km/sec) RA_SUN = 7.461919451146E+01 / right ascension of the sun (deg) DEC_SUN = 2.268387314977E+01 / declination of the sun (deg) RA_MOON = 9.279329544516E+01 / right ascension of the moon (deg) DEC_MOON= 1.858341510111E+01 / declination of the moon (deg) VELABBRA= 23.316780 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.897528976868E+02 / right ascension of reference object (deg) DEC_REF = 4.163172208435E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.913536000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.121293582969E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.619373693178E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.860182778099E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.597782135181E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.793517887555E-01 / cosine of inclination ECCENTRY= 7.895152626542E-04 / eccentricity ECCENTX2= 1.579030525308E-03 / eccentricity times 2 ECBDX4D3= 6.561759773775E-10 / eccentricity cubed times 4/3 ESQDX5D2= 1.558335874910E-06 / eccentricity squared times 5/2 ECBDX3 = 1.476395949099E-09 / eccentricity cubed times 3 FDMEANAN= 1.748140027374E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.334794641815E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.124391652574E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 1.999866633058E-01 / argument of perigee (revolutions) MEANANOM= 4.080686235601E+00 / mean anomaly (radians) RCARGPER= 1.123310687745E-07 / rate change of argument of perigee (revs/sec) RASCASCN= 1.549386771937E-02 / right ascension of ascending node (revolutions)SINEINCL= 4.761726909563E-01 / sine of inclination SEMILREC= 6.917036617656E+06 / semi-latus rectum (meters) TIMEFFEC= 9.914007350000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.918161570000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'F28X50O2 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM;K III-I 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'EXTRA-SOLAR PLANETARY SYSTEM 'TARKEY2 = 'K III-I 'ALIAS1 = 'HIP94931 ' / synonym for target name ALIAS2 = 'KEPLER-444 ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 8.860000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 1.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 2.803000000000E-02 / target parallax from proposal RA_PROP = 2.897522879167E+02 / target right ascension from proposal (degrees) DEC_PROP= 4.163460277778E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 9.894000000000E-02 / target proper motion from proposal (degrees RA)MU_DEC = -6.324900000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000.0' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -1.211900000000E+02 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Probing the nature and evolution of the oldest known planetary syste'PROPTTL2= 'm through Lyman-alpha observations 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136324000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.247879000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350562000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369970000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= 2.678230000000E-07 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= -2.677500000000E-07 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= -1.039000000000E-04 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= 1.040000000000E-04 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.059452000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -3.973522400000E+03 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.858067000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -3.993700400000E+03 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.217118000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 4.061514400000E+03 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.418502000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 4.081686000000E+03 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocu252cmq ' / rootname of the observation setEXPNAME = 'ocu252cmq' / 9 character exposure identifier ASN_MTYP= 'ACQ ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 56 / Slit Number SLITSIZE= '28x50 ' / aperture field of view TFPFNAME= 'F28X50O2' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = 'POINT ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'NONE ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 526.8 / fsw located subarray axis1 coord. of target TARGA2 = 512.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 10.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.2198 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1399 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.41635 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.59135 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.86827 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0287 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.725 / (dgC) calibration lamp motor 2 temp OENCAFTT= 16.5854 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.4375 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.84297 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.9125 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.05 / (dgC) Fitting A temp OFITBT = 18.2146 / (dgC) Fitting B temp OFITCT = 6.17656 / (dgC) Fitting C temp OHDM15V = -15.1156 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.75542 / (V) Hold mode regulator + 5V OKMDITBT= 24.749 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0929 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 32.3208 / (dgC) M1 heater control temp OM1HTRW = 0.398417 / (w) M1 heater power OM2HTRT = 32.05 / (dgC) M2 heater control temp OM2HTRW = 0.0175056 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.0406 / (dgC) MEB 2 radiator temp OMBCSPT = 35.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 29.599 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6672 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.45 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.75 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.15 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1153 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.0958 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 24.3094 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.4398 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.45 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.10251 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.2375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.0389 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.3875 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0250069 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.8 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 2.43044 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 1.0E-05 / (w) Thermal controller power, zone 3B OTECINV = 6.13101 / (V) TEC input voltage OTECTCV = -7.71486 / TEC temp control voltage OMBMC15V= 14.6871 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.8413 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8819 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.2688 / (V) LVPS CEB +15V OPSCB35V= 31.7307 / (V) LVPS CEB +35V OPSCB5V = 4.7992 / (V) LVPS CEB +5V OPSCM15V= -15.4756 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.070232 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.42149 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -40.928 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.488889 / (A) M1 +5V current OM1P5V = 5.20147 / (V) M1 +5 volts OM1P8VAC= 0.736508 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 34.0539 / (dgC) M1 charge amplifier temp OM1DCDT = 34.7865 / (dgC) M1 decoder temp OM1MCET = 33.0771 / (dgC) M1 MCE temp OM1LVPST= 37.9611 / (dgC) M1 LVPS temp OM1HVPST= 36.7401 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 4.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.73626 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475458 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73602 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 34.5423 / (dgC) M2 charge amplifier temp OM2DCDT = 35.2749 / (dgC) M2 decoder temp OM2MCET = 33.3213 / (dgC) M2 MCE temp OM2LVPST= 38.6937 / (dgC) M2 LVPS temp OM2HVPST= 35.5191 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.1703 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.0765 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0547 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1815 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.13002 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0839 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.8833 / CB clock X pwb temp OCBCLKA2= 30.6671 / CB clock Y pwb temp OCBCMAA1= -14.8626 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.12515 / (V) CB clock drive X +5V OCBCPAA1= 14.7942 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9113 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.12515 / (V) CB clock drive Y +5V OCBCPAA2= 14.7942 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.98929 / (V) CEB last gate A&B OCBLGCDV= -3.38383 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.07867 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0585347 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.95236 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.90388 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.96712 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.00587 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91847 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.04479 / (V) CB serial phase 3D Lo V OCBSABHV= 4.90388 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95253 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.0765 / (V) CB state machine 2 +5V OCBSWAHV= 4.90874 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.92803 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.0156 / (V) CB summing well C Lo OCBSWDHV= 4.98172 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.768 / CEB timing pwb temp OCLM5V = -5.10585 / (V) Calibration lamps -5V voltage OCLM5VC = -0.000412465 / Calibration lamps -5V current OCLP30V = 29.7652 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00460794 / Calibration lamps +30V current OCLP5V = 5.27597 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 2562157 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00452746 / (A) Slit Wheel motor current OSWMVEL = -0.00666193 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61733 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1536 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 56 / Control section slit position OCSDQEXJ= 2354 / Control section data queue extract OCSDQINJ= 2354 / Control section data queue insert OCSXQEXJ= 29 / Control section Expos Que Extract OCSXQINJ= 30 / Control section Expos Que Insert OCSOBSQ = -10268 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 41521 / Control section dump pointer OCSFILLJ= 41521 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 227 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFClose' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCU252CMWã*Õ ‡ýDý(ÊIddÑæ"Ê¥ »°¼ÃÃÐÁpÂpÞàÌ0Ì­±`¿à² €°€ªð¼@`Þ ½Î ÈàÈàÈàÑ¢ Ñ@Ÿp¿Ðþ ¨ À Á@àÈ àÒÑð¹@ѽ0µp¸Ð¹áápÍÐÏ ÍàÍ`§³ð¦²°¨Å ¨ÐŸP©€¨ ¥àŸœ€@ÞÐàP¿0Ü æ`¾   ( -þž —¾3F!d «gÒR È Í ÐÆêíæúõ -7c Ø ™Ñ »¿18 Õ_›G Æ Ì ÑÅìïçýðÔÀÃ^À^ð^ð_@„€ê°%@Á°ÚÀï€%`Â`ÚðÔàÀˆÀ„`!ÂP߀ °ÂP߀LðT°˜°€˜°€˜ €˜À€F@¦ F@¦™À€À™à~`h~h` f`€f ~`h@~`h``f`e ~h@@f €`Á°~ h`~@h `f`€fà€À§€À¦à}Ð>àà0Ä@€€°gmcÀ°€@€0b9 -³sŠŸþñ%_ld``€„ðñ8 2 2Wä`‘¢1¢1¥ÌàßãI‚__–d=ÿ"Ê¥ »°¼€ÃÃÐÁpÂpÞàÌ@Ì ­±`¿à²0€°€ªà¼@!€à°¿ Î ÈàÈàÈàÐp¡0Ó¡ ¿Ðþ0¨À Á@ÐÈ àÑðÑð¹@ѽ0µ€¸Ð¹á áàÍàÏ ÍàÍ`©µ ¥0± ¨Ðư¨`žà¨°¨0§ŸPßàÀ¾Àݰêའ  ( -ÿž —¾3C!d «gÕR È Í ÐÆêíæúõ -7c Ø ™Ñ »¿18 Ô_›G Æ Ì ÑÅìïçýðÔÀÃ^À^ð^ð_@„€ê°%@Á°ÚÀï€%`Â`ÚðÔàÀˆÀ„`!ÂP߀ °ÂP߀LðT°˜°€˜°€˜ €˜À€F@¦ F@¦™À€À™à~`h~h` f`€f ~`h@~`h``f`e ~h@@f €`Á°~ h`~@h `f`€fà€À§€À¦à}Ð>€à€ ÃЀ €gmcÀ €P~Àb9 -³sŠŸþñ%_l d  €…ñ8 2 2Wä`‘¢1¢1¥ÌàßäF‚__–d=ÿ`8m°3Á”æ¢ -UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 2 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocu252cmq' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 10965 / Number of words NLINES = 12 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 100 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 100 / subarray axis2 size in unbinned detector pixelsCORNERA1= 486 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 465 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 56 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 533.1 / fsw located subarray axis1 coord. of target TARGA2 = 515.1 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 3 / Size of checkbox for finding algorithms INTEG = 10.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.2198 / (dgC) CEB Radiator temp OCLLMP1T= 10.8197 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.46154 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.63654 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.86827 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0287 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 16.5854 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.4375 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.7625 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.9125 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.05 / (dgC) Fitting A temp OFITBT = 18.2625 / (dgC) Fitting B temp OFITCT = 6.17656 / (dgC) Fitting C temp OHDM15V = -14.8723 / (V) Hold Mode Regulator - 15V OHDP15V = 14.7747 / (V) Hold mode regulator +15V OHDP5V = 4.78461 / (V) Hold mode regulator + 5V OKMDITBT= 24.749 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 30.5333 / (dgC) M1 heater control temp OM1HTRW = 0.0350012 / (w) M1 heater power OM2HTRT = 33.0792 / (dgC) M2 heater control temp OM2HTRW = 0.335167 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.0406 / (dgC) MEB 2 radiator temp OMBCSPT = 35.55 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 29.599 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6167 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.75 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.15 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1736 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1736 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 24.951 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 24.8938 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.0132 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.45 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.74835 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.4125 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.0157 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.7375 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.335062 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.3 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.79489 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.4625 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.59249 / (w) Thermal controller power, zone 3B OTECINV = 6.24012 / (V) TEC input voltage OTECTCV = -7.74415 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.8965 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.738 / (V) LVPS CEB +15V OPSCB35V= 33.4822 / (V) LVPS CEB +35V OPSCB5V = 5.59219 / (V) LVPS CEB +5V OPSCM15V= -14.4929 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.485 / (V) M1 Low bias voltage OM1M15VC= 0.070232 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.42149 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -40.9768 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.490598 / (A) M1 +5V current OM1P5V = 5.20147 / (V) M1 +5 volts OM1P8VAC= 0.736264 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 34.2981 / (dgC) M1 charge amplifier temp OM1DCDT = 34.7865 / (dgC) M1 decoder temp OM1MCET = 33.0771 / (dgC) M1 MCE temp OM1LVPST= 38.2053 / (dgC) M1 LVPS temp OM1HVPST= 36.7401 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475214 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73602 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 34.5423 / (dgC) M2 charge amplifier temp OM2DCDT = 35.5191 / (dgC) M2 decoder temp OM2MCET = 33.3213 / (dgC) M2 MCE temp OM2LVPST= 38.6937 / (dgC) M2 LVPS temp OM2HVPST= 35.5191 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.7024 / (V) CEB A&B Amp Bias OCBABODV= 15.7029 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 31.1703 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08137 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.1912 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.10569 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.8347 / (V) CEB C&D output diode OCBCLKA1= 32.8516 / CB clock X pwb temp OCBCLKA2= 30.6354 / CB clock Y pwb temp OCBCMAA1= -14.8334 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.10569 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.8723 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.10569 / (V) CB clock drive Y +5V OCBCPAA2= 14.7844 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.45848 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.029238 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= 0.0097069 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.89901 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95253 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.0156 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.03506 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.92803 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.9282 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.94766 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00737781 / (V) CB state machine 1 +5V OCBSM2PV= 5.18353 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.92803 / (V) CB summing well A Lo OCBSWBHV= 4.9282 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.94766 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.99128 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.02029 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.7998 / CEB timing pwb temp OCLM5V = -5.16423 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0232989 / Calibration lamps -5V current OCLP30V = 29.5512 / (V) Calibration lamps +30V voltage OCLP30VC= -0.0147013 / Calibration lamps +30V current OCLP5V = 5.22732 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 2562156 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00331135 / (A) Slit Wheel motor current OSWMVEL = 0.0197627 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61733 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 3584 / CCD Shutter commanded position OSCRSVP = 3584 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 56 / Control section slit position OCSDQEXJ= 2368 / Control section data queue extract OCSDQINJ= 2368 / Control section data queue insert OCSXQEXJ= 29 / Control section Expos Que Extract OCSXQINJ= 31 / Control section Expos Que Insert OCSOBSQ = 22502 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 41521 / Control section dump pointer OCSFILLJ= 41521 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 229 / Control section exposure counter OTAFLUXQ= 0 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCU252CMWå*Õ ‡ýDý1”IddÑæ"Ê¥ »°¼€ÃÃÐÁ`ÂpÞàÌ0Ì ­±`À² €°€ªà¼@ ðß`½ðÎ ÈðÈàÈàÏ€ŸàÒp¡À¿Ðþ ¨ À°Á0ÐÈ àÒÒ¹@ѽ0µ€¸Ð¹áðáðÍÐÏ ÍàÍ`¨ ¶¦±`§0Å« °§¦P¨ð¡ðàß€á ¿`åìÈP#`  ( -ÿž —¾3G!d «gÙR Ç Í ÐÆëíæûõ -7c Ø ™Ñ ¼¿18 Õ_šG Æ Ì ÑÅìðçýðÔÐÃ^À^ð^ð_@„€ê°%`ÁÀÚðï€%PÂÚàÔàȰ„P!0Âßp ðÂßpLÐT ˜ €˜°€˜  ˜À`F@¦ F ¥à™À€`™€ ~`h@}àh`@f`€eà~`h@~@h `f`eà~ h@ f €`Ã~@h ~ h` f€Àg€À¦À€ ¦à}à>  ß`}àà€0@glcÀ°€PPb9 -³sŠŸþñ%_ldàà€„ðñ8 @ @Wæ`‘¢1¢1¥ÌàßåI‚__–d=ÿ"Ê¥ » ¼€ÃÃÐÁpÂpÞàÌ0Ì­±`À² €°€ªà¼@ °àÀÀpÎ ÈàÈàÈðÐp¡ Ó¡@¿Ðþ ¨À°ÁPÐÈ0àÒÒ¹@Ñ ½0µ€¸Ð¹á áàÍàÏ ÍàÍ`© µ°¥± ¨Àư¨`žÐ¨¨§0Ÿ@œpßàÀ¾ÀÞëÀ¾   ( -ÿž —¾3F!d «gäP È Í ÐÆëíæúõ -7c Ø ™Ñ ¼¿18 Õ_G Æ Ì ÑÅìðçýðÔÐÃ^À^ð^ð_@„€ê°%`ÁÀÚðï€%PÂÚàÔàȰ„P!0Âßp ðÂßpLÐT ˜ €˜°€˜  ˜À`F@¦ F ¥à™À€`™€ ~`h@}àh`@f`€eà~`h@~@h `f`eà~ h@ f €`Ã~@h ~ h` f€Àg€À¦À€ ¦à}à>€`à‚Ãð€ €gmcÀ €0b9 -³sŠŸþñ%_l d ð€…ñ8 @ @Wæ`‘¢1¢1¥ÌàßæF‚__–d=ÿ`8m°3ÁÓæc -UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 3 / extension version number ROOTNAME= ' ' / rootname of the observation setEXPNAME = 'ocu252cmq' / 9 character exposure identifier ASN_MTYP= ' ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1865 / Number of words NLINES = 2 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 30 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 30 / subarray axis2 size in unbinned detector pixelsCORNERA1= 521 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 500 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = ' ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 21 / Slit Number SLITSIZE= ' ' / aperture field of view TFPFNAME= ' ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 2 / CCD AMPLIFIER 1 Gain CCDGAIN2= 2 / CCD AMPLIFIER 2 Gain CCDGAIN3= 2 / CCD AMPLIFIER 3 Gain CCDGAIN4= 2 / CCD AMPLIFIER 4 Gain BINAXIS1= 0 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 0 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 0 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= ' ' / Search method for peakups NUMSTEPS= 0 / Number of peakup search steps PEAKCENT= ' ' / Centering method used in Peakup Acquistion PEAKSTEP= 0.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 0.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 536.5 / fsw located subarray axis 1 coord. of aperture APERA2 = 515.5 / fsw located subarray axis 2 coord. of aperture CCDBIASS= F / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 1.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 148 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 23.2198 / (dgC) CEB Radiator temp OCLLMP1T= 10.8683 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 10.1885 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 5.46154 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 4.87404 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 6.59135 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.91346 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.0287 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6786 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6786 / (dgC) calibration lamp motor 2 temp OENCAFTT= 16.6333 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.4375 / (dgC) Enclosure aft inner panel temp OENCAOPT= 3.6418 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.8688 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.05 / (dgC) Fitting A temp OFITBT = 18.2625 / (dgC) Fitting B temp OFITCT = 6.17656 / (dgC) Fitting C temp OHDM15V = -15.0767 / (V) Hold Mode Regulator - 15V OHDP15V = 14.5801 / (V) Hold mode regulator +15V OHDP5V = 4.76028 / (V) Hold mode regulator + 5V OKMDITBT= 24.7995 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0929 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0929 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 30.5875 / (dgC) M1 heater control temp OM1HTRW = 0.0375006 / (w) M1 heater power OM2HTRT = 32.9708 / (dgC) M2 heater control temp OM2HTRW = 0.314083 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 20.0974 / (dgC) MEB 2 radiator temp OMBCSPT = 35.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.03758 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 29.599 / (dgC) MEB MIE processor temp OMBP15V = 14.8817 / (V) Operatore mode regulator +15V OMSC1MT = 21.6167 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.6672 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.4 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.3745 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.3125 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.4 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.75 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.15 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1931 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1931 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.425 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.3552 / (dgC) Slit wheel motor temp OTCZ1AT = 25.0656 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 6.11439 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.2781 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 4.6809 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.6375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 14.1548 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.775 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.288687 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.86359 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.5 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.609667 / (w) Thermal controller power, zone 3B OTECINV = 6.0219 / (V) TEC input voltage OTECTCV = -7.75392 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.87704 / (V) MEB/SES mechanisms +5V OPSCB15V= 15.3001 / (V) LVPS CEB +15V OPSCB35V= 32.6064 / (V) LVPS CEB +35V OPSCB5V = 5.67976 / (V) LVPS CEB +5V OPSCM15V= -14.8821 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.070232 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.42149 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -40.928 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.490598 / (A) M1 +5V current OM1P5V = 5.19902 / (V) M1 +5 volts OM1P8VAC= 0.736508 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 34.2981 / (dgC) M1 charge amplifier temp OM1DCDT = 34.7865 / (dgC) M1 decoder temp OM1MCET = 33.0771 / (dgC) M1 MCE temp OM1LVPST= 38.2053 / (dgC) M1 LVPS temp OM1HVPST= 36.9843 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727228 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.73626 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475458 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73602 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 34.5423 / (dgC) M2 charge amplifier temp OM2DCDT = 35.5191 / (dgC) M2 decoder temp OM2MCET = 33.3213 / (dgC) M2 MCE temp OM2LVPST= 38.6937 / (dgC) M2 LVPS temp OM2HVPST= 35.5191 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.57817 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 31.2021 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1815 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2204 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.05218 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.045 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.8347 / (V) CEB C&D output diode OCBCLKA1= 32.8833 / CB clock X pwb temp OCBCLKA2= 30.6671 / CB clock Y pwb temp OCBCMAA1= -14.9404 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.05704 / (V) CB clock drive X +5V OCBCPAA1= 14.7942 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9307 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.06191 / (V) CB clock drive Y +5V OCBCPAA2= 14.765 / (V) CB clock drive Y +15 analog V OCBLGABV= -4.00882 / (V) CEB last gate A&B OCBLGCDV= -3.39848 / (V) CEB last gate C&D OCBP1LHV= 1.92864 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0755 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0390036 / (V) CB reset gate AB Lo OCBRCDHV= 11.9191 / (V) CB reset gate CD Hi OCBRCDLV= 0.00482412 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.9329 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.9282 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94749 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.00587 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02533 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93307 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.92803 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95739 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91847 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.97199 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03019 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00251285 / (V) CB state machine 1 +5V OCBSM2PV= 5.0911 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.95722 / (V) CB summing well A Lo OCBSWBHV= 4.91847 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -6.98137 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 27.768 / CEB timing pwb temp OCLM5V = -5.19342 / (V) Calibration lamps -5V voltage OCLM5VC = 0.00263906 / Calibration lamps -5V current OCLP30V = 29.2398 / (V) Calibration lamps +30V voltage OCLP30VC= 0.184762 / Calibration lamps +30V current OCLP5V = 5.15921 / (V) Calibration lamps +5V voltage OCLPDKX = 'HITM1 On' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1236385 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.0975 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00574358 / (A) Slit Wheel motor current OSWMVEL = 0.0182947 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 115 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 159 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61733 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1535 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 21 / Control section slit position OCSDQEXJ= 2383 / Control section data queue extract OCSDQINJ= 2383 / Control section data queue insert OCSXQEXJ= 29 / Control section Expos Que Extract OCSXQINJ= 32 / Control section Expos Que Insert OCSOBSQ = 22504 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 41521 / Control section dump pointer OCSFILLJ= 41521 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA2 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 231 / Control section exposure counter OTAFLUXQ= 611 / Target acquisition flux count OTASLWA2= 30 / Target acquisition X pixels to slew OTASLWA1= 30 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 5121 / Target acquisition target x position OTATARA2= 5301 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCU252CMWçI‡ýDý>¦Iô "”¥ » ¼€ÃÃÐÁpÂ`ÞàÌ Ì ­±`À0²0€°€ªà¼@ Þ ½ ÎÈàÈàÈàÏŸðÒP¡ ¿Ðþ ¨À Á0ÀÈ àÒÑð¹@ѽ0µ€¸Ð¹ââÍÐÏ ÍðÍ`¨ð¶p¥°± §Åð«  § ¦©¢œÀß€á ¿ âÀé0Ép à  ( -þž —¾3F!d «gÙQ È Í ÐÆëíæûö -7c Ø ™Ñ ¼¿18 Õ_›G Æ Ì ÑÅìðçýðÔÀÃ^À^ð__P„ê°%`Â`Úðï€%PÀàÚàÔàÈÀ„` €À°ßp ÐÀ ßpL°T€˜°€˜°€˜ €˜À€F@¦ F@¥à™À€€™ €~`h€~ h  f €f ~Àh@~@h `f@eà~`h@Àf€pÁà~@gà~`h`Àf€Àg@€À§@€ ¦à}Ð=À@Þ`—ÐÂÀŸ@~RÝ¡À €0@b9 -³sŠŸþñ%_ld`_ø€„ðñ O O Wè`‘¢1¢1¥ÌàßçcµI‚__–d=¸¸C"”¥ » ¼€ÃÃÐÁ`Â`ÞàÌ Ì ­±`À@²0€°€ªà¼@€Þ½ÀÎ ÈàÈàÈàÏПÀÑà¡0¿Ðþ ¨À Á@ÀÈ àÒÒ¹@ѽ0µ€¸Ð¹âáðÍÐÏ ÍàÍ`¨`µð¦à²¦ðÅP«€¡¦Ð¦ ¨¡Ð›ðÀßá ¿€á`èÈ@  ( -þž —¾3F!d «gÏP È Í ÐÆëíæûö -7c Ø ™Ñ ¼¿18 Ô_H Æ Ì ÑÅìðçýðÔÐÃ^À^ð^ð_P„ê°%`ÁÐÚàï€% Á`Ú°ÔàÀˆÀ„` €Áp߀ Á€ßPLÐT˜À€˜°€˜ €˜À€F@¦ F@¥à™À€`™ € ~@h@~@h `f Àf`~`h@~@hÀ`f  eà~€h@`eÀ€@Áð~@h€~€h``f€Àg €À§€À¦à}Ð= PÞ@—àÂП`°RÝ¡À €0°b9 -³sŠŸþñ%_l d Ÿø€„ðñ O O Wè`‘¢1¢1¥ÌàßècµF‚__–d=¸¸C`m°0Å#õæ’UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocui04xeq_raw.fits b/lib/stistools/tests/data/tastis/ocui04xeq_raw.fits deleted file mode 100644 index b7dd4cc3..00000000 --- a/lib/stistools/tests/data/tastis/ocui04xeq_raw.fits +++ /dev/null @@ -1 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocui04xeq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocui04xeq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'M62-VLA1 ' / proposer's target name RA_TARG = 2.553050795833E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.011405000000E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14086 / PEP proposal identifier LINENUM = '04.002 ' / proposal logsheet line number PR_INV_L= 'Strader ' / last name of principal investigatorPR_INV_F= 'Jay ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-07-22' / UT date of start of first exposure in file TTIMEOBS= '06:10:30' / UT start time of first exposure in file TEXPSTRT= 5.759125730138E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57591.25753286 / end time (MJD) of last exposure in the file TEXPTIME= 20. / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793002077546E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= '52X0.1 ' / aperture name PROPAPER= '52X0.1E1 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '52x0.1 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 540 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 899 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$08o1451co_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Dynamical Confirmation of a Stellar-mass Black Hole in the Globular 'PROPTTL2= 'Cluster M62 'OBSET_ID= '04' / observation set id TARDESCR= 'STAR;EMISSION LINE STAR;G III-I;LMXB;POPULATION II 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 0.000000000000E+00 / target parallax from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 5 / Number of peakup search steps PEAKSTEP= 75.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 43530.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 260.044708 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 32 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 17.000000 / the minimum value of the data DATAMAX = 2001.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.598 / x-coordinate of reference pixel CRPIX2 = 17.331 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.15426E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 8.10167E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 8.09944E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.15458E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 35.0572 / position angle of image y axis (deg. e of n) SUNANGLE= 137.003235 / angle between sun and V1 axis MOONANGL= 71.513893 / angle between moon and V1 axis SUN_ALT = 33.522270 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-07-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '06:10:30' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.759125730138E+04 / exposure start time (Modified Julian Date) EXPEND = 5.759125753286E+04 / exposure end time (Modified Julian Date) EXPTIME = 20.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1153479 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 18.388600 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 17.0 / minimum value of good pixels GOODMAX = 2001.0 / maximum value of good pixels GOODMEAN= 55.375977 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €"€$€$€"€#€%€%€!€(€%€"€#€'€(€)€F€Ç€æ€N€+€$€"€#€$€#€$€&€#€*€,€€j€$€$€#€"€%€$€$€#€"€"€)€)€#€'€*€L€¨€Æ€V€,€'€&€&€$€"€'€#€'€.€,€€n€!€(€!€"€!€#€$€%€$€'€$€'€%€(€'€J€‹€Œ€I€.€&€'€'€%€#€%€#€&€/€,€€k€%€%€!€$€&€$€#€$€#€#€,€*€"€(€+€F€‰€‰€H€)€(€&€"€%€&€'€"€D€1€,€€l€$€"€%€%€ €#€&€"€#€"€&€ €-€)€+€?€X€U€7€+€*€(€M€%€&€&€&€)€+€+€€q€ €&€#€%€#€%€ €"€$€#€"€)€(€'€1€<€g€[€E€0€*€%€*€&€&€&€%€#€-€.€€h€%€#€$€#€(€ €!€'€"€"€)€(€)€2€9€n€Ü€à€Y€2€(€'€#€'€%€#€'€&€.€,€€o€$€&€$€%€"€(€'€&€%€$€'€%€(€1€Z€¾˜„€„€2€)€,€(€$€$€$€&€"€-€.€€k€$€#€!€%€#€%€#€&€&€%€%€(€/€H€Æ‚̃ù‚$€Œ€2€+€*€'€&€&€$€#€&€0€-€€p€$€#€$€%€ €#€%€&€#€'€*€)€3€G€Ï…/‡Ñ‚ú€€:€0€*€$€(€&€$€&€#€*€/€€n€$€'€#€%€(€$€!€&€(€%€#€*€-€=€Šøƒ™€q€=€/€'€'€&€&€&€%€%€-€/€€l€$€#€#€'€%€&€%€$€"€%€*€(€+€4€_€æb€í€T€6€(€(€$€$€"€#€#€&€-€-€€o€$€%€#€#€"€#€$€#€'€$€$€(€(€,€@€ª€ü€¤€I€6€(€#€&€!€1€%€$€&€+€-€€l€(€%€!€$€&€#€"€%€#€%€%€(€'€(€:€p€§€x€<€.€-€&€%€"€&€&€!€&€2€-€€m€$€$€#€$€!€&€'€ €&€&€"€"€&€*€-€o€œ€e€7€/€,€$€&€%€$€#€'€%€*€-€€k€%€'€!€%€%€#€ €!€%€$€!€&€'€%€-€A€k€g€;€*€%€'€%€#€"€&€&€"€-€/€€o€$€€"€%€$€#€'€%€!€$€'€"€#€*€,€8€l€t€C€*€'€%€$€$€'€!€%€$€*€,€€q€$€'€$€!€#€%€3€#€&€#€!€'€(€&€(€>€ƒ€…€;€-€&€$€&€&€"€'€&€"€.€0€€l€%€#€"€(€#€"€$€$€"€$€%€&€#€(€&€J€Å€ß€D€'€#€#€#€$€$€"€#€'€*€,€€q€$€%€$€#€%€"€$€#€#€$€#€"€&€$€'€?€‡€˜€>€*€$€"€%€$€"€#€%€%€,€.€€l€$€$€ €$€'€#€#€#€#€€#€&€%€#€)€2€B€:€,€%€(€%€#€"€#€"€"€$€.€+€€q€"€$€(€%€ €#€(€#€ €$€$€%€&€&€%€,€8€1€*€"€&€"€$€&€$€%€$€&€-€.€€m€%€&€&€"€'€#€a€"€&€#€"€$€%€"€$€-€6€4€*€#€!€%€&€$€!€$€#€#€0€-€€o€"€.€"€&€#€$€%€&€!€'€'€#€$€&€&€/€>€:€*€'€'€%€"€%€&€!€"€&€)€-€€m€%€#€&€"€"€&€.€#€%€#€#€%€&€&€(€>€H€@€.€(€"€"€&€"€$€#€#€$€+€1€€n€"€#€!€$€$€#€!€$€&€!€&€#€.€"€)€1€V€W€1€$€"€!€€#€%€#€ €%€-€/€€p€$€#€#€#€)€!€$€!€ €%€$€"€%€'€$€<€‚€|€?€(€!€#€%€&€#€"€#€&€+€,€€l€%€'€$€ €$€"€"€"€%€"€#€%€$€ €(€E€§€š€j€)€ €"€#€%€"€&€#€&€/€/€€n€$€"€&€%€#€#€ €$€!€"€$€"€$€&€*€5€^€P€-€%€%€%€#€"€#€!€$€)€,€-€€q€$€%€!€"€#€#€ €"€&€%€"€%€%€"€*€8€?€7€$€*€%€$€#€€%€'€*€%€/€/€€m€$€€%€$€$€&€$€%€"€"€$€&€,€%€&€1€<€>€)€&€%€/€&€ €$€"€ €'€,€0€€p€%€#€#€#€%€"€#€!€&€&€(€"€%€'€$€-€=€8€-€'€!€$€%€"€$€%€#€$€.€.€€lXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.598 / x-coordinate of reference pixel CRPIX2 = 17.331 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.15426E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 8.10167E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 8.09944E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.15458E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 17.0 / minimum value of good pixels GOODMAX = 2001.0 / maximum value of good pixels GOODMEAN= 55.375977 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 16.598 / x-coordinate of reference pixel CRPIX2 = 17.331 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.15426E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 8.10167E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 8.09944E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.15458E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 5 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 17007.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 3.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 2.553050795833E+02 / first axis value at reference pixel CRVAL2 = -3.011405000000E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.705372955353E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 1.196654027248E-05 / partial of first axis coordinate w.r.t. y CD2_1 = 1.196654027248E-05 / partial of second axis coordinate w.r.t. x CD2_2 = 1.705372955353E-05 / partial of second axis coordinate w.r.t. y LTV1 = -504.0 / offset in X to subsection start LTV2 = -882.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 2.553050795833E+02 / RA of aperture reference position DEC_APER= -3.011405000000E+01 / Declination of aperture reference position PA_APER = 3.465162045898E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 35.0572 / position angle of image y axis (deg. e of n) SUNANGLE= 137.003235 / angle between sun and V1 axis MOONANGL= 71.513893 / angle between moon and V1 axis SUN_ALT = 33.522270 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-07-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '06:10:30' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.759125730138E+04 / exposure start time (Modified Julian Date) EXPEND = 5.759125753286E+04 / exposure end time (Modified Julian Date) EXPTIME = 20.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1153479 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCCDHTAV= 18.388600 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 5 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 17007.0 / maximum value of good pixels GOODMEAN= 5032.600098 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END BoFµá \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocui04xeq_spt.fits b/lib/stistools/tests/data/tastis/ocui04xeq_spt.fits deleted file mode 100644 index 6ac02dcf..00000000 --- a/lib/stistools/tests/data/tastis/ocui04xeq_spt.fits +++ /dev/null @@ -1,8 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocui04xeq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocui04xeq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'M62-VLA1 ' / proposer's target name RA_TARG = 2.553050795833E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -3.011405000000E+01 / declination of the target (deg) (J2000) ECL_LONG= 257.218187 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -7.324472 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 353.574582 / galactic longitude of the target (deg) (J2000) GAL_LAT = 7.316765 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OVL100E1 ' / aperture used for reference position ELON_REF= 257.218187 / ecliptic longitude at reference position (deg) ELAT_REF= -7.324472 / ecliptic latitude at reference position (deg) GLON_REF= 353.574582 / galactic longitude at reference position (deg) GLAT_REF= 7.316765 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14086 / PEP proposal identifier LINENUM = '04.002 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CUI' / program id (base 36) PR_INV_L= 'Strader ' / last name of principal investigatorPR_INV_F= 'Jay ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '04' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'XE ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'SL100 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 5 / proposed number of peakup search steps SS_STPSZ= 75.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 523 / proposed axis1 detector pixel of subarray startSS_A1SZE= 32.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 882 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 128 / word 11/14 (0-255) PSTRTIME= '2016.204:06:04:20 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.204:07:30:57 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OVL100E1 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14086_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 2.552185458503E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -3.007085830977E+01 / declination of v1 axis of st (deg) PA_V3 = 260.044708 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S8ES000684F2' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S8ES000207F1' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 3.465162045898E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -6.429767019381E+03 / position of space telescope x axis (km) POSTNSTY= -2.524403152102E+03 / position of space telescope y axis (km) POSTNSTZ= 3.624397201134E+02 / position of space telescope z axis (km) VELOCSTX= 2.266517396004E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -6.290105854427E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= -3.602211207335E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.217976678475E+02 / right ascension of the sun (deg) DEC_SUN = 2.022625827087E+01 / declination of the sun (deg) RA_MOON = 3.300085155996E+02 / right ascension of the moon (deg) DEC_MOON= -1.082022430075E+01 / declination of the moon (deg) VELABBRA= 17.521641 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 2.553050795833E+02 / right ascension of reference object (deg) DEC_REF = -3.011405000000E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 9.955008000000E+08 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.668344291056E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.627766692827E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.856872282190E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.606411649830E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.788537579317E-01 / cosine of inclination ECCENTRY= 4.021874191752E-04 / eccentricity ECCENTX2= 8.043748383503E-04 / eccentricity times 2 ECBDX4D3= 8.674095124484E-11 / eccentricity cubed times 4/3 ESQDX5D2= 4.043868003570E-07 / eccentricity squared times 5/2 ECBDX3 = 1.951671403009E-10 / eccentricity cubed times 3 FDMEANAN= 1.750165742855E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.332303818936E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.120427384839E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.508183451220E-01 / argument of perigee (revolutions) MEANANOM= 6.067284643628E+00 / mean anomaly (radians) RCARGPER= -8.461729098335E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 1.348064121713E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.770912618874E-01 / sine of inclination SEMILREC= 6.916784206158E+06 / semi-latus rectum (meters) TIMEFFEC= 9.955561060000E+08 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 9.957818600000E+08 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'SL100 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;EMISSION LINE STAR;G III-I;LMXB;POPULATION II 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'EMISSION LINE STAR 'TARKEY2 = 'G III-I 'TARKEY3 = 'LMXB 'TARKEY4 = 'POPULATION II ' / PROPOSAL INFO: Flux Information MAG_V = 18.100000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 20.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 0.000000000000E+00 / target parallax from proposal RA_PROP = 2.553050795833E+02 / target right ascension from proposal (degrees) DEC_PROP= -3.011405000000E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 0.000000000000E+00 / target proper motion from proposal (degrees RA)MU_DEC = 0.000000000000E+00 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2000 ' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = 0.000000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Dynamical Confirmation of a Stellar-mass Black Hole in the Globular 'PROPTTL2= 'Cluster M62 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -1.998361000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.385187000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.346503000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.395980000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 8.993310000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -3.593820000000E-04 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076200000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077600000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 3.592800000000E-04 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.394200000000E-01 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969880000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969330000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.393850000000E-01 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.324617000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= 2.015710000000E+01 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.948050000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -1.704270000000E+01 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -1.948762000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 1.580000000000E-01 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.325329000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 3.735290000000E+01 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocui04xeq ' / rootname of the observation setEXPNAME = 'ocui04xeq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1989 / Number of words NLINES = 3 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 523 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 882 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 35 / Slit Number SLITSIZE= '52x0.1 ' / aperture field of view TFPFNAME= 'SL100 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 5 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 75.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 43530.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 200.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 21.9141 / (dgC) CEB Radiator temp OCLLMP1T= 9.89712 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.2125 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 3.97019 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.38269 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.23558 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 4.55769 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 9.97112 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.6321 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.6321 / (dgC) calibration lamp motor 2 temp OENCAFTT= 15.6271 / (dgC) Enclosure aft blukhead temp OENCAIPT= 12.7813 / (dgC) Enclosure aft inner panel temp OENCAOPT= 1.22773 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.3 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.6125 / (dgC) Fitting A temp OFITBT = 18.1667 / (dgC) Fitting B temp OFITCT = 5.05 / (dgC) Fitting C temp OHDM15V = -14.9599 / (V) Hold Mode Regulator - 15V OHDP15V = 15.018 / (V) Hold mode regulator +15V OHDP5V = 4.77001 / (V) Hold mode regulator + 5V OKMDITBT= 24.7995 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.1393 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.1393 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.1393 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 29.9979 / (dgC) M1 heater control temp OM1HTRW = 0.0325019 / (w) M1 heater power OM2HTRT = 33.1875 / (dgC) M2 heater control temp OM2HTRW = 0.314083 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 18.9813 / (dgC) MEB 2 radiator temp OMBCSPT = 34.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0475 / (V) Operate mode regulator -15V OMBMIEPT= 28.538 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.5156 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.5661 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.3 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.2734 / (dgC) Mode select cylinder 4 temp OOBBH1T = 17.975 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.5 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.7 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 20.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1153 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.125 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.3321 / (dgC) CCD Shutter motor temp OSEMTRT = 23.9406 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.4057 / (dgC) Slit wheel motor temp OTCZ1AT = 23.9312 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.62531 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.4813 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.47353 / (w) Thermal controller power, zone 1B OTCZ2AT = 21.5375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 16.404 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.3875 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.288687 / (w) Thermal controller power, zone 2B OTCZ3AT = 20.6375 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 3.03164 / (w) Thermal controller power, zone 3A OTCZ3BT = 19.85 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 9.98035E-06 / (w) Thermal controller power, zone 3B OTECINV = 6.10374 / (V) TEC input voltage OTECTCV = -7.80763 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0943 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.86244 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4147 / (V) LVPS CEB +15V OPSCB35V= 34.7471 / (V) LVPS CEB +35V OPSCB5V = 4.85758 / (V) LVPS CEB +5V OPSCM15V= -14.8529 / (V) LVPS CEB -15V OM1FLDV = 30.4762 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0709158 / (A) M1 -15V current OM1M15V = -15.8388 / (V) M1 - 15 volts OM1M2VDC= 0.421734 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = 0.0 / (uA) M1 MCP current OM1MCPV = -2.49084 / (V) M1 MCP voltage OM1P15VC= 0.0271062 / (A) M1 +15V current OM1P15V = 15.9267 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.275214 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.483516 / (A) M1 +5V current OM1P5V = 5.20879 / (V) M1 +5 volts OM1P8VAC= 0.736508 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00733 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 33.3213 / (dgC) M1 charge amplifier temp OM1DCDT = 33.8097 / (dgC) M1 decoder temp OM1MCET = 32.1003 / (dgC) M1 MCE temp OM1LVPST= 36.9843 / (dgC) M1 LVPS temp OM1HVPST= 33.3213 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOff ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'Invalid ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.6154 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0726252 / (A) M2 -15V current OM2M15V = -15.9219 / (V) M2 - 15 volts OM2M2VDC= 0.421734 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -0.04884 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0277411 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.27326 / (A) M2 +5V discriminator current OM2P5DV = 5.01343 / (V) M2 +5V discriminator voltage OM2P5VC = 0.475946 / (A) M2 +5V current OM2P5V = 5.17949 / (V) M2 +5 volts OM2P8VAC= 0.736264 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 33.8097 / (dgC) M2 charge amplifier temp OM2DCDT = 34.7865 / (dgC) M2 decoder temp OM2MCET = 32.5887 / (dgC) M2 MCE temp OM2LVPST= 37.9611 / (dgC) M2 LVPS temp OM2HVPST= 34.7865 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7322 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.57817 / (V) CEB A/D offset B V OCBADOCV= -2.58305 / (V) CEB A/D offset C V OCBADODV= -2.55375 / (V) CEB A/D offset D V OCBASPCT= 30.1528 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0742 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 31.7752 / CB clock X pwb temp OCBCLKA2= 29.4956 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.0911 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0658 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.47794 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9775 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00494145 / (V) CB reset gate CD Lo OCBS1AHV= 4.9282 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.94263 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91361 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.95739 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.95739 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.0156 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.92803 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.90874 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.94263 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.96226 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.95722 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.01074 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0122428 / (V) CB state machine 1 +5V OCBSM2PV= 5.10569 / (V) CB state machine 2 +5V OCBSWAHV= 4.90388 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.92317 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.00101 / (V) CB summing well C Lo OCBSWDHV= 4.96712 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.01056 / (V) CEB transfer gate lower Low V OCBTIMT = 26.6869 / CEB timing pwb temp OCLM5V = -5.09126 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0133815 / Calibration lamps -5V current OCLP30V = 29.882 / (V) Calibration lamps +30V voltage OCLP30VC= -0.024314 / Calibration lamps +30V current OCLP5V = 5.23218 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Negative' / Slit Wheel Revolution Bit OSWABSP = 1153479 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.00155312 / (A) Slit Wheel motor current OSWMVEL = 0.0564635 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1789 / Mode select cyl. 1 resolver position OMSC3CRP= 61734 / Mode select cyl. 3 resolver position OMSC4CRP= 24428 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 3 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 512 / CCD Shutter commanded position OSCRSVP = 514 / CCD Shutter resolver position OSCMTRC = -0.0163516 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 35 / Control section slit position OCSDQEXJ= 1063 / Control section data queue extract OCSDQINJ= 1063 / Control section data queue insert OCSXQEXJ= 17 / Control section Expos Que Extract OCSXQINJ= 21 / Control section Expos Que Insert OCSOBSQ = -31304 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'PwrOnRst ' / Control section reason for reset OCSDUMPJ= 16872 / Control section dump pointer OCSFILLJ= 16872 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'NoGlobal' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 183 / Control section exposure counter OTAFLUXQ= 43530 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -56 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+C- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 0 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 0.0 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCUI04XE·ÅŠJpdy\I r "ʦ¼à½ÐÅÅàÃPÄ@ßàÌ0Ì0®P²PÃð³€± «¾ `àð½ÀÎÈÐÈÐÈÐÎàŸÐÒ¡ ¿Ðþ ©ðÁàÁ@ÐÉpàÒ Ò¹`Ñ0½ µ`¸à¹àáá ÍðÏ ÍÐÍP¦à´ §à´©̨Р§ªÐ¦@ž°œ`ß€á ¾ðÝð¾à!' ( -þ¬ «¿3+ ½g¼U È Í ÏÆçéâöçc Ø ™Ï ¼¿18 Õ_I Ç Ì ÑÅéíäúíÔÀà ^À_^ð_P‚€ê°%@ÂÚÀï€%@àÚÀÔàÀ†‚  Ã`ß@  Ãß0LÐT ˜ €˜°€˜  ˜À`F`¦ F@¥à™à€™ð~ h@~@h``f@`f`~`h ~ h@€f`eà~@gà`f€€PÂ~h`~@hÀ`fÀ fà€À§€ ¦à{°?ðàp| Ã°€@àQ™ÇKÀ°€‚àb9 -³rŠžýñ&_ld  (€„ðñ#''¸`‘AèA襀Ìà_·ª -ÿÈa‚__ÿ"ʦ¼à½àÅÅàÃPÄ@ßÐÌ@Ì ®P²PÃð³€± «¾!@à½pÎÈÐÈÐÈÐ΀ PÒp ¿àþ ©ðÁÐÁ@àÉpßðÒÒ¹`Ñ@½ µp¸Ð¹ÐáÐá ÍðÏÍÐÍP¦€µ §²€¨ Ê°©°¡`¨«€¥ Ÿ0à ßá¾ÐÜ ì€Á`' ( -þ¬ «¿3+ ¾gºU È Ì ÏÆçéâöçc Ø ™Ï ¼¿18 Õ_›H Ç Ì ÑÅéíäúíÔÐÃ^À^ð^ð_P‚€ê°%@ÁÐÚàï€%@ÁÐÚàÔàÀ†‚  Áàßp  Áàß`LàT°˜°€˜°€˜ €˜À€F@¦ F@¥à™À€™ ð~`h@~@h``f`€f`~`h@~@h``f`eà~@h@`f €ÁÐ~`h`~@h`€f€Àfà€À§€À¦à{À> ~ à€}Ã0€p€ÀQ™ÈKÀ°€€ b9 -³rŠžýñ&_ld`` €…ñ#''¸`‘AèA襀Ìà_¸ª -ÿÈR‚__ÿ`#m°3ÇKæª -µBoFáÈUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocyw05afq_raw.fits b/lib/stistools/tests/data/tastis/ocyw05afq_raw.fits deleted file mode 100644 index b80c5873..00000000 --- a/lib/stistools/tests/data/tastis/ocyw05afq_raw.fits +++ /dev/null @@ -1,3 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 4 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocyw05afq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'ocyw05afq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= 'BD-11D916 ' / proposer's target name RA_TARG = 6.942339631374E+01 / right ascension of the target (deg) (J2000) DEC_TARG= -1.103978108999E+01 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14084 / PEP proposal identifier LINENUM = '05.002 ' / proposal logsheet line number PR_INV_L= 'Redfield ' / last name of principal investigatorPR_INV_F= 'Seth ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-09-22' / UT date of start of first exposure in file TTIMEOBS= '08:33:17' / UT start time of first exposure in file TEXPSTRT= 5.765335645093E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57653.35647177 / end time (MJD) of last exposure in the file TEXPTIME= 1.8 / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793006482639E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'SPECTROSCOPIC ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'G430L ' / optical element in use APERTURE= '0.2X0.09 ' / aperture name PROPAPER= '0.2X0.09 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '0.2x0.09 ' / aperture field of view CENWAVE = 4300 / central wavelength of spectrum CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data STATFLAG= F / Calculate statistics? WAVECORR= 'OMIT ' / use wavecal to adjust wavelength zeropoint X1DCORR = 'OMIT ' / Perform 1-D spectral extraction BACKCORR= 'OMIT ' / subtract background (sky and interorder) HELCORR = 'OMIT ' / convert to heliocenttric wavelengths DISPCORR= 'OMIT ' / apply 2-dimensional dispersion solutions FLUXCORR= 'OMIT ' / convert to absolute flux units CTECORR = 'OMIT ' / correction for CCD charge transfer inefficiencyX2DCORR = 'OMIT ' / rectify 2-D spectral image / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$0ac1554ko_drk.fits' / dark image file name PFLTFILE= 'oref$x6417094o_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$pcc2026jo_lfl.fits' / low order flat PHOTTAB = 'oref$p822207no_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters WAVECAL = 'N/A ' / wavecal image file name APDESTAB= 'oref$16j16005o_apd.fits' / aperture description table SPTRCTAB= 'oref$qa31608go_1dt.fits' / spectrum trace table DISPTAB = 'oref$l2j0137to_dsp.fits' / dispersion coefficient table INANGTAB= 'oref$h5s11397o_iac.fits' / incidence angle correction table LAMPTAB = 'oref$l421050oo_lmp.fits' / template calibration lamp spectra table SDCTAB = 'oref$16j16006o_sdc.fits' / 2-D spatial distortion correction table XTRACTAB= 'oref$n7p1031qo_1dx.fits' / parameters for 1-D spectral extraction tabPCTAB = 'oref$q541740no_pct.fits' / Photometry correction table WCPTAB = 'oref$16j1600co_wcp.fits' / wavecal parameters table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used GACTAB = 'oref$p9r19203o_gac.fits' / grating-aperture correction table FRNGFLAT= 'N/A ' / IR fringe flat exposure / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) CRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 2800.0 / bandwidth of the data SPECRES = 800.0 / approx. resolving power at central wavelength CENTRWV = 4300.0 / central wavelength of the data MINWAVE = 2900.0 / minimum wavelength in spectrum MAXWAVE = 5700.0 / maximum wavelength in spectrum PLATESC = 0.05078 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'Connecting Earth with its Galactic Environment: Probing Our Interste'PROPTTL2= 'llar Past Along the Historical Solar Trajectory 'OBSET_ID= '05' / observation set id TARDESCR= 'STAR;M V-IV 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 9.010000000000E-02 / target parallax from proposal MU_RA = -2.257545909435E-01 / target proper motion from proposal (degrees RA)MU_DEC = -1.925700000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J1991.2' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS2' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 3 / Number of peakup search steps PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 838752.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 93.828293 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' CDSTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' HALOTAB = 'N/A ' IDCTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' RIPTAB = 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1022 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 5.000000 / the minimum value of the data DATAMAX = 121.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= -131.104 / position angle of image y axis (deg. e of n) SUNANGLE= 109.731834 / angle between sun and V1 axis MOONANGL= 29.070826 / angle between moon and V1 axis SUN_ALT = -39.441189 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:33:17' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765335645093E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765335647177E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.800000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336788 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 5.0 / minimum value of good pixels GOODMAX = 121.0 / maximum value of good pixels GOODMEAN= 27.755228 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€-€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €$€€a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€%€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€&€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€!€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€"€€€ €€€€€€ €€€€€€€€€"€€!€€ €€€!€ €€€!€€ €!€€€ €€#€€!€€€ €€ € €€€ €€€€"€!€€€$€€!€ € €€€€€€!€ €€€€€€ €€ €€"€€€€€€€€€€ €€€ €€€ €€$€€€ €€€€€€!€€!€"€"€ €€€!€€€!€€€€ €€€€ €€€€ €€€!€ €€€€€€€€€€€€€€€€€€€€€€€€$€€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ € €€€€€€€€€€ €€€€!€ €€ €€!€€€€€!€€€!€€€€!€$€€ €"€"€ €!€ €!€€€!€"€ € €#€€#€€€!€#€ €€ €!€€!€$€"€$€#€!€#€$€"€ €!€#€€#€"€€"€!€ €$€&€%€!€&€$€ € €!€ €&€(€%€%€%€(€&€%€&€#€%€#€#€%€&€$€'€%€$€)€&€%€#€'€%€!€$€&€#€!€(€!€%€%€&€$€$€$€&€%€#€)€'€%€#€)€!€"€"€#€"€%€#€#€'€"€$€$€%€&€'€(€$€&€%€#€"€%€&€#€'€%€!€ €#€#€ €$€$€!€"€€!€#€%€$€'€!€#€!€$€%€#€"€!€&€&€$€%€%€#€!€$€#€%€$€'€"€'€%€%€ €#€'€(€(€$€'€&€#€$€(€#€!€'€)€&€$€+€)€&€)€+€)€&€)€"€+€(€(€)€'€(€&€$€$€*€$€(€$€'€#€%€%€%€'€'€+€&€$€'€&€#€%€"€&€%€'€'€(€$€"€#€%€"€)€&€%€%€'€*€&€&€%€#€$€(€'€%€&€&€%€%€*€(€'€!€)€!€&€(€'€&€$€%€&€&€)€%€)€+€'€%€'€'€)€+€)€(€(€ €!€!€$€!€"€&€#€&€$€'€$€!€"€&€#€*€*€(€'€-€$€+€)€)€-€(€,€*€*€(€*€+€)€%€*€'€%€'€-€&€%€'€,€*€(€+€&€&€)€/€'€%€-€,€)€*€+€*€&€*€-€'€'€+€'€*€,€+€,€*€-€-€&€.€-€0€+€-€+€)€)€*€-€(€'€+€)€*€,€+€*€,€/€,€(€(€,€-€.€*€+€&€(€*€%€*€(€+€*€&€+€+€&€*€%€&€(€,€+€(€#€'€,€+€(€+€)€(€*€+€$€$€+€)€(€*€'€*€*€(€*€-€*€-€'€)€0€+€+€%€'€*€&€+€&€*€'€+€(€&€(€(€(€*€+€€*€)€)€(€(€&€+€&€*€-€)€)€(€#€*€(€(€)€&€'€%€+€*€%€'€,€-€(€(€<€€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € € € €!€€€"€€"€€ €$€€€ €€!€€$€€ €€!€ €€!€€"€€%€€€$€€%€#€ € €"€!€#€ €%€%€$€€"€ € €€#€!€ €€!€ €"€€%€€ €%€#€€%€#€&€#€ €&€!€"€'€!€%€€$€"€!€%€€€€€€€€!€ € €$€$€$€€ € €$€%€)€"€!€"€"€$€$€%€ € €!€$€ €€&€#€%€'€'€'€'€&€%€"€%€+€'€$€$€*€%€#€%€&€$€#€,€)€%€&€*€(€#€%€&€'€,€#€)€&€$€'€$€*€+€+€+€#€-€'€+€*€+€*€%€-€2€&€,€*€)€*€0€+€1€0€-€.€*€0€/€,€.€/€3€.€,€2€(€,€/€/€0€-€3€0€1€)€.€0€0€1€2€0€-€3€2€6€9€;€8€7€7€7€4€/€7€/€5€3€5€=€4€4€6€2€<€;€9€7€;€5€6€5€5€:€8€3€;€0€6€6€6€9€7€7€7€/€4€5€1€4€2€8€:€.€7€5€9€8€9€8€6€9€6€5€.€9€4€4€7€7€7€6€9€5€:€;€<€6€0€4€+€.€.€2€1€0€.€.€/€4€-€/€.€1€/€4€-€2€4€2€1€8€1€3€4€:€7€1€3€5€1€0€7€4€5€2€3€2€3€8€2€4€8€;€4€2€7€4€3€9€9€?€7€<€:€@€4€5€=€:€<€A€<€7€=€D€:€<€=€<€0€4€5€8€6€7€8€:€;€4€:€7€:€=€3€4€;€2€6€5€3€4€;€9€<€:€6€:€4€:€6€9€>€;€6€:€;€2€:€9€5€:€8€=€5€;€@€:€:€9€9€;€>€7€5€8€7€9€=€B€7€=€<€=€;€@€9€=€>€9€:€4€;€<€C€=€1€2€.€0€-€0€4€:€8€=€=€>€<€=€+€.€4€D€B€A€B€A€=€D€C€E€I€E€J€B€B€F€I€G€C€@€7€:€=€E€F€L€A€L€G€K€F€D€F€G€P€F€M€P€J€J€J€D€=€H€;€I€P€G€E€D€D€P€N€C€J€J€J€I€D€G€K€P€Q€N€P€M€O€K€L€T€W€J€H€N€T€L€T€T€R€F€O€L€M€J€X€P€L€A€J€C€K€C€G€@€M€G€J€H€H€K€K€E€N€N€G€E€E€G€K€I€D€E€C€I€R€J€K€I€H€H€I€K€K€N€L€O€P€P€H€L€G€H€X€Q€M€P€Q€L€H€Z€K€J€>€K€J€M€M€I€A€G€G€F€D€O€I€H€M€K€I€L€O€R€H€H€I€M€V€J€L€O€H€N€R€P€H€J€M€O€Q€R€X€l€ € €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€"€€€€€€€ € €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €"€!€ €#€"€€ €€€€€€€€ €€€"€"€€€€ €€€ €€ €$€€%€"€!€$€!€%€%€&€€$€#€)€#€$€%€'€€$€€$€)€$€$€&€'€(€&€+€(€"€%€"€)€$€!€,€&€(€-€#€"€&€*€%€(€&€*€*€(€'€*€$€&€*€$€$€(€'€%€'€*€)€*€)€#€(€'€-€&€(€,€0€,€$€+€(€)€'€+€(€(€+€'€'€%€#€#€€€ €!€#€%€%€&€(€%€'€"€&€*€*€(€&€'€#€"€+€*€$€&€&€&€,€%€)€(€)€-€0€(€+€3€.€'€*€1€-€,€/€1€0€2€4€0€-€-€0€2€-€5€-€,€(€,€+€,€-€0€-€8€;€0€*€-€7€7€2€;€:€4€/€:€2€-€4€9€5€8€7€0€)€2€1€7€6€:€=€6€:€:€<€;€6€=€<€5€;€=€9€=€=€C€@€8€=€:€4€C€>€7€<€F€=€6€:€>€C€@€D€@€F€J€I€C€B€B€I€>€9€D€D€;€H€F€E€I€F€P€J€D€J€K€D€C€G€B€F€H€G€G€?€@€C€>€E€I€C€E€A€F€A€P€H€@€A€B€L€B€P€N€A€E€D€D€B€<€=€J€A€?€C€E€F€C€B€D€E€A€F€F€D€=€<€1€5€5€6€:€:€5€3€5€:€:€>€F€A€4€;€9€H€@€:€@€<€A€E€>€@€C€?€=€E€@€;€@€A€J€D€C€J€A€>€>€B€C€A€B€G€I€N€I€J€F€N€O€I€J€K€G€?€M€E€R€V€>€V€O€Q€T€M€M€@€9€@€@€D€H€F€@€A€F€>€E€I€D€F€H€<€E€C€C€?€:€K€E€A€B€H€A€D€?€B€@€B€F€E€H€B€H€K€D€?€Q€I€=€F€E€?€L€G€?€F€>€E€D€@€9€E€E€J€F€M€G€D€G€J€G€J€L€J€L€A€K€D€D€S€T€L€:€8€2€B€9€@€:€B€D€K€@€J€K€=€4€<€?€K€T€M€S€L€R€H€Q€U€U€W€V€K€P€^€P€U€O€P€D€F€N€L€Z€U€T€`€Z€^€W€R€J€I€\€Y€f€b€Z€a€]€S€V€J€P€X€Z€]€W€L€N€W€W€b€\€Y€^€`€X€Q€e€p€h€]€e€_€\€X€Z€_€e€Z€[€]€h€c€n€b€e€^€X€Z€h€_€l€f€Q€T€R€L€O€P€T€U€S€Z€P€W€^€V€Z€W€e€R€Z€Z€T€Q€S€U€M€H€Q€T€b€V€Y€P€Y€_€Y€]€Q€Y€Z€\€`€X€V€]€W€`€X€e€b€W€U€R€Y€X€T€Y€P€N€R€L€U€W€O€b€_€P€R€T€S€V€`€T€O€U€]€\€S€_€K€O€X€S€L€Y€]€X€Z€[€Z€P€T€a€Z€Z€]€y€ € €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€"€€€€!€€€#€€€!€€ €€€€ €€€€€€€€€ € €€€!€!€€€"€€€€€ €€#€ €€ €€€€ € €€€ €€!€€%€€€#€ €€€!€#€!€ €!€!€€"€!€€!€!€ €!€#€"€#€#€!€ €#€ €$€€%€$€€€$€"€)€"€%€#€#€"€$€"€#€#€"€ €#€!€$€$€"€!€%€€$€!€"€ €$€"€$€"€#€ €$€!€%€"€€#€"€"€"€%€ € €#€"€%€"€%€!€€!€$€€"€"€"€$€!€#€#€%€ €$€!€'€!€!€€$€%€!€ €#€#€ € €"€"€€€€"€!€$€"€"€!€!€#€"€"€€€€!€"€$€ €#€€€!€#€ €$€"€$€ €%€$€!€#€!€!€!€ €#€'€€#€$€ €#€*€#€#€$€$€"€€%€*€(€&€#€'€ € €$€'€"€€!€$€!€'€$€$€!€#€$€#€%€%€"€#€#€"€%€&€$€!€€$€$€ €$€$€ €!€ €#€"€!€&€%€"€!€"€#€!€€!€$€"€%€&€!€#€&€"€#€"€*€ € €"€#€!€$€%€#€%€'€#€"€(€$€%€!€%€!€"€"€ €'€€"€€ €€%€!€#€€ €#€€!€'€"€"€€"€!€'€)€$€"€!€&€!€&€)€#€#€(€'€$€&€%€*€$€!€#€$€%€"€,€'€$€+€+€$€#€#€'€"€#€(€+€&€%€*€'€'€)€*€&€$€*€*€%€%€*€)€(€)€(€(€&€(€'€(€&€&€'€-€-€(€&€(€,€(€&€,€)€(€'€'€*€'€)€,€)€+€*€(€+€,€*€'€(€&€#€"€(€"€$€&€'€'€%€*€&€&€(€'€*€'€%€%€'€&€%€(€%€"€+€-€'€"€(€(€&€(€'€)€%€%€,€%€'€)€&€&€&€,€)€%€&€)€&€$€*€%€$€#€'€'€(€)€$€#€,€+€(€,€%€(€(€'€$€)€'€*€'€(€"€"€)€"€!€*€'€#€(€$€&€'€&€(€'€ €)€.€!€€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€-€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€ €€ €€€€€€€!€€!€€€€€€ €€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€ €€€€€€€€€€€€ €€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€#€€!€€[€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€"€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €"€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ -€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €!€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € € -€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €\€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €"€€]€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€ €€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€_€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€ €€`€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€,€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€ €a€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€#€€^€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€!€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€"€!€€`€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€#€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€!€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€!€€ €€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€&€$€ €aXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 32704 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 5.0 / minimum value of good pixels GOODMAX = 121.0 / maximum value of good pixels GOODMEAN= 27.755228 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 1022 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 511.943 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 4.300000000000E+03 / first axis value at reference pixel CRVAL2 = 0.000000000000E+00 / second axis value at reference pixel CTYPE1 = 'WAVE ' / the coordinate type for the first axis CTYPE2 = 'ANGLE ' / the coordinate type for the second axis CD1_1 = 2.746 / partial of first axis coordinate w.r.t. x CD1_2 = 0.0 / partial of first axis coordinate w.r.t. y CD2_1 = -0.0 / partial of second axis coordinate w.r.t. x CD2_2 = 1.41056E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECALEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 1 / length of first data axis NAXIS2 = 3 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 67252.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 1.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 2.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 6.942339631374E+01 / first axis value at reference pixel CRVAL2 = -1.103978108999E+01 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = 2.739282720172E-05 / partial of first axis coordinate w.r.t. x CD1_2 = -3.139656237564E-05 / partial of first axis coordinate w.r.t. y CD2_1 = -3.139656237564E-05 / partial of second axis coordinate w.r.t. x CD2_2 = -2.739282720172E-05 / partial of second axis coordinate w.r.t. y LTV1 = -6.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 6.942339631374E+01 / RA of aperture reference position DEC_APER= -1.103978108999E+01 / Declination of aperture reference position PA_APER = -1.311044853760E+02 / Position Angle of reference aperture center (deDISPAXIS= 1 / dispersion axis; 1 = axis 1, 2 = axis 2, none CUNIT1 = 'angstrom' / units of first coordinate value CUNIT2 = 'deg ' / units of second coordinate value / OFFSETS FROM ASSOCIATED WAVECAL SHIFTA1 = 0.000000 / Spectrum shift in AXIS1 calculated from WAVECALSHIFTA2 = 0.000000 / Spectrum shift in AXIS2 calculated from WAVECAL / EXPOSURE INFORMATION ORIENTAT= -131.104 / position angle of image y axis (deg. e of n) SUNANGLE= 109.731834 / angle between sun and V1 axis MOONANGL= 29.070826 / angle between moon and V1 axis SUN_ALT = -39.441189 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-22' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '08:33:17' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765335645093E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765335647177E+04 / exposure end time (Modified Julian Date) EXPTIME = 1.800000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' 'V_HELIO = 0.0 / heliocentric radial velocity (km/sec) / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1336788 / Slit Wheel Absolute position OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCCDHTAV= 21.369200 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 3 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 67252.0 / maximum value of good pixels GOODMEAN= 24130.333984 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted / PHOTOMETRY KEYWORDS SPORDER = 1 / Spectral order DIFF2PT = 1.0 / Diffuse to point source conversion factor CONT2EML= 0.000000 / Intensity conversion: continuum -> emission SCALE_A1= 0.000000 / Size of one pixel (arcsec) along dispersion axiOMEGAPIX= 0.000000 / Solid angle (arcsec**2) subtended by one pixel END ´ \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/ocyw05afq_spt.fits b/lib/stistools/tests/data/tastis/ocyw05afq_spt.fits deleted file mode 100644 index 0e9b2621..00000000 --- a/lib/stistools/tests/data/tastis/ocyw05afq_spt.fits +++ /dev/null @@ -1,7 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'ocyw05afq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'ocyw05afq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= 'BD-11D916 ' / proposer's target name RA_TARG = 6.942339631374E+01 / right ascension of the target (deg) (J2000) DEC_TARG= -1.103978108999E+01 / declination of the target (deg) (J2000) ECL_LONG= 65.781092 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = -32.765219 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 207.618424 / galactic longitude of the target (deg) (J2000) GAL_LAT = -34.654808 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OV200X090 ' / aperture used for reference position ELON_REF= 65.781092 / ecliptic longitude at reference position (deg) ELAT_REF= -32.765219 / ecliptic latitude at reference position (deg) GLON_REF= 207.618424 / galactic longitude at reference position (deg) GLAT_REF= -34.654808 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14084 / PEP proposal identifier LINENUM = '05.002 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'CYW' / program id (base 36) PR_INV_L= 'Redfield ' / last name of principal investigatorPR_INV_F= 'Seth ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '05' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'AF ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'S200X090 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'G430L ' / proposed spectroscopic element in grating wheelSS_CWAVE= 4.300000000000E+03 / central wavelength SS_NSTEP= 3 / proposed number of peakup search steps SS_STPSZ= 150.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 25 / proposed axis1 detector pixel of subarray startSS_A1SZE= 1022.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 43 / word 11/14 (0-255) PSTRTIME= '2016.266:08:31:32 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.266:08:34:10 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OV200X090 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14084_5 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 6.948284891051E+01 / right ascension of v1 axis of st (deg) DEC_V1 = -1.110318033016E+01 / declination of v1 axis of st (deg) PA_V3 = 93.828293 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'S2AE000156F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'S2AE000086F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = -1.311044853760E+02 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= 6.142531291738E+03 / position of space telescope x axis (km) POSTNSTY= 2.122232404185E+03 / position of space telescope y axis (km) POSTNSTZ= 2.368072896231E+03 / position of space telescope z axis (km) VELOCSTX= -3.188305968987E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= 6.415852568087E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 2.520335674249E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.795681323283E+02 / right ascension of the sun (deg) DEC_SUN = 1.873441923294E-01 / declination of the sun (deg) RA_MOON = 7.505517345663E+01 / right ascension of the moon (deg) DEC_MOON= 1.744163035316E+01 / declination of the moon (deg) VELABBRA= 17.132429 / aberration in position of the target ANNPARRA= 8.921261 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 6.942339631374E+01 / right ascension of reference object (deg) DEC_REF = -1.103978108999E+01 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 1.000944000000E+09 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.757409614400E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.622332198752E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.859014525890E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.600463885492E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.795575445567E-01 / cosine of inclination ECCENTRY= 5.923442169063E-04 / eccentricity ECCENTX2= 1.184688433812E-03 / eccentricity times 2 ECBDX4D3= 2.771157404962E-10 / eccentricity cubed times 4/3 ESQDX5D2= 8.771791782557E-07 / eccentricity squared times 5/2 ECBDX3 = 6.235104161164E-10 / eccentricity cubed times 3 FDMEANAN= 1.748854353387E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.336123543981E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.126506666060E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.064662298880E-01 / argument of perigee (revolutions) MEANANOM= 1.392027741286E+00 / mean anomaly (radians) RCARGPER= 5.566867771651E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 9.791782825249E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.757925239149E-01 / sine of inclination SEMILREC= 6.916729033444E+06 / semi-latus rectum (meters) TIMEFFEC= 1.000995017000E+09 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 1.001147492000E+09 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'G430L ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'S200X090 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;M V-IV 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'M V-IV 'ALIAS1 = 'GJ173 ' / synonym for target name ALIAS2 = 'HIP21556 ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 10.330000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 1.800000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 9.010000000000E-02 / target parallax from proposal RA_PROP = 6.942500000000E+01 / target right ascension from proposal (degrees) DEC_PROP= -1.103841666667E+01 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = -2.257545909435E-01 / target proper motion from proposal (degrees RA)MU_DEC = -1.925700000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J1991.2' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -6.800000000000E+00 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'Connecting Earth with its Galactic Environment: Probing Our Interste'PROPTTL2= 'llar Past Along the Historical Solar Trajectory 'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136816000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248371000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.350558000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.369430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -5.367540000000E-08 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076300000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077700000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 5.366100000000E-08 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 2.082400000000E-05 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969930000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969380000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -2.100000000000E-05 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.137213000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= -7.170200000000E+00 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -2.135773000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -7.314400000000E+00 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -2.136419000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= 7.170200000000E+00 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.137859000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 7.314700000000E+00 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'ocyw05afq ' / rootname of the observation setEXPNAME = 'ocyw05afq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 33669 / Number of words NLINES = 35 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 1022 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 25 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 784 / Telemetry optical mode number OPTMODE = 'G430L ' / Optical Mode Name MODE_ID = '3.1 ' / IDT Mode identification CENWAVE = 4300 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 20 / Slit Number SLITSIZE= '0.2x0.09 ' / aperture field of view TFPFNAME= 'S200X090' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS2' / Search method for peakups NUMSTEPS= 3 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 150.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 838752.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 18.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 24.5255 / (dgC) CEB Radiator temp OCLLMP1T= 11.888 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 11.1596 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 6.32019 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 5.6875 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 7.40481 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 6.68173 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 11.9787 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.8643 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.7714 / (dgC) calibration lamp motor 2 temp OENCAFTT= 19.9271 / (dgC) Enclosure aft blukhead temp OENCAIPT= 15.3875 / (dgC) Enclosure aft inner panel temp OENCAOPT= 2.83711 / (dgC) Enclosure aft outer panel temp OENCFIPT= 13.35 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 14.4438 / (dgC) Fitting A temp OFITBT = 19.8703 / (dgC) Fitting B temp OFITCT = 7.06172 / (dgC) Fitting C temp OHDM15V = -15.1059 / (V) Hold Mode Regulator - 15V OHDP15V = 14.6871 / (V) Hold mode regulator +15V OHDP5V = 4.82352 / (V) Hold mode regulator + 5V OKMDITBT= 24.951 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 24.8607 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 24.9071 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 24.9071 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 37.1974 / (dgC) M1 heater control temp OM1HTRW = 0.335167 / (w) M1 heater power OM2HTRT = 38.2898 / (dgC) M2 heater control temp OM2HTRW = 0.335167 / (w) M2 heater power OMB10RV = 9.97053 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 21.2896 / (dgC) MEB 2 radiator temp OMBCSPT = 36.6 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0572 / (V) Operate mode regulator -15V OMBMIEPT= 30.6 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.8693 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.8693 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.55 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.5766 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.6018 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.2 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.55 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 22.9 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.232 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.2418 / (V) LVPS thermal control system zone B volts OSCMTRT = 22.075 / (dgC) CCD Shutter motor temp OSEMTRT = 24.4458 / (dgC) Echelle blocker motor temp OSMMTRT = 24.9005 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 24.6531 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.7265 / (w) Thermal controller power, zone 1A OTCZ1BT = 24.2406 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.35548 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.9 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 9.355 / (w) Thermal controller power, zone 2A OTCZ2BT = 22.625 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.566938 / (w) Thermal controller power, zone 2B OTCZ3AT = 22.25 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 0.609667 / (w) Thermal controller power, zone 3A OTCZ3BT = 21.575 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 0.47225 / (w) Thermal controller power, zone 3B OTECINV = 6.14465 / (V) TEC input voltage OTECTCV = -7.7881 / TEC temp control voltage OMBMC15V= 14.7942 / (V) MEB/SES mechanisms +15V OMBMC30V= 30.0748 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.90623 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.4147 / (V) LVPS CEB +15V OPSCB35V= 31.4972 / (V) LVPS CEB +35V OPSCB5V = 4.83812 / (V) LVPS CEB +5V OPSCM15V= -15.3394 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0704274 / (A) M1 -15V current OM1M15V = -15.7411 / (V) M1 - 15 volts OM1M2VDC= 0.420269 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -42.3932 / (uA) M1 MCP current OM1MCPV = -2252.34 / (V) M1 MCP voltage OM1P15VC= 0.0298413 / (A) M1 +15V current OM1P15V = 15.8437 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274725 / (A) M1 +5V discriminator current OM1P5DV = 5.01099 / (V) M1 +5V discriminator voltage OM1P5VC = 0.487179 / (A) M1 +5V current OM1P5V = 5.19658 / (V) M1 +5 volts OM1P8VAC= 0.734799 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 39.4263 / (dgC) M1 charge amplifier temp OM1DCDT = 39.9147 / (dgC) M1 decoder temp OM1MCET = 38.2053 / (dgC) M1 MCE temp OM1LVPST= 43.0893 / (dgC) M1 LVPS temp OM1HVPST= 42.6009 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 16.0 / M1 event counter OM2EVX = 'ORCount ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 286.0 / M2 event counter OM2PCV = -701.282 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0721856 / (A) M2 -15V current OM2M15V = -15.8486 / (V) M2 - 15 volts OM2M2VDC= 0.420513 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = -78.3394 / (uA) M2 MCP current OM2MCPV = -2053.08 / (V) M2 MCP voltage OM2P15VC= 0.0304762 / (A) M2+15V current OM2P15V = 15.9512 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.272772 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.482784 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.73431 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 39.6705 / (dgC) M2 charge amplifier temp OM2DCDT = 40.6473 / (dgC) M2 decoder temp OM2MCET = 38.4495 / (dgC) M2 MCE temp OM2LVPST= 43.8219 / (dgC) M2 LVPS temp OM2HVPST= 44.0661 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOn ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.6882 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58793 / (V) CEB A/D offset B V OCBADOCV= -2.58793 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 32.5058 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.1718 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08137 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0839 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5506 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.2204 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.06677 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.8054 / (V) CEB C&D output diode OCBCLKA1= 34.1497 / CB clock X pwb temp OCBCLKA2= 32.0601 / CB clock Y pwb temp OCBCMAA1= -14.9404 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.06677 / (V) CB clock drive X +5V OCBCPAA1= 14.7747 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.9307 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.06191 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0852 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92376 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9483 / (V) CEB reset gate AB Hi OCBRABLV= 0.0438864 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.00982423 / (V) CB reset gate CD Lo OCBS1AHV= 4.90388 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.92803 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.91847 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.93776 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.97199 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.01074 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.91847 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.95236 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.92334 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.93776 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.9428 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.03019 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.95739 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03019 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.93776 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.95739 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.03506 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.0171077 / (V) CB state machine 1 +5V OCBSM2PV= 5.11056 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.93776 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.95739 / (V) CB summing well C Hi OCBSWCLV= -6.03019 / (V) CB summing well C Lo OCBSWDHV= 4.98658 / (V) CB summing well D Hi OCBSWDLV= -5.99614 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.00083 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.01091 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 29.1035 / CEB timing pwb temp OCLM5V = -5.09126 / (V) Calibration lamps -5V voltage OCLM5VC = -0.0240618 / Calibration lamps -5V current OCLP30V = 29.9015 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00460794 / Calibration lamps +30V current OCLP5V = 5.27597 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1336788 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = 0.0112821 / (A) Slit Wheel motor current OSWMVEL = 0.0300389 / (Rad) Slit whell motor velocity OMSCYL1P= 325 / Mode select cylinder 1 position OMSCYL3P= 5461 / Mode select cylinder 3 position OMSCYL4P= 3042 / Mode select cylinder 4 position OMSC1SP = 94 / Mode select cylinder 1 shaft position OMSC3SP = 137 / Mode select cylinder 3 shaft position OMSC4SP = 221 / Mode select cylinder 4 shaft position OMSC1CRP= 61208 / Mode select cyl. 1 resolver position OMSC3CRP= 2310 / Mode select cyl. 3 resolver position OMSC4CRP= 27873 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 4 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 2 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1536 / CCD Shutter resolver position OSCMTRC = -0.0139194 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.18604 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 20 / Control section slit position OCSDQEXJ= 3533 / Control section data queue extract OCSDQINJ= 3533 / Control section data queue insert OCSXQEXJ= 23 / Control section Expos Que Extract OCSXQINJ= 28 / Control section Expos Que Insert OCSOBSQ = -29914 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 4300 / Control section optical scan position OCSOPMDP= 784 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 17510 / Control section dump pointer OCSFILLJ= 17510 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'GloblAct' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 37 / Control section exposure counter OTAFLUXQ= 65535 / Target acquisition flux count OTASLWA2= -30 / Target acquisition X pixels to slew OTASLWA1= 0 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 77000 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 99.9357 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªCYW05AF %ƒ…#ŒšžÐXI þó"Ê£°ºP»@ÁаÀPÁPÝàËą̀À® Áp±€€¯ð¨ÐºàpÞоpÍàÉ0É É ×¡ÀØ@¡À¿Ðþ §@¿`Á@ÀÆààѰѰ¹ÐмеÀ¹·`âPâ`Ìð΀ÍðÍ€¨0µ§p³ ¨¹ªà¡Pª@¢© ¡€œP߀á¿€Ýå ¾ ð  ( -þ¢ —¹3d!c ¬eËP Á Í ÐÆû -77 r Ø ™Æ ­º1D áp Â]¹G ¿ Ì ÑÅü -ÔÀÂð^À^à^à_@‡ ê°%0ÂÚÀïp%` ÚÀÔàÃp‹@‡ @ÂÀß` Âðß`LÐT ˜ `˜ €˜ €˜À`F@¦ F@¥à™€€™à~h ~`h`Àf@€f€~`h~€h`f`f~@h``eà€@ ~@h`~@h``f€ fà€À§€À¦À€p?à€0Ä@`eÔ'À°ÀEU â^‰Ýï lá d``€ …ñ Í Í &̃DfDf¥€Ìáß%ÿÿÿâI‚__–d–d==ÿ"Ê£°ºP»0Áà°ÀPÁPÝàËą̀À® Áp±€€ ¯ð¨Ðºàðß@¾àÍàÉ0É É ×¡°Ø0¡À¿àþ §@¿PÁPÀÆÐàѰѰ¹ÐÀ¼àµÐ¹·`â`âpÌð΀ÍðÍ€¨ ´à§`³§à¸àªÐ¡@ª0¡ð© ¡€œÀ ß€á ¿€Ý€æ ¾€`  ( -þ¢ —¹3e"d «eÓP Á Í ÐÆû -77 r Ø ™Æ ¬º1@ áp Â]·H À Ì ÑÅü -ÔÀÃ^À_^ð_P‡0ê°%pÁÀÚðïp% ÁÚÐÔðÀ‹@‡ €Áß` Á€ß`LàT°˜°€˜°€˜ €˜À`F@¦ F@¥à™À€ ™À}@h@~@h``f€f@~ h@~@h`f`€eà~ h@€f €`ÁÀ~@h@~h` f€ÀfÀ€À¦à€ ¦À€`?`à°ÄP€ðeÔ'À° PEU â^‰Ýï lád  €„ðñ Í Í &̃DfDf¥€Ìáß&ÿÿÿâF‚__–d–d==ÿÌm°3Ç–æ Ì`´UiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/od3v01bfq_raw.fits b/lib/stistools/tests/data/tastis/od3v01bfq_raw.fits deleted file mode 100644 index dad950b9..00000000 --- a/lib/stistools/tests/data/tastis/od3v01bfq_raw.fits +++ /dev/null @@ -1 +0,0 @@ -SIMPLE = T / Fits standard BITPIX = 16 / Bits per pixel NAXIS = 0 / Number of axes EXTEND = T / File may contain extensions ORIGIN = 'NOAO-IRAF FITS Image Kernel July 2003' / FITS file originator IRAF-TLM= '2018-06-14T19:12:30' / Time of last modification NEXTEND = 4 / Number of standard extensions DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'od3v01bfq_raw.fits ' / name of file FILETYPE= 'SCI ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTION KEYWORDS ROOTNAME= 'od3v01bfq ' / rootname of the observation setPRIMESI = 'STIS ' / instrument designated as prime / TARGET INFORMATION TARGNAME= '2MASS-J23062928-0502285 ' / proposer's target name RA_TARG = 3.466266355664E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.043573002486E+00 / declination of the target (deg) (J2000) / PROPOSAL INFORMATION PROPOSID= 14493 / PEP proposal identifier LINENUM = '01.005 ' / proposal logsheet line number PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigat / SUMMARY EXPOSURE INFORMATION TDATEOBS= '2016-09-26' / UT date of start of first exposure in file TTIMEOBS= '04:17:57' / UT start time of first exposure in file TEXPSTRT= 5.765717913575E+04 / start time (MJD) of 1st exposure in file TEXPEND = 57657.17925149 / end time (MJD) of last exposure in the file TEXPTIME= 10. / total exposure time (seconds) QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / TARGET OFFSETS (POSTARGS) POSTARG1= 0.000000 / POSTARG in axis 1 direction POSTARG2= 0.000000 / POSTARG in axis 2 direction / DIAGNOSTIC KEYWORDS OVERFLOW= 0 / Number of science data overflows OPUS_VER= 'COMMON 2017_2 ' / data processing software system version CAL_VER = ' ' / CALSTIS code version PROCTIME= 5.793025481481E+04 / Pipeline processing time (MJD) CSYS_VER= 'hstdp-2017.2' / Calibration software system version id / SCIENCE INSTRUMENT CONFIGURATION CFSTATUS= 'SUPPORTED ' / configuration status (support., avail., eng.) OBSTYPE = 'IMAGING ' / observation type - imaging or spectroscopic OBSMODE = 'ACQ/PEAK ' / operating mode PHOTMODE= ' ' / observation conSCLAMP = 'NONE ' / lamp status, NONE or name of lamp which is on LAMPSET = '0.0 ' / spectral cal lamp current value (milliamps) NRPTEXP = 1 / number of repeat exposures in set: default 1 SUBARRAY= T / data from a subarray (T) or full frame (F) DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD OPT_ELEM= 'MIRVIS ' / optical element in use APERTURE= '52X0.05 ' / aperture name PROPAPER= '52X0.05 ' / proposed aperture name FILTER = 'Clear ' / filter in use APER_FOV= '52x0.049 ' / aperture field of view CRSPLIT = 1 / number of cosmic ray split exposures / ENGINEERING PARAMETERS CCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDGAIN = 4 / commanded gain of CCD CCDOFFST= 3 / commanded CCD bias offset / READOUT DEFINITION PARAMETERS CENTERA1= 537 / subarray axis1 center pt in unbinned dect. pix CENTERA2= 516 / subarray axis2 center pt in unbinned dect. pix SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsBINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixels / PHOTOMETRY KEYWORDS PHOTFLAM= 0.000000000000E+00 / inverse sensitivity, ergs/s/cm2/Ang per count/sPHOTZPT = 0.000000 / ST magnitude zero point PHOTPLAM= 0.000000 / Pivot wavelength (Angstroms) PHOTBW = 0.000000 / RMS bandwidth of filter plus detector / CALIBRATION SWITCHES: PERFORM, OMIT, COMPLETE DQICORR = 'OMIT ' / data quality initialization BLEVCORR= 'OMIT ' / subtract bias level computed from overscan img BIASCORR= 'OMIT ' / Subtract bias image CRCORR = 'OMIT ' / combine observations to reject cosmic rays RPTCORR = 'OMIT ' / add individual repeat observations EXPSCORR= 'OMIT ' / process individual observations after cr-rejectDARKCORR= 'OMIT ' / Subtract dark image FLATCORR= 'OMIT ' / flat field data PHOTCORR= 'OMIT ' / populate photometric header keywords STATFLAG= F / Calculate statistics? GEOCORR = 'OMIT ' / perform geometric correction for imaging modes / CALIBRATION REFERENCE FILES BPIXTAB = 'oref$h1v11475o_bpx.fits' / bad pixel table DARKFILE= 'oref$0ac1554lo_drk.fits' / dark image file name PFLTFILE= 'oref$h4s1351lo_pfl.fits' / pixel to pixel flat field file name LFLTFILE= 'oref$jaj1058ho_lfl.fits' / low order flat PHOTTAB = 'oref$l7a15023o_pht.fits' / Photometric throughput table IMPHTTAB= 'oref$y2i1649no_imp.fits' / Imaging photometric table APERTAB = 'oref$y2r1559to_apt.fits' / relative aperture throughput table CCDTAB = 'oref$16j1600do_ccd.fits' / CCD calibration parameters BIASFILE= 'N/A ' / bias image file name CRREJTAB= 'oref$j3m1403io_crr.fits' / cosmic ray rejection parameters IDCTAB = 'oref$o8g1508do_idc.fits' / image distortion correction table TDSTAB = 'oref$13a1941eo_tds.fits' / time-dependent sensitivity algorithm used / COSMIC RAY REJECTION ALGORITHM PARAMETERS MEANEXP = 0.000000 / reference exposure time for parameters SCALENSE= 0.000000 / multiplicative scale factor applied to noise INITGUES= ' ' / initial guess method (MIN or MED) SKYSUB = ' ' / sky value subtracted (MODE or NONE) SKYSUM = 0.0 / sky level from the sum of all constituent imageCRSIGMAS= ' ' / statistical rejection criteria CRRADIUS= 0.000000 / rejection propagation radius (pixels) CRTHRESH= 0.000000 / rejection propagation threshold BADINPDQ= 0 / data quality flag bits to reject REJ_RATE= 0.0 / rate at which pixels are affected by cosmic rayCRMASK = F / flag CR-rejected pixels in input files (T/F) / CALIBRATED ENGINEERING PARAMETERS ATODGAIN= 0.000000 / calibrated CCD amplifier gain value READNSE = 0.000000 / calibrated CCD read noise value / ARCHIVE SEARCH KEYWORDS BANDWID = 1873.0 / bandwidth of the data SPECRES = 0.0 / approx. resolving power at central wavelength CENTRWV = 5852.0 / central wavelength of the data MINWAVE = 1640.0 / minimum wavelength in spectrum MAXWAVE = 10270.0 / maximum wavelength in spectrum PLATESC = 0.050777 / plate scale (arcsec/pixel) / PAPER PRODUCT SUPPORT KEYWORDS PROPTTL1= 'UV exploration of two Earth-sized planets with temperate atmospheres'OBSET_ID= '01' / observation set id TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM 'MTFLAG = ' ' / moving target flag; T if it is a moving target PARALLAX= 8.258000000000E-02 / target parallax from proposal MU_RA = 9.221000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -4.719000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.8' / epoch of proper motion from proposal / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table / TARGET PEAKUP PARAMETERS PKSEARCH= 'LINEARAXIS1' / Search method for peakups PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion NUMSTEPS= 7 / Number of peakup search steps PEAKSTEP= 26.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 35982.0 / minimum flux value in peakup scan (pedestal) CRELIM = T / Perform cosmic ray rejection in acquistion CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp. / POINTING INFORMATION PA_V3 = 249.438705 / position angle of V3-axis of HST (deg) CRDS_CTX= 'hst_0537.pmap' CRDS_VER= '7.1.1, rev2, 956fb01' APDESTAB= 'N/A ' CDSTAB = 'N/A ' DISPTAB = 'N/A ' ECHSCTAB= 'N/A ' EXSTAB = 'N/A ' GACTAB = 'N/A ' HALOTAB = 'N/A ' INANGTAB= 'N/A ' LAMPTAB = 'N/A ' MLINTAB = 'N/A ' MOFFTAB = 'N/A ' PCTAB = 'N/A ' RIPTAB = 'N/A ' SDCTAB = 'N/A ' SPTRCTAB= 'N/A ' SRWTAB = 'N/A ' TDCTAB = 'N/A ' TELTAB = 'N/A ' WCPTAB = 'N/A ' XTRACTAB= 'N/A ' ACQSTAT = 'OK ' ACQP_RAT= 'OKRATIO ' ACQP_FLX= 'OK_FLUX ' ACQP_SAT= 'UNSAT ' ACQP_END= 'OK_END ' DATAFLAG= 'TDF_Up ' END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 32 / length of first data axis NAXIS2 = 32 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'SCI ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 13.000000 / the minimum value of the data DATAMAX = 773.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units BSCALE = 1.0 / scale factor for array value to physical value BZERO = 32768.0 / physical value for an array value of zero ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 17.343 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.28325E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.84636E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 5.84475E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.2836E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 24.4876 / position angle of image y axis (deg. e of n) SUNANGLE= 162.394226 / angle between sun and V1 axis MOONANGL= 141.872025 / angle between moon and V1 axis SUN_ALT = 36.465134 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-26' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:17:57' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765717913575E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765717925149E+04 / exposure end time (Modified Julian Date) EXPTIME = 10.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1419800 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.0244726 / (V) CB reset gate CD Lo OCCDHTAV= 18.741400 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 773.0 / maximum value of good pixels GOODMEAN= 39.267578 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END €$€#€ €%€#€€!€!€ €€"€ €€!€!€!€ €!€!€€#€ € €€!€€€"€*€+€€k€$€ €"€#€ € € €€ €!€"€"€€"€!€€"€€!€€!€ €€"€!€€€!€*€(€€m€€ €!€€€$€!€ €€"€!€!€€ €€!€#€ €€!€€€"€"€ € €!€"€)€+€€h€"€ €€€$€#€€ € €€ €"€€ €€ €"€"€ €€€ €€ € € €€ €*€,€€h€$€ €!€#€€€€!€€€#€#€€ €!€€€#€!€€€!€"€€"€$€!€€-€+€€i€ €€!€#€€!€ €$€€"€"€#€€€€ €"€"€ €€!€#€!€!€ €!€ €#€)€+€€i€"€!€ €#€ €!€!€"€€"€€€"€€"€"€"€"€"€€€€ €$€!€ €!€"€*€*€€j€ € €#€€€"€ €€ € € €#€!€€ €€€ €#€€€€!€€ € € €€*€,€€j€ €#€!€#€#€€#€#€€€"€!€€"€ €!€"€&€#€€ €$€€ €#€ €"€"€)€,€€m€ €€ € € €!€!€ € €"€"€€€"€ € € €%€"€!€#€!€ €€"€"€!€#€)€*€€h€!€€"€!€ €#€€!€!€€"€€!€€ €!€"€%€"€&€"€€ €!€€€#€#€'€,€€l€$€€€€"€#€ €€"€!€€$€#€ € €$€%€$€!€#€"€!€#€"€ €€%€!€(€-€€j€!€#€ €!€ €!€€"€"€"€€"€ €"€#€$€)€*€'€!€!€%€ €€#€ €€€,€,€€k€ €"€€$€€€!€!€"€"€$€ € €$€$€&€>€@€.€"€#€"€!€"€!€€#€"€)€)€€l€ €€!€ €#€!€"€€€#€!€€#€#€'€-€Y€\€>€-€$€#€€ € €"€€!€,€,€€k€ €#€€!€"€ €#€#€ €€ €€&€&€(€5€s€ˆ€M€-€%€$€%€ € €!€ €"€*€,€€i€€ €"€!€"€!€$€€"€#€ €$€'€)€6€n点 €A€.€&€$€"€ € € € €*€.€€j€ € €"€!€ €€€#€ €"€$€$€%€1€<€r‚*ƒ€@€5€(€&€!€&€ € €!€+€*€€k€ €"€€#€€#€ €€$€€"€"€!€%€+€5€€Ä€W€5€(€%€ € €$€"€"€!€,€-€ €n€"€"€€!€!€€!€€ €"€"€ €!€$€$€)€4€:€3€+€#€€ €!€!€!€"€$€*€.€€i€"€ € €€€ €€!€"€€ €€#€"€$€#€/€5€)€ €&€#€!€€ €"€ €%€+€)€€j€ €!€ €#€"€"€ €!€"€ €#€€ €€ €!€&€%€ €#€€ € €$€!€#€"€€+€/€€j€!€!€€ €€ €€!€!€€€"€"€!€!€€"€ €!€"€!€"€€!€€€ €"€*€*€€l€ €"€!€€€"€€ €$€ €!€!€ €!€"€"€$€"€€#€!€&€ € € €€!€ €+€*€€l€ €€#€!€!€ €!€"€!€!€ €"€€"€€#€€"€€€"€€ €€!€ €€$€&€&€€k€ €"€!€€€#€€ €"€ € €"€$€ € €€ € €€"€€€€ €!€ €!€€*€)€€m€ €!€"€ €"€!€€ € €!€ €€!€€ €€€ €€"€€ € €€!€"€!€!€*€*€€j€ € €!€ €#€€"€"€ €€€"€€ €!€€ €"€!€€ €!€€!€#€!€€!€,€(€€l€ €€#€ €"€!€"€€"€"€€ €!€ €"€"€!€€ €"€"€€ €€€"€"€ €)€,€€i€€!€ €"€€!€#€€ €€ € €€!€ €$€€€€€€€ €€€"€"€ €)€)€€h€ €€€!€"€€ € €"€€ €!€€ €"€!€€!€!€€ €€€ €"€ €€"€(€,€€j€ €!€"€ € €"€!€ €€"€#€ €€!€!€€!€"€€ € €€ €!€!€€ €#€,€*€€jXTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'ERR ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0.0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 17.343 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.28325E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.84636E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 5.84475E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.2836E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (de / NOISE MODEL KEYWORDS NOISEMOD= ' ' / noise model equation NOISCOF1= 0.000000000000E+00 / noise coefficient 1 NOISCOF2= 0.000000000000E+00 / noise coefficient 2 NOISCOF3= 0.000000000000E+00 / noise coefficient 3 NOISCOF4= 0.000000000000E+00 / noise coefficient 4 NOISCOF5= 0.000000000000E+00 / noise coefficient 5 / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 1024 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 13.0 / minimum value of good pixels GOODMAX = 773.0 / maximum value of good pixels GOODMEAN= 39.267578 / mean value of good pixels END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'DQ ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 0.0 / the minimum value of the data DATAMAX = 0.0 / the maximum value of the data BUNIT = 'UNITLESS ' / brightness units NPIX1 = 32 / length of constant array axis 1 NPIX2 = 32 / length of constant array axis 2 PIXVALUE= 0 / values of pixels in constant array / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 17.343 / x-coordinate of reference pixel CRPIX2 = 17.001 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -1.28325E-05 / partial of first axis coordinate w.r.t. x CD1_2 = 5.84636E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 5.84475E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 1.2836E-05 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (deEND XTENSION= 'IMAGE ' / extension type BITPIX = 32 / bits per data value NAXIS = 2 / number of data axes NAXIS1 = 7 / length of first data axis NAXIS2 = 1 / length of second data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'PEAKUP ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq ' / exposure identifier DATAMIN = 0.000000 / the minimum value of the data DATAMAX = 3432.000000 / the maximum value of the data BUNIT = 'COUNTS ' / brightness units ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / World Coordinate System and Related Parameters WCSAXES = 2 / number of World Coordinate System axes CRPIX1 = 4.000000000000E+00 / x-coordinate of reference pixel CRPIX2 = 1.000000000000E+00 / y-coordinate of reference pixel CRVAL1 = 3.466266355664E+02 / first axis value at reference pixel CRVAL2 = -5.043573002486E+00 / second axis value at reference pixel CTYPE1 = 'RA---TAN' / the coordinate type for the first axis CTYPE2 = 'DEC--TAN' / the coordinate type for the second axis CD1_1 = -6.572590539812E-06 / partial of first axis coordinate w.r.t. x CD1_2 = 2.993584377153E-06 / partial of first axis coordinate w.r.t. y CD2_1 = 2.993584377153E-06 / partial of second axis coordinate w.r.t. x CD2_2 = 6.572590539812E-06 / partial of second axis coordinate w.r.t. y LTV1 = -501.0 / offset in X to subsection start LTV2 = -499.0 / offset in Y to subsection start LTM1_1 = 1.0 / reciprocal of sampling rate in X LTM2_2 = 1.0 / reciprocal of sampling rate in Y RA_APER = 3.466266355664E+02 / RA of aperture reference position DEC_APER= -5.043573002486E+00 / Declination of aperture reference position PA_APER = 2.408202893677E+01 / Position Angle of reference aperture center (de / EXPOSURE INFORMATION ORIENTAT= 24.4876 / position angle of image y axis (deg. e of n) SUNANGLE= 162.394226 / angle between sun and V1 axis MOONANGL= 141.872025 / angle between moon and V1 axis SUN_ALT = 36.465134 / altitude of the sun above Earth's limb FGSLOCK = 'FINE ' / commanded FGS lock (FINE,COARSE,GYROS,UNKNOWN) GYROMODE= 'T' / number of gyros scheduled, T=3+OBAD REFFRAME= 'ICRS ' / guide star catalog version DATE-OBS= '2016-09-26' / UT date of start of observation (yyyy-mm-dd) TIME-OBS= '04:17:57' / UT time of start of observation (hh:mm:ss) EXPSTART= 5.765717913575E+04 / exposure start time (Modified Julian Date) EXPEND = 5.765717925149E+04 / exposure end time (Modified Julian Date) EXPTIME = 10.000000 / exposure duration (seconds)--calculated EXPFLAG = 'NORMAL ' / Exposure interruption indicator QUALCOM1= ' 'QUALCOM2= ' 'QUALCOM3= ' 'QUALITY = ' ' / REPEATED EXPOSURES INFO NCOMBINE= 1 / number of image sets combined during CR rejecti / DATA PACKET INFORMATION FILLCNT = 0 / number of segments containing fill ERRCNT = 0 / number of segments containing errors PODPSFF = F / podps fill present (T/F) STDCFFF = F / science telemetry fill data present (T=1/F=0) STDCFFP = '0x5569' / science telemetry fill pattern (hex) / ENGINEERING PARAMETERS OSWABSP = 1419800 / Slit Wheel Absolute position OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBRCDLV= -0.0244726 / (V) CB reset gate CD Lo OCCDHTAV= 18.741400 / average CCD housing temperature (degC) / IMAGE STATISTICS AND DATA QUALITY FLAGS NGOODPIX= 7 / number of good pixels SDQFLAGS= 31743 / serious data quality flags GOODMIN = 0.0 / minimum value of good pixels GOODMAX = 3432.0 / maximum value of good pixels GOODMEAN= 1434.857178 / mean value of good pixels SNRMIN = 0.000000 / minimum signal to noise of good pixels SNRMAX = 0.000000 / maximum signal to noise of good pixels SNRMEAN = 0.000000 / mean value of signal to noise of good pixels SOFTERRS= 0 / number of soft error pixels (DQF=1) MEANDARK= 0.0 / average of the dark values subtracted MEANBLEV= 0.0 / average of all bias levels subtracted END P ý hx+ä \ No newline at end of file diff --git a/lib/stistools/tests/data/tastis/od3v01bfq_spt.fits b/lib/stistools/tests/data/tastis/od3v01bfq_spt.fits deleted file mode 100644 index c597a811..00000000 --- a/lib/stistools/tests/data/tastis/od3v01bfq_spt.fits +++ /dev/null @@ -1,7 +0,0 @@ -SIMPLE = T / data conform to FITS standard BITPIX = 16 / bits per data value NAXIS = 0 / number of data axes EXTEND = T / File may contain standard extensions NEXTEND = 1 / Number of standard extensions GROUPS = F / image is in group format DATE = '2017-06-26' / date this file was written (yyyy-mm-dd) FILENAME= 'od3v01bfq_spt.fits ' / name of file FILETYPE= 'SPT ' / type of data found in data file TELESCOP= 'HST' / telescope used to acquire data INSTRUME= 'STIS ' / identifier for instrument used to acquire data EQUINOX = 2000.0 / equinox of celestial coord. system / DATA DESCRIPTOR KEYWORDS ROOTNAME= 'od3v01bfq ' / rootname of the observation setDEFAULTS= F / default values used in reformatting these data PROC_TYP= 'NORMAL ' / type of pipeline processing / TARGET INFORMATION TARGNAME= '2MASS-J23062928-0502285 ' / proposer's target name RA_TARG = 3.466266355664E+02 / right ascension of the target (deg) (J2000) DEC_TARG= -5.043573002486E+00 / declination of the target (deg) (J2000) ECL_LONG= 345.737026 / ecliptic longitude of the target (deg) (J2000) ECL_LAT = 0.629637 / ecliptic latitude of the target (deg) (J2000) GAL_LONG= 69.715338 / galactic longitude of the target (deg) (J2000) GAL_LAT = -56.649155 / galactic latitude of the target (deg) (J2000) / OTHER COORDINATE SYSTEM INFORMATION APER_REF= 'OVL050 ' / aperture used for reference position ELON_REF= 345.737026 / ecliptic longitude at reference position (deg) ELAT_REF= 0.629637 / ecliptic latitude at reference position (deg) GLON_REF= 69.715338 / galactic longitude at reference position (deg) GLAT_REF= -56.649155 / galactic latitude at reference position (deg) / PROPOSAL INFORMATION PROPOSID= 14493 / PEP proposal identifier LINENUM = '01.005 ' / proposal logsheet line number / SOFTWARE VERSION KEYWORDS FLTSWVER= '502x ' / flight software version number OPUS_VER= 'COMMON 2017_2 ' / data processing software system version / TIME CONVERSION KEYWORDS CLKDRFTR= 5.200776237598E-19 / spacecraft clock drift rate CLKRATE = 1.250000031242E-01 / spacecraft clock rate SPCLINCN= 1.307286500000E+09 / spacecraft clock at UTC0 UTC0 = 5.611108332147E+04 / Coordinated Universal Time (Mod Julian Date) / SUPPORT SCHEDULE: PROGRAMMATIC DATA PROGRMID= 'D3V' / program id (base 36) PR_INV_L= 'Bourrier ' / last name of principal investigatorPR_INV_F= 'Vincent ' / first name of principal investigator PR_INV_M= ' ' / middle name / initial of principal investigatACCPDATE= ' ' / proposal acceptance date (yyyyddd) OBSET_ID= '01' / observation set id CALIBRAT= 'T' / calibrate data flag OBSERVTN= 'BF ' / observation number (base 36) EXPACKET= 0 / expected number of source packets PRODTYPE= ' ' / output product medium type OPFORMAT= ' ' / output product format specification CALIBTYP= ' ' / calibration type : E, I or Blank CDBSDATA= 'FALSE' / cdbs notification flag: 'CAL' or 'FALSE' / SUPPORT SCHEDULE: FLAGS AND INDICATORS SS_OBSMD= 'ACQ/PEAK ' / Support schedule specified operating mode SS_APER = 'SL050 ' / proposed aperture name SS_DTCTR= 'STIS/CCD ' / proposed detector to use SS_GRTNG= 'MIRVIS ' / proposed spectroscopic element in grating wheelSS_CWAVE= 0.000000000000E+00 / central wavelength SS_NSTEP= 7 / proposed number of peakup search steps SS_STPSZ= 26.0 / proposed peakup scan stepsize in milli-arcseconSS_CBNA1= 1 / prop. num. of CCD pixels binned on-chip - axis1SS_CBNA2= 1 / prop. num. of CCD pixels binned on-chip - axis2SS_MBNA1= 0 / proposed MAMA data readout format in axis 1 SS_MBNA2= 0 / proposed MAMA data readout format in axis 2 SS_CHKBX= 0 / proposed size of checkbox for finding algorithmSS_SUBAR= ' ' / proposed subarray data format (YES, NO, BINNED)SS_A1CRN= 520 / proposed axis1 detector pixel of subarray startSS_A1SZE= 32.0 / prop. subarray axis1 size in unbinned detr pix SS_A2CRN= 499 / proposed axis2 detector pixel of subarray startSS_A2SZE= 32.0 / prop. subarray axis2 size in unbinned detr pix SS_CNMTH= ' ' / proposed target acquisition centering method SS_PKCNT= 'CENTROID ' / proposed centering method used in peakup acq. SS_GAIN = 0 / proposed CCD amplifier gain setting SS_SPLIT= 1 / proposed number of cosmic ray split exposures SS_RPT = 1 / proposed number of repeat exposures in set / SUPPORT SCHEDULE: DATA GROUP II DATA WRD11_14= 8 / word 11/14 (0-255) PSTRTIME= '2016.270:04:10:06 ' / predicted obs. start time (yyyy.ddd:hh:mm:ss) PSTPTIME= '2016.270:04:19:29 ' / predicted obs. stop time (yyyy.ddd:hh:mm:ss) APEROBJ = 'OVL050 ' / si object aperture id APERSKY = ' ' / si sky aperture id TARG_ID = '14493_1 ' / SPSS target ID from proposal+target no. APERTYPE= 'SICS ' / aperture type (SICS, SIAS, SIDS) RA_V1 = 3.465470098677E+02 / right ascension of v1 axis of st (deg) DEC_V1 = -5.009939985446E+00 / declination of v1 axis of st (deg) PA_V3 = 249.438705 / position angle of V3-axis of HST (deg) APEROFFX= 0.000000 / x comp of object offset in aperture (arcsec) APEROFFY= 0.000000 / y comp of object offset in aperture (arcsec) ANGLESEP= 0.000000 / ang separation of target from ref obj (arcsec) DGESTAR = 'SB5F000135F1' / FGS ID(F1,F2,F3) concat. w/ dom. gd. star id SGESTAR = 'SB5F000156F2' / FGS ID(F1,F2,F3) concat. w/ subdom. gd. star idPA_APER = 2.408202893677E+01 / position ang of aperture used with target (deg)PA_REF = 0.000000 / position ang of target from ref. object (deg) SAAAVOID= '24' / SAA model for SAA Avoidance (range 02-99) TARAQMOD= '02' / target acquisition mode (values 00, 01, 02, 03)POSTNSTX= -1.252968881167E+03 / position of space telescope x axis (km) POSTNSTY= -6.223109509999E+03 / position of space telescope y axis (km) POSTNSTZ= -2.746840313439E+03 / position of space telescope z axis (km) VELOCSTX= 6.961118148221E+00 / vel of space telescope along x axis (km/sec) VELOCSTY= -2.284738740204E+00 / vel of space telescope along y axis (km/sec) VELOCSTZ= 2.000886367626E+00 / vel of space telescope along z axis (km/sec) RA_SUN = 1.830003520620E+02 / right ascension of the sun (deg) DEC_SUN = -1.299664280009E+00 / declination of the sun (deg) RA_MOON = 1.292063149455E+02 / right ascension of the moon (deg) DEC_MOON= 1.545696006240E+01 / declination of the moon (deg) VELABBRA= 19.798189 / aberration in position of the target ANNPARRA= 0.000000 / par. shift in position, non-solar sys target V2APERCE= 0.000000 / V2 offset of target from aper fiducial (arcsec)V3APERCE= 0.000000 / V3 offset of target from aper fiducial (arcsec)EQRADTRG= 0.000000 / equatorial radius of target (km) FLATNTRG= 0.000000 / flattening of target NPDECTRG= 0.000000 / north pole declination of target (deg) NPRATRG = 0.000000 / north pole right ascension of target (deg) ROTRTTRG= 0.000000 / rotation rate of target LONGPMER= 0.000000 / longitude of prime meridian (deg) EPLONGPM= 0.000000 / epoch of longitude of prime meridian (sec) SURFLATD= 0.000000 / surface feature latitude (deg) SURFLONG= 0.000000 / surface feature longitude (deg) SURFALTD= 0.000000 / surface feature altitude (km) MTFLAG = ' ' / moving target flag; T if it is a moving target S0INVMAG= 0.000000000000E+00 / S0 inverse magnitude S0XDIR = 0.000000000000E+00 / S0 X direction S0YDIR = 0.000000000000E+00 / S0 Y direction S0ZDIR = 0.000000000000E+00 / S0 Z direction TRK_TYPE= 'F ' / track 48 or track 51 commanding used T51_RATE= 0.0 / rate of motion commanded (arcsecs/sec) T51_ANGL= 0.0 / position angle of motion of aperture (deg) TARGDIST= 0.000000000000E+00 / distance to target from Earth's center (km) PAR_CORR= 'N' / parallax correction used (Y, N, or A) RA_REF = 3.466266355664E+02 / right ascension of reference object (deg) DEC_REF = -5.043573002486E+00 / declination of reference object (deg) / ONBOARD EPHEMERIS MODEL PARAMETERS EPCHTIME= 1.000944000000E+09 / epoch time of parameters (secs since 1/1/85) SDMEANAN= 1.757409614400E-15 / 2nd deriv coef for mean anomaly (revs/sec/sec) SDMA3SQ = 3.622332198752E-06 / 3 * (SDMEANAN**2) radians/second**2. HSTHORB = 2.859014525890E+03 / half the duration of the ST orbit (seconds) CIRVELOC= 7.600463885492E+03 / circular orbit linear velocity (meters/second) COSINCLI= 8.795575445567E-01 / cosine of inclination ECCENTRY= 5.923442169063E-04 / eccentricity ECCENTX2= 1.184688433812E-03 / eccentricity times 2 ECBDX4D3= 2.771157404962E-10 / eccentricity cubed times 4/3 ESQDX5D2= 8.771791782557E-07 / eccentricity squared times 5/2 ECBDX3 = 6.235104161164E-10 / eccentricity cubed times 3 FDMEANAN= 1.748854353387E-04 / 1st derivative coef for mean anomly (revs/sec) RCASCNRD= -1.336123543981E-06 / rt chge right ascension ascend node (rads/sec) RCASCNRV= -2.126506666060E-07 / rt chge right ascension ascend node (revs/sec) ARGPERIG= 3.064662298880E-01 / argument of perigee (revolutions) MEANANOM= 1.392027741286E+00 / mean anomaly (radians) RCARGPER= 5.566867771651E-08 / rate change of argument of perigee (revs/sec) RASCASCN= 9.791782825249E-01 / right ascension of ascending node (revolutions)SINEINCL= 4.757925239149E-01 / sine of inclination SEMILREC= 6.916729033444E+06 / semi-latus rectum (meters) TIMEFFEC= 1.000995017000E+09 / time parameters took effect (secs since 1/1/85)OBSSTRTT= 1.001477406000E+09 / predicted obs. start time (secs since 1/1/85) / PROPOSAL INFO: Instrument Configuration CONFIG = 'STIS/CCD ' / proposed instrument configuration OPMODE = 'ACQ/PEAK ' / proposed operation mode SPEC_1 = 'MIRVIS ' / spectral element SPEC_2 = ' ' / spectral element SPEC_3 = ' ' / spectral element SPEC_4 = ' ' / spectral element APER_1 = 'SL050 ' / instrument aperture APER_2 = ' ' / instrument aperture APER_3 = ' ' / instrument aperture APER_4 = ' ' / instrument aperture / PROPOSAL INFO: Target Description TAR_TYPE= 'POINT TARGET ' / target type TARDESCR= 'STAR;EXTRA-SOLAR PLANETARY SYSTEM 'TARGCAT = 'STAR ' / first target category TARKEY1 = 'EXTRA-SOLAR PLANETARY SYSTEM 'ALIAS1 = 'TRAPPIST-1 ' / synonym for target name / PROPOSAL INFO: Flux Information MAG_V = 18.798000 / expected V Magnitude SURF_V = 0.000000 / expected V surface brightness MAG_B = 0.000000 / expected B Magnitude SURF_B = 0.000000 / expected B surface brightness MAG_U = 0.000000 / expected U Magnitude SURF_U = 0.000000 / expected U surface brightness MAG_R = 0.000000 / expected R Magnitude SURF_R = 0.000000 / expected R surface brightness COL_B_V = 0.000000 / expected B-V color COL_U_B = 0.000000 / expected U-B color COL_V_R = 0.000000 / expected V-R color E_B_V = 0.000000 / E(B-V) EXTNCT_V= 0.000000 / extinction in V / PROPOSAL INFO: Exposure Information CMD_EXP = 10.000000 / commanded time per exposure (from TRANS) / PROPOSAL INFO: Moving Target Information / PROPOSAL INFO: Target Properties REDSHIFT= 0.000000000000E+00 / target redshift from proposal PARALLAX= 8.258000000000E-02 / target parallax from proposal RA_PROP = 3.466264166667E+02 / target right ascension from proposal (degrees) DEC_PROP= -5.043455555556E+00 / target declination from proposal (degrees) PEQUINOX= 'J2000 ' / equinox of coordinate system from proposal MU_RA = 9.221000000000E-01 / target proper motion from proposal (degrees RA)MU_DEC = -4.719000000000E-01 / target proper motion from proposal (deg. DEC) MU_EPOCH= 'J2015.8' / epoch of proper motion from proposal SP_TYPE = ' ' / target spectral type from proposal RAD_VEL = -5.168800000000E+01 / target radial velocity from proposal (km/sec) / PROPOSAL INFO: Spatial Scan Info SCAN_TYP= 'N ' / C:bostrophidon; D:C with dwell; N:N/A SCAN_WID= 0.000000000000E+00 / scan width (arcsec) ANG_SIDE= 0.000000000000E+00 / angle between sides of parallelogram (deg) DWELL_LN= 0 / dwell pts/line for scan pointing (1-99,0 if NA)DWELL_TM= 0.000000000000E+00 / wait time (duration) at each dwell point (sec) SCAN_ANG= 0.000000000000E+00 / position angle of scan line (deg) SCAN_RAT= 0.000000000000E+00 / commanded rate of the line scan (arcsec/sec) NO_LINES= 0 / number of lines per scan (1-99,0 if NA) SCAN_LEN= 0.000000000000E+00 / scan length (arcsec) SCAN_COR= 'C ' / scan coordinate frame of ref: celestial,vehicle / PROPOSAL INFO: Auxiliary PARENTID= 0 / PEP proposal identifier of the parent proposal PROPTTL1= 'UV exploration of two Earth-sized planets with temperate atmospheres'PROP_TYP= 'GO ' / proposal type / APERTURE PARAMETERS HOSV2CNT= -2.136672000000E+02 / V2 coordinate of aperture fiducial (arcsec) HOSV3CNT= -2.248227000000E+02 / V3 coordinate of aperture fiducial (arcsec) HOSISHA = 'Q' / Aperture shape ;Pickle, Circle, Quad, RectangleHOSIVDM = 0.000000000000E+00 / Half-length of aperture major axis (arcsec) HOSAPOR = 1.346503000000E+02 / Rotation angle to orient SICS and V2/V3 (deg) HOSIMPAR= -1 / Parity of SICS to V2/V3 (-1=left, +1=right) HOSIASX = 5.373430000000E+02 / x coord. of aperture fiducial in SIAS (pixels) HOSIASY = 5.160010000000E+02 / y coord. of aperture fiducial in SIAS (pixels) HOSD1 = 5.076300000000E-02 / 1st coordinate axis increment (arcsec) HOSD2 = 5.077700000000E-02 / 2nd coordinate axis increment (arcsec) HOSTH1 = 4.505590000000E+01 / Angle from V3 to line of incr 1st axis (degreesHOSTH2 = 1.350559000000E+02 / Angle from V3 to line of incr 2nd axis (degrees / SIAS to SICS CONVERSION HOSPOLY = 1 / Polynomial degree for SIAS to SICS conversion AS2CSX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SIAS to SICSAS2CSX10= -3.593820000000E-04 / 1 order, 0 coefficient for x-coord SIAS to SICSAS2CSX11= 5.076200000000E-02 / 1 order, 1 coefficient for x-coord SIAS to SICSAS2CSY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SIAS to SICSAS2CSY10= 5.077600000000E-02 / 1 order, 0 coefficient for y-coord SIAS to SICSAS2CSY11= 3.592800000000E-04 / 1 order, 1 coefficient for y-coord SIAS to SICS / SICS to SIAS CONVERSION CS2ASX00= 0.000000000000E+00 / 0 order, 0 coefficient for x-coord SICS to SIASCS2ASX10= 1.394200000000E-01 / 1 order, 0 coefficient for x-coord SICS to SIASCS2ASX11= 1.969880000000E+01 / 1 order, 1 coefficient for x-coord SICS to SIASCS2ASY00= 0.000000000000E+00 / 0 order, 0 coefficient for y-coord SICS to SIASCS2ASY10= 1.969330000000E+01 / 1 order, 0 coefficient for y-coord SICS to SIASCS2ASY11= -1.393850000000E-01 / 1 order, 1 coefficient for y-coord SICS to SIAS / V2/V3 APERTURE VERTICES APVER1V2= -2.324781000000E+02 / V2 coordinate of aperture vertex 1 (arcsecs) APVER1V3= 1.461930000000E+01 / V3 coordinate of aperture vertex 1 (arcsecs) APVER2V2= -1.948213000000E+02 / V2 coordinate of aperture vertex 2 (arcsecs) APVER2V3= -2.258060000000E+01 / V3 coordinate of aperture vertex 2 (arcsecs) APVER3V2= -1.948563000000E+02 / V2 coordinate of aperture vertex 3 (arcsecs) APVER3V3= -1.461930000000E+01 / V3 coordinate of aperture vertex 3 (arcsecs) APVER4V2= -2.325131000000E+02 / V2 coordinate of aperture vertex 4 (arcsecs) APVER4V3= 2.258250000000E+01 / V3 coordinate of aperture vertex 4 (arcsecs) / ASSOCIATION KEYWORDS ASN_ID = 'NONE ' / unique identifier assigned to association ASN_TAB = ' ' / name of the association table END XTENSION= 'IMAGE ' / extension type BITPIX = 16 / bits per data value NAXIS = 1 / number of data axes NAXIS1 = 965 / length of first data axis PCOUNT = 0 / number of group parameters GCOUNT = 1 / number of groups INHERIT = T / inherit the primary header EXTNAME = 'UDL ' / extension name EXTVER = 1 / extension version number ROOTNAME= 'od3v01bfq ' / rootname of the observation setEXPNAME = 'od3v01bfq' / 9 character exposure identifier ASN_MTYP= 'ACQ/PEAK ' / Role of the Member in the Association / DATA PARAMETERS / UNIQUE DATA LOG NWORDS = 1989 / Number of words NLINES = 3 / Number of SDF lines N_TYPE = 3 / Image Type number IM_TYPE = 'Science ' / Image Type INSTR_ID= 73 / Instrument Identifier NSOURCE = 0 / Memory Dump Source number MSOURCE = 'Unknown ' / Memory Dump Source ADDRESS = '00000000 ' / Memory Dump Starting Address NDUMP = 0 / Number of data words dumped SCITYPE = 0 / Detector Science Data Type DETNUM = 3 / Detector Number DETECTOR= 'CCD ' / detector in use: NUV-MAMA, FUV-MAMA, or CCD SIZAXIS1= 32 / subarray axis1 size in unbinned detector pixelsSIZAXIS2= 32 / subarray axis2 size in unbinned detector pixelsCORNERA1= 520 / subarray axis1 center pt in unbinned dect. pix CORNERA2= 499 / subarray axis2 center pt in unbinned dect. pix OPTNUM = 864 / Telemetry optical mode number OPTMODE = 'MIRVIS ' / Optical Mode Name MODE_ID = '3.6 ' / IDT Mode identification CENWAVE = 0 / central wavelength of spectrum APERNUM = 0 / Aperture Number SLITNUM = 34 / Slit Number SLITSIZE= '52x0.049 ' / aperture field of view TFPFNAME= 'SL050 ' / Slit TFPF name SLITTEXT= ' ' / Slit Features CCDGAIN1= 4 / CCD AMPLIFIER 1 Gain CCDGAIN2= 4 / CCD AMPLIFIER 2 Gain CCDGAIN3= 4 / CCD AMPLIFIER 3 Gain CCDGAIN4= 4 / CCD AMPLIFIER 4 Gain BINAXIS1= 1 / axis1 data bin size in unbinned detector pixelsBINAXIS2= 1 / axis2 data bin size in unbinned detector pixelsCCDAMP = 'D ' / CCD amplifier read out (A,B,C,D) CCDDKBS = 'NORM ACC' / CCD Dark Bias Select AMPAOFF = 3 / CCD Amp A Offset AMPBOFF = 3 / CCD Amp B Offset AMPCOFF = 3 / CCD Amp C Offset AMPDOFF = 3 / CCD Amp D Offset DOPPZERO= 0.000000000000E+00 / Doppler shift zero phase time (MJD) DOPPMAG = 0 / Doppler shift magnitude (hi-res pixels) DOPPER = 0.0 / Doppler shift period (seconds) T1_BULB = 0 / Tungsten Bulb 1 status T2_BULB = 0 / Tungsten Bulb 2 status T3_BULB = 0 / Tungsten Bulb 3 status T4_BULB = 0 / Tungsten Bulb 4 status K_LAMP = 0 / Krypton Lamp status D_LAMP = 0 / Deuterium Lamp status PCN1LAMP= 3 / Pt-Ne-Cr Lamp 1 status PCN2LAMP= 3 / Pt-Ne-Cr Lamp 2 status PCN3LAMP= 3 / Pt-Ne-Cr Lamp 3 status OVERFLOW= 0 / Number of science data overflows ACQTYPE = ' ' / type of acquisition DFIELD = 0 / Diffuse Field Method CENTMETH= 'N/A ' / target acquisition centering method PKSEARCH= 'LINEARAXIS1' / Search method for peakups NUMSTEPS= 7 / Number of peakup search steps PEAKCENT= 'MAX-FLUX-CENTROID ' / Centering method used in Peakup Acquistion PEAKSTEP= 26.0 / Peakup scan stepsize in milli-arcseconds PEDESTAL= 35982.0 / minimum flux value in peakup scan (pedestal) TARGA1 = 0.0 / fsw located subarray axis1 coord. of target TARGA2 = 0.0 / fsw located subarray axis2 coord. of target APERA1 = 0.0 / fsw located subarray axis 1 coord. of aperture APERA2 = 0.0 / fsw located subarray axis 2 coord. of aperture CCDBIASS= T / CCD bias subtracted from Targ Acq Image? BIASLEV = 1510.0 / CCD bias level used to process acquisition exp.CRELIM = T / Perform cosmic ray rejection in acquistion CHECKBOX= 0 / Size of checkbox for finding algorithms INTEG = 100.0 / Integ. time NINTERPT= 0 / Number of Exposure Interrupts START1 = 0.000000000000E+00 / Interrupt 1 start time (MJD) STOP1 = 0.000000000000E+00 / Interrupt 1 stop time (MJD) START2 = 0.000000000000E+00 / Interrupt 2 start time (MJD) STOP2 = 0.000000000000E+00 / Interrupt 2 stop time (MJD) START3 = 0.000000000000E+00 / Interrupt 3 start time (MJD) STOP3 = 0.000000000000E+00 / Interrupt 3 stop time (MJD) START4 = 0.000000000000E+00 / Interrupt 4 start time (MJD) STOP4 = 0.000000000000E+00 / Interrupt 4 stop time (MJD) / STANDARD HEADER PACKET OCSLIMMK= 34 / Control section last immediate macro OCSLNRMK= 202 / Control section last normal macro OCSLCKSQ= 0 / Control section last checksum OCBRADT = 22.3682 / (dgC) CEB Radiator temp OCLLMP1T= 10.237 / (dgC) Calibration Lamp 1 temp OCLLMP2T= 9.48365 / (dgC) Calibration Lamp 2 temp OCLLMP3T= 4.46731 / (dgC) Calibration Lamp 3 temp OCLLMP4T= 3.87981 / (dgC) Calibration Lamp 4 temp OCLLMP5T= 5.73269 / (dgC) Calibration Lamp 5 temp OCLLMP6T= 5.05481 / (dgC) Calibration Lamp 6 temp OCLSYS1T= 10.3064 / (dgC) Calibration lamps subsystem 1 temp OCMMTR1T= 22.725 / (dgC) Calibration lamp motor 1 temp OCMMTR2T= 22.725 / (dgC) calibration lamp motor 2 temp OENCAFTT= 17.9271 / (dgC) Enclosure aft blukhead temp OENCAIPT= 13.5688 / (dgC) Enclosure aft inner panel temp OENCAOPT= 2.31406 / (dgC) Enclosure aft outer panel temp OENCFIPT= 12.6938 / (dgC) Enclosure forward internal panel temp OENCFOPT= 127.593 / Enclosure forward outer panel temperature countOFITAT = 13.9188 / (dgC) Fitting A temp OFITBT = 18.7896 / (dgC) Fitting B temp OFITCT = 5.41211 / (dgC) Fitting C temp OHDM15V = -14.9988 / (V) Hold Mode Regulator - 15V OHDP15V = 14.9304 / (V) Hold mode regulator +15V OHDP5V = 4.99866 / (V) Hold mode regulator + 5V OKMDITBT= 24.951 / (dgC) Corrector mechanism DITS box temp OKMFOCMT= 25.0464 / (dgC) Corrector mechanism focus motor temp OKMXTMT = 25.0464 / (dgC) Corrector mechanism X tilt motor temp OKMYTMT = 25.0929 / (dgC) Corrector mechanism Y tilt motor temp OM1HTRT = 35.2458 / (dgC) M1 heater control temp OM1HTRW = 0.440583 / (w) M1 heater power OM2HTRT = 36.3349 / (dgC) M2 heater control temp OM2HTRW = 0.293 / (w) M2 heater power OMB10RV = 9.98029 / (V) SES A/D 10 reference volt OMB1RADT= -58.4549 / (dgC) MEB 1 radiator temp OMB2RADT= 19.2208 / (dgC) MEB 2 radiator temp OMBCSPT = 34.95 / (dgC) MEB CS processor temp OMBDIG5V= 5.04245 / (V) MEB/SES digital +5V OMBM15V = -15.0377 / (V) Operate mode regulator -15V OMBMIEPT= 28.8917 / (dgC) MEB MIE processor temp OMBP15V = 14.872 / (V) Operatore mode regulator +15V OMSC1MT = 21.9198 / (dgC) Mode select cylinder 1 temp OMSC3MT = 21.9703 / (dgC) Mode select cylinder 3 temp OMSC4MFT= 21.45 / (dgC) Mode select cylinder 4 motor frame temp OMSC4MT = 22.7786 / (dgC) Mode select cylinder 4 temp OOBBH1T = 18.1679 / (dgC) Optics bench bulkhead 1 temp OOBBH4T = 24.35 / (dgC) Optics bench bulkhead 4 temp OOBBH5T = 21.65 / (dgC) Optics bench bulkhead 5 temp OOBBH7T = 21.65 / (dgC) Optics bench bulkhead 7 temp OPSTCAV = 15.1542 / (V) LVPS thermal control system zone A volts OPSTCBV = 15.1736 / (V) LVPS thermal control system zone B volts OSCMTRT = 21.5179 / (dgC) CCD Shutter motor temp OSEMTRT = 24.1932 / (dgC) Echelle blocker motor temp OSMMTRT = 25.0016 / (dgC) Mode isolation shutter motor temp OSWMTRT = 25.2542 / (dgC) Slit wheel motor temp OTCZ1AT = 23.6562 / (dgC) Thermal controller zone 1A temp OTCZ1AW = 5.59158 / (w) Thermal controller power, zone 1A OTCZ1BT = 23.2781 / (dgC) Thermal controller zone 1B temp OTCZ1BW = 5.22056 / (w) Thermal controller power, zone 1B OTCZ2AT = 20.3375 / (dgC) Thermal controller zone 2A temp OTCZ2AW = 13.2273 / (w) Thermal controller power, zone 2A OTCZ2BT = 21.0125 / (dgC) Thermal controller zone 2B temp OTCZ2BW = 0.0150081 / (w) Thermal controller power, zone 2B OTCZ3AT = 21.8 / (dgC) Thermal controller zone 3A temp OTCZ3AW = 1.2624 / (w) Thermal controller power, zone 3A OTCZ3BT = 20.525 / (dgC) Thermal controller zone 3B temp OTCZ3BW = 1.0E-05 / (w) Thermal controller power, zone 3B OTECINV = 6.33559 / (V) TEC input voltage OTECTCV = -7.80763 / TEC temp control voltage OMBMC15V= 14.7747 / (V) MEB/SES mechanisms +15V OMBMC30V= 29.9775 / (V) MEB/SES mechanisms +30V OMBMC5V = 4.91109 / (V) MEB/SES mechanisms +5V OPSCB15V= 14.8234 / (V) LVPS CEB +15V OPSCB35V= 31.4194 / (V) LVPS CEB +35V OPSCB5V = 5.39759 / (V) LVPS CEB +5V OPSCM15V= -15.135 / (V) LVPS CEB -15V OM1FLDV = -1502.39 / (V) M1 Field voltage OM1HBIAV= 139.487 / (V) M1 High bias voltage OM1LBIAV= 137.436 / (V) M1 Low bias voltage OM1M15VC= 0.0703297 / (A) M1 -15V current OM1M15V = -15.746 / (V) M1 - 15 volts OM1M2VDC= 0.420757 / (A) M1 -2V discriminator current OM1M2DV = -2.0 / (V) M1 -2V discriminator voltage OM1MCPC = -41.9048 / (uA) M1 MCP current OM1MCPV = -2252.97 / (V) M1 MCP voltage OM1P15VC= 0.0298901 / (A) M1 +15V current OM1P15V = 15.8388 / (V) M1 +15 volts OM1P2RFV= 0.000000 / (V) M1 + 2V reference voltage OM1P5VDC= 0.274969 / (A) M1 +5V discriminator current OM1P5DV = 5.00855 / (V) M1 +5V discriminator voltage OM1P5VC = 0.489621 / (A) M1 +5V current OM1P5V = 5.19902 / (V) M1 +5 volts OM1P8VAC= 0.735531 / (A) M1 +8V amplifier current OM1P8AV = 8.00244 / (V) M1 +8V amplifier voltage OM1P8RFV= 8.00977 / (V) M1 +8V reference voltage OM1THRV = 0.483516 / (V) M1 threshold voltage OM1CAT = 37.2285 / (dgC) M1 charge amplifier temp OM1DCDT = 37.7169 / (dgC) M1 decoder temp OM1MCET = 36.0075 / (dgC) M1 MCE temp OM1LVPST= 40.8915 / (dgC) M1 LVPS temp OM1HVPST= 40.4031 / (dgC) M1 HVPS temp OM1ECTX = 'OK ' / M1 event counter threshold OM1GEEX = 'NoError ' / M1 global event error OM1CHKX = 'OK ' / M1 MAMA control elect. checksum OM1RAMX = 'OK ' / M1 MAMA control elect. RAM test OM1INTX = 'NoError ' / M1 integrate event error OM1WDX = 'NoReset ' / M1 watchdog timer OM1HVSX = 'On ' / M1 HV supply off OM1STBYX= 'Operate ' / M1 Standby Mode OM1OVRX = 'Disable ' / M1 bright scene detector override disabl OM1DDX = 'Enable ' / M1 decode asic disable OM1HRONX= 'HiRes ' / M1 Hi resolution on OM1HVENX= 'Disable ' / M1 high voltage enable OM1HVONX= 'HVOn ' / M1 high voltage On OM1BSDX = 'OK ' / M1 bright scene detector OM1EVQ = 0.0 / M1 event counter OM2EVX = 'Invalid ' / M2 event type OM1EVX = 'ORCount ' / M1 event type OM2EVQ = 0.0 / M2 event counter OM2PCV = 24.8718 / (V) M2 Photocathode Voltage OM2HBIAV= 160.586 / (V) M2 High Bias Volotage OM2LBIAV= 157.509 / (V) M2 Low Bias Voltage OM2M15VC= 0.0727717 / (A) M2 -15V current OM2M15V = -15.917 / (V) M2 - 15 volts OM2M2VDC= 0.421245 / (A) M2 -2V discriminator current OM2M2DV = -1.99512 / (V) M2 -2V discriminator voltage OM2MCPC = 0.0 / (uA) M2 MCP current OM2MCPV = -3.11355 / (V) M2 MCP voltage OM2P15VC= 0.0276923 / (A) M2+15V current OM2P15V = 16.044 / (V) M2 +15 volts OM2P2RFV= 0.000000 / (V) M2 + 2V reference voltage OM2P5VDC= 0.273016 / (A) M2 +5V discriminator current OM2P5DV = 5.01587 / (V) M2 +5V discriminator voltage OM2P5VC = 0.474237 / (A) M2 +5V current OM2P5V = 5.1746 / (V) M2 +5 volts OM2P8VAC= 0.735287 / (A) M2 +8V amplifier current OM2P8AV = 8.0 / (V) M2 +8V amplifier voltage OM2P8RFV= 8.01221 / (V) M2 +8V reference voltage OM2THRV = 0.481074 / (V) M2 threshold voltage OM2CAT = 36.7401 / (dgC) M2 charge amplifier temp OM2DCDT = 37.7169 / (dgC) M2 decoder temp OM2MCET = 35.5191 / (dgC) M2 MCE temp OM2LVPST= 40.8915 / (dgC) M2 LVPS temp OM2HVPST= 37.7169 / (dgC) M2 HVPS temp OM2ECTX = 'OK ' / M2 event counter threshold OM2GEEX = 'NoError ' / M2 global event error OM2CHKX = 'OK ' / M2 MAMA control elect. checksum OM2RAMX = 'OK ' / M2 MAMA control elect. RAM test OM2INTX = 'NoError ' / M2 integrate event error OM2WDX = 'NoReset ' / M2 watchdog timer OM2HVSX = 'On ' / M2 HV supply off OM2STBYX= 'Operate ' / M2 Standby Mode OM2OVRX = 'Disable ' / M2 bright scene detector override disabl OM2DDX = 'Enable ' / M2 decode asic disable OM2HRONX= 'HiRes ' / M2 Hi resolution on OM2HVENX= 'Disable ' / M2 high voltage enable OM2HVONX= 'HVOff ' / M2 high voltage On OM2BSDX = 'OK ' / M2 bright scene detector OCBABAV = 26.6827 / (V) CEB A&B Amp Bias OCBABODV= 15.7175 / (V) CEB A&B output diode OCBADOAV= -2.5977 / (V) CEB A/D offset A V OCBADOBV= -2.58305 / (V) CEB A/D offset B V OCBADOCV= -2.57817 / (V) CEB A/D offset C V OCBADODV= -2.55864 / (V) CEB A/D offset D V OCBASPCT= 30.439 / CB aspect/bias pwb temp OCBA35A1= 33.0717 / (V) CEB aspect/bias X +35V OCBAMAA1= -14.201 / (V) CEB aspect X -15 analog V OCBAP5A1= 5.08623 / (V) CEB aspect/bias X +5V OCBAPAA1= 14.0742 / (V) CEB aspect X +15 analog V OCBA35A2= 34.5701 / (V) CEB apspec/bias Y +35V OCBAMAA2= -14.201 / (V) CEB aspect Y -15 analog V OCBAP5A2= 5.08623 / (V) CEB aspect/bias Y +5V OCBAPAA2= 14.0644 / (V) CEB aspect Y +15 analog V OCBCDAV = 26.7221 / (V) CEB C&D amp bias OCBCDODV= 15.82 / (V) CEB C&D output diode OCBCLKA1= 32.0601 / CB clock X pwb temp OCBCLKA2= 29.8122 / CB clock Y pwb temp OCBCMAA1= -14.921 / (V) CB clock drive X -15 analog V OCBCP5A1= 5.0911 / (V) CB clock drive X +5V OCBCPAA1= 14.7844 / (V) CB clock drive X +15 analog V OCBCMAA2= -14.921 / (V) CB clock drive Y -15 analog V OCBCP5A2= 5.0911 / (V) CB clock drive Y +5V OCBCPAA2= 14.7747 / (V) CB clock drive Y +15 analog V OCBLGABV= -3.99906 / (V) CEB last gate A&B OCBLGCDV= -3.38871 / (V) CEB last gate C&D OCBP1LHV= 1.92376 / (V) CEB phase 1 lower Hi V OCBP1LLV= -10.0755 / (V) CEB phase 1 lower low V OCBP1UHV= 1.92864 / (V) CEB phase 1 upper Hi V OCBP1ULV= -10.0755 / (V) CEB phase 1 upper low V OCBP2LHV= 1.92376 / (V) CEB phase 2 lower Hi V OCBP2LLV= -10.0755 / (V) CEB phase 2 lower low V OCBP2UHV= 1.93352 / (V) CEB phase 2 upper Hi V OCBP2ULV= -10.0852 / (V) CEB phase 2 upper low V OCBP3LHV= 5.46821 / (V) CEB phase 3 lower Hi V OCBP3LLV= -7.06894 / (V) CEB phase 3 lower low V OCBP3UHV= 5.46821 / (V) CEB phase 3 upper Hi V OCBP3ULV= -7.0884 / (V) CEB phase 3 upper low V OCBRABHV= 11.9678 / (V) CEB reset gate AB Hi OCBRABLV= 0.0390036 / (V) CB reset gate AB Lo OCBRCDHV= 11.9094 / (V) CB reset gate CD Hi OCBRCDLV= -0.0244726 / (V) CB reset gate CD Lo OCBS1AHV= 4.91847 / (V) CB serial phase 1A Hi V OCBS1ALV= -5.92803 / (V) CB serial phase 1A Lo V OCBS1BHV= 4.92334 / (V) CB serial phase 1B Hi V OCBS1BLV= -5.94263 / (V) CB serial phase 1B Lo V OCBS1CHV= 4.94766 / (V) CB serial phase 1C Hi V OCBS1CLV= -6.02046 / (V) CB serial phase 1C Lo V OCBS1DHV= 4.96226 / (V) CB serial phase 1D Hi V OCBS1DLV= -6.02046 / (V) CB serial phase 1D Lo V OCBS3AHV= 4.93307 / (V) CB serial phase 3A Hi V OCBS3ALV= -5.94263 / (V) CB serial phase 3A Lo V OCBS3BHV= 4.91361 / (V) CB serial phase 3B Hi V OCBS3BLV= -5.95236 / (V) CB serial phase 3B Lo V OCBS3CHV= 4.95253 / (V) CB serial phase 3C Hi V OCBS3CLV= -6.02046 / (V) CB serial phase 3C Lo V OCBS3DHV= 4.9428 / (V) CB serial phase 3D Hi V OCBS3DLV= -6.03506 / (V) CB serial phase 3D Lo V OCBSABHV= 4.91361 / (V) CB serial phase 2 AB Hi OCBSABLV= -5.94263 / (V) CB serial phase 2 AB Lo OCBSCDHV= 4.96712 / (V) CB serial phase 2 CD Hi V OCBSCDLV= -6.02533 / (V) CB serial phase 2 CD low V OCBSM1PV= -0.00251285 / (V) CB state machine 1 +5V OCBSM2PV= 5.13002 / (V) CB state machine 2 +5V OCBSWAHV= 4.91361 / (V) CB summing well A Hi OCBSWALV= -5.95236 / (V) CB summing well A Lo OCBSWBHV= 4.91361 / (V) CB summing well B Hi OCBSWBLV= -5.93776 / (V) CB summing well B Lo OCBSWCHV= 4.97199 / (V) CB summing well C Hi OCBSWCLV= -6.01074 / (V) CB summing well C Lo OCBSWDHV= 4.97199 / (V) CB summing well D Hi OCBSWDLV= -5.98155 / (V) CB summing well D Lo OCBTGLHV= 5.01091 / (V) CEB transfer gate lower Hi V OCBTGLLV= -7.01056 / (V) CEB transfer gate lower Low V OCBTGUHV= 5.00604 / (V) CEB transfer gate upper Hi V OCBTGULV= -7.02029 / (V) CEB transfer gate lower Low V OCBTIMT = 27.0367 / CEB timing pwb temp OCLM5V = -5.1691 / (V) Calibration lamps -5V voltage OCLM5VC = -0.00498975 / Calibration lamps -5V current OCLP30V = 29.5512 / (V) Calibration lamps +30V voltage OCLP30VC= -0.00460794 / Calibration lamps +30V current OCLP5V = 5.21759 / (V) Calibration lamps +5V voltage OCLPDKX = 'All Off ' / Calibration lamps PD krypton lamp monito OCLTUNGX= 'All Off ' / Calibration lamps tungsten lamp monitor OCLP3CLX= ' ' / Calibration lamps platinum 3 current lev OCLP2CLX= ' ' / Calibration lamps platinum 2 current lev OCLP1CLX= ' ' / Calibration lamps platinum 1 current lev OCLP3ENX= ' ' / Calibration lamps platinum lamp 3 enable OCLP2ENX= ' ' / Calibration lamps platinum lamp 2 enable OCLP1ENX= ' ' / Calibration lamps platinum lamp 1 enable OCLKLENX= 'OFF ' / Calibration Lamps krypton lamp enable OCLDLENX= 'OFF ' / Calibration Lamps deuterium lamp enable OCLT34X = ' ' / Calibration Lamps Tungsten 3&4 enable OCLT12X = ' ' / Calibration Lamps Tungsten 1&2 enable OSWREVBX= 'Positive' / Slit Wheel Revolution Bit OSWABSP = 1419800 / Slit Wheel Absolute position OSWCCOMX= 0 / Slit Wheel motor C commutation status OSWBCOMX= 0 / Slit Wheel motor B commutation status OSWACOMX= 0 / Slit Wheel motor A commutation status OSWOUTX = 'Enable ' / Slit Wheel output enable OSWSHDWX= 'Normal ' / Slit Wheel shutdown OSWDC10V= 10.1072 / (V) Slit Wheel DAC reference 10V OSWMTRC = -0.00817581 / (A) Slit Wheel motor current OSWMVEL = -0.0198742 / (Rad) Slit whell motor velocity OMSCYL1P= 866 / Mode select cylinder 1 position OMSCYL3P= 4921 / Mode select cylinder 3 position OMSCYL4P= 2739 / Mode select cylinder 4 position OMSC1SP = 114 / Mode select cylinder 1 shaft position OMSC3SP = 138 / Mode select cylinder 3 shaft position OMSC4SP = 158 / Mode select cylinder 4 shaft position OMSC1CRP= 1790 / Mode select cyl. 1 resolver position OMSC3CRP= 61732 / Mode select cyl. 3 resolver position OMSC4CRP= 24429 / Mode select cyl. 4 resolver position OMSC4MPX= 'OFF ' / Model select cylinder 4 motor powered OMSC3MPX= 'OFF ' / Model select cylinder 3 motor powered OMSC1MPX= 'OFF ' / Model select cylinder 1 motor powered OMSPOSSX= 'CYL 1 ' / Mode select position select OMSC4MEX= 'Disable ' / Mode select cylinder 4 motor enable OMSC3MEX= 'Disable ' / Mode select cylinder 3 motor enable OMSC1MEX= 'Disable ' / Mode select cylinder 1 motor enable OMSCSELX= 'None ' / Mode select cylinder motor select OMSSTCIX= 'NotComp ' / Mode select step complete int OCMMPOSX= 'Remove ' / Cal insert mechanism motor position OSEPOSX = 'Block 1 ' / Echelle blocker switch position OSMPOSX = 'Close ' / Mode isolation shutter switch position OSCCMDDP= 1536 / CCD Shutter commanded position OSCRSVP = 1536 / CCD Shutter resolver position OSCMTRC = -0.0187839 / (A) CCD Shutter motor current OKMDXP = 0 / Corrector mechanism DITS X position OKMDYXP = 0 / Corrector mechanism DITS YX position OKMFOCP = 0.183714 / Corrector mechanism focus position OKMMYENX= 'Disable ' / Corrector mechanism motor Y enable OKMMFENX= 'Disable ' / Corrector mechanism motor focus enabled OKMFCLX = 'Disable ' / Corrector mechanism focus current level OKMYCLX = 'Disable ' / Corrector mechanism Y current level OKMXCLX = 'Disable ' / Corrector mechanism X current level OKMMXENX= 'Disable ' / Corrector mechanism motor X enable OKMDIRX = 'Forward ' / Corrector mechanism motor direction OKMHDOFX= 0 / Corrector mechanism motor holdoff OKMSPDX = '6.10 ' / Corrector mechanism motor speed OKMDITX = 'Enable ' / Corrector mechanism DITS/LVDT switched OCLTRLYX= ' ' / Cal. Lamp Tungsten enable relay OCSSLITP= 34 / Control section slit position OCSDQEXJ= 1613 / Control section data queue extract OCSDQINJ= 1613 / Control section data queue insert OCSXQEXJ= 48 / Control section Expos Que Extract OCSXQINJ= 50 / Control section Expos Que Insert OCSOBSQ = -29754 / Control section observation number OCSBUSWX= 'Disable ' / Control system BUS wait enable OCSEDCRX= 'Enable ' / Control system EDAC correction enable OCSWDTRX= 'Enable ' / Control sys watchdog timer reset enable OCSEDMRX= 'Enable ' / Control system EDAC multi-bit error rese OCSPAGX = 'Enable ' / Control system paging enabled OCSEDHWX= 'Enable ' / Control system EDAC hardware enable OCSOPSNP= 0 / Control section optical scan position OCSOPMDP= 864 / Control section optical mode position OCSRSTX = 'RIUDisc ' / Control section reason for reset OCSDUMPJ= 326 / Control section dump pointer OCSFILLJ= 326 / Control section fill pointer OCSDATX = 'Collect ' / Control system data collection OCSLIMX = 'Checking' / Control system limits checking OCSEDRFX= 'Enable ' / Control system EDAC refresh enable OCSMODEX= 'Operate ' / Control section mode boot/operate OMIESWX = 'MIEOper ' / MIE software mode OCSMXDCX= 'NoDopCor' / CS MAMA exposure doppler correction OCSMXABX= 'OK ' / Control system MAMA exposure abort OCSMXSUX= 'Ready ' / Control system MAMA exposure setup OCSMXTYX= 'Accum ' / Control system MAMA exposure type OCSMXX = 'NoExp ' / Control system MAMA exposure status OCSMXDTX= 'MAMA1 ' / Control system MAMA expsoure detector OMIERSTX= 204 / MIE reason for reset OMIEINTX= 'No_Expo ' / MIE integration status OMIETOX = 'OK ' / MIE timeout status OMIEWTX = 'NoWait ' / MIE wait state OMIEINIX= 'Ready ' / MIE initial status OCSCEXPX= 'SubASet ' / Control system CCD exposure status OMIELELX= 'LocalOK ' / Local event rate threshold execeeded OMIELEMX= 'LocalChk' / MIE not performing local event rate check OM2GLBLX= 'NoGlobal' / MAMA2 global event rate check flag OM1GLBLX= 'GloblAct' / MAMA1 global event rate check flag OMIEPAGX= 'Enable ' / MIE paging status OCSXIDLX= 'NoIdle ' / Control section exposure idle status OCSTDFX = 'TDFUp ' / Control section take data flag status OCSTDFRX= 'Respond ' / Control section take data flag response OCSM2PX = 'On ' / Control section MAMA2 power status OCSM1PX = 'On ' / Control section MAMA1 power status OCSCCDPX= 'On ' / Control section CCD power status OCSEXPQ = 197 / Control section exposure counter OTAFLUXQ= 36210 / Target acquisition flux count OTASLWA2= 0 / Target acquisition X pixels to slew OTASLWA1= -17 / Target acquisition Y pixels to slew OTASLTA1= 0 / Target acquistion slit X position OTASLTA2= 0 / Target acquisition slit Y position OTATARA1= 0 / Target acquisition target x position OTATARA2= 0 / Target acqusition target Y position OSCPENAX= 'Enable ' / CCD shutter position enabled OSCMCOMX= 'A+B- ' / CCD shutter motor commutator state OSCOUTEX= 'Enable ' / CCD shutter output enable OSCCSORX= 'CEBCntl ' / CCD shutter CS override OSCCSCX = 'CSClose ' / CCD shutter CS control OSCPLSBX= 'MEB1 ' / CCD shutter prom LSB OSCOPNX = 'ClLtchLd' / CCD shutter open/closed OSCCEBCX= 'CEBClose' / CCD shutter CEB control OSCSHDWX= 'Normal ' / CCD shutter shutdown OCCPROTX= 'NoProt ' / CCD protection status OCCRSRTX= ' ' / CCD data resort status OSCTDFX = 'TDFOpen ' / CCD shutter TDF OCCXTYPX= 'Full/Sub' / CCD exposure type OMA1DCFG= 24351 / MAMA1 configured row/columns selects OMA2DCFG= 24351 / MAMA2 configured row/columns selects OMA1GTHR= 77000 / MAMA1 global monitor threshold OMA2GTHR= 0 / MAMA2 global monitor threshold OM1GEVIP= 99.9357 / MAMA1 global event rate integration period (ms)OM2GEVIP= 0.0 / MAMA2 global event rate integration period (ms)END ªªªªªªªªªªªªªªªªD3V01BF ÅÅŒšžÐõ‹zI ó"ʦ¼p½pÄ`Å0 ÃßÌÌ«P±0Â@²p€°°ª0½p à`À°ÍàÈðÈðÈàÔð¢`Ö ¡€¿àþ © ÁpÁ@àÉàѠѹ0н`µ¸ð¸ðáÐáðͰÎÐÍÐÍ€¦`´€¥°³ §Ãp¨0Ÿ0©€¤`§`Ÿpß`àÀ¿ß°å`ÅÐ@  ( -þ  ˜»3Z"d «fÕQ Ä Í ÐÆ÷ùò -7b Ø ™Ò »½17 Õ^–G Ã Ì ÑÅõùðùÔÀÃ^À^ð__@ƒê°%`ÂÀÚðï€%PÁPÚàÔàÀ‡ ‚À pÁßp ÐÁß`LÐT ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€€™°~`h ~€h@ f@€f@~Àh@~@h@f@eà~@h@ f €pÂ`~@h~@h`Àf€Àg@€À¦à€ ¦À|`>€ ß`0À0ªcÀ°€ b9 -³rŠžþñ$_ml``€„ðñ"MM02 Æ`ƒFF¥€ÌàßÅrÿïI‚__–d=ÿ"ʦ ¼p½pÄ`Å0 ÃßÌÌ«P±0Â@²p€°°ª0½pðݰ¾0ÍàÈàÈàÈàÒР0Ó  ¿Ðþ © Á`ÁPàÉàѠр¹0нpµ€¸ð¸ðáá Í°ÎÀÍÀÍp© µÐ¦±°¨€Æ@«`¡ §¤¨€¡Ð›àÀß à`¿Pàpð¿P#  ( -þ  ˜¼3X"d ¬f×Q Ä Í ÐÆ÷ùó -7b Ø ™Ò ¼½18 Õ^–G Ã Ì ÑÅõùðùÔÀÃ^À^ð^ð_Pƒê°%@ÁÐÚàï€%@ÁÐÚÐÔàÀ‡ ‚°  Áàßp  Áàß`LÐT ˜ €˜°€˜ €˜À`F@¦ F@¥à™À€™à~`h@~@h``f@€f@~`h@~@h`@f`eà~@h@`f €ÁÐ~@h`~@h``f€Àfà€À§€À¦à|p? à }`Ä€€€ª“À°€ b9 -³rŠžþñ$_ml ŸØ€„ðñ"MM02 Æ`ƒFF¥€Ìà߯rÿïF‚__–d=ÿ`"m°3Ç挎 hP ýx+ädUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUiUi \ No newline at end of file diff --git a/lib/stistools/tests/test_tastis.py b/lib/stistools/tests/test_tastis.py deleted file mode 100644 index 630f3f4a..00000000 --- a/lib/stistools/tests/test_tastis.py +++ /dev/null @@ -1,467 +0,0 @@ -import pytest -import shutil -import os - -from astropy.io import fits - -from ..tastis import tastis - -filelist = ['data/tastis/oc7w11viq_raw.fits', - 'data/tastis/ocmv0lw6q_raw.fits', - 'data/tastis/octka7jeq_raw.fits', - 'data/tastis/octr11h4q_raw.fits', - 'data/tastis/octr11hrq_raw.fits', - 'data/tastis/ocu252cmq_raw.fits', - 'data/tastis/ocui04xeq_raw.fits', - 'data/tastis/ocyw05afq_raw.fits'] - - -# Need to test keyword ACQSTAT update -def setup_module(): - for filename in filelist: - shutil.copy(filename, filename.replace("raw.fits", "copy_raw.fits")) - shutil.copy(filename.replace("raw.fits", "spt.fits"), - filename.replace("raw.fits", "copy_spt.fits")) - - -def teardown_module(): - for filename in filelist: - os.remove(filename.replace("raw.fits", "copy_raw.fits")) - os.remove(filename.replace("raw.fits", "copy_spt.fits")) - - -def test_header_update1(): - tastis('data/tastis/oc7w11viq_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/oc7w11viq_copy_raw.fits') - assert head['ACQP_END'] == 'OK_END' - assert head['ACQP_FLX'] == 'LO_FLUX' - assert head['ACQP_RAT'] == 'HIRATIO' - assert head['ACQP_SAT'] == 'UNSAT' - assert head['ACQSTAT'] == 'FAILED' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update2(): - tastis('data/tastis/octka7jeq_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/octka7jeq_copy_raw.fits') - assert head['ACQP_END'] == 'OK_END' - assert head['ACQP_FLX'] == 'OK_FLUX' - assert head['ACQP_RAT'] == 'LORATIO' - assert head['ACQP_SAT'] == 'UNSAT' - assert head['ACQSTAT'] == 'FAILED' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update3(): - tastis('data/tastis/octr11hrq_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/octr11hrq_copy_raw.fits') - assert head['ACQP_END'] == 'HI_END' - assert head['ACQP_FLX'] == 'LO_FLUX' - assert head['ACQP_RAT'] == 'HIRATIO' - assert head['ACQP_SAT'] == 'UNSAT' - assert head['ACQSTAT'] == 'FAILED' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update4(): - tastis('data/tastis/ocui04xeq_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/ocui04xeq_copy_raw.fits') - assert head['ACQP_END'] == 'HI_END' - assert head['ACQP_FLX'] == 'OK_FLUX' - assert head['ACQP_RAT'] == 'LORATIO' - assert head['ACQP_SAT'] == 'UNSAT' - assert head['ACQSTAT'] == 'FAILED' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update5(): - tastis('data/tastis/ocyw05afq_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/ocyw05afq_copy_raw.fits') - assert head['ACQP_END'] == 'OK_END' - assert head['ACQP_FLX'] == 'OK_FLUX' - assert head['ACQP_RAT'] == 'OKRATIO' - assert head['ACQP_SAT'] == 'UNSAT' - assert head['ACQSTAT'] == 'OK' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update6(): - tastis('data/tastis/ocmv0lw6q_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/ocmv0lw6q_copy_raw.fits') - assert head['ACQSTAT'] == 'OK' - assert head['ACQ_LAMP'] == 'OK_LAMP' - assert head['ACQ_RAT'] == 'OKRATIO' - assert head['ACQ_SAT'] == 'UNSAT' - assert head['ACQ_SLEW'] == 'OK_SLEW' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update7(): - tastis('data/tastis/octr11h4q_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/octr11h4q_copy_raw.fits') - assert head['ACQSTAT'] == 'FAILED' - assert head['ACQ_LAMP'] == 'OK_LAMP' - assert head['ACQ_RAT'] == 'OKRATIO' - assert head['ACQ_SAT'] == 'UNSAT' - assert head['ACQ_SLEW'] == 'BIGSLEW' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_header_update8(): - tastis('data/tastis/ocu252cmq_copy_raw.fits', update=True) - head = fits.getheader('data/tastis/ocu252cmq_copy_raw.fits') - assert head['ACQSTAT'] == 'FAILED' - assert head['ACQ_LAMP'] == 'OK_LAMP' - assert head['ACQ_RAT'] == 'LORATIO' - assert head['ACQ_SAT'] == 'UNSAT' - assert head['ACQ_SLEW'] == 'OK_SLEW' - assert head['DATAFLAG'] == 'TDF_Up' - assert head['GROUPS'] is False - - -def test_tastis_ouput_f25nd3(capsys): - tastis('data/tastis/ocmv0lw6q_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "ocmv0lw6q HST/STIS MIRVIS F25ND3 ACQ/POINT\n" \ - "prop: 13760 visit: 0L line: 1 target: CD-59D3300\n" \ - "obs date, time: 2016-09-29 23:43:50 exposure time: 1.10\n" \ - "dom GS/FGS: S4B0000993F2 sub-dom GS/FGS: S4B0000953F1\n" \ - "ACQ params: bias sub: 1510 checkbox: 3 method: FLUX CENTROID\n" \ - "subarray (axis1,axis2): size=(100,100) corner=(487,466)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Coarse locate phase: Target flux in max checkbox (DN): 1560\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 534.2 507.0 48.2 42.0\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -1.5 -9.0 -0.079 -0.457 -0.379 0.268\n" \ - "-------------------------------------------------------------------------------\n" \ - "Fine locate phase: Target flux in max checkbox (DN): 1559\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 534.2 516.8 48.2 51.8\n" \ - "Ref ap location: 537.5 517.0 19.5 17.0\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -2.1 -0.2 -0.104 -0.010 -0.081 -0.067\n" \ - "-------------------------------------------------------------------------------\n" \ - "Total est. slew: -3.6 -9.2 -0.183 -0.467 -0.460 0.201\n" \ - "-------------------------------------------------------------------------------\n" \ - "Your ACQ appears to have succeeded, as the fluxes in the coarse\n" \ - "and fine stages agree within 25% and the fine slews were less than\n" \ - "4 pixels as expected\n" \ - "\n" \ - "===============================================================================\n" - - -def test_tastis_zero_divide(): - with pytest.raises(ZeroDivisionError): - tastis('data/tastis/o4er06llq_raw.fits') - - -def test_tastis_output_toobright(capsys): - tastis('data/tastis/oc7w11viq_raw.fits') - captured = capsys.readouterr() - print(captured.out) - assert captured.out == "===============================================================================\n" \ - "oc7w11viq HST/STIS G430L 0.3X0.05ND ACQ/PEAK-UP\n" \ - "prop: 13465 visit: 11 line: 3 target: HD128621-2\n" \ - "obs date, time: 2014-07-24 22:05:06 exposure time: 0.10\n" \ - "dom GS/FGS: S7QX000330F1 sub-dom GS/FGS: S7QX000694F2\n" \ - "ACQ params: bias sub: 1510 method: RETURN-TO-BRIGHTEST\n" \ - "subarray (axis1,axis2): size=(1022,32) corner=(25,500)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Scan type: LINEARAXIS2 Step size (mas): 250\n" \ - "\n" \ - " [210 753 0]\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: 0.0 -0.1 0.000 -0.005 -0.004 0.004\n" \ - "Flux in post-slew confirmation image (751752) - Pedestal (748587) = 3165 DN\n" \ - "-------------------------------------------------------------------------------\n" \ - "The flux in the confirmation image is 320% greater than the maximum flux\n" \ - "in the ACQ/PEAK scan. An excess greater than 100% indicates\n" \ - "problems in the ACQ/PEAK.\n" \ - "\n" \ - "The flux in the confirmation image is 16% of the recommended minimum\n" \ - "of 20000 DN for a dispersed-light ACQ/PEAK. The signal-to-noise in\n" \ - "the ACQ/PEAK may be inadequate for an accurate centering.\n" \ - "\n" \ - "===============================================================================\n" - - -def test_tastis_output_geometric_center(capsys): - tastis('data/tastis/ocoa03q2q_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "ocoa03q2q HST/STIS MIRVIS F28X50LP ACQ/DIFFUSE\n" \ - "prop: 13693 visit: 03 line: 1 target: CERES-2\n" \ - "obs date, time: 2015-08-16 16:34:18 exposure time: 1.10\n" \ - "dom GS/FGS: SCHN000911F2 sub-dom GS/FGS: SCHK000675F1\n" \ - "ACQ params: bias sub: 1510 checkbox: 3 method: GEOMETRIC-CENTER\n" \ - "subarray (axis1,axis2): size=(104,104) corner=(485,464)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Coarse locate phase: Target flux in max checkbox (DN): 87956\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 528.0 515.0 44.0 52.0\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -7.7 -1.0 -0.393 -0.051 -0.314 -0.242\n" \ - "-------------------------------------------------------------------------------\n" \ - "Fine locate phase: Target flux in max checkbox (DN): 87849\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 534.0 517.0 50.0 54.0\n" \ - "Ref ap location: 537.3 515.4 21.3 17.4\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -2.0 1.6 -0.103 0.081 -0.015 -0.130\n" \ - "-------------------------------------------------------------------------------\n" \ - "Total est. slew: -9.8 0.6 -0.496 0.030 -0.329 -0.372\n" \ - "-------------------------------------------------------------------------------\n" \ - "Your ACQ appears to have succeeded, as the fluxes in the coarse\n" \ - "and fine stages agree within 25% and the fine slews were less than\n" \ - "4 pixels as expected\n" \ - "\n" \ - "===============================================================================\n" - - -def test_tastis_output_lowflux(capsys): - tastis('data/tastis/octka7jeq_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "octka7jeq HST/STIS G430L 0.2X0.09 ACQ/PEAK-UP\n" \ - "prop: 14161 visit: A7 line: 2 target: HD-84937\n" \ - "obs date, time: 2016-05-09 23:15:29 exposure time: 0.20\n" \ - "dom GS/FGS: N6U6000023F2 sub-dom GS/FGS: N6U7000178F1\n" \ - "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ - "subarray (axis1,axis2): size=(1022,32) corner=(26,500)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Scan type: LINEARAXIS1 Step size (mas): 69\n" \ - "\n" \ - " [ 0 16309 83580 21884 8029]\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: 0.2 0.0 0.010 0.000 0.007 0.007\n" \ - "Flux in post-slew confirmation image (852814) - Pedestal (791686) = 61128 DN\n" \ - "-------------------------------------------------------------------------------\n" \ - "The flux in the confirmation image is only 73% of the maximum flux\n" \ - "in the ACQ/PEAK scan. Percentages below 80% often indicate problems\n" \ - "in the ACQ/PEAK.\n" \ - "\n" \ - "===============================================================================\n" - - -def test_tastis_output_slewerr(capsys): - tastis('data/tastis/octr11h4q_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "octr11h4q HST/STIS MIRVIS F25ND5 ACQ/POINT\n" \ - "prop: 14341 visit: 11 line: 1 target: HD128620\n" \ - "obs date, time: 2016-08-28 19:57:49 exposure time: 0.30\n" \ - "dom GS/FGS: S7QX000303F1 sub-dom GS/FGS: S7QX000751F2\n" \ - "ACQ params: bias sub: 1510 checkbox: 3 method: FLUX CENTROID\n" \ - "subarray (axis1,axis2): size=(100,100) corner=(487,466)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Coarse locate phase: Target flux in max checkbox (DN): 278\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 557.0 473.0 71.0 8.0\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: 21.3 -43.0 1.080 -2.184 -0.781 2.308\n" \ - "-------------------------------------------------------------------------------\n" \ - "Fine locate phase: Target flux in max checkbox (DN): 280\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 547.0 564.0 61.0 99.0\n" \ - "Ref ap location: 537.6 517.3 19.6 17.3\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: 10.6 46.7 0.541 2.372 2.060 -1.295\n" \ - "-------------------------------------------------------------------------------\n" \ - "Total est. slew: 31.9 3.7 1.621 0.188 1.279 1.013\n" \ - "-------------------------------------------------------------------------------\n" \ - "The fine slew (to center the target in the reference aperture) is larger\n" \ - "than 4 pixels. This may indicate a problem with your acquisition.\n" \ - "\n" \ - "===============================================================================\n" - - -def test_tastis_output_highflux(capsys): - tastis('data/tastis/octr11hrq_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "octr11hrq HST/STIS G430M 31X0.05NDA ACQ/PEAK-UP\n" \ - "prop: 14341 visit: 11 line: 9 target: HD128621-2\n" \ - "obs date, time: 2016-08-28 22:33:14 exposure time: 0.10\n" \ - "dom GS/FGS: S7QX000303F1 sub-dom GS/FGS: S7QX000751F2\n" \ - "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ - "subarray (axis1,axis2): size=(1022,32) corner=(25,500)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Scan type: LINEARAXIS1 Step size (mas): 39\n" \ - "\n" \ - " [5478 0 798 3264 4796 1923 4876]\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: 0.2 0.0 0.010 0.000 0.007 0.007\n" \ - "Flux in post-slew confirmation image (882661) - Pedestal (871184) = 11477 DN\n" \ - "-------------------------------------------------------------------------------\n" \ - "The flux in the confirmation image is 110% greater than the maximum flux\n" \ - "in the ACQ/PEAK scan. An excess greater than 100% indicates\n" \ - "problems in the ACQ/PEAK.\n" \ - "\n" \ - "The flux in the confirmation image is 57% of the recommended minimum\n" \ - "of 20000 DN for a dispersed-light ACQ/PEAK. The signal-to-noise in\n" \ - "the ACQ/PEAK may be inadequate for an accurate centering.\n" \ - "\n" \ - "The maximum flux in the sequence occurred at one end.\n" \ - "This may indicate that the target was beyond that end\n" \ - "or that a neighboring object affected the acquisition.\n" \ - "===============================================================================\n" - - -def test_tastis_output_diffflux(capsys): - tastis('data/tastis/ocu252cmq_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "ocu252cmq HST/STIS MIRVIS F28X50OII ACQ/POINT\n" \ - "prop: 14143 visit: 52 line: 1 target: BD+41-3306\n" \ - "obs date, time: 2016-06-06 08:30:05 exposure time: 2.10\n" \ - "dom GS/FGS: N2JU001340F2 sub-dom GS/FGS: N2K1001229F1\n" \ - "ACQ params: bias sub: 1510 checkbox: 3 method: FLUX CENTROID\n" \ - "subarray (axis1,axis2): size=(100,100) corner=(487,466)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Coarse locate phase: Target flux in max checkbox (DN): 1442\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 527.8 513.1 41.8 48.1\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -7.9 -2.9 -0.400 -0.147 -0.387 -0.179\n" \ - "-------------------------------------------------------------------------------\n" \ - "Fine locate phase: Target flux in max checkbox (DN): 611\n" \ - "\n" \ - " global local\n" \ - " axis1 axis2 axis1 axis2\n" \ - "Target location: 534.1 516.1 48.1 51.1\n" \ - "Ref ap location: 537.5 516.5 19.5 16.5\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -2.1 -0.4 -0.106 -0.020 -0.089 -0.061\n" \ - "-------------------------------------------------------------------------------\n" \ - "Total est. slew: -10.0 -3.3 -0.506 -0.168 -0.477 -0.239\n" \ - "-------------------------------------------------------------------------------\n" \ - "The fluxes in the maximum checkbox in the fine and coarse stages differ\n" \ - "by more than 25%. This may indicate a problem with your acquisition.\n" \ - "\n" \ - "===============================================================================\n" - - -def test_tastis_output_unbalanced_flux(capsys): - tastis('data/tastis/ocui04xeq_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "ocui04xeq HST/STIS MIRVIS 52X0.1E1 ACQ/PEAK-UP\n" \ - "prop: 14086 visit: 04 line: 2 target: M62-VLA1\n" \ - "obs date, time: 2016-07-22 06:10:30 exposure time: 20.00\n" \ - "dom GS/FGS: S8ES000684F2 sub-dom GS/FGS: S8ES000207F1\n" \ - "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ - "subarray (axis1,axis2): size=(32,32) corner=(524,883)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Scan type: LINEARAXIS1 Step size (mas): 75\n" \ - "\n" \ - " [17007 5446 1717 993 0]\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -2.6 0.0 -0.132 0.000 -0.093 -0.093\n" \ - "Flux in post-slew confirmation image (56705) - Pedestal (43530) = 13175 DN\n" \ - "-------------------------------------------------------------------------------\n" \ - "The flux in the confirmation image is only 77% of the maximum flux\n" \ - "in the ACQ/PEAK scan. Percentages below 80% often indicate problems\n" \ - "in the ACQ/PEAK.\n" \ - "\n" \ - "The maximum flux in the sequence occurred at one end.\n" \ - "This may indicate that the target was beyond that end\n" \ - "or that a neighboring object affected the acquisition.\n" \ - "===============================================================================\n" - - - -def test_tastis_output_linearaxis2(capsys): - tastis('data/tastis/ocyw05afq_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "ocyw05afq HST/STIS G430L 0.2X0.09 ACQ/PEAK-UP\n" \ - "prop: 14084 visit: 05 line: 2 target: BD-11D916\n" \ - "obs date, time: 2016-09-22 08:33:17 exposure time: 1.80\n" \ - "dom GS/FGS: S2AE000156F1 sub-dom GS/FGS: S2AE000086F2\n" \ - "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ - "subarray (axis1,axis2): size=(1022,32) corner=(26,500)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Scan type: LINEARAXIS2 Step size (mas): 150\n" \ - "\n" \ - " [ 5139 67252 0]\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: 0.0 0.0 0.000 0.000 0.000 0.000\n" \ - "Flux in post-slew confirmation image (907707) - Pedestal (838752) = 68955 DN\n" \ - "-------------------------------------------------------------------------------\n" \ - "The confirmation image has a flux between 0.8 and 2.0 times the\n" \ - "maximum flux in the peakup, which is typical of a successful ACQ/PEAK.\n" \ - "===============================================================================\n" - - -def test_tastis_output_linearaxis1(capsys): - tastis('data/tastis/od3v01bfq_raw.fits') - captured = capsys.readouterr() - assert captured.out == "===============================================================================\n" \ - "od3v01bfq HST/STIS MIRVIS 52X0.05 ACQ/PEAK-UP\n" \ - "prop: 14493 visit: 01 line: 5 target: 2MASS-J23062928-0502285\n" \ - "obs date, time: 2016-09-26 04:17:57 exposure time: 10.00\n" \ - "dom GS/FGS: SB5F000135F1 sub-dom GS/FGS: SB5F000156F2\n" \ - "ACQ params: bias sub: 1510 method: MAX-FLUX-CENTROID\n" \ - "subarray (axis1,axis2): size=(32,32) corner=(521,500)\n" \ - "-------------------------------------------------------------------------------\n" \ - "Scan type: LINEARAXIS1 Step size (mas): 26\n" \ - "\n" \ - " [ 0 848 3069 3432 1912 555 228]\n" \ - "\n" \ - " axis1 axis2 axis1 axis2 V2 V3\n" \ - " (pixels) (arcsec) (arcsec)\n" \ - "Estimated slew: -0.2 0.0 -0.010 0.000 -0.007 -0.007\n" \ - "Flux in post-slew confirmation image (40210) - Pedestal (35982) = 4228 DN\n" \ - "-------------------------------------------------------------------------------\n" \ - "The confirmation image has a flux between 0.8 and 2.0 times the\n" \ - "maximum flux in the peakup, which is typical of a successful ACQ/PEAK.\n" \ - "===============================================================================\n" diff --git a/stistools/__init__.py b/stistools/__init__.py index 31c430a9..10de6057 100755 --- a/stistools/__init__.py +++ b/stistools/__init__.py @@ -10,8 +10,8 @@ from . import mktrace from . import sshift from . import stisnoise -from . import tastis from . import wx2d +from . import odelaytime # These lines allow TEAL to print out the names of TEAL-enabled tasks # upon importing this package. diff --git a/stistools/odelaytime.py b/stistools/odelaytime.py new file mode 100644 index 00000000..86c842f6 --- /dev/null +++ b/stistools/odelaytime.py @@ -0,0 +1,929 @@ +#! /usr/bin/env python + +from datetime import datetime +from math import cos, sin +import numpy as np +from scipy.interpolate import lagrange + +from astropy.io import fits +from astropy.table import Table, vstack, hstack +from astropy.units import cds + +# Lots of notes in the original file + +''' +Compute the times of observation relative to the solar-system barycenter +of a distant object (outside the solar system). It is assumed that +the set of observations covers a short enough time that the object does +not move appreciably during the observations. Note that a one-arcsecond +error in the position of the object can result in a time-delay error +of ~2.4 millisec. It is also assumed that the set of observations covers +a short enough time interval that the relativistic correction, if required, +remains constant during the observations. + +# Date Author Description +# ---- ------ ----------- +# 10-Nov-1984 C. D. Biemesderfer Original module +# 18-Apr-1990 J.-C. Hsu rewrite in SPP +# 19-Jun-1992 J.-C. Hsu read RA_TARG and DEC_TARG from header +# 19-Aug-1997 J.-C. Hsu modify for STIS data +# 23-Aug-2000 Phil Hodge remove out_col & add verbose arguments; +# modify times in-place; update GTI table and +# header keywords as well; change INTERVAL +# from 1. to 0.1; add DELAYCOR and HISTORY +# 10-Jun-2003 Phil Hodge modify to work with SCI extensions; +# change calling sequence (ephem table names +# instead of table pointers) + + + +pointer fin # file template pointer +int nfin # number of files in the input template +double parallax # parallax of the target (in arc sec) +char earth_ephem[SZ_FNAME] # earth ephemeris table name +char obs_ephem[SZ_FNAME] # list of observer ephemeris table names +char in_col[SZ_LINE] # time column name +bool verbose # print timing info? + + +pointer fin # i: file template pointer +int nfin # i: number of files in the input template +double parallax # i: parallax of the target (in arc sec) +char earth_ephem[ARB] # i: name of the earth_ephem table +char obs_ephem[ARB] # i: names of the obs_ephem tables +char in_col[ARB] # i: time column name +#-- +pointer sp +pointer history # for constructing a history record +pointer extname # from first extension, for checking file type +double ra, dec # RA and Dec of the target at J2000 (in deg.) +double objvec[3] # unit geocentric state vector of the target +double mjd1, mjd2 # MJD of the observation start/end time +double epoch # MJD of an event +double delta_sec # correction (sec) to be added to TIME col +double t0_delay # correction at TEXPSTRT +char ifile[SZ_FNAME] +char ifilen[SZ_FNAME] +int nchar, i, j, k +pointer time_e, x_e, y_e, z_e, time_o, x_o, y_o, z_o +pointer tp # pointer of the input table +pointer cptr # for the TIME column in EVENTS tables +pointer cp1, cp2 # for START and STOP columns in GTI table +int nrows # number of rows in a table +int nextend # keyword from primary header +int nevents_tab # number of EVENTS tables (one less than NEXTEND, or 0) +int nsci_ext # number of x1d or image extensions (0 or NEXTEND) +int npts_earth, npts_obs +double tm # a time from the TIME column +double tm_prev # the last tm for which all_delay was called +char text[SZ_TIME] # for printing timing info +char delaycorr[SZ_FNAME] +int frac # for printing percentage done +int filetype # events table, x1d table, image set +bool modified # true if an x1d or image extension was updated + + + +''' + +NLAN_EARTH = 10 +NLAN_OBS = 10 +INTERVAL = 0.1 # in seconds + +# File types, probably don't need this... +EVENTS_TABLE = 1 + +SECPERDAY = 86400 #D0 # number of sec in a day +MINPERDAY = 1440 #D0 # number of min in a day +HRPERDAY = 24 #D0 # number of hours in a day + +LYPERPC = 3.261633 #D0 # light years per parsec +KMPERPC = 3.085678 #D13 # kilometers per parsec +AUPERPC = 206264.8062470964 #D0 # how many AU in one parsec +KMPERAU = KMPERPC/AUPERPC +CLIGHT = 499.00479 #D0 # light travel time (in sec) of 1 AU + +# might not need these +EARTH_EPHEMERIS = 1 +OBS_EPHEMERIS = 2 + +JD_TO_MJD = 2400000.5 #d0 # subtract from JD to get MJD + +RADIAN = 57.295779513082320877 + + + +def odelaytime(table_names, earth_ephem, distance, dist_unit, + in_col, obs_ephem=[], verbose=False): + + parallax = distance + + # convert distance to parsec first + if dist_unit == "au": + parallax /= AUPERPC + elif dist_unit == "ly": + parallax /= LYPERPC + elif dist_unit == "km": + parallax /= KMPERPC + else: + if dist_unit != "pc": + raise ValueError("illegal distance unit: {}".format(dist_unit)) + + # check that distance is non-zero (pc) + if parallax <= 0: + raise ValueError("non-postive distance: {}".format(parallax)) + + # I don't think I need this part + # call smark(sp) + # call salloc(history, SZ_FNAME, TY_CHAR) + # call salloc(extname, SZ_FNAME, TY_CHAR) + + # time_e, x_e, y_e, z_e, npts_earth) + earth_ephem_table = get_ephem(earth_ephem, EARTH_EPHEMERIS) + # time_o, x_o, y_o, z_o, npts_obs + # obs_ephem_table will be None if no file names were provided + obs_ephem_table = get_ephem(obs_ephem, OBS_EPHEMERIS) + if obs_ephem_table is None: + npts_obs = 0 + else: + npts_obs = len(obs_ephem_table) + + for in_table_file in table_names: + if verbose: + print("odelaytime: processing {} ...".format(in_table_file)) + + # determine the file type, based on the first extension + # original code (ln 124) contains some kind of catch all + # for SCI_IMAGE? It also caught anything outside of those options, + # might want to add that back in as well. + in_hdul = fits.open(in_table_file, mode='update') + extname = in_hdul[1].header['EXTNAME'] + if extname == "EVENTS": + filetype = "EVENTS_TABLE" + elif extname == "SCI": + filetype = "X1D_TABLE" + + if 'DELAYCOR' in in_hdul[0].header and \ + in_hdul[0].header['DELAYCOR'] == "COMPLETE": + print("{} has already been corrected, so no further processing" + " will be applied to this file".format(in_table_file)) + continue + else: + in_hdul[0].header['DELAYCOR'] == "PERFORM" + + mjd1 = in_hdul[0].header['TEXPSTRT'] + mjd2 = in_hdul[0].header['TEXPEND'] + ra = in_hdul[0].header['RA_TARG'] + dec = in_hdul[0].header['DEC_TARG'] + + if 'NEXTEND' in in_hdul[0].header: + nextend = in_hdul[0].header['NEXTEND'] + else: + nextend = 1 + + + if filetype == "EVENTS_TABLE": + # assume (for now) that the last extension is a GTI table + nevents_tab = max(nextend-1, 1) + nsci_ext = 0 + elif filetype == "X1D_TYPE": + nevents_tab = 0 + nsci_ext = nextend + else: + nevents_tab = 0 + nsci_ext = nextend + + # check the range + if mjd1 < earth_ephem_table['Time'][0] or \ + mjd2 > earth_ephem_table['Time'][-1]: + print("Epoch is outside the Earth ephemeris range so {} will be" + " skipped".format(in_table_file)) + continue + + # this checks npts_obs first + if obs_ephem_table is not None: + if mjd1 < obs_ephem_table['Time'][0] or \ + mjd2 > obs_ephem_table['Time'][-1]: + print("Epoch is outside the obs ephemeris range so {} will be" + " skipped".format(in_table_file)) + + + # Check that all expected extensions and the time column are + # present. We do this here before making any change, to avoid + # the possibility of correcting only part of the input file. + if not ext_exist(in_table_file, in_col, nevents_tab, nsci_ext): + continue + + # calculate the target's positional vector + cosdec = cos(dec / RADIAN) + objvec = np.array([cosdec * cos(ra / RADIAN), + cosdec * sin(ra / RADIAN), + sin(dec / RADIAN)]) + + # Get the delay at the exposure start time. We'll subtract this + # delay from each time that we update, if that time is relative + # to EXPSTART (which must be the same as TEXPSTRT). + t0_delay = all_delay(mjd1, parallax, objvec, earth_ephem_table, + len(earth_ephem_table), obs_ephem_table, npts_obs) + + if filetype == "EVENTS_TABLE": + # update times in GTI table + if 'GIT' in in_hdul: + gti_tab = in_hdul['GTI'].data + nrows = len(gti_tab) + for row in gti_tab: + tm = row['START'] + epoch = mjd1 + tm / SECPERDAY + delta_sec = all_delay(epoch, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + row['START'] = tm + (delta_sec - t0_delay) + + tm = row['STOP'] + epoch = mjd1 + tm / SECPERDAY + delta_sec = all_delay(epoch, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + row['STOP'] = tm + (delta_sec - t0_delay) + + in_hdul.flush() + if verbose: + print(" GIT extension has been updated") + + else: + # If there's no GTI, last extensions is an EVENTS table + nevents_tab += 1 + + # loop through all EVENTS extensions (there will be none if + # the input is an x1d or image file) + for e_indx in range(1, nevents_tab+1): + events_tab = in_hdul['EVENTS', e_indx] + mjd1 = events_tab.header['EXPSTART'] + mjd2 = events_tab.header['EXPEND'] + + # find the time (since EXPSTART) column in the table + nrows = len(events_tab.data[in_col]) + + tm_prev = 0 + + # print out timing info + if verbose: + print(" start time: ", datetime.now()) + + # go through each row + for r_indx in range(nrows): + row = events_tab.data[r_indx] + tm = row[in_col] + + # if the time is within INTERVAL of the previous time, + # apply the same delaytime, otherwise recalculate + if r_indx == 1 or (tm - tm_prev) > INTERVAL: + epoch = mjd1 + tm / SECPERDAY + + delta_sec = all_delay(epoch, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + tm_prev = tm + + # write the corrected time back to the time column + row[in_col] = tm + (delta_sec - t0_delay) + + if verbose: + # print percent done + print(" Percentage done: {}". + format(int(100*(r_indx/nrows)))) + + # add delaytime to EXPSTART and EXPEND, and update header + delta_sec = all_delay(mjd1, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + events_tab.header['EXPSTART'] = mjd1 + delta_sec/SECPERDAY + + delta_sec = all_delay(mjd1, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + + events_tab.header['EXPEND'] = mjd2 + delta_sec/SECPERDAY + in_hdul.flush() + if verbose: + print(" [EVENTS,{}] extension has been updated". + format(e_indx)) + print(" finish time: ", datetime.now()) + + # Loop through all x1d or image extensions (there will be none if + # the input is an events file). Note that we only expect EXPSTART + # and EXPEND to be present in SCI extensions; however, they + # could be in ERR and DQ as well (e.g. in output from inttag), + # and if they are present they must be updated. + for e_indx in range(1, nsci_ext+1): + cur_tab = in_hdul[e_indx] + + modified = False + + # add delaytime to EXPSTART and EXPEND, and update header + if "EXPSTART" in cur_tab.header: + mjd1 = cur_tab.header['EXPSTART'] + delta_sec = all_delay(mjd1, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + cur_tab.header['EXPSTART'] = mjd1 + delta_sec/SECPERDAY + modified = True + + if "EXPEND" in cur_tab.header: + mjd2 = cur_tab.header['EXPEND'] + delta_sec = all_delay(mjd2, parallax, objvec, + earth_ephem_table, + len(earth_ephem_table), + obs_ephem_table, + npts_obs) + cur_tab.header['EXPEND'] = mjd2 + delta_sec/SECPERDAY + modified = True + + in_hdul.flush() + if verbose and modified: + print(" extension {} has been updated".format(e_indx)) + + # add delaytime to TEXPSTRT and TEXPEND, and update primary header + mjd1 = in_hdul[0].header['TEXPSTRT'] + delta_sec = all_delay(mjd1, parallax, objvec, earth_ephem_table, + len(earth_ephem_table), obs_ephem_table, + npts_obs) + in_hdul[0].header['TEXPSTRT'] = mjd1 + delta_sec/SECPERDAY + + mjd2 = in_hdul[0].header['TEXPEND'] + delta_sec = all_delay(mjd2, parallax, objvec, earth_ephem_table, + len(earth_ephem_table), obs_ephem_table, + npts_obs) + in_hdul[0].header['TEXPEND'] = mjd2 + delta_sec / SECPERDAY + + # add keyword to flag the fact that the times have been corrected + in_hdul[0].header['DELAYCOR'] = ("COMPLETE", + "delaytime has been applied") + in_hdul[0].header['history'] = "Times corrected to solar system barycenter;" + + if obs_ephem_table not None: + in_hdul[0].header['history'] = "ORX table {}".format(obs_ephem) + else: + in_hdul[0].header['history'] = "no ORX tables were used." + + if verbose: + print("... done") + + # close in file + in_hdul.close() + + + + + + +def get_ephem(ephem_tables, eph_type): + """ + read an ephemeris of state vectors + # + # Description: + # ------------ + # Read state vectors from one or more input tables. The times and + # rectangular coordinates of the state vectors will be read from the + # input table from columns "TIME" (or "JD"), "X", "Y", and "Z". + # The times will be converted + # to units of Modified Julian Date, and the positions will be converted + # to astronomical units. + # + # The number of points npts will be zero if the list of input tables + # is empty. A table is required for the earth ephemeris, but none is + # required for the observer ephemeris. + + Note: I'm assuming the desired data is all in the + first extension data. + # + # Input table column names + # ------------------------ + # JD or TIME times corresponding to x,y,z: + # in earth_ephem tables: + # JD = Julian Day Number + # in obs_ephem tables: + # TIME = offset of time from FIRSTMJD + # X, Y, Z state vector components + # + # Input table parameters + # ---------------------- + # "FIRSTMJD" MJD of the first row in the table (only for obs_ephem) + # + # Date Author Description + # ---- ------ ----------- + # 11-Mar-1990 J.-C. Hsu design and coding + # 10-Jun-2003 Phil Hodge allow multiple tables; allocate memory here; + # get the array of times from a table column + # 15-Jan-2007 Phil Hodge if keyword firstmjd is not found, read + # ephmstrt from primary header instead + #------------------------------------------------------------------------------ + :param ephem_table: + :return: + """ + + # Open the file name template string for the list of ephemeris tables. + npts = 0 + time = None + x, y, z = None, None, None + + if len(ephem_tables) == 0: + return None + + # Now loop over the list of input tables and read the data. + k = 0 + previous_mjd = 0 + + for tab_file in ephem_tables: + current_tab = Table.read(tab_file, hdu=1) + npts += len(current_tab) + + if eph_type == EARTH_EPHEMERIS: + + # pull "JD" column + new_time = current_tab['JD'] + new_time.name = "Time" + + # convert Julian Day Number to MJD + new_time -= JD_TO_MJD + + else: + # pull "TIME", + new_time = current_tab['Time'] + + # read header parameter, the zero-point epoch + firstmjd = g_firstmjd(tab_file) + + if firstmjd < previous_mjd: + raise ValueError("The obs_ephem tables are out of order;\n " + "use the FIRSTMJD table header keyword to " + "determine the correct order.\n Times must " + "be monotonically increasing") + + previous_mjd = firstmjd + + # this call pulls the units of said column into the + # gridunit variable + gridunit = current_tab['Time'].unit.to_string().upper() + + # get the scale factor for converting the times to days + if gridunit == "DAY": + timescale = 1 + elif gridunit == "HR" or gridunit == "HOUR": + timescale = 1 / HRPERDAY + elif gridunit[:2] == "MIN": + timescale = 1 / MINPERDAY + elif gridunit[:1] == 'S': + timescale = 1 / SECPERDAY + else: + raise ValueError("unrecognized TIME unit in ephemeris " + "table:{}".format(gridunit)) + + # scale the times, and add the zero point + new_time = firstmjd + timescale * new_time + + new_time.unit = cds.MJD + + if time is None: + time = Table([new_time]) + else: + time = vstack([time, Table([new_time])]) + + x_col = current_tab['X'] + y_col = current_tab['Y'] + z_col = current_tab['Z'] + + # convert the state vectors to AU + for col in (x_col, y_col, z_col): + colunit = col.unit.to_string().upper() + if colunit == "AU": + pass + elif colunit == "KM": + col /= KMPERAU + col.unit = cds.AU + else: + raise ValueError("unrecognized {} unit in ephemeris table: " + "{}".format(col.name, col.dtype)) + + if x is None: + x = Table([x_col]) + y = Table([y_col]) + z = Table([z_col]) + else: + x = vstack([x, Table([x_col])]) + y = vstack([y, Table([y_col])]) + z = vstack([z, Table([z_col])]) + + # end of loop over files + + if npts == 0: + raise ValueError("The following input tables are empty: " + "{}".format(ephem_tables)) + + if len(ephem_tables) > 1: + if time['Time'][0] > time['Time'][1]: + raise ValueError("times in {} must be monotonically " + "increasing.".format(ephem_tables)) + + # Remove any overlapping regions. + # loop through time column, if you hit a non-increasing value, keep + # deleting rows until you do hit a larger number + + # Putting all columns into a new table now, so it's easier to + # delete rows all at once. + col_table = hstack([time, x, y, z]) + final_table = col_table[0:1] + last_copied_time = col_table['Time'][0] + + for indx in range(1, len(col_table)): + if last_copied_time >= col_table['Time'][indx]: + continue + else: + final_table.add_row(col_table[indx]) + last_copied_time = col_table['Time'][indx] + + return final_table + + +def g_firstmjd(tab_file): + ''' + g_firstmjd -- read firstmjd keyword, or use ephmstrt + + Normally the FIRSTMJD keyword will be found in the table of the ORB table. + For data taken shortly after the ORB tables began to be written as a FITS + table (rather than as VAX binary-format ORX files), however, FIRSTMJD was + not yet being written into the table header. For these files, we will + read the EPHMSTRT keyword from the primary header and convert that string + from SMS format to MJD. + ''' + + tab_hdulist = fits.open(tab_file) + if 'FIRSTMJD' in tab_hdulist[1].header: + firstmjd = tab_hdulist[1].header['FIRSTMJD'] + + elif 'EPHMSTRT' in tab_hdulist[0].header: + # Interpret ephmstrt: year, day of year, hour, minute, second + ephmstrt = tab_hdulist[0].header["EPHMSTRT"] + # ephmstrt is apparently stored as a string.... so need to + # convert to an integer + # year.doy:hour:min:sec + period = ephmstrt.find() + year = int(ephmstrt[:period]) + rest = ephmstrt[period+1:].split(":") + doy = int(rest[0]) + hour = int(rest[1]) + min = int(rest[2]) + sec = int(rest[3]) + day = doy + hour/24. + min/1400. + sec/86400. + + # Evaluate this expression with month = 1 because here 'day' is + # the day of the year rather than day of the month. + # reference: Pulkinnen & VanFlandern, ApJ Suppl. + month = 1 + k = 275 * month / 9 - 7 * (year + (month + 9) / 12) / 4 - \ + 3 * ((year + (month - 9) / 7) / 100 + 1) / 4 + + firstmjd = 367. * year + k + day - 678972. + + + else: + raise ValueError("Neither FIRSTMJD (ext 1) nor EPHMSTRT (ext 0) were " + "found in headers of file: {}".format(tab_file)) + + return firstmjd + + +def ext_exist(ifile, in_col, nevents_tab, nsci_ext): + """ + Check that all expected extensions are present (except GTI). + Also check that the time column exists, if the input is a time-tag file. + + char ifile[ARB] # i: name of input file + char in_col[ARB] # i: time column name + int nevents_tab # i: number of EVENTS tables + int nsci_ext # i: number of SCI (or SCI+ERR+DQ) extensions + """ + + with fits.open(ifile) as hdulist: + + # If the input is a time-tag file, look for events extensions. + for k in range(1, nevents_tab): + # can't tell exactly what i need to open, looks like + # filename[EVENTS,k] + + if hdulist[k].header['EXTNAME'] == "EVENTS": + if in_col not in hdulist[1].data.names: + print("Column {} not found in {} (skipping this file)". + format(in_col, ifile)) + return False + + # If the input is a 1-D extracted spectrum or a collection of + # image sets, open all the extensions (specified by NEXTEND). + # for k in range(1, nsci_ext): + # I don't think I need this... + + +def all_delay(epoch, parallax, objvec, earth_table, npts_earth, obs_table, + npts_obs): + """ + This routine computes the delaytime in seconds. + + double epoch # i: time (MJD) of event + double parallax # i: parallax of target + double objvec[3] # i: unit geocentric state vector of the target + double time_e[ARB], x_e[ARB], y_e[ARB], z_e[ARB] + int npts_earth + double time_o[ARB], x_o[ARB], y_o[ARB], z_o[ARB] + int npts_obs + double delta_sec # o: correction (sec) to be added to TIME col + #-- + char mess[SZ_FNAME] # for error message + double geomdelt, reldelt # time corrections (sec) + double xyz_obs[3] # geocentric state vector of the observer + double xyz_earth[3] # baycentric state vector of the earth + double telvec[3] # baycentric state vector of the observer + + """ + + # calculate delaytime due to relativistic effects + reldelt = relativ(epoch) + + # calculate the geometric delay time + # I should really put this line into a try, add a custom intrp_state + # Error, and catch it to give the better error message: + # "epoch = MJD %f, outside the earth_ephem range"), -> (epoch) + xyz_earth = intrp_state(epoch, earth_table['Time'], earth_table['X'], + earth_table['Y'], earth_table['Z'], npts_earth, + NLAN_EARTH) + + # Same goes for this guy, but with the error + # "epoch = MJD %f, outside the obs_ephem range" -> (epoch) + # Also I think I can take out this if zero check... + if npts_obs > 0: + xyz_obs = intrp_state(epoch, obs_table['Time'], obs_table['X'], + obs_table['Y'], obs_table['Z'], npts_obs, + NLAN_OBS) + else: + xyz_obs = [0, 0, 0] + + telvec = xyz_obs + xyz_earth + geomdelt = geo_delay(telvec, objvec, parallax) + + delta_sec = geomdelt + reldelt + + return delta_sec + + +def relativ(epoch): + """ + RELATIV -- Compute relativistic light time delay + # + # Description: + # ------------ + # Any clock moving with the earth is subject to an annual variation caused + # by two relativistic effects : (1) the time dilation of special relativity, + # which varies with the earth's annual variation in orbital velocity, and + # (2) the gravitational redshift of general relativity, according to which + # a clock runs more slowly in a stronger gravitational field. + # + # RELATIV performs the transformation from proper time on earth to coordinate + # time in space-time frame of reference in which the solar system barycenter + # is at rest. The algorithm is from Moyer, Cel. Mech., 23, 33, 1981, but + # with the changing value of the Earth orbit eccentricity taken into account + # together with a more accurate value for the coefficient of the main annual + # term, and with two extra terms included to allow for the eccentricities of + # the orbits of Jupiter and Saturn. It is known that Moyer's equation is + # accurate to about a 7 microsecond level. + # + # In practice, to better than sufficient accuracy it is enough to use the + # proper time on earth (ephemeris time, terrestrial time (TT) or atomic + # time (TAI); the small offset of 32.184 seconds doesn't matter.) + # The output time difference + # + # DELTA_T = T - TAI , + # + # where T is the coordinate time in the solar system barycenter frame of + # reference, and TAI is the International Atomic Time from the clock on + # earth. DELTA_T has a main (annual) term of amplitude approximately + # 1.7 milliseconds. + # + # References: + # Escobal, P. 1967, Methods of Astrodynamics, Wiley, p. 8. + # Moyer, T. 1981, Celestial Mechanics, vol. 23, pp. 33 & 57. + # + # Date Author Description + # ---- ------ ----------- + # 11-Dec-1984 C. D. Biemesderfer Modified Starlink RCC2 function + # 11-Mar-1990 J.-C. Hsu rewrite in SPP + # 6-Sep-2005 Phil Hodge Remove "/ RADIAN" factors; + # don't include + + double epoch # input: MJD of the observation + double delta_t # output: Relativistic time delay (sec) + + # Assorted orbital parameters + double ecc_e # Eccentricity of Earth orbit + double e_anom_e # Eccentric anomaly of Earth + double m_anom_e # Mean anomaly of Earth + double m_elon_m # Mean elongation of Moon from Sun + + double m_anom_j # Mean anomaly of Jupiter + double l_m_lj # Mean longitude of Jupiter from E-M barycenter + double omega_j # Related to argument of perihelion for Jupiter + + double m_anom_s # Mean anomaly of Saturn + double l_m_ls # Mean longitude of Saturn from E-M barycenter + double omega_s # Related to argument of perihelion for Saturn + + double time # Obs time in secs past 1950 Jan 1.0 + """ + + # Convert input time to seconds past 1950 Jan 1.0 + time = (epoch - 33282.) * 86400. + + # Calculate orbital parameters at time of observation + ecc_e = 1.673014**-2 - 1.325**-14 * time # Escobal (1.5) + + m_anom_e = 6.248291 + 1.99096871**-7 * time # Moyer II (44) + m_elon_m = 2.518411 + 2.462600818**-6 * time # Moyer II (45) + l_m_lj = 5.652593 + 1.82313637**-7 * time # Moyer II (46) + l_m_ls = 2.125474 + 1.92339923**-7 * time # Moyer II (47) + m_anom_j = 5.286877 + 1.6785063**-8 * time # Moyer II (48) + m_anom_s = 1.165341 + 0.6758558**-8 * time # Moyer II (49) + + e_anom_e = m_anom_e + ecc_e * sin(m_anom_e) # Moyer II (40) + + omega_j = l_m_lj - m_anom_j # Added by Starlink + omega_s = l_m_ls - m_anom_s # Added by Starlink + + # Correction from proper time to coordinate time, using Moyer II (38) + + # Daily motion of Earth around Sun correction has amplitude of millisecs + + delta_t = (9.9153**-2 * ecc_e) * sin(e_anom_e) + \ + 1.548**-6 * sin (m_elon_m) + \ + 5.21**-6 * sin(m_anom_j) + \ + 2.45**-6 * sin(m_anom_s) + \ + 20.73**-6 * sin(l_m_lj) + \ + 4.58**-6 * sin(l_m_ls) + \ + 1.00**-6 * sin(omega_j) + 0.26**-6 * sin(omega_s) # Added by Starlink + + return delta_t + + +def intrp_state(epoch, time, x, y, z, npts, nlag): + """ + # INTRP_STATE -- state vector interpolation for a specified epoch + # + # Description: + # ------------ + # Using Lagrange's formula of polynomial interpolation, obtain the state + # vector of any epoch from the input state vector table. + # The input array of times must be monotonically increasing, but they + # don't have to be uniformly spaced. + # + # Date Author Description + # ---- ------ ----------- + # 28-Feb-1988 J.-C. Hsu original, vxyzin.for + # 17-Apr-1990 J.-C. Hsu rewrite in SPP + # 10-Jun-2003 Phil Hodge include time in calling sequence, instead of + # computing time from first value and increment + + double epoch # i: desired epoch + double time[npts] # i: times (MJD) corresponding to x, y, z + double x[npts], y[npts], z[npts] # i: state vectors + double xyz[3] # o: state vector of the desired epoch + int npts # i: number of entries of the input state vectors + int nlag # i: number of points used in Lagrange's + # polynomial interpolation formula + + int icenter, istart, istop + int i1, i2 # indexes for searching for epoch in time array + double dxyz[3] # error of xyz (ignored) + pointer sp, c, d # work space for vpolin + """ + + # find the array index of the desired epoch (binary search) + i1 = 1 + i2 = npts + + while i2 - i1 > 1: + icenter = (i1 + i2) / 2 + if epoch > time[icenter]: + i1 = icenter + else: + i2 = icenter + + icenter = i1 + + istart = icenter - nlag / 2 + istop = istart + nlag - 1 + + # make sure the starting and stopping points are within limits + if istart < 1 or istop > npts: + raise ValueError("epoch = {:.4f}; ephemeris range = {:.4f} to {:.4f} \n" + "Input epoch is out of ephemeris range". + format(epoch, time[1], time[npts])) + + # perform the interpolation + # time (x input) x (y input) nlag (size of arrays) + # epoch (x value to be calc) xyz[1] (output y) dxyz[1] (error) + xyz = np.zeros((3)) + xyz[0] = vpolin(time[istart-1: istart+nlag], + x[istart-1: istart+nlag], epoch) + xyz[1] = vpolin(time[istart-1: istart+nlag], + y[istart-1: istart+nlag], epoch) + xyz[2] = vpolin(time[istart-1: istart+nlag], + z[istart-1: istart+nlag], epoch) + + return xyz + + +def vpolin(xa, ya, in_x): + """Lagrange interpolation on input data arrays""" + + # try and use scipy lagrange interpolation here, + # looks like it is a implomentation of neville's algorithm + # It's taking nlag=10 numbers, assuming it's pulling those from + # the start of the array.... although this is a bit dangerous + poly = lagrange(xa, ya) + + return poly(in_x) + + +def geo_delay(stvec, objvec, parallax): + """ + # GEO_DELAY -- Get time delay due to displacement from solar-system barycenter + # + # Description: + # ------------ + # Find the difference between actual time of observation and the time that + # would have been observed at the solar-system barycenter. The object which + # was observed is assumed to be very distant (outside the solar system). + # + # This module applies the geometric correction due to displacement, not + # the correction due to gravitational redshift. Geometric effects include + # the corrections for Earth orbital motion (amplitude of 499 sec) and for + # ST orbital motion (amplitude of 23 millisec) + # + # A comment on accuracy required: one arcsec difference in the position of + # the object can make a difference in timing of 2.5 millisec. + # + # Date Author Description + # ---- ------ ----------- + # 15-Nov-1984 C. D. Biemesderfer Original module + # 11-Apr-1990 J.-C. Hsu rewrite in SPP + + double stvec[3] # input: telescope state vector (AU) + double objvec[3] # input: unit state vector of the target (unitless) + double parallax # input: Trigonometric parallax (") + double geomdelt # output: Geometric time correction (sec) + + double ob_dot_st # inner product of OBJVEC and STVEC + double st_dot_st # Squared modulus of STVEC + double pxau # Parallax expressed in AU + double rsqrterm # 2nd order term in (r_cos_theta - amplitude of 499 s) + + double adotd() + """ + + # Compute inner product of object unit state vector and telescope state + # vector + ob_dot_st = np.dot(objvec, stvec) # in AU + st_dot_st = np.dot(stvec, stvec) # in AU**2 + + # Compute parallax over 2 coefficient in AU and term involving + # the square of the telescope's barycentric distance + pxau = parallax / AUPERPC + rsqrterm = st_dot_st - ob_dot_st * ob_dot_st + + # Low precision correction includes first two terms in series expansion. + # Amplitude of second term is on the order of 1 millisec. + geomdelt = ob_dot_st - (pxau / 2.0) *rsqrterm + + # This was commented out in the code during time of port + """ + #if (precision .eq. high) + + # Include third term (third order in r_cosine_theta - amplitude of order + # nanosec or smaller for extra-solar-system objects although much larger + # for solar system observation) + #geomdelt = geomdelt - (pxau * pxau / 2.d0) * ob_dot_st * rsqrterm + """ + + # Correct result in AU to sec + geomdelt = geomdelt * CLIGHT + + return geomdelt From f80978c5736cca1b29fc49798de5675ef4630b2d Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Mon, 10 Sep 2018 14:17:58 -0400 Subject: [PATCH 6/8] running, interpolation is totally off though --- stistools/odelaytime.py | 52 ++++++++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/stistools/odelaytime.py b/stistools/odelaytime.py index 86c842f6..2728e1bb 100644 --- a/stistools/odelaytime.py +++ b/stistools/odelaytime.py @@ -111,15 +111,17 @@ RADIAN = 57.295779513082320877 +# Need to figure out what/if default for distance parameter - -def odelaytime(table_names, earth_ephem, distance, dist_unit, - in_col, obs_ephem=[], verbose=False): +def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, + dist_unit="arcsec", in_col="TIME", verbose=False): parallax = distance # convert distance to parsec first - if dist_unit == "au": + if dist_unit == "arcsec": + pass + elif dist_unit == "au": parallax /= AUPERPC elif dist_unit == "ly": parallax /= LYPERPC @@ -169,7 +171,7 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, " will be applied to this file".format(in_table_file)) continue else: - in_hdul[0].header['DELAYCOR'] == "PERFORM" + in_hdul[0].header['DELAYCOR'] = "PERFORM" mjd1 = in_hdul[0].header['TEXPSTRT'] mjd2 = in_hdul[0].header['TEXPEND'] @@ -181,7 +183,6 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, else: nextend = 1 - if filetype == "EVENTS_TABLE": # assume (for now) that the last extension is a GTI table nevents_tab = max(nextend-1, 1) @@ -212,6 +213,7 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, # present. We do this here before making any change, to avoid # the possibility of correcting only part of the input file. if not ext_exist(in_table_file, in_col, nevents_tab, nsci_ext): + print("missing extensions... ") continue # calculate the target's positional vector @@ -228,7 +230,7 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, if filetype == "EVENTS_TABLE": # update times in GTI table - if 'GIT' in in_hdul: + if 'GTI' in in_hdul: gti_tab = in_hdul['GTI'].data nrows = len(gti_tab) for row in gti_tab: @@ -275,6 +277,7 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, print(" start time: ", datetime.now()) # go through each row + print(nrows) for r_indx in range(nrows): row = events_tab.data[r_indx] tm = row[in_col] @@ -294,10 +297,11 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, # write the corrected time back to the time column row[in_col] = tm + (delta_sec - t0_delay) - if verbose: + if verbose and r_indx in np.arange(0, 100000, 10000): # print percent done - print(" Percentage done: {}". - format(int(100*(r_indx/nrows)))) + # print(" Percentage done: {}". + # format(int(100*(r_indx/nrows)))) + print(r_indx) # add delaytime to EXPSTART and EXPEND, and update header delta_sec = all_delay(mjd1, parallax, objvec, @@ -373,7 +377,7 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, "delaytime has been applied") in_hdul[0].header['history'] = "Times corrected to solar system barycenter;" - if obs_ephem_table not None: + if obs_ephem_table is not None: in_hdul[0].header['history'] = "ORX table {}".format(obs_ephem) else: in_hdul[0].header['history'] = "no ORX tables were used." @@ -385,10 +389,6 @@ def odelaytime(table_names, earth_ephem, distance, dist_unit, in_hdul.close() - - - - def get_ephem(ephem_tables, eph_type): """ read an ephemeris of state vectors @@ -461,7 +461,7 @@ def get_ephem(ephem_tables, eph_type): else: # pull "TIME", - new_time = current_tab['Time'] + new_time = current_tab['TIME'] # read header parameter, the zero-point epoch firstmjd = g_firstmjd(tab_file) @@ -476,7 +476,7 @@ def get_ephem(ephem_tables, eph_type): # this call pulls the units of said column into the # gridunit variable - gridunit = current_tab['Time'].unit.to_string().upper() + gridunit = current_tab['TIME'].unit.to_string().upper() # get the scale factor for converting the times to days if gridunit == "DAY": @@ -493,6 +493,7 @@ def get_ephem(ephem_tables, eph_type): # scale the times, and add the zero point new_time = firstmjd + timescale * new_time + new_time.name = "Time" new_time.unit = cds.MJD @@ -619,7 +620,7 @@ def ext_exist(ifile, in_col, nevents_tab, nsci_ext): with fits.open(ifile) as hdulist: # If the input is a time-tag file, look for events extensions. - for k in range(1, nevents_tab): + for k in range(1, nevents_tab+1): # can't tell exactly what i need to open, looks like # filename[EVENTS,k] @@ -634,6 +635,8 @@ def ext_exist(ifile, in_col, nevents_tab, nsci_ext): # for k in range(1, nsci_ext): # I don't think I need this... + return True + def all_delay(epoch, parallax, objvec, earth_table, npts_earth, obs_table, npts_obs): @@ -819,8 +822,8 @@ def intrp_state(epoch, time, x, y, z, npts, nlag): i1 = 1 i2 = npts - while i2 - i1 > 1: - icenter = (i1 + i2) / 2 + while (i2 - i1) > 1: + icenter = int((i1 + i2) / 2) if epoch > time[icenter]: i1 = icenter else: @@ -828,14 +831,14 @@ def intrp_state(epoch, time, x, y, z, npts, nlag): icenter = i1 - istart = icenter - nlag / 2 + istart = icenter - int(nlag / 2) istop = istart + nlag - 1 # make sure the starting and stopping points are within limits if istart < 1 or istop > npts: raise ValueError("epoch = {:.4f}; ephemeris range = {:.4f} to {:.4f} \n" "Input epoch is out of ephemeris range". - format(epoch, time[1], time[npts])) + format(epoch, time[0], time[npts-1])) # perform the interpolation # time (x input) x (y input) nlag (size of arrays) @@ -858,8 +861,13 @@ def vpolin(xa, ya, in_x): # looks like it is a implomentation of neville's algorithm # It's taking nlag=10 numbers, assuming it's pulling those from # the start of the array.... although this is a bit dangerous + print("xa: ", xa) + print("ya: ", ya) + print("in_x: ", in_x) poly = lagrange(xa, ya) + print("out: ", poly(in_x)) + return poly(in_x) From 12c1625f00f772f2be5d6514072d1aa34bcf5a1a Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Mon, 24 Sep 2018 13:44:34 -0400 Subject: [PATCH 7/8] squash --- stistools/odelaytime.py | 93 ++++++++++++++++++++++------------------- 1 file changed, 49 insertions(+), 44 deletions(-) diff --git a/stistools/odelaytime.py b/stistools/odelaytime.py index 2728e1bb..5e41948c 100644 --- a/stistools/odelaytime.py +++ b/stistools/odelaytime.py @@ -3,7 +3,7 @@ from datetime import datetime from math import cos, sin import numpy as np -from scipy.interpolate import lagrange +from scipy.interpolate import lagrange, interp1d from astropy.io import fits from astropy.table import Table, vstack, hstack @@ -98,7 +98,7 @@ HRPERDAY = 24 #D0 # number of hours in a day LYPERPC = 3.261633 #D0 # light years per parsec -KMPERPC = 3.085678 #D13 # kilometers per parsec +KMPERPC = 3.085678e13 #D13 # kilometers per parsec AUPERPC = 206264.8062470964 #D0 # how many AU in one parsec KMPERAU = KMPERPC/AUPERPC CLIGHT = 499.00479 #D0 # light travel time (in sec) of 1 AU @@ -113,8 +113,8 @@ # Need to figure out what/if default for distance parameter -def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, - dist_unit="arcsec", in_col="TIME", verbose=False): +def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=100000.0, + dist_unit="pc", in_col="TIME", verbose=False): parallax = distance @@ -133,7 +133,7 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, # check that distance is non-zero (pc) if parallax <= 0: - raise ValueError("non-postive distance: {}".format(parallax)) + raise ValueError("non-positive distance: {}".format(parallax)) # I don't think I need this part # call smark(sp) @@ -145,6 +145,7 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, # time_o, x_o, y_o, z_o, npts_obs # obs_ephem_table will be None if no file names were provided obs_ephem_table = get_ephem(obs_ephem, OBS_EPHEMERIS) + if obs_ephem_table is None: npts_obs = 0 else: @@ -276,15 +277,17 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, if verbose: print(" start time: ", datetime.now()) + # pull out just the time array + time_array = events_tab.data['TIME'] + # go through each row print(nrows) for r_indx in range(nrows): - row = events_tab.data[r_indx] - tm = row[in_col] + tm = time_array[r_indx] # if the time is within INTERVAL of the previous time, # apply the same delaytime, otherwise recalculate - if r_indx == 1 or (tm - tm_prev) > INTERVAL: + if r_indx == 0 or (tm - tm_prev) > INTERVAL: epoch = mjd1 + tm / SECPERDAY delta_sec = all_delay(epoch, parallax, objvec, @@ -295,13 +298,17 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, tm_prev = tm # write the corrected time back to the time column - row[in_col] = tm + (delta_sec - t0_delay) + time_array[r_indx] = tm + (delta_sec - t0_delay) if verbose and r_indx in np.arange(0, 100000, 10000): # print percent done # print(" Percentage done: {}". # format(int(100*(r_indx/nrows)))) - print(r_indx) + #print(r_indx) + pass + + # re-stuff time array + in_hdul['EVENTS', e_indx].data[in_col] = time_array # add delaytime to EXPSTART and EXPEND, and update header delta_sec = all_delay(mjd1, parallax, objvec, @@ -311,7 +318,9 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, npts_obs) events_tab.header['EXPSTART'] = mjd1 + delta_sec/SECPERDAY - delta_sec = all_delay(mjd1, parallax, objvec, + + # DOUBLE CHECK FOR TYPO, should probably be mjd2 + delta_sec = all_delay(mjd2, parallax, objvec, earth_ephem_table, len(earth_ephem_table), obs_ephem_table, @@ -364,6 +373,7 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=5.0, delta_sec = all_delay(mjd1, parallax, objvec, earth_ephem_table, len(earth_ephem_table), obs_ephem_table, npts_obs) + in_hdul[0].header['TEXPSTRT'] = mjd1 + delta_sec/SECPERDAY mjd2 = in_hdul[0].header['TEXPEND'] @@ -461,7 +471,8 @@ def get_ephem(ephem_tables, eph_type): else: # pull "TIME", - new_time = current_tab['TIME'] + # This isn't right I guess, can be either Time or TIME + new_time = current_tab['Time'] # read header parameter, the zero-point epoch firstmjd = g_firstmjd(tab_file) @@ -476,7 +487,8 @@ def get_ephem(ephem_tables, eph_type): # this call pulls the units of said column into the # gridunit variable - gridunit = current_tab['TIME'].unit.to_string().upper() + # here tooo..... + gridunit = current_tab['Time'].unit.to_string().upper() # get the scale factor for converting the times to days if gridunit == "DAY": @@ -495,7 +507,7 @@ def get_ephem(ephem_tables, eph_type): new_time = firstmjd + timescale * new_time new_time.name = "Time" - new_time.unit = cds.MJD + #new_time.unit = cds.MJD if time is None: time = Table([new_time]) @@ -513,7 +525,6 @@ def get_ephem(ephem_tables, eph_type): pass elif colunit == "KM": col /= KMPERAU - col.unit = cds.AU else: raise ValueError("unrecognized {} unit in ephemeris table: " "{}".format(col.name, col.dtype)) @@ -557,7 +568,6 @@ def get_ephem(ephem_tables, eph_type): return final_table - def g_firstmjd(tab_file): ''' g_firstmjd -- read firstmjd keyword, or use ephmstrt @@ -678,6 +688,7 @@ def all_delay(epoch, parallax, objvec, earth_table, npts_earth, obs_table, xyz_obs = intrp_state(epoch, obs_table['Time'], obs_table['X'], obs_table['Y'], obs_table['Z'], npts_obs, NLAN_OBS) + else: xyz_obs = [0, 0, 0] @@ -757,14 +768,14 @@ def relativ(epoch): time = (epoch - 33282.) * 86400. # Calculate orbital parameters at time of observation - ecc_e = 1.673014**-2 - 1.325**-14 * time # Escobal (1.5) + ecc_e = 1.673014e-2 - 1.325e-14 * time # Escobal (1.5) - m_anom_e = 6.248291 + 1.99096871**-7 * time # Moyer II (44) - m_elon_m = 2.518411 + 2.462600818**-6 * time # Moyer II (45) - l_m_lj = 5.652593 + 1.82313637**-7 * time # Moyer II (46) - l_m_ls = 2.125474 + 1.92339923**-7 * time # Moyer II (47) - m_anom_j = 5.286877 + 1.6785063**-8 * time # Moyer II (48) - m_anom_s = 1.165341 + 0.6758558**-8 * time # Moyer II (49) + m_anom_e = 6.248291 + 1.99096871e-7 * time # Moyer II (44) + m_elon_m = 2.518411 + 2.462600818e-6 * time # Moyer II (45) + l_m_lj = 5.652593 + 1.82313637e-7 * time # Moyer II (46) + l_m_ls = 2.125474 + 1.92339923e-7 * time # Moyer II (47) + m_anom_j = 5.286877 + 1.6785063e-8 * time # Moyer II (48) + m_anom_s = 1.165341 + 0.6758558e-8 * time # Moyer II (49) e_anom_e = m_anom_e + ecc_e * sin(m_anom_e) # Moyer II (40) @@ -775,13 +786,13 @@ def relativ(epoch): # Daily motion of Earth around Sun correction has amplitude of millisecs - delta_t = (9.9153**-2 * ecc_e) * sin(e_anom_e) + \ - 1.548**-6 * sin (m_elon_m) + \ - 5.21**-6 * sin(m_anom_j) + \ - 2.45**-6 * sin(m_anom_s) + \ - 20.73**-6 * sin(l_m_lj) + \ - 4.58**-6 * sin(l_m_ls) + \ - 1.00**-6 * sin(omega_j) + 0.26**-6 * sin(omega_s) # Added by Starlink + delta_t = (9.9153e-2 * ecc_e) * sin(e_anom_e) + \ + 1.548e-6 * sin (m_elon_m) + \ + 5.21e-6 * sin(m_anom_j) + \ + 2.45e-6 * sin(m_anom_s) + \ + 20.73e-6 * sin(l_m_lj) + \ + 4.58e-6 * sin(l_m_ls) + \ + 1.00e-6 * sin(omega_j) + 0.26e-6 * sin(omega_s) # Added by Starlink return delta_t @@ -844,12 +855,10 @@ def intrp_state(epoch, time, x, y, z, npts, nlag): # time (x input) x (y input) nlag (size of arrays) # epoch (x value to be calc) xyz[1] (output y) dxyz[1] (error) xyz = np.zeros((3)) - xyz[0] = vpolin(time[istart-1: istart+nlag], - x[istart-1: istart+nlag], epoch) - xyz[1] = vpolin(time[istart-1: istart+nlag], - y[istart-1: istart+nlag], epoch) - xyz[2] = vpolin(time[istart-1: istart+nlag], - z[istart-1: istart+nlag], epoch) + time_in = time[istart-1: istart+nlag] + xyz[0] = vpolin(time_in, x[istart-1: istart+nlag], epoch) + xyz[1] = vpolin(time_in, y[istart-1: istart+nlag], epoch) + xyz[2] = vpolin(time_in, z[istart-1: istart+nlag], epoch) return xyz @@ -858,15 +867,11 @@ def vpolin(xa, ya, in_x): """Lagrange interpolation on input data arrays""" # try and use scipy lagrange interpolation here, - # looks like it is a implomentation of neville's algorithm + # looks like it is a implementation of neville's algorithm # It's taking nlag=10 numbers, assuming it's pulling those from # the start of the array.... although this is a bit dangerous - print("xa: ", xa) - print("ya: ", ya) - print("in_x: ", in_x) - poly = lagrange(xa, ya) - - print("out: ", poly(in_x)) + poly = interp1d(xa, ya, kind="cubic") + #poly = lagrange(xa, ya) return poly(in_x) @@ -919,7 +924,7 @@ def geo_delay(stvec, objvec, parallax): # Low precision correction includes first two terms in series expansion. # Amplitude of second term is on the order of 1 millisec. - geomdelt = ob_dot_st - (pxau / 2.0) *rsqrterm + geomdelt = ob_dot_st - (pxau / 2.0) * rsqrterm # This was commented out in the code during time of port """ From 047d1c0bcea7d7b7f4d07b0ad4575dd701b2e3e7 Mon Sep 17 00:00:00 2001 From: Sara Ogaz Date: Mon, 29 Oct 2018 14:17:48 -0400 Subject: [PATCH 8/8] squash --- stistools/odelaytime.py | 103 ++++++++++++++++++++++++++++++---------- 1 file changed, 77 insertions(+), 26 deletions(-) diff --git a/stistools/odelaytime.py b/stistools/odelaytime.py index 5e41948c..ea87dede 100644 --- a/stistools/odelaytime.py +++ b/stistools/odelaytime.py @@ -4,6 +4,7 @@ from math import cos, sin import numpy as np from scipy.interpolate import lagrange, interp1d +#import vpolin from astropy.io import fits from astropy.table import Table, vstack, hstack @@ -114,22 +115,23 @@ # Need to figure out what/if default for distance parameter def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=100000.0, - dist_unit="pc", in_col="TIME", verbose=False): + dist_unit="pc", in_col="TIME", verbose=False, obs_timecol = "TIME"): parallax = distance # convert distance to parsec first - if dist_unit == "arcsec": - pass - elif dist_unit == "au": - parallax /= AUPERPC - elif dist_unit == "ly": - parallax /= LYPERPC - elif dist_unit == "km": - parallax /= KMPERPC - else: - if dist_unit != "pc": - raise ValueError("illegal distance unit: {}".format(dist_unit)) + if dist_unit != "arcsec": + + if dist_unit == "au": + parallax /= AUPERPC + elif dist_unit == "ly": + parallax /= LYPERPC + elif dist_unit == "km": + parallax /= KMPERPC + else: + if dist_unit != "pc": + raise ValueError("illegal distance unit: {}".format(dist_unit)) + parallax = 1. / parallax # check that distance is non-zero (pc) if parallax <= 0: @@ -144,7 +146,8 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=100000.0, earth_ephem_table = get_ephem(earth_ephem, EARTH_EPHEMERIS) # time_o, x_o, y_o, z_o, npts_obs # obs_ephem_table will be None if no file names were provided - obs_ephem_table = get_ephem(obs_ephem, OBS_EPHEMERIS) + obs_ephem_table = get_ephem(obs_ephem, OBS_EPHEMERIS, + time_col_name=obs_timecol) if obs_ephem_table is None: npts_obs = 0 @@ -295,8 +298,10 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=100000.0, len(earth_ephem_table), obs_ephem_table, npts_obs) + tm_prev = tm + # write the corrected time back to the time column time_array[r_indx] = tm + (delta_sec - t0_delay) @@ -399,7 +404,7 @@ def odelaytime(table_names, earth_ephem, obs_ephem=None, distance=100000.0, in_hdul.close() -def get_ephem(ephem_tables, eph_type): +def get_ephem(ephem_tables, eph_type, time_col_name=None): """ read an ephemeris of state vectors # @@ -453,7 +458,6 @@ def get_ephem(ephem_tables, eph_type): return None # Now loop over the list of input tables and read the data. - k = 0 previous_mjd = 0 for tab_file in ephem_tables: @@ -472,7 +476,7 @@ def get_ephem(ephem_tables, eph_type): else: # pull "TIME", # This isn't right I guess, can be either Time or TIME - new_time = current_tab['Time'] + new_time = current_tab[time_col_name] # read header parameter, the zero-point epoch firstmjd = g_firstmjd(tab_file) @@ -488,7 +492,7 @@ def get_ephem(ephem_tables, eph_type): # this call pulls the units of said column into the # gridunit variable # here tooo..... - gridunit = current_tab['Time'].unit.to_string().upper() + gridunit = current_tab[time_col_name].unit.to_string().upper() # get the scale factor for converting the times to days if gridunit == "DAY": @@ -507,8 +511,6 @@ def get_ephem(ephem_tables, eph_type): new_time = firstmjd + timescale * new_time new_time.name = "Time" - #new_time.unit = cds.MJD - if time is None: time = Table([new_time]) else: @@ -596,7 +598,7 @@ def g_firstmjd(tab_file): doy = int(rest[0]) hour = int(rest[1]) min = int(rest[2]) - sec = int(rest[3]) + sec = rest[3] day = doy + hour/24. + min/1400. + sec/86400. # Evaluate this expression with month = 1 because here 'day' is @@ -674,7 +676,7 @@ def all_delay(epoch, parallax, objvec, earth_table, npts_earth, obs_table, reldelt = relativ(epoch) # calculate the geometric delay time - # I should really put this line into a try, add a custom intrp_state + # Should really put this line into a try, add a custom intrp_state # Error, and catch it to give the better error message: # "epoch = MJD %f, outside the earth_ephem range"), -> (epoch) xyz_earth = intrp_state(epoch, earth_table['Time'], earth_table['X'], @@ -787,7 +789,7 @@ def relativ(epoch): # Daily motion of Earth around Sun correction has amplitude of millisecs delta_t = (9.9153e-2 * ecc_e) * sin(e_anom_e) + \ - 1.548e-6 * sin (m_elon_m) + \ + 1.548e-6 * sin(m_elon_m) + \ 5.21e-6 * sin(m_anom_j) + \ 2.45e-6 * sin(m_anom_s) + \ 20.73e-6 * sin(l_m_lj) + \ @@ -855,10 +857,10 @@ def intrp_state(epoch, time, x, y, z, npts, nlag): # time (x input) x (y input) nlag (size of arrays) # epoch (x value to be calc) xyz[1] (output y) dxyz[1] (error) xyz = np.zeros((3)) - time_in = time[istart-1: istart+nlag] - xyz[0] = vpolin(time_in, x[istart-1: istart+nlag], epoch) - xyz[1] = vpolin(time_in, y[istart-1: istart+nlag], epoch) - xyz[2] = vpolin(time_in, z[istart-1: istart+nlag], epoch) + time_in = time[istart: istart+nlag] + xyz[0] = vpolin(time_in, x[istart: istart+nlag], epoch) + xyz[1] = vpolin(time_in, y[istart: istart+nlag], epoch) + xyz[2] = vpolin(time_in, z[istart: istart+nlag], epoch) return xyz @@ -870,12 +872,21 @@ def vpolin(xa, ya, in_x): # looks like it is a implementation of neville's algorithm # It's taking nlag=10 numbers, assuming it's pulling those from # the start of the array.... although this is a bit dangerous + poly = interp1d(xa, ya, kind="cubic") + + # Very unstable #poly = lagrange(xa, ya) + # Neville testing + #out = neville(xa, ya, in_x) + #return out + return poly(in_x) + + def geo_delay(stvec, objvec, parallax): """ # GEO_DELAY -- Get time delay due to displacement from solar-system barycenter @@ -940,3 +951,43 @@ def geo_delay(stvec, objvec, parallax): geomdelt = geomdelt * CLIGHT return geomdelt + + +def neville(datax, datay, x): + """ + Finds an interpolated value using Neville's algorithm. + Input + datax: input x's in a list of size n + datay: input y's in a list of size n + x: the x value used for interpolation + Output + p[0]: the polynomial of degree n + """ + N = len(datax) + C = np.copy(datay) + D = np.copy(datay) + + NS = int(N/2) + 1 + Y = datay[NS-1] + NS = NS -1 + + for m in range(1, N): + for i in range(1, N-m+1): + HO = datax[i-1] - x + HP = datax[i+m-1] - x + W = C[i] - D[i-1] + DEN = HO - HP + + DEN = W/ DEN + D[i-1] = HP * DEN + C[i-1] = HO * DEN + + if 2*NS < N-m: + DY = C[NS] + else: + DY = D[NS-1] + NS = NS-1 + + Y = Y + DY + + return Y