HASP Data Diagnostic Notebook#


This notebook will walk you through how to examine the input spectra for the HASP coadd code and determine what was and was not included in the co-added data product output.#

Learning Goals#

By the end of this tutorial, you will:

  • Understand the reasons an input spectrum may be rejected from a co-added data product

  • Learn how to examine output logs from coadd and header keywords from COS and STIS data products to determine which datasets were rejected

  • Know how to plot co-added spectra and the constituent datasets

  • Be able to re-run coadd with the default rejection criteria turned off to create custom co-additions

Table of Contents#

0. Introduction

1. Example 1: Two COS datasets rejected for different reasons

- 1.1 Obtaining Data Products

- 1.2 Examining Output Logs

- 1.3 Plotting Constituent Spectra

- 1.4 Running coadd

2. Example 2: A STIS dataset with POSTARG offsets

- 2.1 Obtaining Data Products

- 2.2 Examining Output Logs

- 2.3 Running coadd

3. Example 3: A STIS dataset with rejected flux

- 3.1 Obtaining Data Products

- 3.2 Examining Output Logs

- 3.3 Running coadd

0. Introduction#

The Hubble Advanced Spectral Products (HASP) coadd code is a script that co-adds spectra of the same target within a program. This software is able to co-add data taken with the spectrographs onboard the Hubble Space Telescope (HST); the Space Telescope Imaging Spectrograph (STIS) and the Cosmic Origins Spectrograph (COS). The Hubble Spectroscopic Legacy Archive (HSLA) uses this script to co-add these instruments’ data from The Mikulski Archive for Space Telescopes (MAST) to create high-quality spectra with a broad wavelength coverage (whenever possible from the ultraviolet to the near-infrared) that is publicly available for the scientific community. The script first co-adds the observations for each grating for a given visit, then it combines all gratings for the observation set. Finally, it co-adds the spectra of each observation set in the program to produce a fully co-added spectra for each target in a program. Check out the COS 2024-1 ISR for more information about the HASP script and products.

The data fed into the coadd code from each program are selected via a MAST archive search query. This query performs some filtering at the same time and rejects certain bad quality datasets. Then, the coadd script itself performs another series of checks on the input spectra before computing the co-added data products. Lastly, while coadd is running, it will check the flux of the input data in each wavelength bin for a given mode against an initial coadd that includes all input data. If the median flux of an input spectrum is lower than a given threshold against the co-add, it will be removed. coadd will iterate until no more spectra are rejected.

There are several different reasons an exposure could be rejected before the co-addition is running. These fall into three categories. First, the data in a given program may have quality issues that lead to its removal. Second, there are some observation configurations that coadd is not equipped to handle. Last, the target itself may pose an issue, such as for moving targets, or the target flux may be intrinsically variable, making the coadd flux filter reject good spectra. Finer details of these rejection criteria are summarized below:

Reason

Modes Effected

Observing Issues

Guide star acquisition failures

Any

Observatory or detector failure events

Any

EXPFLAG (exposure data quality flag) header keyword is anything other than ‘NORMAL’

Any

EXPTIME (exposure time) is zero seconds

Any

Actual exposure time is less than 80% of the planned exposure time

Any

FGSLOCK (fine guidance system lock) is not ‘FINE’, i.e., guide star tracking was not locked

Any

SHUTTER is closed

COS

Observation Parameters

POSTARG1 != 0.0, i.e., there is a pointing offset

Any

POSTARG2 != 0.0 and P1_PURPS != ‘DITHER’, i.e., there is a pointing offset not in the disperson direction

STIS

PATTERN1 = STIS-PERP-TO-SLIT and P1_FRAME = POS-TARG, i.e., there is a cross-dispersion direction pointing pattern

STIS

P1_PURPS = MOSAIC, i.e., there is a mosaic pointing offset pattern

STIS

OPT_ELEM (grating) = PRISM

STIS

APERTURE = BOA (Bright Object Aperture)

COS

For the COS/NUV grating G230L, stripe C spectra are rejected due to vignetting

COS/NUV

Target Parameters

Moving targets (MTFLAG = True)

Any

Variable targets*

Any

Extended targets*

Any

*These are not rejected by default, but some exposures may be removed by the code’s flux checking routine.

The HSLA team chose to reject these cases after careful analysis, but understand there are always some exceptions to these rules that we do not handle. This custom co-addition notebook will show users how to find out why a dataset was rejected and how to produce their own co-adds in cases where the data are still valuable.

Please note that the format and text in the log file may change slightly as new code builds are released. This notebook will be updated in Spring 2024 to reflect any text changes in the logs.

Imports#

We will be using multiple libraries to retrieve and analyze data. We will use:

  • astroquery.mast Observations to download COS and STIS data

  • pathlib.Path to create product and data directories

  • matplotlib.pyplot to plot spectra

  • numpy to perform calculations and array manipulation

  • astropy.io fits to work with FITS files

  • astropy.table Table to work with FITS tables

  • glob to work with multiple files in our directories

  • os to interact with the operating system

  • shutil to perform directory and file operations

We recommend creating a HASP-specific conda environment when co-adding spectra. You can checkout our Setup.ipynb notebook to create such an environment. Alternatively, you can also download the required dependencies to run this notebook with the terminal command:

pip install -r requirements.txt

This will download the dependencies that are necessary to run this current notebook. Let’s import all of our packages that we will use in this notebook and print our conda environment by running the next cell:

import matplotlib.pyplot as plt
import numpy as np
from astropy.io import fits
from astropy.table import vstack
from astroquery.mast import Observations
import glob
import os
import shutil
from pathlib import Path

%matplotlib widget
plt.rcParams['figure.figsize'] = 10, 6
plt.style.use('seaborn-v0_8-colorblind')

print("Currently active conda environment:", os.environ.get("CONDA_PREFIX"))
Currently active conda environment: None

Please make sure the environment that contains the HASP script dependencies is activated or you download the dependencies listed in the requirements.txt file, otherwise you will NOT be able to run the co-add code.

We will define a function that will be utilized throughout the notebook when downloading MAST data using astroquery:

def consolidate_files(data_path):
    '''
    Consolidate all files to single directory; necessary for HASP script run.
    ---------------
    Input:
    str data_path : ./mastDownload/HST folders paths; files to be moved here
    ---------------
    Output:
    None. Files moved to data_path and data_path/products.
    The ./mastDownload/HST directory is deleted.
    '''
    # The path to all obs_id folders
    mast_path = f"{data_path}/mastDownload/HST/"
    try:
        # Check if mastDownload exists
        if not os.path.exists(mast_path):
            print(f"Directory {mast_path} doesn't exist.")
            return
        # Get a list of the obs_id paths in mastDownload
        obs_id_dirs = os.listdir(mast_path)
        # Iterate through each obs_id folder and move the files
        for obs_id in obs_id_dirs:
            obs_id_path = os.path.join(mast_path, obs_id)
            files = glob.glob(obs_id_path + "/*fits")
            for file in files:
                file_path = Path(file)
                new_path = data_path / file_path.name
                shutil.move(file, new_path)
        # Now we can remove the mastDownload directory
        if os.path.exists(mast_path):
            shutil.rmtree(f"{data_path}/mastDownload")
        # Now moving all coadd products to /data_path/products
        product_path = Path(f"{data_path}/products/")
        if not os.path.exists(product_path):
            print(f"Directory {product_path} doesn't exist.")
            return
        coadd_files = glob.glob(f"{data_path}/*cspec.fits")
        for file in coadd_files:
            file_path = Path(file)
            new_path = product_path / file_path.name
            shutil.move(file, new_path)
    except Exception as e:
        print(f"An error occurred: {e}")

Example 1: Two COS datasets rejected for different reasons#

1.1 Obtaining Data Products#

For this example, we will be looking at Program ID 12715, which observed four flux standard white dwarf stars with COS. We will use astroquery to download the calibrated and coadded datasets for this program. For a more in-depth tutorial on downloading this data, please check out the CoaddTutorial.ipynb notebook in this repository.

We will create a folder for the X1D and X1DSUM products, called ./12715, and a subfolder called products, which will store the coadded data. The log file for this coadd is currently not available for download on MAST, but is in this repository. It will be available for download in a future build. This log file is called HASP_12715.out

# Creating directories for our data and coadded products
datadir_ex1 = Path("./12715/")
productsdir_ex1 = Path("./12715/products/")

datadir_ex1.mkdir(exist_ok=True)
productsdir_ex1.mkdir(exist_ok=True)

Let’s download our datasets for this program by running the cell below:

# Querying and downloading calibrated products
query_ex1 = Observations.query_criteria(
    proposal_id=12715, 
    provenance_name="CALCOS"
)

prodlist_ex1 = Observations.get_product_list(
    query_ex1
)

prodlist_ex1 = Observations.filter_products(
    prodlist_ex1,
    project=["CALCOS"],
    productSubGroupDescription=["X1D", "X1DSUM"]
)

# Querying and downloading coadded products
query_ex1_coadds = Observations.query_criteria(
    proposal_id=12715, 
    provenance_name="HASP"
)

prodlist_ex1_coadds = Observations.get_product_list(
    query_ex1_coadds
)

prodlist_ex1_coadds = Observations.filter_products(
    prodlist_ex1_coadds, 
    productType="SCIENCE",
    productSubGroupDescription="CSPEC"
)

# Combining the two product lists
combined_ex1 = vstack([prodlist_ex1, prodlist_ex1_coadds])

# Downloading the products
Observations.download_products(
    combined_ex1,
    download_dir=str(datadir_ex1)
)

# Organizing the files 
consolidate_files(datadir_ex1)
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g130m-g160m_lbui40_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g130m-g160m_lbui40_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g130m-g160m_lbui41_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g130m-g160m_lbui41_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g130m-g160m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g130m-g160m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g130m_lbui40_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g130m_lbui40_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g130m_lbui41_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g130m_lbui41_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g130m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g130m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g160m_lbui40_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g160m_lbui40_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g160m_lbui41_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g160m_lbui41_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_gd71_g160m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_gd71_lbui/hst_12715_cos_gd71_g160m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui50_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_cg140l_lbui50_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_cg140l_lbui50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_cg140l_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_cg140l_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_g130m_lbui50_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_g130m_lbui50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_g130m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_g130m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_g160m_lbui50_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_g160m_lbui50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0308-565_g160m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0308-565_lbui/hst_12715_cos_wd0308-565_g160m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui01_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui01_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui02_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui02_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui03_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui03_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui04_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui04_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui05_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui05_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui06_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui06_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui07_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui07_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui08_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui08_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui09_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui09_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui10_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui10_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui11_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui11_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui12_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui12_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui13_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui13_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui14_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui14_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l-g130m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l-g130m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui01_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui01_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui02_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui02_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui03_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui03_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui04_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui04_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui05_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui05_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui06_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui06_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui07_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui07_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui08_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui08_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui09_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui09_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui10_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui10_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui11_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui11_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui12_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui12_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui13_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui13_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui14_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui14_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_cg140l_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_cg140l_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui01_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui01_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui02_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui02_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui03_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui03_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui04_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui04_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui05_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui05_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui06_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui06_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui07_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui07_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui08_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui08_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui09_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui09_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui10_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui10_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui11_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui11_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui12_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui12_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui13_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui13_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui14_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui14_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd0947p857_g130m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd0947p857_lbui/hst_12715_cos_wd0947p857_g130m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui20_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui20_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui21_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui21_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui22_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui22_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui23_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui23_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui24_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui24_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui25_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui25_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui26_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui26_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui27_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui27_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui28_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui28_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui29_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui29_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_12715_cos_wd1057p719_g160m_lbui_cspec.fits to 12715/mastDownload/HST/hst_hasp_12715_cos_wd1057p719_lbui/hst_12715_cos_wd1057p719_g160m_lbui_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01010_x1dsum.fits to 12715/mastDownload/HST/lbui01010/lbui01010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01020_x1dsum.fits to 12715/mastDownload/HST/lbui01020/lbui01020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01030_x1dsum.fits to 12715/mastDownload/HST/lbui01030/lbui01030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01040_x1dsum.fits to 12715/mastDownload/HST/lbui01040/lbui01040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01050_x1dsum.fits to 12715/mastDownload/HST/lbui01050/lbui01050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01e7s_x1d.fits to 12715/mastDownload/HST/lbui01e7s/lbui01e7s_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01ebs_x1d.fits to 12715/mastDownload/HST/lbui01ebs/lbui01ebs_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01eds_x1d.fits to 12715/mastDownload/HST/lbui01eds/lbui01eds_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01efs_x1d.fits to 12715/mastDownload/HST/lbui01efs/lbui01efs_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui01ehs_x1d.fits to 12715/mastDownload/HST/lbui01ehs/lbui01ehs_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02010_x1dsum.fits to 12715/mastDownload/HST/lbui02010/lbui02010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02020_x1dsum.fits to 12715/mastDownload/HST/lbui02020/lbui02020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02030_x1dsum.fits to 12715/mastDownload/HST/lbui02030/lbui02030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02040_x1dsum.fits to 12715/mastDownload/HST/lbui02040/lbui02040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02050_x1dsum.fits to 12715/mastDownload/HST/lbui02050/lbui02050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02f1q_x1d.fits to 12715/mastDownload/HST/lbui02f1q/lbui02f1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02f3q_x1d.fits to 12715/mastDownload/HST/lbui02f3q/lbui02f3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02f5q_x1d.fits to 12715/mastDownload/HST/lbui02f5q/lbui02f5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02f7q_x1d.fits to 12715/mastDownload/HST/lbui02f7q/lbui02f7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui02f9q_x1d.fits to 12715/mastDownload/HST/lbui02f9q/lbui02f9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03010_x1dsum.fits to 12715/mastDownload/HST/lbui03010/lbui03010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03020_x1dsum.fits to 12715/mastDownload/HST/lbui03020/lbui03020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03030_x1dsum.fits to 12715/mastDownload/HST/lbui03030/lbui03030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03040_x1dsum.fits to 12715/mastDownload/HST/lbui03040/lbui03040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03050_x1dsum.fits to 12715/mastDownload/HST/lbui03050/lbui03050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03m6q_x1d.fits to 12715/mastDownload/HST/lbui03m6q/lbui03m6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03maq_x1d.fits to 12715/mastDownload/HST/lbui03maq/lbui03maq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03mkq_x1d.fits to 12715/mastDownload/HST/lbui03mkq/lbui03mkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03mmq_x1d.fits to 12715/mastDownload/HST/lbui03mmq/lbui03mmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui03mpq_x1d.fits to 12715/mastDownload/HST/lbui03mpq/lbui03mpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04010_x1dsum.fits to 12715/mastDownload/HST/lbui04010/lbui04010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04020_x1dsum.fits to 12715/mastDownload/HST/lbui04020/lbui04020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04030_x1dsum.fits to 12715/mastDownload/HST/lbui04030/lbui04030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04040_x1dsum.fits to 12715/mastDownload/HST/lbui04040/lbui04040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04050_x1dsum.fits to 12715/mastDownload/HST/lbui04050/lbui04050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04m6q_x1d.fits to 12715/mastDownload/HST/lbui04m6q/lbui04m6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04meq_x1d.fits to 12715/mastDownload/HST/lbui04meq/lbui04meq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04mhq_x1d.fits to 12715/mastDownload/HST/lbui04mhq/lbui04mhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04mlq_x1d.fits to 12715/mastDownload/HST/lbui04mlq/lbui04mlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui04mnq_x1d.fits to 12715/mastDownload/HST/lbui04mnq/lbui04mnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05010_x1dsum.fits to 12715/mastDownload/HST/lbui05010/lbui05010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05020_x1dsum.fits to 12715/mastDownload/HST/lbui05020/lbui05020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05030_x1dsum.fits to 12715/mastDownload/HST/lbui05030/lbui05030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05040_x1dsum.fits to 12715/mastDownload/HST/lbui05040/lbui05040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05050_x1dsum.fits to 12715/mastDownload/HST/lbui05050/lbui05050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05aaq_x1d.fits to 12715/mastDownload/HST/lbui05aaq/lbui05aaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05acq_x1d.fits to 12715/mastDownload/HST/lbui05acq/lbui05acq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05ajq_x1d.fits to 12715/mastDownload/HST/lbui05ajq/lbui05ajq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05amq_x1d.fits to 12715/mastDownload/HST/lbui05amq/lbui05amq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui05aoq_x1d.fits to 12715/mastDownload/HST/lbui05aoq/lbui05aoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06010_x1dsum.fits to 12715/mastDownload/HST/lbui06010/lbui06010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06020_x1dsum.fits to 12715/mastDownload/HST/lbui06020/lbui06020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06030_x1dsum.fits to 12715/mastDownload/HST/lbui06030/lbui06030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06040_x1dsum.fits to 12715/mastDownload/HST/lbui06040/lbui06040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06050_x1dsum.fits to 12715/mastDownload/HST/lbui06050/lbui06050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06guq_x1d.fits to 12715/mastDownload/HST/lbui06guq/lbui06guq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06gyq_x1d.fits to 12715/mastDownload/HST/lbui06gyq/lbui06gyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06h0q_x1d.fits to 12715/mastDownload/HST/lbui06h0q/lbui06h0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06h2q_x1d.fits to 12715/mastDownload/HST/lbui06h2q/lbui06h2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui06h4q_x1d.fits to 12715/mastDownload/HST/lbui06h4q/lbui06h4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07010_x1dsum.fits to 12715/mastDownload/HST/lbui07010/lbui07010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07020_x1dsum.fits to 12715/mastDownload/HST/lbui07020/lbui07020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07030_x1dsum.fits to 12715/mastDownload/HST/lbui07030/lbui07030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07040_x1dsum.fits to 12715/mastDownload/HST/lbui07040/lbui07040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07050_x1dsum.fits to 12715/mastDownload/HST/lbui07050/lbui07050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07dkq_x1d.fits to 12715/mastDownload/HST/lbui07dkq/lbui07dkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07dpq_x1d.fits to 12715/mastDownload/HST/lbui07dpq/lbui07dpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07duq_x1d.fits to 12715/mastDownload/HST/lbui07duq/lbui07duq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07dwq_x1d.fits to 12715/mastDownload/HST/lbui07dwq/lbui07dwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui07e2q_x1d.fits to 12715/mastDownload/HST/lbui07e2q/lbui07e2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08010_x1dsum.fits to 12715/mastDownload/HST/lbui08010/lbui08010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08020_x1dsum.fits to 12715/mastDownload/HST/lbui08020/lbui08020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08030_x1dsum.fits to 12715/mastDownload/HST/lbui08030/lbui08030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08040_x1dsum.fits to 12715/mastDownload/HST/lbui08040/lbui08040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08050_x1dsum.fits to 12715/mastDownload/HST/lbui08050/lbui08050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08c6q_x1d.fits to 12715/mastDownload/HST/lbui08c6q/lbui08c6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08coq_x1d.fits to 12715/mastDownload/HST/lbui08coq/lbui08coq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08ctq_x1d.fits to 12715/mastDownload/HST/lbui08ctq/lbui08ctq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08cvq_x1d.fits to 12715/mastDownload/HST/lbui08cvq/lbui08cvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui08cxq_x1d.fits to 12715/mastDownload/HST/lbui08cxq/lbui08cxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09010_x1dsum.fits to 12715/mastDownload/HST/lbui09010/lbui09010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09020_x1dsum.fits to 12715/mastDownload/HST/lbui09020/lbui09020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09030_x1dsum.fits to 12715/mastDownload/HST/lbui09030/lbui09030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09040_x1dsum.fits to 12715/mastDownload/HST/lbui09040/lbui09040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09050_x1dsum.fits to 12715/mastDownload/HST/lbui09050/lbui09050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09bgq_x1d.fits to 12715/mastDownload/HST/lbui09bgq/lbui09bgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09bjq_x1d.fits to 12715/mastDownload/HST/lbui09bjq/lbui09bjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09boq_x1d.fits to 12715/mastDownload/HST/lbui09boq/lbui09boq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09bqq_x1d.fits to 12715/mastDownload/HST/lbui09bqq/lbui09bqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui09bsq_x1d.fits to 12715/mastDownload/HST/lbui09bsq/lbui09bsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10010_x1dsum.fits to 12715/mastDownload/HST/lbui10010/lbui10010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10020_x1dsum.fits to 12715/mastDownload/HST/lbui10020/lbui10020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10030_x1dsum.fits to 12715/mastDownload/HST/lbui10030/lbui10030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10040_x1dsum.fits to 12715/mastDownload/HST/lbui10040/lbui10040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10050_x1dsum.fits to 12715/mastDownload/HST/lbui10050/lbui10050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10teq_x1d.fits to 12715/mastDownload/HST/lbui10teq/lbui10teq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10tgq_x1d.fits to 12715/mastDownload/HST/lbui10tgq/lbui10tgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10tiq_x1d.fits to 12715/mastDownload/HST/lbui10tiq/lbui10tiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10tkq_x1d.fits to 12715/mastDownload/HST/lbui10tkq/lbui10tkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui10tmq_x1d.fits to 12715/mastDownload/HST/lbui10tmq/lbui10tmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11010_x1dsum.fits to 12715/mastDownload/HST/lbui11010/lbui11010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11020_x1dsum.fits to 12715/mastDownload/HST/lbui11020/lbui11020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11030_x1dsum.fits to 12715/mastDownload/HST/lbui11030/lbui11030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11evq_x1d.fits to 12715/mastDownload/HST/lbui11evq/lbui11evq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11f0q_x1d.fits to 12715/mastDownload/HST/lbui11f0q/lbui11f0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11f8q_x1d.fits to 12715/mastDownload/HST/lbui11f8q/lbui11f8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui11faq_x1d.fits to 12715/mastDownload/HST/lbui11faq/lbui11faq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12010_x1dsum.fits to 12715/mastDownload/HST/lbui12010/lbui12010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12020_x1dsum.fits to 12715/mastDownload/HST/lbui12020/lbui12020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12030_x1dsum.fits to 12715/mastDownload/HST/lbui12030/lbui12030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12040_x1dsum.fits to 12715/mastDownload/HST/lbui12040/lbui12040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12050_x1dsum.fits to 12715/mastDownload/HST/lbui12050/lbui12050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12ycq_x1d.fits to 12715/mastDownload/HST/lbui12ycq/lbui12ycq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12ygq_x1d.fits to 12715/mastDownload/HST/lbui12ygq/lbui12ygq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12yiq_x1d.fits to 12715/mastDownload/HST/lbui12yiq/lbui12yiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12ykq_x1d.fits to 12715/mastDownload/HST/lbui12ykq/lbui12ykq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui12ymq_x1d.fits to 12715/mastDownload/HST/lbui12ymq/lbui12ymq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13010_x1dsum.fits to 12715/mastDownload/HST/lbui13010/lbui13010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13020_x1dsum.fits to 12715/mastDownload/HST/lbui13020/lbui13020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13030_x1dsum.fits to 12715/mastDownload/HST/lbui13030/lbui13030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13040_x1dsum.fits to 12715/mastDownload/HST/lbui13040/lbui13040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13050_x1dsum.fits to 12715/mastDownload/HST/lbui13050/lbui13050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13jhq_x1d.fits to 12715/mastDownload/HST/lbui13jhq/lbui13jhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13jmq_x1d.fits to 12715/mastDownload/HST/lbui13jmq/lbui13jmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13joq_x1d.fits to 12715/mastDownload/HST/lbui13joq/lbui13joq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13jqq_x1d.fits to 12715/mastDownload/HST/lbui13jqq/lbui13jqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui13jsq_x1d.fits to 12715/mastDownload/HST/lbui13jsq/lbui13jsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14010_x1dsum.fits to 12715/mastDownload/HST/lbui14010/lbui14010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14020_x1dsum.fits to 12715/mastDownload/HST/lbui14020/lbui14020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14030_x1dsum.fits to 12715/mastDownload/HST/lbui14030/lbui14030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14040_x1dsum.fits to 12715/mastDownload/HST/lbui14040/lbui14040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14050_x1dsum.fits to 12715/mastDownload/HST/lbui14050/lbui14050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14hiq_x1d.fits to 12715/mastDownload/HST/lbui14hiq/lbui14hiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14ibq_x1d.fits to 12715/mastDownload/HST/lbui14ibq/lbui14ibq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14idq_x1d.fits to 12715/mastDownload/HST/lbui14idq/lbui14idq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14igq_x1d.fits to 12715/mastDownload/HST/lbui14igq/lbui14igq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui14iiq_x1d.fits to 12715/mastDownload/HST/lbui14iiq/lbui14iiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui20010_x1dsum.fits to 12715/mastDownload/HST/lbui20010/lbui20010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui20020_x1dsum.fits to 12715/mastDownload/HST/lbui20020/lbui20020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui20030_x1dsum.fits to 12715/mastDownload/HST/lbui20030/lbui20030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui20loq_x1d.fits to 12715/mastDownload/HST/lbui20loq/lbui20loq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui20lqq_x1d.fits to 12715/mastDownload/HST/lbui20lqq/lbui20lqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui20lsq_x1d.fits to 12715/mastDownload/HST/lbui20lsq/lbui20lsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui21010_x1dsum.fits to 12715/mastDownload/HST/lbui21010/lbui21010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui21020_x1dsum.fits to 12715/mastDownload/HST/lbui21020/lbui21020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui21030_x1dsum.fits to 12715/mastDownload/HST/lbui21030/lbui21030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui21fjq_x1d.fits to 12715/mastDownload/HST/lbui21fjq/lbui21fjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui21fmq_x1d.fits to 12715/mastDownload/HST/lbui21fmq/lbui21fmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui21fqq_x1d.fits to 12715/mastDownload/HST/lbui21fqq/lbui21fqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui22010_x1dsum.fits to 12715/mastDownload/HST/lbui22010/lbui22010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui22020_x1dsum.fits to 12715/mastDownload/HST/lbui22020/lbui22020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui22030_x1dsum.fits to 12715/mastDownload/HST/lbui22030/lbui22030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui22lqq_x1d.fits to 12715/mastDownload/HST/lbui22lqq/lbui22lqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui22lsq_x1d.fits to 12715/mastDownload/HST/lbui22lsq/lbui22lsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui22luq_x1d.fits to 12715/mastDownload/HST/lbui22luq/lbui22luq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui23010_x1dsum.fits to 12715/mastDownload/HST/lbui23010/lbui23010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui23020_x1dsum.fits to 12715/mastDownload/HST/lbui23020/lbui23020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui23030_x1dsum.fits to 12715/mastDownload/HST/lbui23030/lbui23030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui23v5q_x1d.fits to 12715/mastDownload/HST/lbui23v5q/lbui23v5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui23v7q_x1d.fits to 12715/mastDownload/HST/lbui23v7q/lbui23v7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui23v9q_x1d.fits to 12715/mastDownload/HST/lbui23v9q/lbui23v9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui24010_x1dsum.fits to 12715/mastDownload/HST/lbui24010/lbui24010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui24020_x1dsum.fits to 12715/mastDownload/HST/lbui24020/lbui24020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui24030_x1dsum.fits to 12715/mastDownload/HST/lbui24030/lbui24030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui24eaq_x1d.fits to 12715/mastDownload/HST/lbui24eaq/lbui24eaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui24ecq_x1d.fits to 12715/mastDownload/HST/lbui24ecq/lbui24ecq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui24eeq_x1d.fits to 12715/mastDownload/HST/lbui24eeq/lbui24eeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui25010_x1dsum.fits to 12715/mastDownload/HST/lbui25010/lbui25010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui25020_x1dsum.fits to 12715/mastDownload/HST/lbui25020/lbui25020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui25030_x1dsum.fits to 12715/mastDownload/HST/lbui25030/lbui25030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui25asq_x1d.fits to 12715/mastDownload/HST/lbui25asq/lbui25asq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui25auq_x1d.fits to 12715/mastDownload/HST/lbui25auq/lbui25auq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui25b3q_x1d.fits to 12715/mastDownload/HST/lbui25b3q/lbui25b3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui26010_x1dsum.fits to 12715/mastDownload/HST/lbui26010/lbui26010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui26020_x1dsum.fits to 12715/mastDownload/HST/lbui26020/lbui26020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui26030_x1dsum.fits to 12715/mastDownload/HST/lbui26030/lbui26030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui26e7q_x1d.fits to 12715/mastDownload/HST/lbui26e7q/lbui26e7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui26ebq_x1d.fits to 12715/mastDownload/HST/lbui26ebq/lbui26ebq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui26edq_x1d.fits to 12715/mastDownload/HST/lbui26edq/lbui26edq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui27010_x1dsum.fits to 12715/mastDownload/HST/lbui27010/lbui27010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui27020_x1dsum.fits to 12715/mastDownload/HST/lbui27020/lbui27020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui27030_x1dsum.fits to 12715/mastDownload/HST/lbui27030/lbui27030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui27g1q_x1d.fits to 12715/mastDownload/HST/lbui27g1q/lbui27g1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui27g3q_x1d.fits to 12715/mastDownload/HST/lbui27g3q/lbui27g3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui27g6q_x1d.fits to 12715/mastDownload/HST/lbui27g6q/lbui27g6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui28010_x1dsum.fits to 12715/mastDownload/HST/lbui28010/lbui28010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui28020_x1dsum.fits to 12715/mastDownload/HST/lbui28020/lbui28020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui28030_x1dsum.fits to 12715/mastDownload/HST/lbui28030/lbui28030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui28c0q_x1d.fits to 12715/mastDownload/HST/lbui28c0q/lbui28c0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui28c2q_x1d.fits to 12715/mastDownload/HST/lbui28c2q/lbui28c2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui28c4q_x1d.fits to 12715/mastDownload/HST/lbui28c4q/lbui28c4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui29010_x1dsum.fits to 12715/mastDownload/HST/lbui29010/lbui29010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui29020_x1dsum.fits to 12715/mastDownload/HST/lbui29020/lbui29020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui29030_x1dsum.fits to 12715/mastDownload/HST/lbui29030/lbui29030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui29gmq_x1d.fits to 12715/mastDownload/HST/lbui29gmq/lbui29gmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui29goq_x1d.fits to 12715/mastDownload/HST/lbui29goq/lbui29goq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui29gqq_x1d.fits to 12715/mastDownload/HST/lbui29gqq/lbui29gqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40010_x1dsum.fits to 12715/mastDownload/HST/lbui40010/lbui40010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40020_x1dsum.fits to 12715/mastDownload/HST/lbui40020/lbui40020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40030_x1dsum.fits to 12715/mastDownload/HST/lbui40030/lbui40030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40040_x1dsum.fits to 12715/mastDownload/HST/lbui40040/lbui40040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40nfq_x1d.fits to 12715/mastDownload/HST/lbui40nfq/lbui40nfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40nhq_x1d.fits to 12715/mastDownload/HST/lbui40nhq/lbui40nhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40njq_x1d.fits to 12715/mastDownload/HST/lbui40njq/lbui40njq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui40nlq_x1d.fits to 12715/mastDownload/HST/lbui40nlq/lbui40nlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41010_x1dsum.fits to 12715/mastDownload/HST/lbui41010/lbui41010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41020_x1dsum.fits to 12715/mastDownload/HST/lbui41020/lbui41020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41030_x1dsum.fits to 12715/mastDownload/HST/lbui41030/lbui41030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41040_x1dsum.fits to 12715/mastDownload/HST/lbui41040/lbui41040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41i2q_x1d.fits to 12715/mastDownload/HST/lbui41i2q/lbui41i2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41i4q_x1d.fits to 12715/mastDownload/HST/lbui41i4q/lbui41i4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41i6q_x1d.fits to 12715/mastDownload/HST/lbui41i6q/lbui41i6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui41i8q_x1d.fits to 12715/mastDownload/HST/lbui41i8q/lbui41i8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50010_x1dsum.fits to 12715/mastDownload/HST/lbui50010/lbui50010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50020_x1dsum.fits to 12715/mastDownload/HST/lbui50020/lbui50020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50030_x1dsum.fits to 12715/mastDownload/HST/lbui50030/lbui50030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50040_x1dsum.fits to 12715/mastDownload/HST/lbui50040/lbui50040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50050_x1dsum.fits to 12715/mastDownload/HST/lbui50050/lbui50050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50060_x1dsum.fits to 12715/mastDownload/HST/lbui50060/lbui50060_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50070_x1dsum.fits to 12715/mastDownload/HST/lbui50070/lbui50070_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50080_x1dsum.fits to 12715/mastDownload/HST/lbui50080/lbui50080_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50090_x1dsum.fits to 12715/mastDownload/HST/lbui50090/lbui50090_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50qnq_x1d.fits to 12715/mastDownload/HST/lbui50qnq/lbui50qnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50qpq_x1d.fits to 12715/mastDownload/HST/lbui50qpq/lbui50qpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50qrq_x1d.fits to 12715/mastDownload/HST/lbui50qrq/lbui50qrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50qtq_x1d.fits to 12715/mastDownload/HST/lbui50qtq/lbui50qtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50qvq_x1d.fits to 12715/mastDownload/HST/lbui50qvq/lbui50qvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50qzq_x1d.fits to 12715/mastDownload/HST/lbui50qzq/lbui50qzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50r1q_x1d.fits to 12715/mastDownload/HST/lbui50r1q/lbui50r1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50r3q_x1d.fits to 12715/mastDownload/HST/lbui50r3q/lbui50r3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui50r5q_x1d.fits to 12715/mastDownload/HST/lbui50r5q/lbui50r5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51010_x1dsum.fits to 12715/mastDownload/HST/lbui51010/lbui51010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51020_x1dsum.fits to 12715/mastDownload/HST/lbui51020/lbui51020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51030_x1dsum.fits to 12715/mastDownload/HST/lbui51030/lbui51030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51040_x1dsum.fits to 12715/mastDownload/HST/lbui51040/lbui51040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51050_x1dsum.fits to 12715/mastDownload/HST/lbui51050/lbui51050_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51060_x1dsum.fits to 12715/mastDownload/HST/lbui51060/lbui51060_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51070_x1dsum.fits to 12715/mastDownload/HST/lbui51070/lbui51070_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51080_x1dsum.fits to 12715/mastDownload/HST/lbui51080/lbui51080_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51090_x1dsum.fits to 12715/mastDownload/HST/lbui51090/lbui51090_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51l6q_x1d.fits to 12715/mastDownload/HST/lbui51l6q/lbui51l6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51lcq_x1d.fits to 12715/mastDownload/HST/lbui51lcq/lbui51lcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51lrq_x1d.fits to 12715/mastDownload/HST/lbui51lrq/lbui51lrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51ltq_x1d.fits to 12715/mastDownload/HST/lbui51ltq/lbui51ltq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51lvq_x1d.fits to 12715/mastDownload/HST/lbui51lvq/lbui51lvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51m5q_x1d.fits to 12715/mastDownload/HST/lbui51m5q/lbui51m5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51m7q_x1d.fits to 12715/mastDownload/HST/lbui51m7q/lbui51m7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51mbq_x1d.fits to 12715/mastDownload/HST/lbui51mbq/lbui51mbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lbui51mdq_x1d.fits to 12715/mastDownload/HST/lbui51mdq/lbui51mdq_x1d.fits ...
 [Done]

Now we will use glob to make a list of every X1D file available in MAST for this PID. We will print out a table of some table information on the program:

allfiles = glob.glob(os.path.join(datadir_ex1, '*_x1d.fits'))
print('rootname  target  visit  grating')

for x1d in sorted(allfiles):
    hdr0 = fits.getheader(x1d, ext=0)
    print(hdr0['rootname'], hdr0['targname'],
          hdr0['obset_id'], hdr0['opt_elem'])

print("-----------------------------------")
print(f"N files from MAST = {len(allfiles)}")
rootname  target  visit  grating
lbui01e7s WD0947+857 01 G140L
lbui01ebs WD0947+857 01 G140L
lbui01eds WD0947+857 01 G130M
lbui01efs WD0947+857 01 G130M
lbui01ehs WD0947+857 01 G130M
lbui02f1q WD0947+857 02 G140L
lbui02f3q WD0947+857 02 G140L
lbui02f5q WD0947+857 02 G130M
lbui02f7q WD0947+857 02 G130M
lbui02f9q WD0947+857 02 G130M
lbui03m6q WD0947+857 03 G140L
lbui03maq WD0947+857 03 G140L
lbui03mkq WD0947+857 03 G130M
lbui03mmq WD0947+857 03 G130M
lbui03mpq WD0947+857 03 G130M
lbui04m6q WD0947+857 04 G140L
lbui04meq WD0947+857 04 G140L
lbui04mhq WD0947+857 04 G130M
lbui04mlq WD0947+857 04 G130M
lbui04mnq WD0947+857 04 G130M
lbui05aaq WD0947+857 05 G140L
lbui05acq WD0947+857 05 G140L
lbui05ajq WD0947+857 05 G130M
lbui05amq WD0947+857 05 G130M
lbui05aoq WD0947+857 05 G130M
lbui06guq WD0947+857 06 G140L
lbui06gyq WD0947+857 06 G140L
lbui06h0q WD0947+857 06 G130M
lbui06h2q WD0947+857 06 G130M
lbui06h4q WD0947+857 06 G130M
lbui07dkq WD0947+857 07 G140L
lbui07dpq WD0947+857 07 G140L
lbui07duq WD0947+857 07 G130M
lbui07dwq WD0947+857 07 G130M
lbui07e2q WD0947+857 07 G130M
lbui08c6q WD0947+857 08 G140L
lbui08coq WD0947+857 08 G140L
lbui08ctq WD0947+857 08 G130M
lbui08cvq WD0947+857 08 G130M
lbui08cxq WD0947+857 08 G130M
lbui09bgq WD0947+857 09 G140L
lbui09bjq WD0947+857 09 G140L
lbui09boq WD0947+857 09 G130M
lbui09bqq WD0947+857 09 G130M
lbui09bsq WD0947+857 09 G130M
lbui10teq WD0947+857 10 G140L
lbui10tgq WD0947+857 10 G140L
lbui10tiq WD0947+857 10 G130M
lbui10tkq WD0947+857 10 G130M
lbui10tmq WD0947+857 10 G130M
lbui11evq WD0947+857 11 G140L
lbui11f0q WD0947+857 11 G140L
lbui11f8q WD0947+857 11 G130M
lbui11faq WD0947+857 11 G130M
lbui12ycq WD0947+857 12 G140L
lbui12ygq WD0947+857 12 G140L
lbui12yiq WD0947+857 12 G130M
lbui12ykq WD0947+857 12 G130M
lbui12ymq WD0947+857 12 G130M
lbui13jhq WD0947+857 13 G140L
lbui13jmq WD0947+857 13 G140L
lbui13joq WD0947+857 13 G130M
lbui13jqq WD0947+857 13 G130M
lbui13jsq WD0947+857 13 G130M
lbui14hiq WD0947+857 14 G140L
lbui14ibq WD0947+857 14 G140L
lbui14idq WD0947+857 14 G130M
lbui14igq WD0947+857 14 G130M
lbui14iiq WD0947+857 14 G130M
lbui20loq WD1057+719 20 G160M
lbui20lqq WD1057+719 20 G160M
lbui20lsq WD1057+719 20 G160M
lbui21fjq WD1057+719 21 G160M
lbui21fmq WD1057+719 21 G160M
lbui21fqq WD1057+719 21 G160M
lbui22lqq WD1057+719 22 G160M
lbui22lsq WD1057+719 22 G160M
lbui22luq WD1057+719 22 G160M
lbui23v5q WD1057+719 23 G160M
lbui23v7q WD1057+719 23 G160M
lbui23v9q WD1057+719 23 G160M
lbui24eaq WD1057+719 24 G160M
lbui24ecq WD1057+719 24 G160M
lbui24eeq WD1057+719 24 G160M
lbui25asq WD1057+719 25 G160M
lbui25auq WD1057+719 25 G160M
lbui25b3q WD1057+719 25 G160M
lbui26e7q WD1057+719 26 G160M
lbui26ebq WD1057+719 26 G160M
lbui26edq WD1057+719 26 G160M
lbui27g1q WD1057+719 27 G160M
lbui27g3q WD1057+719 27 G160M
lbui27g6q WD1057+719 27 G160M
lbui28c0q WD1057+719 28 G160M
lbui28c2q WD1057+719 28 G160M
lbui28c4q WD1057+719 28 G160M
lbui29gmq WD1057+719 29 G160M
lbui29goq WD1057+719 29 G160M
lbui29gqq WD1057+719 29 G160M
lbui40nfq GD71 40 G130M
lbui40nhq GD71 40 G160M
lbui40njq GD71 40 G160M
lbui40nlq GD71 40 G160M
lbui41i2q GD71 41 G130M
lbui41i4q GD71 41 G160M
lbui41i6q GD71 41 G160M
lbui41i8q GD71 41 G160M
lbui50qnq WD0308-565 50 G130M
lbui50qpq WD0308-565 50 G130M
lbui50qrq WD0308-565 50 G130M
lbui50qtq WD0308-565 50 G130M
lbui50qvq WD0308-565 50 G160M
lbui50qzq WD0308-565 50 G160M
lbui50r1q WD0308-565 50 G160M
lbui50r3q WD0308-565 50 G140L
lbui50r5q WD0308-565 50 G140L
lbui51l6q WD0308-565 51 G130M
lbui51lcq WD0308-565 51 G130M
lbui51lrq WD0308-565 51 G130M
lbui51ltq WD0308-565 51 G130M
lbui51lvq WD0308-565 51 G160M
lbui51m5q WD0308-565 51 G160M
lbui51m7q WD0308-565 51 G160M
lbui51mbq WD0308-565 51 G140L
lbui51mdq WD0308-565 51 G140L
-----------------------------------
N files from MAST = 125

1.2 Examining Output Logs and Headers#

Now lets open the coadd output log to see which files were used in the coadd.

# Set up path to the coadd log file
logfile = './logfiles/HASP_12715.out'

with open(logfile, 'r') as f:
    for line in f:
        print(line.strip())
Program_id = BUI, Proposal_id=12715
First cut: 125
With obsnums: 125
with times: 125
wht pdq_summary removed: 124
Number removed = 1
dataset archive_class  ... member_type  exptime
0    lbui01e7s           CAL  ...         NaN  250.016
1    lbui01ebs           CAL  ...         NaN  250.016
2    lbui01efs           CAL  ...         NaN  416.032
3    lbui02f1q           CAL  ...         NaN  250.016
4    lbui02f3q           CAL  ...         NaN  250.048
..         ...           ...  ...         ...      ...
120  lbui51lvq           CAL  ...         NaN  290.016
121  lbui51m5q           CAL  ...         NaN  346.048
122  lbui51m7q           CAL  ...         NaN  400.000
123  lbui51mbq           CAL  ...         NaN  280.032
124  lbui51mdq           CAL  ...         NaN  280.000

[124 rows x 10 columns]
with exclude removed: 124
Number removed = 0
124
File ./lbui51l6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51lcq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51lrq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51ltq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51lvq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51m5q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51m7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51mbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lbui51mdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
Creating list of unique modes from these files:
./lbui01e7s_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '01')
./lbui01ebs_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '01')
./lbui01eds_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '01')
./lbui01efs_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '01')
./lbui01ehs_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '01')
./lbui02f1q_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '02')
./lbui02f3q_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '02')
./lbui02f5q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '02')
./lbui02f7q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '02')
./lbui02f9q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '02')
./lbui03m6q_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '03')
./lbui03maq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '03')
./lbui03mkq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '03')
./lbui03mmq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '03')
./lbui03mpq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '03')
./lbui04m6q_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '04')
./lbui04meq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '04')
./lbui04mhq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '04')
./lbui04mlq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '04')
./lbui04mnq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '04')
./lbui05aaq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '05')
./lbui05acq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '05')
./lbui05ajq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '05')
./lbui05amq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '05')
./lbui05aoq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '05')
./lbui06guq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '06')
./lbui06gyq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '06')
./lbui06h0q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '06')
./lbui06h2q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '06')
./lbui06h4q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '06')
./lbui07dkq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '07')
./lbui07dpq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '07')
./lbui07duq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '07')
./lbui07dwq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '07')
./lbui07e2q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '07')
./lbui08c6q_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '08')
./lbui08coq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '08')
./lbui08ctq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '08')
./lbui08cvq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '08')
./lbui08cxq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '08')
./lbui09bgq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '09')
./lbui09bjq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '09')
./lbui09boq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '09')
./lbui09bqq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '09')
./lbui09bsq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '09')
./lbui10teq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '10')
./lbui10tgq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '10')
./lbui10tiq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '10')
./lbui10tkq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '10')
./lbui10tmq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '10')
./lbui11evq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '11')
./lbui11f0q_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '11')
./lbui11f8q_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '11')
./lbui12ycq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '12')
./lbui12ygq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '12')
./lbui12yiq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '12')
./lbui12ykq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '12')
./lbui12ymq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '12')
./lbui13jhq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '13')
./lbui13jmq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '13')
./lbui13joq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '13')
./lbui13jqq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '13')
./lbui13jsq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '13')
./lbui14hiq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '14')
./lbui14ibq_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '14')
./lbui14idq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '14')
./lbui14igq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '14')
./lbui14iiq_x1d.fits WD0947+857 COS FUV G130M PSA 12715 (12715, '14')
./lbui20loq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '20')
./lbui20lqq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '20')
./lbui20lsq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '20')
./lbui21fjq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '21')
./lbui21fmq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '21')
./lbui21fqq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '21')
./lbui22lqq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '22')
./lbui22lsq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '22')
./lbui22luq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '22')
./lbui23v5q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '23')
./lbui23v7q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '23')
./lbui23v9q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '23')
./lbui24eaq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '24')
./lbui24ecq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '24')
./lbui24eeq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '24')
./lbui25asq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '25')
./lbui25auq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '25')
./lbui25b3q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '25')
./lbui26e7q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '26')
./lbui26ebq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '26')
./lbui26edq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '26')
./lbui27g1q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '27')
./lbui27g3q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '27')
./lbui27g6q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '27')
./lbui28c0q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '28')
./lbui28c2q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '28')
./lbui28c4q_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '28')
./lbui29gmq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '29')
./lbui29goq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '29')
./lbui29gqq_x1d.fits WD1057+719 COS FUV G160M PSA 12715 (12715, '29')
./lbui40nfq_x1d.fits GD71 COS FUV G130M PSA 12715 (12715, '40')
./lbui40nhq_x1d.fits GD71 COS FUV G160M PSA 12715 (12715, '40')
./lbui40njq_x1d.fits GD71 COS FUV G160M PSA 12715 (12715, '40')
./lbui40nlq_x1d.fits GD71 COS FUV G160M PSA 12715 (12715, '40')
./lbui41i2q_x1d.fits GD71 COS FUV G130M PSA 12715 (12715, '41')
./lbui41i4q_x1d.fits GD71 COS FUV G160M PSA 12715 (12715, '41')
./lbui41i6q_x1d.fits GD71 COS FUV G160M PSA 12715 (12715, '41')
./lbui41i8q_x1d.fits GD71 COS FUV G160M PSA 12715 (12715, '41')
./lbui50qnq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./lbui50qpq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./lbui50qrq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./lbui50qtq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./lbui50qvq_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '50')
./lbui50qzq_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '50')
./lbui50r1q_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '50')
./lbui50r3q_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '50')
./lbui50r5q_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '50')
Looping over visits
Processing product (12715, '01')
Targets in visit (12715, '01'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '01')
Processing grating COS/G140L
Importing files ['./lbui01e7s_x1d.fits', './lbui01ebs_x1d.fits']
Processing file ./lbui01e7s_x1d.fits
Processing file ./lbui01ebs_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui01_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui01eds_x1d.fits', './lbui01efs_x1d.fits', './lbui01ehs_x1d.fits']
Processing file ./lbui01eds_x1d.fits
Processing file ./lbui01efs_x1d.fits
Processing file ./lbui01ehs_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui01_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.5-1467.7)
COS/G140L 901-2150 (Actual: 34.1-2375.3)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.4986837207214
Abutting COS/G140L product to current result
With a transition wavelength of 1467.6540696724526
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui01_cspec.fits
Processing product (12715, '02')
Targets in visit (12715, '02'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '02')
Processing grating COS/G140L
Importing files ['./lbui02f1q_x1d.fits', './lbui02f3q_x1d.fits']
Processing file ./lbui02f1q_x1d.fits
Processing file ./lbui02f3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui02_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui02f5q_x1d.fits', './lbui02f7q_x1d.fits', './lbui02f9q_x1d.fits']
Processing file ./lbui02f5q_x1d.fits
Processing file ./lbui02f7q_x1d.fits
Processing file ./lbui02f9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui02_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.5-1467.7)
COS/G140L 901-2150 (Actual: 34.1-2375.4)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.498564183308
Abutting COS/G140L product to current result
With a transition wavelength of 1467.7203062809126
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui02_cspec.fits
Processing product (12715, '03')
Targets in visit (12715, '03'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '03')
Processing grating COS/G140L
Importing files ['./lbui03m6q_x1d.fits', './lbui03maq_x1d.fits']
Processing file ./lbui03m6q_x1d.fits
Processing file ./lbui03maq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui03_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui03mkq_x1d.fits', './lbui03mmq_x1d.fits', './lbui03mpq_x1d.fits']
Processing file ./lbui03mkq_x1d.fits
Processing file ./lbui03mmq_x1d.fits
Processing file ./lbui03mpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui03_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.5-1467.7)
COS/G140L 901-2150 (Actual: 33.8-2375.0)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.5381151555819
Abutting COS/G140L product to current result
With a transition wavelength of 1467.6603166607663
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui03_cspec.fits
Processing product (12715, '04')
Targets in visit (12715, '04'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '04')
Processing grating COS/G140L
Importing files ['./lbui04m6q_x1d.fits', './lbui04meq_x1d.fits']
Processing file ./lbui04m6q_x1d.fits
Processing file ./lbui04meq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui04_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui04mhq_x1d.fits', './lbui04mlq_x1d.fits', './lbui04mnq_x1d.fits']
Processing file ./lbui04mhq_x1d.fits
Processing file ./lbui04mlq_x1d.fits
Processing file ./lbui04mnq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui04_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.5-1467.5)
COS/G140L 901-2150 (Actual: 35.1-2376.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.547851151969
Abutting COS/G140L product to current result
With a transition wavelength of 1467.483752226618
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui04_cspec.fits
Processing product (12715, '05')
Targets in visit (12715, '05'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '05')
Processing grating COS/G140L
Importing files ['./lbui05aaq_x1d.fits', './lbui05acq_x1d.fits']
Processing file ./lbui05aaq_x1d.fits
Processing file ./lbui05acq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui05_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui05ajq_x1d.fits', './lbui05amq_x1d.fits', './lbui05aoq_x1d.fits']
Processing file ./lbui05ajq_x1d.fits
Processing file ./lbui05amq_x1d.fits
Processing file ./lbui05aoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui05_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.6-1467.5)
COS/G140L 901-2150 (Actual: 33.6-2374.6)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.5776692230786
Abutting COS/G140L product to current result
With a transition wavelength of 1467.5007700759393
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui05_cspec.fits
Processing product (12715, '06')
Targets in visit (12715, '06'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '06')
Processing grating COS/G140L
Importing files ['./lbui06guq_x1d.fits', './lbui06gyq_x1d.fits']
Processing file ./lbui06guq_x1d.fits
Processing file ./lbui06gyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui06_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui06h0q_x1d.fits', './lbui06h2q_x1d.fits', './lbui06h4q_x1d.fits']
Processing file ./lbui06h0q_x1d.fits
Processing file ./lbui06h2q_x1d.fits
Processing file ./lbui06h4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui06_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.6-1467.5)
COS/G140L 901-2150 (Actual: 33.5-2374.6)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.5576320156147
Abutting COS/G140L product to current result
With a transition wavelength of 1467.4780648367832
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui06_cspec.fits
Processing product (12715, '07')
Targets in visit (12715, '07'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '07')
Processing grating COS/G140L
Importing files ['./lbui07dkq_x1d.fits', './lbui07dpq_x1d.fits']
Processing file ./lbui07dkq_x1d.fits
Processing file ./lbui07dpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui07_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui07duq_x1d.fits', './lbui07dwq_x1d.fits', './lbui07e2q_x1d.fits']
Processing file ./lbui07duq_x1d.fits
Processing file ./lbui07dwq_x1d.fits
Processing file ./lbui07e2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui07_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.5-1467.5)
COS/G140L 901-2150 (Actual: 33.5-2374.6)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.4877684786334
Abutting COS/G140L product to current result
With a transition wavelength of 1467.5062159578852
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui07_cspec.fits
Processing product (12715, '08')
Targets in visit (12715, '08'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '08')
Processing grating COS/G140L
Importing files ['./lbui08c6q_x1d.fits', './lbui08coq_x1d.fits']
Processing file ./lbui08c6q_x1d.fits
Processing file ./lbui08coq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui08_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui08ctq_x1d.fits', './lbui08cvq_x1d.fits', './lbui08cxq_x1d.fits']
Processing file ./lbui08ctq_x1d.fits
Processing file ./lbui08cvq_x1d.fits
Processing file ./lbui08cxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui08_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.4-1467.5)
COS/G140L 901-2150 (Actual: 34.0-2375.0)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.3880144897362
Abutting COS/G140L product to current result
With a transition wavelength of 1467.5351131098173
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui08_cspec.fits
Processing product (12715, '09')
Targets in visit (12715, '09'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '09')
Processing grating COS/G140L
Importing files ['./lbui09bgq_x1d.fits', './lbui09bjq_x1d.fits']
Processing file ./lbui09bgq_x1d.fits
Processing file ./lbui09bjq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui09_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui09boq_x1d.fits', './lbui09bqq_x1d.fits', './lbui09bsq_x1d.fits']
Processing file ./lbui09boq_x1d.fits
Processing file ./lbui09bqq_x1d.fits
Processing file ./lbui09bsq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui09_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.4-1467.4)
COS/G140L 901-2150 (Actual: 34.0-2375.1)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.4278962806502
Abutting COS/G140L product to current result
With a transition wavelength of 1467.4252356102202
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui09_cspec.fits
Processing product (12715, '10')
Targets in visit (12715, '10'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '10')
Processing grating COS/G140L
Importing files ['./lbui10teq_x1d.fits', './lbui10tgq_x1d.fits']
Processing file ./lbui10teq_x1d.fits
Processing file ./lbui10tgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui10_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui10tiq_x1d.fits', './lbui10tkq_x1d.fits', './lbui10tmq_x1d.fits']
Processing file ./lbui10tiq_x1d.fits
Processing file ./lbui10tkq_x1d.fits
Processing file ./lbui10tmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui10_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.4-1467.6)
COS/G140L 901-2150 (Actual: 34.1-2375.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.3581509565943
Abutting COS/G140L product to current result
With a transition wavelength of 1467.5965314841196
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui10_cspec.fits
Processing product (12715, '11')
Targets in visit (12715, '11'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '11')
Processing grating COS/G140L
Importing files ['./lbui11evq_x1d.fits', './lbui11f0q_x1d.fits']
Processing file ./lbui11evq_x1d.fits
Processing file ./lbui11f0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui11_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui11f8q_x1d.fits']
Processing file ./lbui11f8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui11_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1154.9-1448.6)
COS/G140L 901-2150 (Actual: 33.6-2374.6)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1154.9215608022505
Abutting COS/G140L product to current result
With a transition wavelength of 1448.5946580897958
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui11_cspec.fits
Processing product (12715, '12')
Targets in visit (12715, '12'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '12')
Processing grating COS/G140L
Importing files ['./lbui12ycq_x1d.fits', './lbui12ygq_x1d.fits']
Processing file ./lbui12ycq_x1d.fits
Processing file ./lbui12ygq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui12_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui12yiq_x1d.fits', './lbui12ykq_x1d.fits', './lbui12ymq_x1d.fits']
Processing file ./lbui12yiq_x1d.fits
Processing file ./lbui12ykq_x1d.fits
Processing file ./lbui12ymq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui12_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.6-1467.6)
COS/G140L 901-2150 (Actual: 33.2-2374.3)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.6077681833322
Abutting COS/G140L product to current result
With a transition wavelength of 1467.5560323745499
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui12_cspec.fits
Processing product (12715, '13')
Targets in visit (12715, '13'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '13')
Processing grating COS/G140L
Importing files ['./lbui13jhq_x1d.fits', './lbui13jmq_x1d.fits']
Processing file ./lbui13jhq_x1d.fits
Processing file ./lbui13jmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui13_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui13joq_x1d.fits', './lbui13jqq_x1d.fits', './lbui13jsq_x1d.fits']
Processing file ./lbui13joq_x1d.fits
Processing file ./lbui13jqq_x1d.fits
Processing file ./lbui13jsq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui13_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.5-1467.6)
COS/G140L 901-2150 (Actual: 35.1-2376.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.5081962902377
Abutting COS/G140L product to current result
With a transition wavelength of 1467.6203809122367
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui13_cspec.fits
Processing product (12715, '14')
Targets in visit (12715, '14'): ['WD0947+857']
Processing target WD0947+857 in visit (12715, '14')
Processing grating COS/G140L
Importing files ['./lbui14hiq_x1d.fits', './lbui14ibq_x1d.fits']
Processing file ./lbui14hiq_x1d.fits
Processing file ./lbui14ibq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui14_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui14idq_x1d.fits', './lbui14igq_x1d.fits', './lbui14iiq_x1d.fits']
Processing file ./lbui14idq_x1d.fits
Processing file ./lbui14igq_x1d.fits
Processing file ./lbui14iiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui14_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.6-1467.7)
COS/G140L 901-2150 (Actual: 33.2-2374.4)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.5980637373593
Abutting COS/G140L product to current result
With a transition wavelength of 1467.6836376445524
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui14_cspec.fits
Processing product (12715, '20')
Targets in visit (12715, '20'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '20')
Processing grating COS/G160M
Importing files ['./lbui20loq_x1d.fits', './lbui20lqq_x1d.fits', './lbui20lsq_x1d.fits']
Processing file ./lbui20loq_x1d.fits
Processing file ./lbui20lqq_x1d.fits
Processing file ./lbui20lsq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui20_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '21')
Targets in visit (12715, '21'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '21')
Processing grating COS/G160M
Importing files ['./lbui21fjq_x1d.fits', './lbui21fmq_x1d.fits', './lbui21fqq_x1d.fits']
Processing file ./lbui21fjq_x1d.fits
Processing file ./lbui21fmq_x1d.fits
Processing file ./lbui21fqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui21_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '22')
Targets in visit (12715, '22'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '22')
Processing grating COS/G160M
Importing files ['./lbui22lqq_x1d.fits', './lbui22lsq_x1d.fits', './lbui22luq_x1d.fits']
Processing file ./lbui22lqq_x1d.fits
Processing file ./lbui22lsq_x1d.fits
Processing file ./lbui22luq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui22_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '23')
Targets in visit (12715, '23'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '23')
Processing grating COS/G160M
Importing files ['./lbui23v5q_x1d.fits', './lbui23v7q_x1d.fits', './lbui23v9q_x1d.fits']
Processing file ./lbui23v5q_x1d.fits
Processing file ./lbui23v7q_x1d.fits
Processing file ./lbui23v9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui23_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '24')
Targets in visit (12715, '24'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '24')
Processing grating COS/G160M
Importing files ['./lbui24eaq_x1d.fits', './lbui24ecq_x1d.fits', './lbui24eeq_x1d.fits']
Processing file ./lbui24eaq_x1d.fits
Processing file ./lbui24ecq_x1d.fits
Processing file ./lbui24eeq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui24_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '25')
Targets in visit (12715, '25'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '25')
Processing grating COS/G160M
Importing files ['./lbui25asq_x1d.fits', './lbui25auq_x1d.fits', './lbui25b3q_x1d.fits']
Processing file ./lbui25asq_x1d.fits
Processing file ./lbui25auq_x1d.fits
Processing file ./lbui25b3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui25_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '26')
Targets in visit (12715, '26'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '26')
Processing grating COS/G160M
Importing files ['./lbui26e7q_x1d.fits', './lbui26ebq_x1d.fits', './lbui26edq_x1d.fits']
Processing file ./lbui26e7q_x1d.fits
Processing file ./lbui26ebq_x1d.fits
Processing file ./lbui26edq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui26_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '27')
Targets in visit (12715, '27'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '27')
Processing grating COS/G160M
Importing files ['./lbui27g1q_x1d.fits', './lbui27g3q_x1d.fits', './lbui27g6q_x1d.fits']
Processing file ./lbui27g1q_x1d.fits
Processing file ./lbui27g3q_x1d.fits
Processing file ./lbui27g6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui27_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '28')
Targets in visit (12715, '28'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '28')
Processing grating COS/G160M
Importing files ['./lbui28c0q_x1d.fits', './lbui28c2q_x1d.fits', './lbui28c4q_x1d.fits']
Processing file ./lbui28c0q_x1d.fits
Processing file ./lbui28c2q_x1d.fits
Processing file ./lbui28c4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui28_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '29')
Targets in visit (12715, '29'): ['WD1057+719']
Processing target WD1057+719 in visit (12715, '29')
Processing grating COS/G160M
Importing files ['./lbui29gmq_x1d.fits', './lbui29goq_x1d.fits', './lbui29gqq_x1d.fits']
Processing file ./lbui29gmq_x1d.fits
Processing file ./lbui29goq_x1d.fits
Processing file ./lbui29gqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui29_cspec.fits
No need to make abutted product as only 1 grating
Processing product (12715, '40')
Targets in visit (12715, '40'): ['GD71']
Processing target GD71 in visit (12715, '40')
Processing grating COS/G130M
Importing files ['./lbui40nfq_x1d.fits']
Processing file ./lbui40nfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_gd71_g130m_lbui40_cspec.fits
Processing grating COS/G160M
Importing files ['./lbui40nhq_x1d.fits', './lbui40njq_x1d.fits', './lbui40nlq_x1d.fits']
Processing file ./lbui40nhq_x1d.fits
Processing file ./lbui40njq_x1d.fits
Processing file ./lbui40nlq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_gd71_g160m_lbui40_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 943.0-1081.3)
COS/G160M 1342-1800 (Actual: 1578.9-1795.6)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Truncating current grating at 1081.259722284377
Abutting COS/G160M product to current result
With a transition wavelength of 1578.8540484236873
Truncating current grating at 1795.6416959897065
Wrote products/hst_12715_cos_gd71_g130m-g160m_lbui40_cspec.fits
Processing product (12715, '41')
Targets in visit (12715, '41'): ['GD71']
Processing target GD71 in visit (12715, '41')
Processing grating COS/G130M
Importing files ['./lbui41i2q_x1d.fits']
Processing file ./lbui41i2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_gd71_g130m_lbui41_cspec.fits
Processing grating COS/G160M
Importing files ['./lbui41i4q_x1d.fits', './lbui41i6q_x1d.fits', './lbui41i8q_x1d.fits']
Processing file ./lbui41i4q_x1d.fits
Processing file ./lbui41i6q_x1d.fits
Processing file ./lbui41i8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_gd71_g160m_lbui41_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 943.0-1081.2)
COS/G160M 1342-1800 (Actual: 1578.9-1795.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Truncating current grating at 1081.228606175206
Abutting COS/G160M product to current result
With a transition wavelength of 1578.9028912144222
Truncating current grating at 1795.7865830504902
Wrote products/hst_12715_cos_gd71_g130m-g160m_lbui41_cspec.fits
Processing product (12715, '50')
Targets in visit (12715, '50'): ['WD0308-565']
Processing target WD0308-565 in visit (12715, '50')
Processing grating COS/G130M
Importing files ['./lbui50qnq_x1d.fits', './lbui50qpq_x1d.fits', './lbui50qrq_x1d.fits', './lbui50qtq_x1d.fits']
Processing file ./lbui50qnq_x1d.fits
Processing file ./lbui50qpq_x1d.fits
Processing file ./lbui50qrq_x1d.fits
Processing file ./lbui50qtq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0308-565_g130m_lbui50_cspec.fits
Processing grating COS/G160M
Importing files ['./lbui50qvq_x1d.fits', './lbui50qzq_x1d.fits', './lbui50r1q_x1d.fits']
Processing file ./lbui50qvq_x1d.fits
Processing file ./lbui50qzq_x1d.fits
Processing file ./lbui50r1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0308-565_g160m_lbui50_cspec.fits
Processing grating COS/G140L
Importing files ['./lbui50r3q_x1d.fits', './lbui50r5q_x1d.fits']
Processing file ./lbui50r3q_x1d.fits
Processing file ./lbui50r5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0308-565_cg140l_lbui50_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.7-1467.5)
COS/G160M 1342-1800 (Actual: 1387.8-1795.6)
COS/G140L 901-2150 (Actual: 53.7-2395.3)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1068.7117229613373
Abutting COS/G160M product to current result
With a transition wavelength of 1467.5089693384982
Abutting COS/G140L product to current result
With a transition wavelength of 1795.607693776611
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui50_cspec.fits
Looping over proposals
Processing product 12715
Targets in proposal 12715: ['WD0947+857', 'WD1057+719', 'GD71', 'WD0308-565']
Processing target WD0947+857 in proposal 12715
Processing grating COS/G140L
Importing files ['./lbui01e7s_x1d.fits', './lbui01ebs_x1d.fits', './lbui02f1q_x1d.fits', './lbui02f3q_x1d.fits', './lbui03m6q_x1d.fits', './lbui03maq_x1d.fits', './lbui04m6q_x1d.fits', './lbui04meq_x1d.fits', './lbui05aaq_x1d.fits', './lbui05acq_x1d.fits', './lbui06guq_x1d.fits', './lbui06gyq_x1d.fits', './lbui07dkq_x1d.fits', './lbui07dpq_x1d.fits', './lbui08c6q_x1d.fits', './lbui08coq_x1d.fits', './lbui09bgq_x1d.fits', './lbui09bjq_x1d.fits', './lbui10teq_x1d.fits', './lbui10tgq_x1d.fits', './lbui11evq_x1d.fits', './lbui11f0q_x1d.fits', './lbui12ycq_x1d.fits', './lbui12ygq_x1d.fits', './lbui13jhq_x1d.fits', './lbui13jmq_x1d.fits', './lbui14hiq_x1d.fits', './lbui14ibq_x1d.fits']
Processing file ./lbui01e7s_x1d.fits
Processing file ./lbui01ebs_x1d.fits
Processing file ./lbui02f1q_x1d.fits
Processing file ./lbui02f3q_x1d.fits
Processing file ./lbui03m6q_x1d.fits
Processing file ./lbui03maq_x1d.fits
Processing file ./lbui04m6q_x1d.fits
Processing file ./lbui04meq_x1d.fits
Processing file ./lbui05aaq_x1d.fits
Processing file ./lbui05acq_x1d.fits
Processing file ./lbui06guq_x1d.fits
Processing file ./lbui06gyq_x1d.fits
Processing file ./lbui07dkq_x1d.fits
Processing file ./lbui07dpq_x1d.fits
Processing file ./lbui08c6q_x1d.fits
Processing file ./lbui08coq_x1d.fits
Processing file ./lbui09bgq_x1d.fits
Processing file ./lbui09bjq_x1d.fits
Processing file ./lbui10teq_x1d.fits
Processing file ./lbui10tgq_x1d.fits
Processing file ./lbui11evq_x1d.fits
Processing file ./lbui11f0q_x1d.fits
Processing file ./lbui12ycq_x1d.fits
Processing file ./lbui12ygq_x1d.fits
Processing file ./lbui13jhq_x1d.fits
Processing file ./lbui13jmq_x1d.fits
Processing file ./lbui14hiq_x1d.fits
Processing file ./lbui14ibq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_cg140l_lbui_cspec.fits
Processing grating COS/G130M
Importing files ['./lbui01eds_x1d.fits', './lbui01efs_x1d.fits', './lbui01ehs_x1d.fits', './lbui02f5q_x1d.fits', './lbui02f7q_x1d.fits', './lbui02f9q_x1d.fits', './lbui03mkq_x1d.fits', './lbui03mmq_x1d.fits', './lbui03mpq_x1d.fits', './lbui04mhq_x1d.fits', './lbui04mlq_x1d.fits', './lbui04mnq_x1d.fits', './lbui05ajq_x1d.fits', './lbui05amq_x1d.fits', './lbui05aoq_x1d.fits', './lbui06h0q_x1d.fits', './lbui06h2q_x1d.fits', './lbui06h4q_x1d.fits', './lbui07duq_x1d.fits', './lbui07dwq_x1d.fits', './lbui07e2q_x1d.fits', './lbui08ctq_x1d.fits', './lbui08cvq_x1d.fits', './lbui08cxq_x1d.fits', './lbui09boq_x1d.fits', './lbui09bqq_x1d.fits', './lbui09bsq_x1d.fits', './lbui10tiq_x1d.fits', './lbui10tkq_x1d.fits', './lbui10tmq_x1d.fits', './lbui11f8q_x1d.fits', './lbui12yiq_x1d.fits', './lbui12ykq_x1d.fits', './lbui12ymq_x1d.fits', './lbui13joq_x1d.fits', './lbui13jqq_x1d.fits', './lbui13jsq_x1d.fits', './lbui14idq_x1d.fits', './lbui14igq_x1d.fits', './lbui14iiq_x1d.fits']
Processing file ./lbui01eds_x1d.fits
Processing file ./lbui01efs_x1d.fits
Processing file ./lbui01ehs_x1d.fits
Processing file ./lbui02f5q_x1d.fits
Processing file ./lbui02f7q_x1d.fits
Processing file ./lbui02f9q_x1d.fits
Processing file ./lbui03mkq_x1d.fits
Processing file ./lbui03mmq_x1d.fits
Processing file ./lbui03mpq_x1d.fits
Processing file ./lbui04mhq_x1d.fits
Processing file ./lbui04mlq_x1d.fits
Processing file ./lbui04mnq_x1d.fits
Processing file ./lbui05ajq_x1d.fits
Processing file ./lbui05amq_x1d.fits
Processing file ./lbui05aoq_x1d.fits
Processing file ./lbui06h0q_x1d.fits
Processing file ./lbui06h2q_x1d.fits
Processing file ./lbui06h4q_x1d.fits
Processing file ./lbui07duq_x1d.fits
Processing file ./lbui07dwq_x1d.fits
Processing file ./lbui07e2q_x1d.fits
Processing file ./lbui08ctq_x1d.fits
Processing file ./lbui08cvq_x1d.fits
Processing file ./lbui08cxq_x1d.fits
Processing file ./lbui09boq_x1d.fits
Processing file ./lbui09bqq_x1d.fits
Processing file ./lbui09bsq_x1d.fits
Processing file ./lbui10tiq_x1d.fits
Processing file ./lbui10tkq_x1d.fits
Processing file ./lbui10tmq_x1d.fits
Processing file ./lbui11f8q_x1d.fits
Processing file ./lbui12yiq_x1d.fits
Processing file ./lbui12ykq_x1d.fits
Processing file ./lbui12ymq_x1d.fits
Processing file ./lbui13joq_x1d.fits
Processing file ./lbui13jqq_x1d.fits
Processing file ./lbui13jsq_x1d.fits
Processing file ./lbui14idq_x1d.fits
Processing file ./lbui14igq_x1d.fits
Processing file ./lbui14iiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0947+857_g130m_lbui_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1135.4-1467.7)
COS/G140L 901-2150 (Actual: 33.2-2376.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1135.3590639704264
Abutting COS/G140L product to current result
With a transition wavelength of 1467.7238795476
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0947+857_cg140l-g130m_lbui_cspec.fits
Processing target WD1057+719 in proposal 12715
Processing grating COS/G160M
Importing files ['./lbui20loq_x1d.fits', './lbui20lqq_x1d.fits', './lbui20lsq_x1d.fits', './lbui21fjq_x1d.fits', './lbui21fmq_x1d.fits', './lbui21fqq_x1d.fits', './lbui22lqq_x1d.fits', './lbui22lsq_x1d.fits', './lbui22luq_x1d.fits', './lbui23v5q_x1d.fits', './lbui23v7q_x1d.fits', './lbui23v9q_x1d.fits', './lbui24eaq_x1d.fits', './lbui24ecq_x1d.fits', './lbui24eeq_x1d.fits', './lbui25asq_x1d.fits', './lbui25auq_x1d.fits', './lbui25b3q_x1d.fits', './lbui26e7q_x1d.fits', './lbui26ebq_x1d.fits', './lbui26edq_x1d.fits', './lbui27g1q_x1d.fits', './lbui27g3q_x1d.fits', './lbui27g6q_x1d.fits', './lbui28c0q_x1d.fits', './lbui28c2q_x1d.fits', './lbui28c4q_x1d.fits', './lbui29gmq_x1d.fits', './lbui29goq_x1d.fits', './lbui29gqq_x1d.fits']
Processing file ./lbui20loq_x1d.fits
Processing file ./lbui20lqq_x1d.fits
Processing file ./lbui20lsq_x1d.fits
Processing file ./lbui21fjq_x1d.fits
Processing file ./lbui21fmq_x1d.fits
Processing file ./lbui21fqq_x1d.fits
Processing file ./lbui22lqq_x1d.fits
Processing file ./lbui22lsq_x1d.fits
Processing file ./lbui22luq_x1d.fits
Processing file ./lbui23v5q_x1d.fits
Processing file ./lbui23v7q_x1d.fits
Processing file ./lbui23v9q_x1d.fits
Processing file ./lbui24eaq_x1d.fits
Processing file ./lbui24ecq_x1d.fits
Processing file ./lbui24eeq_x1d.fits
Processing file ./lbui25asq_x1d.fits
Processing file ./lbui25auq_x1d.fits
Processing file ./lbui25b3q_x1d.fits
Processing file ./lbui26e7q_x1d.fits
Processing file ./lbui26ebq_x1d.fits
Processing file ./lbui26edq_x1d.fits
Processing file ./lbui27g1q_x1d.fits
Processing file ./lbui27g3q_x1d.fits
Processing file ./lbui27g6q_x1d.fits
Processing file ./lbui28c0q_x1d.fits
Processing file ./lbui28c2q_x1d.fits
Processing file ./lbui28c4q_x1d.fits
Processing file ./lbui29gmq_x1d.fits
Processing file ./lbui29goq_x1d.fits
Processing file ./lbui29gqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd1057+719_g160m_lbui_cspec.fits
No need to make abutted product as only 1 grating
Processing target GD71 in proposal 12715
Processing grating COS/G130M
Importing files ['./lbui40nfq_x1d.fits', './lbui41i2q_x1d.fits']
Processing file ./lbui40nfq_x1d.fits
Processing file ./lbui41i2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_gd71_g130m_lbui_cspec.fits
Processing grating COS/G160M
Importing files ['./lbui40nhq_x1d.fits', './lbui40njq_x1d.fits', './lbui40nlq_x1d.fits', './lbui41i4q_x1d.fits', './lbui41i6q_x1d.fits', './lbui41i8q_x1d.fits']
Processing file ./lbui40nhq_x1d.fits
Processing file ./lbui40njq_x1d.fits
Processing file ./lbui40nlq_x1d.fits
Processing file ./lbui41i4q_x1d.fits
Processing file ./lbui41i6q_x1d.fits
Processing file ./lbui41i8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_gd71_g160m_lbui_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 943.0-1081.3)
COS/G160M 1342-1800 (Actual: 1578.9-1795.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Truncating current grating at 1081.259722284377
Abutting COS/G160M product to current result
With a transition wavelength of 1578.8540484236873
Truncating current grating at 1795.7886789701456
Wrote products/hst_12715_cos_gd71_g130m-g160m_lbui_cspec.fits
Processing target WD0308-565 in proposal 12715
Processing grating COS/G130M
Importing files ['./lbui50qnq_x1d.fits', './lbui50qpq_x1d.fits', './lbui50qrq_x1d.fits', './lbui50qtq_x1d.fits']
Processing file ./lbui50qnq_x1d.fits
Processing file ./lbui50qpq_x1d.fits
Processing file ./lbui50qrq_x1d.fits
Processing file ./lbui50qtq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0308-565_g130m_lbui_cspec.fits
Processing grating COS/G160M
Importing files ['./lbui50qvq_x1d.fits', './lbui50qzq_x1d.fits', './lbui50r1q_x1d.fits']
Processing file ./lbui50qvq_x1d.fits
Processing file ./lbui50qzq_x1d.fits
Processing file ./lbui50r1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0308-565_g160m_lbui_cspec.fits
Processing grating COS/G140L
Importing files ['./lbui50r3q_x1d.fits', './lbui50r5q_x1d.fits']
Processing file ./lbui50r3q_x1d.fits
Processing file ./lbui50r5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_12715_cos_wd0308-565_cg140l_lbui_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.7-1467.5)
COS/G160M 1342-1800 (Actual: 1387.8-1795.6)
COS/G140L 901-2150 (Actual: 53.7-2395.3)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1068.7117229613373
Abutting COS/G160M product to current result
With a transition wavelength of 1467.5089693384982
Abutting COS/G140L product to current result
With a transition wavelength of 1795.607693776611
Truncating current grating at 2150
Wrote products/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui_cspec.fits

As stated in the introduction, files can be removed from the co-added products in three steps. First, some files are excluded via a MAST archive query before they are even fed into coadd. Everything in the log file above the line that says [124 rows x 10 columns] is output from this query. So, in this example, we can see that 124 of the 125 files from MAST were fed into the coadd script. The rest of the log file gives the output from coadd itself. Unlike the MAST query, the coadd script will print a note when a file is removed, giving both the filename and the reason. Typically, data with observing issues are removed by the MAST query, while observation or target parameter issues are removed in coadd. Looking through the log file, we can see 9 other files were removed by coadd in this program:

File ./lbui51l6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51lcq_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51lrq_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51ltq_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51lvq_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51m5q_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51m7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51mbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO 
File ./lbui51mdq_x1d.fits removed from products because FGSLOCK = FINE/GYR0 

This program does not have any data that is removed by the coadd flux checker. If a dataset is removed, it will be printed with lines such as:

Using a maximum SNR of 20 in flux-based filtering \
Segment #1 from file ./lede16w8q_x1d.fits has scaled median = -54.04932196288165 \
Removing file ./lede16w8q_x1d.fits from product

Next, we will write a function to parse the output logs and return lists of the files that were rejected.

def find_rejects(logpath, pid, listofallfiles):
    """
    This function parses the coadd output log file to make a list of files that
    were input to the coadd script. The function uses the PID to find the lines
    that are listed like so in the log file:
        Creating list of unique modes from these files:
        ./lbui01e7s_x1d.fits WD0947+857 COS FUV G140L PSA 12715 (12715, '01')
        ...
        ./lbui50r5q_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '50')
    Then, it compares that to the list of every file from the program that you
    download from MAST. The difference in the two lists are the rejected files.

    It looks through the log for files that were rejected by the flux checker.
    This searches for lines that are printed like so in the log file:
        Removing file ./lede16w8q_x1d.fits from product
    Because a file can be removed more than once in the creation of different
    level data products, the list returned will only include unique entries.

    Args:
        logname (string): Path to the coadd output log file
        pid (string): Proposal ID of the program
        listofallfiles (list of strings): list of every path+filename program

    Returns:
        prerejectedfiles (list of str): list of files rejected by MAST query
                                        or coadd before computations began
        fluxrejectedfiles (list of str): list of files rejected by flux checker
    """

    # Open output log and make a list of rootnames that were used in the coadd
    # Also search for rootnames that were rejected by the flux checker
    with open(logpath, 'r') as f:
        lines = f.readlines()
    coaddedfiles = []
    fluxrejectedfiles = []
    for line in lines:
        if ('./' in line.strip()) and (pid in line.strip()):
            coaddedfiles.append(line.split()[0].split('/')[1])
        if 'Removing file' in line.strip():
            fluxrejectedfiles.append(line.split()[2].split('/')[1])

    # Compare coadd list against list of all files in PID downloaded from MAST
    prerejectedfiles = []
    for filepath in listofallfiles:
        root = filepath.split('/')[-1]
        if root not in coaddedfiles:
            prerejectedfiles.append(root)

    return prerejectedfiles, np.unique(fluxrejectedfiles)
# Run find_rejects and print the output
listofprerejects, listoffluxrejects = find_rejects(logfile, '12715', allfiles)
print('Files removed before co-addition:')
[print(f"{file}") for file in sorted(listofprerejects)]
print(f'Files removed by flux checker: {sorted(listoffluxrejects)}')
print(f'Number of files removed before co-addition = {len(listofprerejects)}')
print(f'Number of files removed by flux checker = {len(listoffluxrejects)}')
Files removed before co-addition:
lbui11faq_x1d.fits
lbui51l6q_x1d.fits
lbui51lcq_x1d.fits
lbui51lrq_x1d.fits
lbui51ltq_x1d.fits
lbui51lvq_x1d.fits
lbui51m5q_x1d.fits
lbui51m7q_x1d.fits
lbui51mbq_x1d.fits
lbui51mdq_x1d.fits
Files removed by flux checker: []
Number of files removed before co-addition = 10
Number of files removed by flux checker = 0

We can see 10 files were removed before the co-addition computations were started, and none were removed during the run by the flux checker. We already knew the files in Visit 51 were removed by coadd (and why) by looking at the output log above. The file from Visit 11 (lbui11faq_x1d.fits) was removed by the MAST query, but we are not given a reason in the log. We can investigate the rejections from both visits further by inspecting the header keywords of the input spectra.

In the following cell, we make a function to read the file headers for each input spectrum. Most of the reasons for rejection that are listed in the Introduction section can be found either in the primary or first extension headers. This function can be used to inspect both COS and STIS extracted data, both x1d or sx1 files. Note that some keywords, such as those describing the offset patterns, are only included in STIS files.

There are a few other keywords not listed in the Introduction that are useful to assess as well. These include the quality comments (QUALCOM1, QUALCOM2, QUALCOM3), the file date (DATE), and calibration software version (CAL_VER).

The quality comments can hold information about the quality of a dataset. For example, they may have phrases like Guide star acquisition failed. Actual guide mode is gyro or COS internal shutter closed. No counts in exposure. If there is nothing to note for the dataset, the quality comments will be blank, but note that sometimes this can be inaccurate, as it relies on PIs to file problem reports. For STIS, these keys are in the x1d or sx1 file headers. For COS, they are located in the x1dsum files that CalCOS creates, which are the sum of FP-POS exposures for a given observing mode in each visit. While these keywords do exist in COS x1d files, they will only be populated with comments in the x1dsums. To find the x1dsum file for these observations, we can use the ASN_ID keyword from the x1ds.

The date the file was written and the version of the software used for calibration are useful for finding datasets that are archived “statically” in MAST, meaning they are always excluded from re-calibration because doing so will crash the latest versions of the calibration pipeline. There are only a handful of statically archived datasets for COS and STIS. The reasons they need to be designated as such are usually due to detector or spacecraft issues that need very specialized processing, and this is not always captured in the quality comments. Therefore, we do not recommend using these datasets in co-adds.

def readheaders(prerejectedfiles, datadir):
    """
    This function goes through a list of the pre-rejected files and prints the 
    x1d header information about data quality. Some of these quality comments 
    can describe issues that might have occured during the observation. 
    Args:
        prerejectedfiles (list of strings): list of rejected filenames
        datadir (str): path to x1d/sx1/x1dsum files
    """

    for badfile in sorted(prerejectedfiles):
        badfilepath = os.path.join(datadir, badfile)
        print(badfilepath)
        # Open the 0th and 1st ext. headers to get data quality info
        hdr0 = fits.getheader(badfilepath, ext=0)
        hdr1 = fits.getheader(badfilepath, ext=1)

        # Note that header keywords differ between COS and STIS
        ins = hdr0['INSTRUME']

        # print lots of keywords
        print(f"Exposure time = {hdr1['EXPTIME']}")
        # These keywords doesn't exist in STIS data
        if ins == 'COS':
            print(f"Planned exposure time = {hdr1['PLANTIME']}")
            print(f"Shutter = {hdr0['SHUTTER']}")
        print(f"Aperture used = {hdr0['APERTURE']}")
        print(f"Grating used = {hdr0['OPT_ELEM']}")
        print(f"Exposure flag = {hdr1['EXPFLAG']}")
        print(f"Fine guiding lock = {hdr1['FGSLOCK']}")
        print(f"POSTARG1 / POSTARG2 = {hdr0['POSTARG1']} / {hdr0['POSTARG2']}")
        # These keywords are not present in COS x1d data
        if ins == 'STIS':
            print(f"Offset pattern = {hdr0['PATTERN1']}")
            print(f"P1 frame = {hdr0['P1_FRAME']}")
            print(f"P1 purpose = {hdr0['P1_PURPS']}")
            print('Quality comments')
            print(f"    COM1 = {hdr0['QUALCOM1']}")
            print(f"    COM2 = {hdr0['QUALCOM2']}")
            print(f"    COM3 = {hdr0['QUALCOM3']}")
        # Find the x1dsum for the COS data to get the quality comments
        if ins == 'COS':
            asn_id = hdr0['ASN_ID']
            x1dsum = os.path.join(datadir, asn_id.lower() + '_x1dsum.fits')
            if os.path.isfile(x1dsum):
                print(f'Quality comments from {x1dsum}')
                print('    COM1 = ' + fits.getval(x1dsum, 'QUALCOM1', ext=0))
                print('    COM2 = ' + fits.getval(x1dsum, 'QUALCOM2', ext=0))
                print('    COM3 = ' + fits.getval(x1dsum, 'QUALCOM3', ext=0))
            else:
                print('Quality comments: No x1dsum available')
        if hdr0['MTFLAG'] != 'T':
            print('Moving target? No')
        else:
            print('Moving target? Yes')
        print(f"Date file was written = {hdr0['DATE']}")
        print(f"Version of calibration software = {hdr0['OPUS_VER']}")
        print('')
        print('')
readheaders(listofprerejects, datadir_ex1)
12715/lbui11faq_x1d.fits
Exposure time = 415.6800231933594
Planned exposure time = 416.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments: No x1dsum available
Moving target? No
Date file was written = 2012-05-02
Version of calibration software = OPUS 2012_1


12715/lbui51l6q_x1d.fits
Exposure time = 226.016
Planned exposure time = 226.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51lcq_x1d.fits
Exposure time = 244.0
Planned exposure time = 244.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51lrq_x1d.fits
Exposure time = 270.016
Planned exposure time = 270.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51ltq_x1d.fits
Exposure time = 312.032
Planned exposure time = 312.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51040_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51lvq_x1d.fits
Exposure time = 290.016
Planned exposure time = 290.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51050_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51m5q_x1d.fits
Exposure time = 346.048
Planned exposure time = 346.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51060_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51m7q_x1d.fits
Exposure time = 400.0
Planned exposure time = 400.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51070_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51mbq_x1d.fits
Exposure time = 280.032
Planned exposure time = 280.0
Shutter = Open
Aperture used = PSA
Grating used = G140L
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51080_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3


12715/lbui51mdq_x1d.fits
Exposure time = 280.0
Planned exposure time = 280.0
Shutter = Open
Aperture used = PSA
Grating used = G140L
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 12715/lbui51090_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-01-20
Version of calibration software = HSTDP 2022_3

Inspecting the output from the header keywords printed above, we see there is no x1dsum to inspect for lbui11faq_x1d.fits. This is unusual for COS data! We can also see that the date the file was written was in 2012, and that the version of the calibration software used to calibrate this data was from 2012. All together, this indicates that this dataset is statically archived in MAST, and so we don’t recommend using it in a co-add. To see the latest versions of the calibration pipeline software, see the HST Data Processing (HSTDP) github page.

We can also see that the quality comments are all blank for the Visit 51 datasets. We know from the output log file that these data were rejected because some of the exposure was observed using gyro guiding, which is less accurate than fine guiding that tracks targets with guide stars. Because there are no quality comments listed to indicate a target acquisition failure, this data may still be useable, and we’ll explore that next. This data is of target WD0308-565, which was also observed in Visit 50 with the same observing setup. We can compare the fluxes of the two visits to see if Visit 51’s data is alright for co-addition.

1.3 Plotting Constituent and Co-added Spectra#

# Define a function to bin the data so it will plot more clearly
def downsample_1d(myarr, factor):
    """
    Downsample a 1D array by averaging over *factor* pixels.
    Crops right side if the shape is not a multiple of factor.
    Got this specific function from "Adam Ginsburg's python codes" on agpy

    myarr : numpy array
    factor : how much you want to rebin the array by
    """
    xs = myarr.shape[0]
    crarr = myarr[:xs-(xs % factor)]
    dsarr = crarr.reshape(-1, factor).mean(axis=1)
    return dsarr
filename = 'hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui50_cspec.fits'

# Set up a path to the visit 50 level co-added data product for this target
coaddfile = os.path.join(datadir_ex1, 'products', filename)
coadddata = fits.getdata(coaddfile)

# Proactively set sample factor to 6, which is size of COS resolution element
# For STIS, this is 2
samplefactor = 6

# The visit we want to plot
visit_to_plot = "51"

# Get the wavelength and flux data for the co-added file
wavelength = coadddata['wavelength'][0]
flux = coadddata['flux'][0]

# Set up the plot
plt.close()
plt.figure(1)

# Plot the constiuent spectra
for x1d in sorted(allfiles):
    # First check that the file is for the correct visit
    visit_id = fits.getval(x1d, 'obset_id', ext=0)
    if visit_id == visit_to_plot:
        x1ddata = fits.getdata(x1d)
        subwave = x1ddata['wavelength'][0]
        subflux = x1ddata['flux'][0]
        plt.plot(downsample_1d(subwave, samplefactor),
                 downsample_1d(subflux, samplefactor),
                 label=fits.getval(x1d, 'rootname', ext=0),
                 alpha=0.7)

# Overplot the co-add
plt.plot(downsample_1d(wavelength, samplefactor),
         downsample_1d(flux, samplefactor),
         c='black',
         label='visit 50 co-add',
         alpha=0.7)

# Format the plot by adding titles
targ = fits.getval(coaddfile, 'TARGNAME', ext=0)
pid = fits.getval(coaddfile, 'PROPOSID', ext=0)
ins = fits.getval(coaddfile, 'INSTRUME', ext=0)

plt.title(f'{targ} - {ins} - PID {pid}')
plt.xlabel(r'Wavelength [$\AA$]')
plt.ylabel(r'Flux [$erg\ s^{-1}\ cm^{-2}\ \AA^{-1}$]')
plt.legend()

# Show the plot below
plt.show()

Use the interactive features in the top left corner to zoom in on a region of continuum in the plot above. The zoom button looks like a square and allows you to select a rectangular region on the plot to enlarge. We see no systematic difference in the data from Visit 51 compared to the co-added data in Visit 50, so let’s add the Visit 51 data into the co-add.

1.4 Re-running coadd#

Now that we know which data we want to use in the custom co-add, we must create a new directory with all the data from Visits 50 and 51. We will feed coadd the data from this new directory from its wrapper script. Running coadd this way essentially skips the filtering that the MAST query applies, but coadd itself still has some internal data quality checks, as mentioned above, so we will need to turn those off. If there is data you still want coadd exclude that was filtered before, be sure to not put those in the data directory!

The following cell is the call to coadd via its wrapper. The -i parameter is the input directory you just made. -o is the directory that will contain the newly created co-added products. The -k turns off the data quality filtering. There is more information about this in our Setup.ipynb notebook.

# Set up the path to your new data directory
finaldatadir = os.path.join(datadir_ex1, 'newcoadddata')
os.makedirs(finaldatadir, exist_ok=True)

# Copy all the data from visits 50 and 51 into it
filestocopy = glob.glob(os.path.join(datadir_ex1, '*50*_x1d.fits'))\
            + glob.glob(os.path.join(datadir_ex1, '*51*_x1d.fits'))

[shutil.copy(file, finaldatadir) for file in filestocopy]

# Make an output directory
os.makedirs(os.path.join(datadir_ex1, 'newcoadddata', 'products'), exist_ok=True)

To call coadd, we use the ! to run from the command line. The directories here must be printed out in full - don’t use variable names:

!swrapper -i ./12715/newcoadddata -o ./12715/newcoadddata/products -k
HASP version 0.9.6
Ullyses version 4.0.0
Creating list of unique modes from these files:
./12715/newcoadddata/lbui50qnq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50qpq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50qrq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50qtq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50qvq_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50qzq_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50r1q_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50r3q_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '50')
./12715/newcoadddata/lbui50r5q_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '50')
./12715/newcoadddata/lbui51l6q_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51lcq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51lrq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51ltq_x1d.fits WD0308-565 COS FUV G130M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51lvq_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51m5q_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51m7q_x1d.fits WD0308-565 COS FUV G160M PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51mbq_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '51')
./12715/newcoadddata/lbui51mdq_x1d.fits WD0308-565 COS FUV G140L PSA 12715 (12715, '51')
Looping over visits
Processing product (12715, '50')
Targets in visit (12715, '50'): ['WD0308-565']
Processing target WD0308-565 in visit (12715, '50')
Processing grating COS/G130M
Importing files ['./12715/newcoadddata/lbui50qnq_x1d.fits', './12715/newcoadddata/lbui50qpq_x1d.fits', './12715/newcoadddata/lbui50qrq_x1d.fits', './12715/newcoadddata/lbui50qtq_x1d.fits']
Processing file ./12715/newcoadddata/lbui50qnq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qpq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qrq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qtq_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:563: RuntimeWarning: invalid value encountered in divide
  thru_nans = segment.data['net'] / segment.data['flux']
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:238: RuntimeWarning: invalid value encountered in divide
  conversion = self.output_flux[nonzeros] / self.sumnetcounts[nonzeros]
Using a maximum SNR of 20.0 in flux-based filtering
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_g130m_lbui50_cspec.fits
Processing grating COS/G160M
Importing files ['./12715/newcoadddata/lbui50qvq_x1d.fits', './12715/newcoadddata/lbui50qzq_x1d.fits', './12715/newcoadddata/lbui50r1q_x1d.fits']
Processing file ./12715/newcoadddata/lbui50qvq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qzq_x1d.fits
Processing file ./12715/newcoadddata/lbui50r1q_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:563: RuntimeWarning: invalid value encountered in divide
  thru_nans = segment.data['net'] / segment.data['flux']
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_g160m_lbui50_cspec.fits
Processing grating COS/G140L
Importing files ['./12715/newcoadddata/lbui50r3q_x1d.fits', './12715/newcoadddata/lbui50r5q_x1d.fits']
Processing file ./12715/newcoadddata/lbui50r3q_x1d.fits
Processing file ./12715/newcoadddata/lbui50r5q_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:238: RuntimeWarning: invalid value encountered in divide
  conversion = self.output_flux[nonzeros] / self.sumnetcounts[nonzeros]
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_cg140l_lbui50_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.7-1467.5)
COS/G160M 1342-1800 (Actual: 1387.8-1795.6)
COS/G140L 901-2150 (Actual: 53.7-2395.3)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1068.7117229613373
Abutting COS/G160M product to current result
With a transition wavelength of 1467.5089693384982
Abutting COS/G140L product to current result
With a transition wavelength of 1795.607693776611
Truncating current grating at 2150
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui50_cspec.fits
Processing product (12715, '51')
Targets in visit (12715, '51'): ['WD0308-565']
Processing target WD0308-565 in visit (12715, '51')
Processing grating COS/G130M
Importing files ['./12715/newcoadddata/lbui51l6q_x1d.fits', './12715/newcoadddata/lbui51lcq_x1d.fits', './12715/newcoadddata/lbui51lrq_x1d.fits', './12715/newcoadddata/lbui51ltq_x1d.fits']
Processing file ./12715/newcoadddata/lbui51l6q_x1d.fits
Processing file ./12715/newcoadddata/lbui51lcq_x1d.fits
Processing file ./12715/newcoadddata/lbui51lrq_x1d.fits
Processing file ./12715/newcoadddata/lbui51ltq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_g130m_lbui51_cspec.fits
Processing grating COS/G160M
Importing files ['./12715/newcoadddata/lbui51lvq_x1d.fits', './12715/newcoadddata/lbui51m5q_x1d.fits', './12715/newcoadddata/lbui51m7q_x1d.fits']
Processing file ./12715/newcoadddata/lbui51lvq_x1d.fits
Processing file ./12715/newcoadddata/lbui51m5q_x1d.fits
Processing file ./12715/newcoadddata/lbui51m7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_g160m_lbui51_cspec.fits
Processing grating COS/G140L
Importing files ['./12715/newcoadddata/lbui51mbq_x1d.fits', './12715/newcoadddata/lbui51mdq_x1d.fits']
Processing file ./12715/newcoadddata/lbui51mbq_x1d.fits
Processing file ./12715/newcoadddata/lbui51mdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_cg140l_lbui51_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.7-1467.5)
COS/G160M 1342-1800 (Actual: 1387.8-1795.6)
COS/G140L 901-2150 (Actual: 55.0-2396.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1068.7214966781385
Abutting COS/G160M product to current result
With a transition wavelength of 1467.5312526490434
Abutting COS/G140L product to current result
With a transition wavelength of 1795.5753292486534
Truncating current grating at 2150
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui51_cspec.fits
Looping over proposals
Processing product 12715
Targets in proposal 12715: ['WD0308-565']
Processing target WD0308-565 in proposal 12715
Processing grating COS/G130M
Importing files ['./12715/newcoadddata/lbui50qnq_x1d.fits', './12715/newcoadddata/lbui50qpq_x1d.fits', './12715/newcoadddata/lbui50qrq_x1d.fits', './12715/newcoadddata/lbui50qtq_x1d.fits', './12715/newcoadddata/lbui51l6q_x1d.fits', './12715/newcoadddata/lbui51lcq_x1d.fits', './12715/newcoadddata/lbui51lrq_x1d.fits', './12715/newcoadddata/lbui51ltq_x1d.fits']
Processing file ./12715/newcoadddata/lbui50qnq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qpq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qrq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qtq_x1d.fits
Processing file ./12715/newcoadddata/lbui51l6q_x1d.fits
Processing file ./12715/newcoadddata/lbui51lcq_x1d.fits
Processing file ./12715/newcoadddata/lbui51lrq_x1d.fits
Processing file ./12715/newcoadddata/lbui51ltq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_g130m_lbui_cspec.fits
Processing grating COS/G160M
Importing files ['./12715/newcoadddata/lbui50qvq_x1d.fits', './12715/newcoadddata/lbui50qzq_x1d.fits', './12715/newcoadddata/lbui50r1q_x1d.fits', './12715/newcoadddata/lbui51lvq_x1d.fits', './12715/newcoadddata/lbui51m5q_x1d.fits', './12715/newcoadddata/lbui51m7q_x1d.fits']
Processing file ./12715/newcoadddata/lbui50qvq_x1d.fits
Processing file ./12715/newcoadddata/lbui50qzq_x1d.fits
Processing file ./12715/newcoadddata/lbui50r1q_x1d.fits
Processing file ./12715/newcoadddata/lbui51lvq_x1d.fits
Processing file ./12715/newcoadddata/lbui51m5q_x1d.fits
Processing file ./12715/newcoadddata/lbui51m7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_g160m_lbui_cspec.fits
Processing grating COS/G140L
Importing files ['./12715/newcoadddata/lbui50r3q_x1d.fits', './12715/newcoadddata/lbui50r5q_x1d.fits', './12715/newcoadddata/lbui51mbq_x1d.fits', './12715/newcoadddata/lbui51mdq_x1d.fits']
Processing file ./12715/newcoadddata/lbui50r3q_x1d.fits
Processing file ./12715/newcoadddata/lbui50r5q_x1d.fits
Processing file ./12715/newcoadddata/lbui51mbq_x1d.fits
Processing file ./12715/newcoadddata/lbui51mdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_cg140l_lbui_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.7-1467.5)
COS/G160M 1342-1800 (Actual: 1387.8-1795.6)
COS/G140L 901-2150 (Actual: 53.7-2396.4)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G140L
Abutting COS/G130M product to current result
With a transition wavelength of 1068.7117229613373
Abutting COS/G160M product to current result
With a transition wavelength of 1467.5289166810705
Abutting COS/G140L product to current result
With a transition wavelength of 1795.607693776611
Truncating current grating at 2150
   Wrote ./12715/newcoadddata/products/hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui_cspec.fits

Replot the co-added data#

# Clear the older plot
plt.close()
plt.figure(2)

coadd_filename = 'hst_12715_cos_wd0308-565_cg140l-g130m-g160m_lbui_cspec.fits'

# Plot the old coadd
oldcoaddfile = os.path.join(datadir_ex1, 'products', coadd_filename)
oldcoadddata = fits.getdata(oldcoaddfile)
oldwavelength = oldcoadddata['wavelength'][0]
oldflux = oldcoadddata['flux'][0]

plt.plot(downsample_1d(oldwavelength, samplefactor),
         downsample_1d(oldflux, samplefactor),
         label='old coadd',
         color="red",
         alpha=0.7)

# Plot the new coadd
newcoaddfile = os.path.join(finaldatadir, 'products', coadd_filename)
newcoadddata = fits.getdata(newcoaddfile)
newwavelength = newcoadddata['wavelength'][0]
newflux = newcoadddata['flux'][0]

plt.plot(downsample_1d(newwavelength, samplefactor),
         downsample_1d(newflux, samplefactor),
         label='new coadd',
         color="blue",
         alpha=0.7)

targ = fits.getval(coaddfile, 'TARGNAME', ext=0)
pid = fits.getval(coaddfile, 'PROPOSID', ext=0)
ins = fits.getval(coaddfile, 'INSTRUME', ext=0)

plt.title(f'{targ} - {ins} - PID {pid}')
plt.xlabel(r'Wavelength [$\AA$]')
plt.ylabel(r'Flux [$erg\ s^{-1}\ cm^{-2}\ \AA^{-1}$]')
plt.legend()

# Show the plot below
plt.show()

Let’s also plot the signal-to-noise to see the improvement.

# Clear the older plot
plt.close()
plt.figure(3)

# Plot the old coadd SNR
oldsnr = oldcoadddata['snr'][0]
plt.plot(downsample_1d(oldwavelength, samplefactor),
         downsample_1d(oldsnr, samplefactor),
         label='old coadd',
         color="red",
         alpha=0.7)

# Plot the new coadd SNR
newsnr = newcoadddata['snr'][0]
plt.plot(downsample_1d(newwavelength, samplefactor),
         downsample_1d(newsnr, samplefactor),
         label='new coadd',
         color="blue",
         alpha=0.7)

plt.title(f'{targ} - {ins} - PID {pid}')
plt.xlabel(r'Wavelength [$\AA$]')
plt.ylabel(r'Signal-to-Noise')
plt.legend()

# Show the plot below
plt.show()

We can tell from the plot above that the SNR is much improved by adding the Visit 51 data into the co-add!

Example 2: A STIS dataset with POSTARG offsets#

2.1 Obtaining Data Products#

For the next example, we will look at Program ID 16655, a STIS program that observed the star Betelgeuse with the E230M grating centered on the target and at POSTARGs +/-0.25 mas and +/- 0.5 mas. Each visit in the programs contains the same spatial scan in the pattern +0.5 mas, -0.5 mas, centered, +0.25 mas, -0.25 mas. coadd will co-add the centered datasets in each visit, but will reject the other datasets with POSTARGs.

We will again use astroquery to download the dataproducts for this program. We will create a folder for the X1D products, called ./16655, and a subfolder called products, which will store the downloaded coadded data. The log file for this program is named HASP_16655.out.

# Creating directories for our data and coadded products
datadir_ex2 = Path("./16655/")
productsdir_ex2 = Path("./16655/products/")

datadir_ex2.mkdir(exist_ok=True)
productsdir_ex2.mkdir(exist_ok=True)
# Querying and downloading calibrated products
query_ex2 = Observations.query_criteria(
    proposal_id=16655, 
    provenance_name="CALSTIS",
    filters="E230M",
    target_name="HD39801"
)

prodlist_ex2 = Observations.get_product_list(
    query_ex2
)

prodlist_ex2 = Observations.filter_products(
    prodlist_ex2,
    project=["CALSTIS"],
    productSubGroupDescription=["X1D"]
)

# Querying and downloading coadded products
query_ex2_coadds = Observations.query_criteria(
    proposal_id=16655, 
    provenance_name="HASP",
    filters="E230M",
    target_name="HD39801"
)

prodlist_ex2_coadds = Observations.get_product_list(
    query_ex2_coadds
)

prodlist_ex2_coadds = Observations.filter_products(
    prodlist_ex2_coadds, 
    productType="SCIENCE",
    productSubGroupDescription="CSPEC"
)

# Combining the two product lists
combined_ex2 = vstack([prodlist_ex2, prodlist_ex2_coadds])

# Downloading the products
Observations.download_products(
    combined_ex2,
    download_dir=str(datadir_ex2)
)

# Organizing the files 
consolidate_files(datadir_ex2)

# Removing files not needed for example
files_to_remove = glob.glob(f"{datadir_ex2}/oen75*")

for file in files_to_remove:
    os.remove(file)

os.remove(f"{productsdir_ex2}/hst_16655_stis_hd39801_e230m_oen751_cspec.fits")
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16655_stis_hd39801_e230m_oen702_cspec.fits to 16655/mastDownload/HST/hst_hasp_16655_stis_hd39801_oen7/hst_16655_stis_hd39801_e230m_oen702_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16655_stis_hd39801_e230m_oen703_cspec.fits to 16655/mastDownload/HST/hst_hasp_16655_stis_hd39801_oen7/hst_16655_stis_hd39801_e230m_oen703_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16655_stis_hd39801_e230m_oen704_cspec.fits to 16655/mastDownload/HST/hst_hasp_16655_stis_hd39801_oen7/hst_16655_stis_hd39801_e230m_oen704_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16655_stis_hd39801_e230m_oen705_cspec.fits to 16655/mastDownload/HST/hst_hasp_16655_stis_hd39801_oen7/hst_16655_stis_hd39801_e230m_oen705_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16655_stis_hd39801_e230m_oen751_cspec.fits to 16655/mastDownload/HST/hst_hasp_16655_stis_hd39801_oen7/hst_16655_stis_hd39801_e230m_oen751_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16655_stis_hd39801_e230m_oen7_cspec.fits to 16655/mastDownload/HST/hst_hasp_16655_stis_hd39801_oen7/hst_16655_stis_hd39801_e230m_oen7_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen701030_x1d.fits to 16655/mastDownload/HST/oen701030/oen701030_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen701040_x1d.fits to 16655/mastDownload/HST/oen701040/oen701040_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen702010_x1d.fits to 16655/mastDownload/HST/oen702010/oen702010_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen702020_x1d.fits to 16655/mastDownload/HST/oen702020/oen702020_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen702030_x1d.fits to 16655/mastDownload/HST/oen702030/oen702030_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen702040_x1d.fits to 16655/mastDownload/HST/oen702040/oen702040_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen702050_x1d.fits to 16655/mastDownload/HST/oen702050/oen702050_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen703010_x1d.fits to 16655/mastDownload/HST/oen703010/oen703010_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen703020_x1d.fits to 16655/mastDownload/HST/oen703020/oen703020_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen703030_x1d.fits to 16655/mastDownload/HST/oen703030/oen703030_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen703040_x1d.fits to 16655/mastDownload/HST/oen703040/oen703040_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen703050_x1d.fits to 16655/mastDownload/HST/oen703050/oen703050_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen704010_x1d.fits to 16655/mastDownload/HST/oen704010/oen704010_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen704020_x1d.fits to 16655/mastDownload/HST/oen704020/oen704020_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen704030_x1d.fits to 16655/mastDownload/HST/oen704030/oen704030_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen704040_x1d.fits to 16655/mastDownload/HST/oen704040/oen704040_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen704050_x1d.fits to 16655/mastDownload/HST/oen704050/oen704050_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen705010_x1d.fits to 16655/mastDownload/HST/oen705010/oen705010_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen705020_x1d.fits to 16655/mastDownload/HST/oen705020/oen705020_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen705030_x1d.fits to 16655/mastDownload/HST/oen705030/oen705030_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen705040_x1d.fits to 16655/mastDownload/HST/oen705040/oen705040_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen705050_x1d.fits to 16655/mastDownload/HST/oen705050/oen705050_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen751010_x1d.fits to 16655/mastDownload/HST/oen751010/oen751010_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen751020_x1d.fits to 16655/mastDownload/HST/oen751020/oen751020_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen751030_x1d.fits to 16655/mastDownload/HST/oen751030/oen751030_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen751040_x1d.fits to 16655/mastDownload/HST/oen751040/oen751040_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oen751050_x1d.fits to 16655/mastDownload/HST/oen751050/oen751050_x1d.fits ...
 [Done]

Now let’s print some table information from our datasets:

allfiles = glob.glob(os.path.join(datadir_ex2, '*_x1d.fits'))
print('rootname  target  visit  grating')

for x1d in sorted(allfiles):
    hdr0 = fits.getheader(x1d, ext=0)
    print(hdr0['rootname'], hdr0['targname'],
          hdr0['obset_id'], hdr0['opt_elem'])

print("-----------------------------------")
print(f'N files from MAST = {len(allfiles)}')
rootname  target  visit  grating
oen701030 HD39801 01 E230M
oen701040 HD39801 01 E230M
oen702010 HD39801 02 E230M
oen702020 HD39801 02 E230M
oen702030 HD39801 02 E230M
oen702040 HD39801 02 E230M
oen702050 HD39801 02 E230M
oen703010 HD39801 03 E230M
oen703020 HD39801 03 E230M
oen703030 HD39801 03 E230M
oen703040 HD39801 03 E230M
oen703050 HD39801 03 E230M
oen704010 HD39801 04 E230M
oen704020 HD39801 04 E230M
oen704030 HD39801 04 E230M
oen704040 HD39801 04 E230M
oen704050 HD39801 04 E230M
oen705010 HD39801 05 E230M
oen705020 HD39801 05 E230M
oen705030 HD39801 05 E230M
oen705040 HD39801 05 E230M
oen705050 HD39801 05 E230M
-----------------------------------
N files from MAST = 22

2.2 Examining Output Logs and Headers#

Let’s look at the log next.

# Set up path to the coadd log file
logfile = './logfiles/HASP_16655.out'

with open(logfile, 'r') as f:
    for line in f:
        print(line.strip())
Program_id = EN7, Proposal_id=16655
First cut: 22
With obsnums: 88
with times: 22
wht pdq_summary removed: 20
Number removed = 2
dataset archive_class  ... member_type exptime
2   oen703010           CAL  ...     SCIENCE   567.0
3   oen703020           CAL  ...     SCIENCE   567.0
4   oen703050           CAL  ...     SCIENCE  2723.0
5   oen704010           CAL  ...     SCIENCE   567.0
6   oen704020           CAL  ...     SCIENCE   567.0
7   oen704030           CAL  ...     SCIENCE  2723.0
8   oen704040           CAL  ...     SCIENCE  2723.0
9   oen704050           CAL  ...     SCIENCE  2723.0
10  oen705010           CAL  ...     SCIENCE   567.0
11  oen705020           CAL  ...     SCIENCE   567.0
12  oen705030           CAL  ...     SCIENCE  2723.0
13  oen703040           CAL  ...     SCIENCE  2723.0
14  oen703030           CAL  ...     SCIENCE  2723.0
15  oen702030           CAL  ...     SCIENCE  2723.0
16  oen702020           CAL  ...     SCIENCE   567.0
17  oen702010           CAL  ...     SCIENCE   567.0
18  oen705050           CAL  ...     SCIENCE  2723.0
19  oen705040           CAL  ...     SCIENCE  2723.0
20  oen702050           CAL  ...     SCIENCE  2723.0
21  oen702040           CAL  ...     SCIENCE  2723.0

[20 rows x 10 columns]
with exclude removed: 20
Number removed = 0
20
File ./oen702010_x1d.fits removed from products because POSTARG1 = 0.05
File ./oen702020_x1d.fits removed from products because POSTARG1 = -0.05
File ./oen702040_x1d.fits removed from products because POSTARG1 = 0.025
File ./oen702050_x1d.fits removed from products because POSTARG1 = -0.025
File ./oen703010_x1d.fits removed from products because POSTARG1 = 0.05
File ./oen703020_x1d.fits removed from products because POSTARG1 = -0.05
File ./oen703040_x1d.fits removed from products because POSTARG1 = 0.025
File ./oen703050_x1d.fits removed from products because POSTARG1 = -0.025
File ./oen704010_x1d.fits removed from products because POSTARG1 = 0.05
File ./oen704020_x1d.fits removed from products because POSTARG1 = -0.05
File ./oen704040_x1d.fits removed from products because POSTARG1 = 0.025
File ./oen704050_x1d.fits removed from products because POSTARG1 = -0.025
File ./oen705010_x1d.fits removed from products because POSTARG1 = 0.05
File ./oen705020_x1d.fits removed from products because POSTARG1 = -0.05
File ./oen705040_x1d.fits removed from products because POSTARG1 = 0.025
File ./oen705050_x1d.fits removed from products because POSTARG1 = -0.025
Creating list of unique modes from these files:
./oen702030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '02')
./oen703030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '03')
./oen704030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '04')
./oen705030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '05')
Looping over visits
Processing product (16655, '02')
Targets in visit (16655, '02'): ['HD39801']
Processing target HD39801 in visit (16655, '02')
Processing grating STIS/E230M
Importing files ['./oen702030_x1d.fits']
Processing file ./oen702030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
Wrote products/hst_16655_stis_hd39801_e230m_oen702_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16655, '03')
Targets in visit (16655, '03'): ['HD39801']
Processing target HD39801 in visit (16655, '03')
Processing grating STIS/E230M
Importing files ['./oen703030_x1d.fits']
Processing file ./oen703030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
Wrote products/hst_16655_stis_hd39801_e230m_oen703_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16655, '04')
Targets in visit (16655, '04'): ['HD39801']
Processing target HD39801 in visit (16655, '04')
Processing grating STIS/E230M
Importing files ['./oen704030_x1d.fits']
Processing file ./oen704030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
Wrote products/hst_16655_stis_hd39801_e230m_oen704_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16655, '05')
Targets in visit (16655, '05'): ['HD39801']
Processing target HD39801 in visit (16655, '05')
Processing grating STIS/E230M
Importing files ['./oen705030_x1d.fits']
Processing file ./oen705030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
Wrote products/hst_16655_stis_hd39801_e230m_oen705_cspec.fits
No need to make abutted product as only 1 grating
Looping over proposals
Processing product 16655
Targets in proposal 16655: ['HD39801']
Processing target HD39801 in proposal 16655
Processing grating STIS/E230M
Importing files ['./oen702030_x1d.fits', './oen703030_x1d.fits', './oen704030_x1d.fits', './oen705030_x1d.fits']
Processing file ./oen702030_x1d.fits
Processing file ./oen703030_x1d.fits
Processing file ./oen704030_x1d.fits
Processing file ./oen705030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
No good pixels for segment #48
No good pixels for segment #72
Segment #1 from file ./oen702030_x1d.fits has scaled median = -106.20762286613461
Removing file ./oen702030_x1d.fits from product
Segment #2 from file ./oen702030_x1d.fits has scaled median = -107.27281264936741
File ./oen702030_x1d.fits already selected for removal from product
Segment #3 from file ./oen702030_x1d.fits has scaled median = -91.0847183739855
File ./oen702030_x1d.fits already selected for removal from product
Segment #4 from file ./oen702030_x1d.fits has scaled median = -88.55456036745053
File ./oen702030_x1d.fits already selected for removal from product
Segment #5 from file ./oen702030_x1d.fits has scaled median = -53.33897852052434
File ./oen702030_x1d.fits already selected for removal from product
Segment #1 from file ./oen703030_x1d.fits has scaled median = -306.0128379439877
Removing file ./oen703030_x1d.fits from product
Segment #2 from file ./oen703030_x1d.fits has scaled median = -280.2958573072604
File ./oen703030_x1d.fits already selected for removal from product
Segment #3 from file ./oen703030_x1d.fits has scaled median = -278.9275755871674
File ./oen703030_x1d.fits already selected for removal from product
Segment #4 from file ./oen703030_x1d.fits has scaled median = -290.2345470994798
File ./oen703030_x1d.fits already selected for removal from product
Segment #5 from file ./oen703030_x1d.fits has scaled median = -267.5398483764897
File ./oen703030_x1d.fits already selected for removal from product
Segment #6 from file ./oen703030_x1d.fits has scaled median = -267.6751361299455
File ./oen703030_x1d.fits already selected for removal from product
Segment #7 from file ./oen703030_x1d.fits has scaled median = -289.13521186186125
File ./oen703030_x1d.fits already selected for removal from product
Segment #8 from file ./oen703030_x1d.fits has scaled median = -266.57200779371556
File ./oen703030_x1d.fits already selected for removal from product
Segment #9 from file ./oen703030_x1d.fits has scaled median = -274.6343273835826
File ./oen703030_x1d.fits already selected for removal from product
Segment #10 from file ./oen703030_x1d.fits has scaled median = -275.1953132510794
File ./oen703030_x1d.fits already selected for removal from product
Segment #11 from file ./oen703030_x1d.fits has scaled median = -263.7081197232287
File ./oen703030_x1d.fits already selected for removal from product
Segment #12 from file ./oen703030_x1d.fits has scaled median = -212.6251138404683
File ./oen703030_x1d.fits already selected for removal from product
Segment #13 from file ./oen703030_x1d.fits has scaled median = -196.4153156217069
File ./oen703030_x1d.fits already selected for removal from product
Segment #14 from file ./oen703030_x1d.fits has scaled median = -170.90676286375003
File ./oen703030_x1d.fits already selected for removal from product
Segment #15 from file ./oen703030_x1d.fits has scaled median = -110.44496294542722
File ./oen703030_x1d.fits already selected for removal from product
Segment #16 from file ./oen703030_x1d.fits has scaled median = -104.79572967048243
File ./oen703030_x1d.fits already selected for removal from product
Segment #17 from file ./oen703030_x1d.fits has scaled median = -103.19308139734896
File ./oen703030_x1d.fits already selected for removal from product
Segment #18 from file ./oen703030_x1d.fits has scaled median = -63.47650103305084
File ./oen703030_x1d.fits already selected for removal from product
Importing files ['./oen704030_x1d.fits', './oen705030_x1d.fits']
Processing file ./oen704030_x1d.fits
Processing file ./oen705030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
Segment #1 from file ./oen705030_x1d.fits has scaled median = -56.83339544154117
Removing file ./oen705030_x1d.fits from product
Importing files ['./oen704030_x1d.fits']
Processing file ./oen704030_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
No good pixels for segment #0
Wrote products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
No need to make abutted product as only 1 grating

We can see that two files were removed by the MAST query and that many other files were removed from the co-add because of POSTARG offsets, as expected. There are also some files that were removed later by the flux checker. Let’s see which files, and how many were rejected next.

# Use the find_rejects function to make list of pre-rejected files
listofprerejects, listoffluxrejects = find_rejects(logfile, '16655', allfiles)
print(f'Files removed before co-addition: {sorted(listofprerejects)}')
print(f'Files removed by flux checker: {sorted(listoffluxrejects)}')
print(f'Number of files removed before co-addition = {len(listofprerejects)}')
print(f'Number of files removed by flux checker = {len(listoffluxrejects)}')
Files removed before co-addition: ['oen701030_x1d.fits', 'oen701040_x1d.fits', 'oen702010_x1d.fits', 'oen702020_x1d.fits', 'oen702040_x1d.fits', 'oen702050_x1d.fits', 'oen703010_x1d.fits', 'oen703020_x1d.fits', 'oen703040_x1d.fits', 'oen703050_x1d.fits', 'oen704010_x1d.fits', 'oen704020_x1d.fits', 'oen704040_x1d.fits', 'oen704050_x1d.fits', 'oen705010_x1d.fits', 'oen705020_x1d.fits', 'oen705040_x1d.fits', 'oen705050_x1d.fits']
Files removed by flux checker: ['oen702030_x1d.fits', 'oen703030_x1d.fits', 'oen705030_x1d.fits']
Number of files removed before co-addition = 18
Number of files removed by flux checker = 3

Next, look in the x1d headers to find the exposure information and quality comments.

readheaders(listofprerejects, datadir_ex2)
16655/oen701030_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = STIS aperture door shut throughout exposure.  No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen701040_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = STIS aperture door shut throughout exposure.  No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen702010_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen702020_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen702040_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen702050_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen703010_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen703020_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen703040_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen703050_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen704010_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen704020_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen704040_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen704050_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen705010_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen705020_x1d.fits
Exposure time = 567.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.05 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen705040_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3


16655/oen705050_x1d.fits
Exposure time = 2723.0
Aperture used = 0.1X0.03
Grating used = E230M
Exposure flag = NORMAL
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = -0.025 / 0.0
Offset pattern = NONE
P1 frame = 
P1 purpose = 
Quality comments
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2023-12-13
Version of calibration software = HSTDP 2023_3

Looking through this output, we can see there are two datasets from Visit 01 that had failed target acquisitions and were removed from the co-add. The quality comments tell us the aperture door was closed through the whole exposure, so no useful data was taken. The rest of the datasets were rejected because of the POSTARG offsets, as we already knew, and there are no other quality issues.

This leaves only four datasets that were included in the call to create the default versions of the data products: oen702030_x1d.fits, oen703030_x1d.fits, oen703030_x1d.fits, and oen705030_x1d.fits. However, the data in Visits 2, 3, and 5 were later removed by the flux checker. Since this program was designed to probe Betelgeuse’s recent flux variability, it makes sense that some of the fluxes may indeed be flagged for removal. In the custom co-add runs we perform next, we can set flags to ignore the POSTARG and flux filtering.

2.3 Running coadd#

The structure of the program is such that each visit observed Betelgeuse at many POSTARG positions using the same gratings. The spatial scanning pattern is uniform, and so a user may wish to create co-adds of the spectra observed at each pointing position across all the visits. To co-add these, we can follow the same steps as in Section 1.4, but set up five different directories for each pointing position. We’ll create the directories:

Directory

Contains Datasets

newcoadddata_p50

oen702010_x1d.fits, oen703010_x1d.fits, oen704010_x1d.fits, oen705010_x1d.fits

newcoadddata_p25

oen702040_x1d.fits, oen703040_x1d.fits, oen704040_x1d.fits, oen705040_x1d.fits

newcoadddata_p0.0

oen702030_x1d.fits, oen703030_x1d.fits, oen704030_x1d.fits, oen705030_x1d.fits

newcoadddata_p-25

oen702050_x1d.fits, oen703050_x1d.fits, oen704050_x1d.fits, oen705050_x1d.fits

newcoadddata_p-50

oen702020_x1d.fits, oen703020_x1d.fits, oen704020_x1d.fits, oen705020_x1d.fits

Note that we’ll still need to exclude the Visit 01 data that was rejected from the MAST query, as that step is bypassed when we run coadd from a local folder. Like in the first example, we add the flag -k to the call to turn off the POSTARG filtering. This time, we’ll also add -t -99999 to set the flux checking threshold. Setting this to a very large negative number will essentially override the flux filtering that coadd performs.

# Get a list of all files in the directory
allfiles = glob.glob(os.path.join(datadir_ex2, '*.fits'))

# Sort through all the files based on POSTARG value
postvals = ['-0.05', '-0.025', '0.0', '0.025', '0.05']
for val in postvals:
    # Make a list of files all with the same POSTARG values
    postarglist = []
    for myfile in allfiles:
        postarg = fits.getval(myfile, 'POSTARG1')
        visitid = fits.getval(myfile, 'OBSET_ID')
        if (str(postarg) == val) and (visitid != '01'):
            postarglist.append(myfile)

    # Make new directories for each list
    finaldatadir = os.path.join(datadir_ex2, f'newcoadddata_p{val}')
    os.makedirs(finaldatadir, exist_ok=True)

    # Copy this list into a new directory to coadd from
    for file in postarglist:
        print(f'Copying {file} to {finaldatadir}')
        shutil.copy(file, finaldatadir)

    # Create output directories for the new coadds
    productdir = os.path.join(datadir_ex2, f'newcoadddata_p{val}', 'products')
    os.makedirs(productdir, exist_ok=True)
Copying 16655/oen703020_x1d.fits to 16655/newcoadddata_p-0.05
Copying 16655/oen702020_x1d.fits to 16655/newcoadddata_p-0.05
Copying 16655/oen705020_x1d.fits to 16655/newcoadddata_p-0.05
Copying 16655/oen704020_x1d.fits to 16655/newcoadddata_p-0.05
Copying 16655/oen703050_x1d.fits to 16655/newcoadddata_p-0.025
Copying 16655/oen702050_x1d.fits to 16655/newcoadddata_p-0.025
Copying 16655/oen704050_x1d.fits to 16655/newcoadddata_p-0.025
Copying 16655/oen705050_x1d.fits to 16655/newcoadddata_p-0.025
Copying 16655/oen702030_x1d.fits to 16655/newcoadddata_p0.0
Copying 16655/oen704030_x1d.fits to 16655/newcoadddata_p0.0
Copying 16655/oen703030_x1d.fits to 16655/newcoadddata_p0.0
Copying 16655/oen705030_x1d.fits to 16655/newcoadddata_p0.0
Copying 16655/oen704040_x1d.fits to 16655/newcoadddata_p0.025
Copying 16655/oen705040_x1d.fits to 16655/newcoadddata_p0.025
Copying 16655/oen703040_x1d.fits to 16655/newcoadddata_p0.025
Copying 16655/oen702040_x1d.fits to 16655/newcoadddata_p0.025
Copying 16655/oen702010_x1d.fits to 16655/newcoadddata_p0.05
Copying 16655/oen703010_x1d.fits to 16655/newcoadddata_p0.05
Copying 16655/oen705010_x1d.fits to 16655/newcoadddata_p0.05
Copying 16655/oen704010_x1d.fits to 16655/newcoadddata_p0.05

Run coadd for all the new directories:

!swrapper -i ./16655/newcoadddata_p-0.05 -o ./16655/newcoadddata_p-0.05/products -k -t -999
!swrapper -i ./16655/newcoadddata_p-0.025 -o ./16655/newcoadddata_p-0.025/products -k -t -999
!swrapper -i ./16655/newcoadddata_p0.0 -o ./16655/newcoadddata_p0.0/products -k -t -999
!swrapper -i ./16655/newcoadddata_p0.025 -o ./16655/newcoadddata_p0.025/products -k -t -999
!swrapper -i ./16655/newcoadddata_p0.05 -o ./16655/newcoadddata_p0.05/products -k -t -999
HASP version 0.9.6
Ullyses version 4.0.0
Creating list of unique modes from these files:
./16655/newcoadddata_p-0.05/oen702020_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '02')
./16655/newcoadddata_p-0.05/oen703020_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '03')
./16655/newcoadddata_p-0.05/oen704020_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '04')
./16655/newcoadddata_p-0.05/oen705020_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '05')
Looping over visits
Processing product (16655, '02')
Targets in visit (16655, '02'): ['HD39801']
Processing target HD39801 in visit (16655, '02')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.05/oen702020_x1d.fits']
Processing file ./16655/newcoadddata_p-0.05/oen702020_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen702_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '03')
Targets in visit (16655, '03'): ['HD39801']
Processing target HD39801 in visit (16655, '03')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.05/oen703020_x1d.fits']
Processing file ./16655/newcoadddata_p-0.05/oen703020_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen703_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '04')
Targets in visit (16655, '04'): ['HD39801']
Processing target HD39801 in visit (16655, '04')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.05/oen704020_x1d.fits']
Processing file ./16655/newcoadddata_p-0.05/oen704020_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen704_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '05')
Targets in visit (16655, '05'): ['HD39801']
Processing target HD39801 in visit (16655, '05')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.05/oen705020_x1d.fits']
Processing file ./16655/newcoadddata_p-0.05/oen705020_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen705_cspec.fits
No need to create abutted product as < 2 single grating products
Looping over proposals
Processing product 16655
Targets in proposal 16655: ['HD39801']
Processing target HD39801 in proposal 16655
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.05/oen702020_x1d.fits', './16655/newcoadddata_p-0.05/oen703020_x1d.fits', './16655/newcoadddata_p-0.05/oen704020_x1d.fits', './16655/newcoadddata_p-0.05/oen705020_x1d.fits']
Processing file ./16655/newcoadddata_p-0.05/oen702020_x1d.fits
Processing file ./16655/newcoadddata_p-0.05/oen703020_x1d.fits
Processing file ./16655/newcoadddata_p-0.05/oen704020_x1d.fits
Processing file ./16655/newcoadddata_p-0.05/oen705020_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
No good pixels for segment #48
No good pixels for segment #72
   Wrote ./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
Making a product from these gratings
STIS/E230M 1606.7-3119.2 (Actual: 2277.7-3072.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/E230M
Truncating current grating at 3072.1598343329238
./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits already exists and overwrite=False, skipping write
   Wrote ./16655/newcoadddata_p-0.05/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
HASP version 0.9.6
Ullyses version 4.0.0
Creating list of unique modes from these files:
./16655/newcoadddata_p-0.025/oen702050_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '02')
./16655/newcoadddata_p-0.025/oen703050_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '03')
./16655/newcoadddata_p-0.025/oen704050_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '04')
./16655/newcoadddata_p-0.025/oen705050_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '05')
Looping over visits
Processing product (16655, '02')
Targets in visit (16655, '02'): ['HD39801']
Processing target HD39801 in visit (16655, '02')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.025/oen702050_x1d.fits']
Processing file ./16655/newcoadddata_p-0.025/oen702050_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen702_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '03')
Targets in visit (16655, '03'): ['HD39801']
Processing target HD39801 in visit (16655, '03')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.025/oen703050_x1d.fits']
Processing file ./16655/newcoadddata_p-0.025/oen703050_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen703_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '04')
Targets in visit (16655, '04'): ['HD39801']
Processing target HD39801 in visit (16655, '04')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.025/oen704050_x1d.fits']
Processing file ./16655/newcoadddata_p-0.025/oen704050_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen704_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '05')
Targets in visit (16655, '05'): ['HD39801']
Processing target HD39801 in visit (16655, '05')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.025/oen705050_x1d.fits']
Processing file ./16655/newcoadddata_p-0.025/oen705050_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen705_cspec.fits
No need to create abutted product as < 2 single grating products
Looping over proposals
Processing product 16655
Targets in proposal 16655: ['HD39801']
Processing target HD39801 in proposal 16655
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p-0.025/oen702050_x1d.fits', './16655/newcoadddata_p-0.025/oen703050_x1d.fits', './16655/newcoadddata_p-0.025/oen704050_x1d.fits', './16655/newcoadddata_p-0.025/oen705050_x1d.fits']
Processing file ./16655/newcoadddata_p-0.025/oen702050_x1d.fits
Processing file ./16655/newcoadddata_p-0.025/oen703050_x1d.fits
Processing file ./16655/newcoadddata_p-0.025/oen704050_x1d.fits
Processing file ./16655/newcoadddata_p-0.025/oen705050_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
No good pixels for segment #48
No good pixels for segment #72
   Wrote ./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
Making a product from these gratings
STIS/E230M 1606.7-3119.2 (Actual: 2277.8-3072.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/E230M
Truncating current grating at 3072.1575744024462
./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits already exists and overwrite=False, skipping write
   Wrote ./16655/newcoadddata_p-0.025/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
HASP version 0.9.6
Ullyses version 4.0.0
Creating list of unique modes from these files:
./16655/newcoadddata_p0.0/oen702030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '02')
./16655/newcoadddata_p0.0/oen703030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '03')
./16655/newcoadddata_p0.0/oen704030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '04')
./16655/newcoadddata_p0.0/oen705030_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '05')
Looping over visits
Processing product (16655, '02')
Targets in visit (16655, '02'): ['HD39801']
Processing target HD39801 in visit (16655, '02')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.0/oen702030_x1d.fits']
Processing file ./16655/newcoadddata_p0.0/oen702030_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen702_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '03')
Targets in visit (16655, '03'): ['HD39801']
Processing target HD39801 in visit (16655, '03')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.0/oen703030_x1d.fits']
Processing file ./16655/newcoadddata_p0.0/oen703030_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen703_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '04')
Targets in visit (16655, '04'): ['HD39801']
Processing target HD39801 in visit (16655, '04')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.0/oen704030_x1d.fits']
Processing file ./16655/newcoadddata_p0.0/oen704030_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen704_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '05')
Targets in visit (16655, '05'): ['HD39801']
Processing target HD39801 in visit (16655, '05')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.0/oen705030_x1d.fits']
Processing file ./16655/newcoadddata_p0.0/oen705030_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen705_cspec.fits
No need to create abutted product as < 2 single grating products
Looping over proposals
Processing product 16655
Targets in proposal 16655: ['HD39801']
Processing target HD39801 in proposal 16655
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.0/oen702030_x1d.fits', './16655/newcoadddata_p0.0/oen703030_x1d.fits', './16655/newcoadddata_p0.0/oen704030_x1d.fits', './16655/newcoadddata_p0.0/oen705030_x1d.fits']
Processing file ./16655/newcoadddata_p0.0/oen702030_x1d.fits
Processing file ./16655/newcoadddata_p0.0/oen703030_x1d.fits
Processing file ./16655/newcoadddata_p0.0/oen704030_x1d.fits
Processing file ./16655/newcoadddata_p0.0/oen705030_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
No good pixels for segment #48
No good pixels for segment #72
   Wrote ./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
Making a product from these gratings
STIS/E230M 1606.7-3119.2 (Actual: 2277.8-3072.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/E230M
Truncating current grating at 3072.1585387983027
./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits already exists and overwrite=False, skipping write
   Wrote ./16655/newcoadddata_p0.0/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
HASP version 0.9.6
Ullyses version 4.0.0
Creating list of unique modes from these files:
./16655/newcoadddata_p0.025/oen702040_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '02')
./16655/newcoadddata_p0.025/oen703040_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '03')
./16655/newcoadddata_p0.025/oen704040_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '04')
./16655/newcoadddata_p0.025/oen705040_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '05')
Looping over visits
Processing product (16655, '02')
Targets in visit (16655, '02'): ['HD39801']
Processing target HD39801 in visit (16655, '02')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.025/oen702040_x1d.fits']
Processing file ./16655/newcoadddata_p0.025/oen702040_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen702_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '03')
Targets in visit (16655, '03'): ['HD39801']
Processing target HD39801 in visit (16655, '03')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.025/oen703040_x1d.fits']
Processing file ./16655/newcoadddata_p0.025/oen703040_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen703_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '04')
Targets in visit (16655, '04'): ['HD39801']
Processing target HD39801 in visit (16655, '04')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.025/oen704040_x1d.fits']
Processing file ./16655/newcoadddata_p0.025/oen704040_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen704_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '05')
Targets in visit (16655, '05'): ['HD39801']
Processing target HD39801 in visit (16655, '05')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.025/oen705040_x1d.fits']
Processing file ./16655/newcoadddata_p0.025/oen705040_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen705_cspec.fits
No need to create abutted product as < 2 single grating products
Looping over proposals
Processing product 16655
Targets in proposal 16655: ['HD39801']
Processing target HD39801 in proposal 16655
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.025/oen702040_x1d.fits', './16655/newcoadddata_p0.025/oen703040_x1d.fits', './16655/newcoadddata_p0.025/oen704040_x1d.fits', './16655/newcoadddata_p0.025/oen705040_x1d.fits']
Processing file ./16655/newcoadddata_p0.025/oen702040_x1d.fits
Processing file ./16655/newcoadddata_p0.025/oen703040_x1d.fits
Processing file ./16655/newcoadddata_p0.025/oen704040_x1d.fits
Processing file ./16655/newcoadddata_p0.025/oen705040_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
No good pixels for segment #48
No good pixels for segment #72
   Wrote ./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
Making a product from these gratings
STIS/E230M 1606.7-3119.2 (Actual: 2277.8-3072.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/E230M
Truncating current grating at 3072.15772554094
./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits already exists and overwrite=False, skipping write
   Wrote ./16655/newcoadddata_p0.025/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
HASP version 0.9.6
Ullyses version 4.0.0
Creating list of unique modes from these files:
./16655/newcoadddata_p0.05/oen702010_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '02')
./16655/newcoadddata_p0.05/oen703010_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '03')
./16655/newcoadddata_p0.05/oen704010_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '04')
./16655/newcoadddata_p0.05/oen705010_x1d.fits HD39801 STIS NUV-MAMA E230M 0.1X0.03 16655 (16655, '05')
Looping over visits
Processing product (16655, '02')
Targets in visit (16655, '02'): ['HD39801']
Processing target HD39801 in visit (16655, '02')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.05/oen702010_x1d.fits']
Processing file ./16655/newcoadddata_p0.05/oen702010_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen702_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '03')
Targets in visit (16655, '03'): ['HD39801']
Processing target HD39801 in visit (16655, '03')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.05/oen703010_x1d.fits']
Processing file ./16655/newcoadddata_p0.05/oen703010_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen703_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '04')
Targets in visit (16655, '04'): ['HD39801']
Processing target HD39801 in visit (16655, '04')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.05/oen704010_x1d.fits']
Processing file ./16655/newcoadddata_p0.05/oen704010_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen704_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16655, '05')
Targets in visit (16655, '05'): ['HD39801']
Processing target HD39801 in visit (16655, '05')
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.05/oen705010_x1d.fits']
Processing file ./16655/newcoadddata_p0.05/oen705010_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
   Wrote ./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen705_cspec.fits
No need to create abutted product as < 2 single grating products
Looping over proposals
Processing product 16655
Targets in proposal 16655: ['HD39801']
Processing target HD39801 in proposal 16655
Processing grating STIS/E230M
Importing files ['./16655/newcoadddata_p0.05/oen702010_x1d.fits', './16655/newcoadddata_p0.05/oen703010_x1d.fits', './16655/newcoadddata_p0.05/oen704010_x1d.fits', './16655/newcoadddata_p0.05/oen705010_x1d.fits']
Processing file ./16655/newcoadddata_p0.05/oen702010_x1d.fits
Processing file ./16655/newcoadddata_p0.05/oen703010_x1d.fits
Processing file ./16655/newcoadddata_p0.05/oen704010_x1d.fits
Processing file ./16655/newcoadddata_p0.05/oen705010_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
No good pixels for segment #0
No good pixels for segment #24
No good pixels for segment #48
No good pixels for segment #72
   Wrote ./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits
Making a product from these gratings
STIS/E230M 1606.7-3119.2 (Actual: 2277.7-3072.2)
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/E230M
Truncating current grating at 3072.210362810596
./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits already exists and overwrite=False, skipping write
   Wrote ./16655/newcoadddata_p0.05/products/hst_16655_stis_hd39801_e230m_oen7_cspec.fits

Now that data products have been made for all the datasets, we can plot the results.

# Clear the older plot
plt.close()
plt.figure(4)

# Set sample factor to 2, which is size of STIS resolution element
samplefactor = 2

# Plot the coadds
for val in postvals:
    coadd_filename = 'hst_16655_stis_hd39801_e230m_oen7_cspec.fits'
    coaddfile = f"{datadir_ex2}/newcoadddata_p{val}/products/{coadd_filename}"
    label = f"{str(float(val) * 10)} mas"

    coadddata = fits.getdata(coaddfile)
    wavelength = coadddata['wavelength'][0]
    flux = coadddata['flux'][0]

    plt.plot(downsample_1d(wavelength, samplefactor),
             downsample_1d(flux, samplefactor),
             label=label,
             alpha=0.7)

    targ = fits.getval(coaddfile, 'TARGNAME', ext=0)
    pid = fits.getval(coaddfile, 'PROPOSID', ext=0)
    ins = fits.getval(coaddfile, 'INSTRUME', ext=0)

    plt.title(f'{targ} - {ins} - PID {pid}')
    plt.xlabel(r'Wavelength [$\AA$]')
    plt.ylabel(r'Flux [$erg\ s^{-1}\ cm^{-2}\ \AA^{-1}$]')
    plt.legend()

# Show the plot below
plt.show()
# Also plot the SNR
# Clear the older plot
plt.close()
plt.figure(5)

# Plot the coadds
for val in postvals:
    coadd_filename = 'hst_16655_stis_hd39801_e230m_oen7_cspec.fits'
    coaddfile = f"{datadir_ex2}/newcoadddata_p{val}/products/{coadd_filename}"
    label = f"{str(float(val) * 10)} mas"

    coadddata = fits.getdata(coaddfile)
    wavelength = coadddata['wavelength'][0]
    snr = coadddata['snr'][0]
    plt.plot(downsample_1d(wavelength, samplefactor),
             downsample_1d(snr, samplefactor),
             alpha=0.7,
             label=label)

    targ = fits.getval(coaddfile, 'TARGNAME', ext=0)
    pid = fits.getval(coaddfile, 'PROPOSID', ext=0)
    ins = fits.getval(coaddfile, 'INSTRUME', ext=0)

    plt.title(f'Betelgeuse - {ins} - PID {pid}')
    plt.ylim(0, 300)
    plt.xlabel(r'Wavelength [$\AA$]')
    plt.ylabel(r'Signal-to-Noise')
    plt.legend()

# Show the plot below
plt.show()

We can see from these plots that the flux and SNR decrease the further away from the center of the star you get.

Example 3: A STIS dataset with flux rejection#

3.1 Obtaining Data Products#

For the next example, we will at Program ID 16196, a COS and STIS program that observed MRK-817.

We will again use astroquery to download the dataproducts for this program. We will create a folder called ./16655 for the 1D extracted COS and STIS spectra (x1ds and sx1s) for all visits in this program, as well as the x1dsums for the COS data. We will also create a subfolder called products, which will store the downloaded coadded data. The log file for this program is named HASP_16196.out.

# Creating directories for our data and coadded products
datadir_ex3 = Path("./16196/")
productsdir_ex3 = Path("./16196/products/")

datadir_ex3.mkdir(exist_ok=True)
productsdir_ex3.mkdir(exist_ok=True)
# Querying and downloading calibrated products
query_ex3 = Observations.query_criteria(
    proposal_id=16196, 
    provenance_name=["CALSTIS", "CALCOS"],
    target_name="MRK-817"
)

prodlist_ex3 = Observations.get_product_list(
    query_ex3
)

prodlist_ex3 = Observations.filter_products(
    prodlist_ex3,
    project=["CALSTIS", "CALCOS"],
    productSubGroupDescription=["X1D", "X1DSUM", "SX1"]
)

# Querying and downloading coadded products
query_ex3_coadds = Observations.query_criteria(
    proposal_id=16196, 
    provenance_name="HASP",
    target_name="MRK-817"
)

prodlist_ex3_coadds = Observations.get_product_list(
    query_ex3_coadds
)

prodlist_ex3_coadds = Observations.filter_products(
    prodlist_ex3_coadds, 
    productType="SCIENCE",
    productSubGroupDescription="CSPEC"
)

# Combining the two product lists
combined_ex3 = vstack([prodlist_ex3, prodlist_ex3_coadds])

# Downloading the products
Observations.download_products(
    combined_ex3,
    download_dir=str(datadir_ex3)
)

# Organizing the files 
consolidate_files(datadir_ex3)
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos-stis_mrk-817_g130m-g160m-sg230l-g430l-g750l_lede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos-stis_mrk-817_lede/hst_16196_cos-stis_mrk-817_g130m-g160m-sg230l-g430l-g750l_lede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede01_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede01_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede02_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede02_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede03_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede03_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede04_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede04_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede05_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede05_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede06_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede06_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede07_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede07_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede08_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede08_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede09_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede09_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0j_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0j_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0k_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0k_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0t_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0t_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede0z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede0z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede10_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede10_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede11_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede11_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede12_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede12_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede14_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede14_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede15_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede15_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede16_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede16_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede17_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede17_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede18_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede18_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede19_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede19_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede1w_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede1w_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede20_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede20_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede21_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede21_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede22_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede22_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede23_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede23_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede24_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede24_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede25_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede25_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede26_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede26_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede27_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede27_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede28_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede28_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede29_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede29_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2j_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2j_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2k_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2k_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede2z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede2z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede30_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede30_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede31_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede31_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede32_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede32_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede33_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede33_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede34_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede34_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede35_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede35_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede36_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede36_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede37_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede37_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede38_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede38_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede39_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede39_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3s_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3s_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3v_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3v_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3w_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3w_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3x_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3x_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede3z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede3z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede40_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede40_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede41_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede41_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede42_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede42_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede43_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede43_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede44_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede44_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede45_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede45_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede46_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede46_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede47_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede47_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede48_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede48_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede49_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede49_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede50_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede51_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede51_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede59_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede59_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede60_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede60_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede61_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede61_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede62_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede62_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede63_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede63_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede64_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede64_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede65_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede65_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede66_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede66_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede67_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede67_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede68_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede68_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede69_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede69_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede70_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede70_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede71_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede71_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede72_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede72_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede73_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede73_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede74_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede74_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede75_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede75_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede82_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede82_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede83_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede83_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede84_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede84_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede85_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede85_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede86_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede86_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede87_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede87_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede88_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede88_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede89_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede89_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede90_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede90_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede91_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede91_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede92_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede92_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m-g160m_lede93_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m-g160m_lede93_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede01_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede01_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede02_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede02_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede03_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede03_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede04_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede04_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede05_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede05_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede06_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede06_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede07_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede07_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede08_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede08_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede09_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede09_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0j_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0j_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0k_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0k_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0t_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0t_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0x_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0x_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede0z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede0z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede10_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede10_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede11_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede11_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede12_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede12_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede14_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede14_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede15_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede15_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede16_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede16_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede17_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede17_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede18_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede18_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede19_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede19_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1s_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1s_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede1w_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede1w_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede20_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede20_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede21_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede21_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede22_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede22_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede23_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede23_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede24_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede24_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede25_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede25_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede26_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede26_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede27_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede27_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede28_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede28_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede29_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede29_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2j_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2j_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2k_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2k_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede2z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede2z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede30_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede30_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede31_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede31_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede32_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede32_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede33_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede33_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede34_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede34_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede35_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede35_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede36_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede36_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede37_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede37_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede38_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede38_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede39_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede39_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3s_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3s_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3v_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3v_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3w_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3w_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3x_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3x_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede3z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede3z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede40_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede40_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede41_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede41_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede42_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede42_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede43_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede43_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede44_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede44_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede45_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede45_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede46_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede46_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede47_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede47_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede48_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede48_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede49_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede49_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede4a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede4a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede4e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede4e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede50_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede51_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede51_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede52_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede52_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede56_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede56_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede59_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede59_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede60_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede60_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede61_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede61_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede62_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede62_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede63_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede63_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede64_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede64_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede65_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede65_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede66_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede66_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede67_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede67_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede68_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede68_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede69_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede69_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede70_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede70_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede71_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede71_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede72_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede72_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede73_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede73_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede74_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede74_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede75_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede75_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede77_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede77_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede80_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede80_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede82_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede82_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede83_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede83_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede84_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede84_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede85_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede85_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede86_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede86_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede87_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede87_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede88_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede88_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede89_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede89_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede90_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede90_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede91_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede91_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede92_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede92_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede93_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede93_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede94_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede94_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede96_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede96_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g130m_lede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g130m_lede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede01_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede01_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede02_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede02_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede03_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede03_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede04_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede04_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede05_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede05_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede06_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede06_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede07_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede07_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede08_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede08_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede09_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede09_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0j_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0j_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0k_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0k_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0t_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0t_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede0z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede0z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede10_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede10_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede11_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede11_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede12_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede12_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede14_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede14_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede15_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede15_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede16_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede16_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede17_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede17_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede18_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede18_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede19_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede19_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1t_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1t_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1v_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1v_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede1w_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede1w_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede20_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede20_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede21_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede21_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede22_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede22_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede23_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede23_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede24_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede24_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede25_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede25_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede26_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede26_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede27_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede27_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede28_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede28_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede29_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede29_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2j_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2j_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2k_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2k_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede2z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede2z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede30_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede30_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede31_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede31_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede32_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede32_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede33_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede33_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede34_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede34_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede35_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede35_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede36_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede36_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede37_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede37_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede38_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede38_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede39_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede39_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3a_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3a_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3c_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3c_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3d_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3d_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3e_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3e_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3g_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3g_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3h_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3h_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3i_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3i_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3l_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3l_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3m_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3m_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3n_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3n_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3p_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3p_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3q_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3q_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3r_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3r_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3s_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3s_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3u_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3u_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3v_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3v_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3w_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3w_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3x_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3x_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3y_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3y_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede3z_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede3z_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede40_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede40_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede41_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede41_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede42_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede42_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede43_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede43_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede44_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede44_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede45_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede45_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede46_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede46_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede47_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede47_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede48_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede48_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede49_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede49_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede50_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede50_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede51_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede51_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede53_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede53_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede57_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede57_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede59_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede59_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede60_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede60_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede61_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede61_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede62_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede62_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede63_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede63_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede64_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede64_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede65_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede65_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede66_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede66_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede67_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede67_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede68_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede68_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede69_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede69_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede70_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede70_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede71_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede71_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede72_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede72_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede73_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede73_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede74_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede74_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede75_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede75_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede78_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede78_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede81_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede81_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede82_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede82_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede83_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede83_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede84_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede84_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede85_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede85_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede86_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede86_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede87_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede87_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede88_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede88_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede89_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede89_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede90_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede90_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede91_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede91_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede92_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede92_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede93_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede93_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede95_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede95_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede97_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede97_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_cos_mrk-817_g160m_lede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_cos_mrk-817_lede/hst_16196_cos_mrk-817_g160m_lede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oede3o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oede3o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oede4b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oede4b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oede4f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oede4f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oedea5_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oedea5_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oedea6_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oedea6_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g430l_oedean_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g430l_oedean_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oede3o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oede3o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oede4b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oede4b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oede4f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oede4f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oedea5_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oedea5_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oedea6_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oedea6_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_g750l_oedean_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_g750l_oedean_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede3o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede3o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l_oede3o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l_oede3o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l_oede4b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l_oede4b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l_oede4f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l_oede4f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg140l_oede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg140l_oede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea5_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea5_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea6_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea6_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedean_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedean_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oede3o_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oede3o_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oede4b_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oede4b_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oede4f_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oede4f_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oede_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oede_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oedea5_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oedea5_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oedea6_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oedea6_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/hasp/hst_16196_stis_mrk-817_sg230l_oedean_cspec.fits to 16196/mastDownload/HST/hst_hasp_16196_stis_mrk-817_oede/hst_16196_stis_mrk-817_sg230l_oedean_cspec.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01010_x1dsum.fits to 16196/mastDownload/HST/lede01010/lede01010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01020_x1dsum.fits to 16196/mastDownload/HST/lede01020/lede01020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01030_x1dsum.fits to 16196/mastDownload/HST/lede01030/lede01030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01icq_x1d.fits to 16196/mastDownload/HST/lede01icq/lede01icq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01ieq_x1d.fits to 16196/mastDownload/HST/lede01ieq/lede01ieq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01igq_x1d.fits to 16196/mastDownload/HST/lede01igq/lede01igq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01iiq_x1d.fits to 16196/mastDownload/HST/lede01iiq/lede01iiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01iqq_x1d.fits to 16196/mastDownload/HST/lede01iqq/lede01iqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01isq_x1d.fits to 16196/mastDownload/HST/lede01isq/lede01isq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01iuq_x1d.fits to 16196/mastDownload/HST/lede01iuq/lede01iuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede01iwq_x1d.fits to 16196/mastDownload/HST/lede01iwq/lede01iwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02010_x1dsum.fits to 16196/mastDownload/HST/lede02010/lede02010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02020_x1dsum.fits to 16196/mastDownload/HST/lede02020/lede02020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02030_x1dsum.fits to 16196/mastDownload/HST/lede02030/lede02030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vbq_x1d.fits to 16196/mastDownload/HST/lede02vbq/lede02vbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vdq_x1d.fits to 16196/mastDownload/HST/lede02vdq/lede02vdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vfq_x1d.fits to 16196/mastDownload/HST/lede02vfq/lede02vfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vhq_x1d.fits to 16196/mastDownload/HST/lede02vhq/lede02vhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vjq_x1d.fits to 16196/mastDownload/HST/lede02vjq/lede02vjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vlq_x1d.fits to 16196/mastDownload/HST/lede02vlq/lede02vlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vnq_x1d.fits to 16196/mastDownload/HST/lede02vnq/lede02vnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede02vpq_x1d.fits to 16196/mastDownload/HST/lede02vpq/lede02vpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03010_x1dsum.fits to 16196/mastDownload/HST/lede03010/lede03010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03020_x1dsum.fits to 16196/mastDownload/HST/lede03020/lede03020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03030_x1dsum.fits to 16196/mastDownload/HST/lede03030/lede03030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03g0q_x1d.fits to 16196/mastDownload/HST/lede03g0q/lede03g0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03g2q_x1d.fits to 16196/mastDownload/HST/lede03g2q/lede03g2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03g4q_x1d.fits to 16196/mastDownload/HST/lede03g4q/lede03g4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03g6q_x1d.fits to 16196/mastDownload/HST/lede03g6q/lede03g6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03g8q_x1d.fits to 16196/mastDownload/HST/lede03g8q/lede03g8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03gaq_x1d.fits to 16196/mastDownload/HST/lede03gaq/lede03gaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03gcq_x1d.fits to 16196/mastDownload/HST/lede03gcq/lede03gcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede03geq_x1d.fits to 16196/mastDownload/HST/lede03geq/lede03geq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04010_x1dsum.fits to 16196/mastDownload/HST/lede04010/lede04010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04020_x1dsum.fits to 16196/mastDownload/HST/lede04020/lede04020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04030_x1dsum.fits to 16196/mastDownload/HST/lede04030/lede04030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04maq_x1d.fits to 16196/mastDownload/HST/lede04maq/lede04maq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04mcq_x1d.fits to 16196/mastDownload/HST/lede04mcq/lede04mcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04meq_x1d.fits to 16196/mastDownload/HST/lede04meq/lede04meq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04mgq_x1d.fits to 16196/mastDownload/HST/lede04mgq/lede04mgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04miq_x1d.fits to 16196/mastDownload/HST/lede04miq/lede04miq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04mkq_x1d.fits to 16196/mastDownload/HST/lede04mkq/lede04mkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04mmq_x1d.fits to 16196/mastDownload/HST/lede04mmq/lede04mmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede04moq_x1d.fits to 16196/mastDownload/HST/lede04moq/lede04moq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05010_x1dsum.fits to 16196/mastDownload/HST/lede05010/lede05010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05020_x1dsum.fits to 16196/mastDownload/HST/lede05020/lede05020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05030_x1dsum.fits to 16196/mastDownload/HST/lede05030/lede05030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05qcq_x1d.fits to 16196/mastDownload/HST/lede05qcq/lede05qcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05qeq_x1d.fits to 16196/mastDownload/HST/lede05qeq/lede05qeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05qgq_x1d.fits to 16196/mastDownload/HST/lede05qgq/lede05qgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05qiq_x1d.fits to 16196/mastDownload/HST/lede05qiq/lede05qiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05qlq_x1d.fits to 16196/mastDownload/HST/lede05qlq/lede05qlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05r6q_x1d.fits to 16196/mastDownload/HST/lede05r6q/lede05r6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05r8q_x1d.fits to 16196/mastDownload/HST/lede05r8q/lede05r8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede05raq_x1d.fits to 16196/mastDownload/HST/lede05raq/lede05raq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06010_x1dsum.fits to 16196/mastDownload/HST/lede06010/lede06010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06020_x1dsum.fits to 16196/mastDownload/HST/lede06020/lede06020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06030_x1dsum.fits to 16196/mastDownload/HST/lede06030/lede06030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06yyq_x1d.fits to 16196/mastDownload/HST/lede06yyq/lede06yyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06z0q_x1d.fits to 16196/mastDownload/HST/lede06z0q/lede06z0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06z2q_x1d.fits to 16196/mastDownload/HST/lede06z2q/lede06z2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06z4q_x1d.fits to 16196/mastDownload/HST/lede06z4q/lede06z4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06z7q_x1d.fits to 16196/mastDownload/HST/lede06z7q/lede06z7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06z9q_x1d.fits to 16196/mastDownload/HST/lede06z9q/lede06z9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06zbq_x1d.fits to 16196/mastDownload/HST/lede06zbq/lede06zbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede06zdq_x1d.fits to 16196/mastDownload/HST/lede06zdq/lede06zdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07010_x1dsum.fits to 16196/mastDownload/HST/lede07010/lede07010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07020_x1dsum.fits to 16196/mastDownload/HST/lede07020/lede07020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07030_x1dsum.fits to 16196/mastDownload/HST/lede07030/lede07030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07jyq_x1d.fits to 16196/mastDownload/HST/lede07jyq/lede07jyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07k0q_x1d.fits to 16196/mastDownload/HST/lede07k0q/lede07k0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07k2q_x1d.fits to 16196/mastDownload/HST/lede07k2q/lede07k2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07k4q_x1d.fits to 16196/mastDownload/HST/lede07k4q/lede07k4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07k6q_x1d.fits to 16196/mastDownload/HST/lede07k6q/lede07k6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07k8q_x1d.fits to 16196/mastDownload/HST/lede07k8q/lede07k8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07kaq_x1d.fits to 16196/mastDownload/HST/lede07kaq/lede07kaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede07kcq_x1d.fits to 16196/mastDownload/HST/lede07kcq/lede07kcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08010_x1dsum.fits to 16196/mastDownload/HST/lede08010/lede08010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08020_x1dsum.fits to 16196/mastDownload/HST/lede08020/lede08020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08030_x1dsum.fits to 16196/mastDownload/HST/lede08030/lede08030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08f3q_x1d.fits to 16196/mastDownload/HST/lede08f3q/lede08f3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08f5q_x1d.fits to 16196/mastDownload/HST/lede08f5q/lede08f5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08f7q_x1d.fits to 16196/mastDownload/HST/lede08f7q/lede08f7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08fcq_x1d.fits to 16196/mastDownload/HST/lede08fcq/lede08fcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08feq_x1d.fits to 16196/mastDownload/HST/lede08feq/lede08feq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08fgq_x1d.fits to 16196/mastDownload/HST/lede08fgq/lede08fgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08fiq_x1d.fits to 16196/mastDownload/HST/lede08fiq/lede08fiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede08fkq_x1d.fits to 16196/mastDownload/HST/lede08fkq/lede08fkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09010_x1dsum.fits to 16196/mastDownload/HST/lede09010/lede09010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09020_x1dsum.fits to 16196/mastDownload/HST/lede09020/lede09020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09030_x1dsum.fits to 16196/mastDownload/HST/lede09030/lede09030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09a1q_x1d.fits to 16196/mastDownload/HST/lede09a1q/lede09a1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09a3q_x1d.fits to 16196/mastDownload/HST/lede09a3q/lede09a3q_x1d.fits ...
 [Done]

Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09a5q_x1d.fits to 16196/mastDownload/HST/lede09a5q/lede09a5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09a7q_x1d.fits to 16196/mastDownload/HST/lede09a7q/lede09a7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09a9q_x1d.fits to 16196/mastDownload/HST/lede09a9q/lede09a9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09abq_x1d.fits to 16196/mastDownload/HST/lede09abq/lede09abq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09adq_x1d.fits to 16196/mastDownload/HST/lede09adq/lede09adq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede09afq_x1d.fits to 16196/mastDownload/HST/lede09afq/lede09afq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0a010_x1dsum.fits to 16196/mastDownload/HST/lede0a010/lede0a010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0a020_x1dsum.fits to 16196/mastDownload/HST/lede0a020/lede0a020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0a030_x1dsum.fits to 16196/mastDownload/HST/lede0a030/lede0a030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0aetq_x1d.fits to 16196/mastDownload/HST/lede0aetq/lede0aetq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0aevq_x1d.fits to 16196/mastDownload/HST/lede0aevq/lede0aevq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0aexq_x1d.fits to 16196/mastDownload/HST/lede0aexq/lede0aexq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0aezq_x1d.fits to 16196/mastDownload/HST/lede0aezq/lede0aezq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0af2q_x1d.fits to 16196/mastDownload/HST/lede0af2q/lede0af2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0af5q_x1d.fits to 16196/mastDownload/HST/lede0af5q/lede0af5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0af7q_x1d.fits to 16196/mastDownload/HST/lede0af7q/lede0af7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0af9q_x1d.fits to 16196/mastDownload/HST/lede0af9q/lede0af9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0b010_x1dsum.fits to 16196/mastDownload/HST/lede0b010/lede0b010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0b020_x1dsum.fits to 16196/mastDownload/HST/lede0b020/lede0b020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0b030_x1dsum.fits to 16196/mastDownload/HST/lede0b030/lede0b030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bj1q_x1d.fits to 16196/mastDownload/HST/lede0bj1q/lede0bj1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bj3q_x1d.fits to 16196/mastDownload/HST/lede0bj3q/lede0bj3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bj5q_x1d.fits to 16196/mastDownload/HST/lede0bj5q/lede0bj5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bj7q_x1d.fits to 16196/mastDownload/HST/lede0bj7q/lede0bj7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bj9q_x1d.fits to 16196/mastDownload/HST/lede0bj9q/lede0bj9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bjbq_x1d.fits to 16196/mastDownload/HST/lede0bjbq/lede0bjbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bjdq_x1d.fits to 16196/mastDownload/HST/lede0bjdq/lede0bjdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0bjyq_x1d.fits to 16196/mastDownload/HST/lede0bjyq/lede0bjyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0c010_x1dsum.fits to 16196/mastDownload/HST/lede0c010/lede0c010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0c020_x1dsum.fits to 16196/mastDownload/HST/lede0c020/lede0c020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0c030_x1dsum.fits to 16196/mastDownload/HST/lede0c030/lede0c030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cvpq_x1d.fits to 16196/mastDownload/HST/lede0cvpq/lede0cvpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cvrq_x1d.fits to 16196/mastDownload/HST/lede0cvrq/lede0cvrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cvtq_x1d.fits to 16196/mastDownload/HST/lede0cvtq/lede0cvtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cvvq_x1d.fits to 16196/mastDownload/HST/lede0cvvq/lede0cvvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cvxq_x1d.fits to 16196/mastDownload/HST/lede0cvxq/lede0cvxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cvzq_x1d.fits to 16196/mastDownload/HST/lede0cvzq/lede0cvzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cw1q_x1d.fits to 16196/mastDownload/HST/lede0cw1q/lede0cw1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0cw3q_x1d.fits to 16196/mastDownload/HST/lede0cw3q/lede0cw3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0d010_x1dsum.fits to 16196/mastDownload/HST/lede0d010/lede0d010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0d020_x1dsum.fits to 16196/mastDownload/HST/lede0d020/lede0d020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0d030_x1dsum.fits to 16196/mastDownload/HST/lede0d030/lede0d030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0df6q_x1d.fits to 16196/mastDownload/HST/lede0df6q/lede0df6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0df8q_x1d.fits to 16196/mastDownload/HST/lede0df8q/lede0df8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0dfaq_x1d.fits to 16196/mastDownload/HST/lede0dfaq/lede0dfaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0dfcq_x1d.fits to 16196/mastDownload/HST/lede0dfcq/lede0dfcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0dfeq_x1d.fits to 16196/mastDownload/HST/lede0dfeq/lede0dfeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0dfgq_x1d.fits to 16196/mastDownload/HST/lede0dfgq/lede0dfgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0dfiq_x1d.fits to 16196/mastDownload/HST/lede0dfiq/lede0dfiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0dfoq_x1d.fits to 16196/mastDownload/HST/lede0dfoq/lede0dfoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0i010_x1dsum.fits to 16196/mastDownload/HST/lede0i010/lede0i010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0i020_x1dsum.fits to 16196/mastDownload/HST/lede0i020/lede0i020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0i030_x1dsum.fits to 16196/mastDownload/HST/lede0i030/lede0i030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0iknq_x1d.fits to 16196/mastDownload/HST/lede0iknq/lede0iknq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ikpq_x1d.fits to 16196/mastDownload/HST/lede0ikpq/lede0ikpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ikrq_x1d.fits to 16196/mastDownload/HST/lede0ikrq/lede0ikrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0iktq_x1d.fits to 16196/mastDownload/HST/lede0iktq/lede0iktq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ikvq_x1d.fits to 16196/mastDownload/HST/lede0ikvq/lede0ikvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ikxq_x1d.fits to 16196/mastDownload/HST/lede0ikxq/lede0ikxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ikzq_x1d.fits to 16196/mastDownload/HST/lede0ikzq/lede0ikzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0il1q_x1d.fits to 16196/mastDownload/HST/lede0il1q/lede0il1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0j010_x1dsum.fits to 16196/mastDownload/HST/lede0j010/lede0j010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0j020_x1dsum.fits to 16196/mastDownload/HST/lede0j020/lede0j020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0j030_x1dsum.fits to 16196/mastDownload/HST/lede0j030/lede0j030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jw1q_x1d.fits to 16196/mastDownload/HST/lede0jw1q/lede0jw1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jw3q_x1d.fits to 16196/mastDownload/HST/lede0jw3q/lede0jw3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jw5q_x1d.fits to 16196/mastDownload/HST/lede0jw5q/lede0jw5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jw7q_x1d.fits to 16196/mastDownload/HST/lede0jw7q/lede0jw7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jw9q_x1d.fits to 16196/mastDownload/HST/lede0jw9q/lede0jw9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jwbq_x1d.fits to 16196/mastDownload/HST/lede0jwbq/lede0jwbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jwdq_x1d.fits to 16196/mastDownload/HST/lede0jwdq/lede0jwdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0jwfq_x1d.fits to 16196/mastDownload/HST/lede0jwfq/lede0jwfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0k010_x1dsum.fits to 16196/mastDownload/HST/lede0k010/lede0k010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0k020_x1dsum.fits to 16196/mastDownload/HST/lede0k020/lede0k020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0k030_x1dsum.fits to 16196/mastDownload/HST/lede0k030/lede0k030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kf5q_x1d.fits to 16196/mastDownload/HST/lede0kf5q/lede0kf5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kf7q_x1d.fits to 16196/mastDownload/HST/lede0kf7q/lede0kf7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kf9q_x1d.fits to 16196/mastDownload/HST/lede0kf9q/lede0kf9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kfbq_x1d.fits to 16196/mastDownload/HST/lede0kfbq/lede0kfbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kfeq_x1d.fits to 16196/mastDownload/HST/lede0kfeq/lede0kfeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kfgq_x1d.fits to 16196/mastDownload/HST/lede0kfgq/lede0kfgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kfiq_x1d.fits to 16196/mastDownload/HST/lede0kfiq/lede0kfiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0kfkq_x1d.fits to 16196/mastDownload/HST/lede0kfkq/lede0kfkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0l010_x1dsum.fits to 16196/mastDownload/HST/lede0l010/lede0l010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0l020_x1dsum.fits to 16196/mastDownload/HST/lede0l020/lede0l020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0l030_x1dsum.fits to 16196/mastDownload/HST/lede0l030/lede0l030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0loxq_x1d.fits to 16196/mastDownload/HST/lede0loxq/lede0loxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lozq_x1d.fits to 16196/mastDownload/HST/lede0lozq/lede0lozq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lp1q_x1d.fits to 16196/mastDownload/HST/lede0lp1q/lede0lp1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lp3q_x1d.fits to 16196/mastDownload/HST/lede0lp3q/lede0lp3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lp5q_x1d.fits to 16196/mastDownload/HST/lede0lp5q/lede0lp5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lp7q_x1d.fits to 16196/mastDownload/HST/lede0lp7q/lede0lp7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lp9q_x1d.fits to 16196/mastDownload/HST/lede0lp9q/lede0lp9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0lpbq_x1d.fits to 16196/mastDownload/HST/lede0lpbq/lede0lpbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0m010_x1dsum.fits to 16196/mastDownload/HST/lede0m010/lede0m010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0m020_x1dsum.fits to 16196/mastDownload/HST/lede0m020/lede0m020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0m030_x1dsum.fits to 16196/mastDownload/HST/lede0m030/lede0m030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ma1q_x1d.fits to 16196/mastDownload/HST/lede0ma1q/lede0ma1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ma4q_x1d.fits to 16196/mastDownload/HST/lede0ma4q/lede0ma4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ma6q_x1d.fits to 16196/mastDownload/HST/lede0ma6q/lede0ma6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0mz6q_x1d.fits to 16196/mastDownload/HST/lede0mz6q/lede0mz6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0mz8q_x1d.fits to 16196/mastDownload/HST/lede0mz8q/lede0mz8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0mzaq_x1d.fits to 16196/mastDownload/HST/lede0mzaq/lede0mzaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0mzvq_x1d.fits to 16196/mastDownload/HST/lede0mzvq/lede0mzvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0mzxq_x1d.fits to 16196/mastDownload/HST/lede0mzxq/lede0mzxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0n010_x1dsum.fits to 16196/mastDownload/HST/lede0n010/lede0n010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0n020_x1dsum.fits to 16196/mastDownload/HST/lede0n020/lede0n020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0n030_x1dsum.fits to 16196/mastDownload/HST/lede0n030/lede0n030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njbq_x1d.fits to 16196/mastDownload/HST/lede0njbq/lede0njbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njeq_x1d.fits to 16196/mastDownload/HST/lede0njeq/lede0njeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njgq_x1d.fits to 16196/mastDownload/HST/lede0njgq/lede0njgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njiq_x1d.fits to 16196/mastDownload/HST/lede0njiq/lede0njiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njkq_x1d.fits to 16196/mastDownload/HST/lede0njkq/lede0njkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njmq_x1d.fits to 16196/mastDownload/HST/lede0njmq/lede0njmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0njoq_x1d.fits to 16196/mastDownload/HST/lede0njoq/lede0njoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0nk9q_x1d.fits to 16196/mastDownload/HST/lede0nk9q/lede0nk9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0o010_x1dsum.fits to 16196/mastDownload/HST/lede0o010/lede0o010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0o020_x1dsum.fits to 16196/mastDownload/HST/lede0o020/lede0o020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0o030_x1dsum.fits to 16196/mastDownload/HST/lede0o030/lede0o030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0oglq_x1d.fits to 16196/mastDownload/HST/lede0oglq/lede0oglq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ognq_x1d.fits to 16196/mastDownload/HST/lede0ognq/lede0ognq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ogpq_x1d.fits to 16196/mastDownload/HST/lede0ogpq/lede0ogpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ogrq_x1d.fits to 16196/mastDownload/HST/lede0ogrq/lede0ogrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ogtq_x1d.fits to 16196/mastDownload/HST/lede0ogtq/lede0ogtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ogvq_x1d.fits to 16196/mastDownload/HST/lede0ogvq/lede0ogvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ogxq_x1d.fits to 16196/mastDownload/HST/lede0ogxq/lede0ogxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ogzq_x1d.fits to 16196/mastDownload/HST/lede0ogzq/lede0ogzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0p010_x1dsum.fits to 16196/mastDownload/HST/lede0p010/lede0p010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0p020_x1dsum.fits to 16196/mastDownload/HST/lede0p020/lede0p020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0p030_x1dsum.fits to 16196/mastDownload/HST/lede0p030/lede0p030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0psiq_x1d.fits to 16196/mastDownload/HST/lede0psiq/lede0psiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0pskq_x1d.fits to 16196/mastDownload/HST/lede0pskq/lede0pskq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0psmq_x1d.fits to 16196/mastDownload/HST/lede0psmq/lede0psmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0psoq_x1d.fits to 16196/mastDownload/HST/lede0psoq/lede0psoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0psqq_x1d.fits to 16196/mastDownload/HST/lede0psqq/lede0psqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0pssq_x1d.fits to 16196/mastDownload/HST/lede0pssq/lede0pssq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0psuq_x1d.fits to 16196/mastDownload/HST/lede0psuq/lede0psuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0pswq_x1d.fits to 16196/mastDownload/HST/lede0pswq/lede0pswq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0q010_x1dsum.fits to 16196/mastDownload/HST/lede0q010/lede0q010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0q020_x1dsum.fits to 16196/mastDownload/HST/lede0q020/lede0q020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0q030_x1dsum.fits to 16196/mastDownload/HST/lede0q030/lede0q030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qc2q_x1d.fits to 16196/mastDownload/HST/lede0qc2q/lede0qc2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qc4q_x1d.fits to 16196/mastDownload/HST/lede0qc4q/lede0qc4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qc6q_x1d.fits to 16196/mastDownload/HST/lede0qc6q/lede0qc6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qc8q_x1d.fits to 16196/mastDownload/HST/lede0qc8q/lede0qc8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qcaq_x1d.fits to 16196/mastDownload/HST/lede0qcaq/lede0qcaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qccq_x1d.fits to 16196/mastDownload/HST/lede0qccq/lede0qccq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qceq_x1d.fits to 16196/mastDownload/HST/lede0qceq/lede0qceq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0qcgq_x1d.fits to 16196/mastDownload/HST/lede0qcgq/lede0qcgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0r010_x1dsum.fits to 16196/mastDownload/HST/lede0r010/lede0r010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0r020_x1dsum.fits to 16196/mastDownload/HST/lede0r020/lede0r020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0r030_x1dsum.fits to 16196/mastDownload/HST/lede0r030/lede0r030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ra6q_x1d.fits to 16196/mastDownload/HST/lede0ra6q/lede0ra6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ra8q_x1d.fits to 16196/mastDownload/HST/lede0ra8q/lede0ra8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0rabq_x1d.fits to 16196/mastDownload/HST/lede0rabq/lede0rabq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ragq_x1d.fits to 16196/mastDownload/HST/lede0ragq/lede0ragq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0raiq_x1d.fits to 16196/mastDownload/HST/lede0raiq/lede0raiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0ranq_x1d.fits to 16196/mastDownload/HST/lede0ranq/lede0ranq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0rapq_x1d.fits to 16196/mastDownload/HST/lede0rapq/lede0rapq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0rarq_x1d.fits to 16196/mastDownload/HST/lede0rarq/lede0rarq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0t010_x1dsum.fits to 16196/mastDownload/HST/lede0t010/lede0t010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0t020_x1dsum.fits to 16196/mastDownload/HST/lede0t020/lede0t020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0t030_x1dsum.fits to 16196/mastDownload/HST/lede0t030/lede0t030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0to1q_x1d.fits to 16196/mastDownload/HST/lede0to1q/lede0to1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0to4q_x1d.fits to 16196/mastDownload/HST/lede0to4q/lede0to4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0to6q_x1d.fits to 16196/mastDownload/HST/lede0to6q/lede0to6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0tobq_x1d.fits to 16196/mastDownload/HST/lede0tobq/lede0tobq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0togq_x1d.fits to 16196/mastDownload/HST/lede0togq/lede0togq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0toiq_x1d.fits to 16196/mastDownload/HST/lede0toiq/lede0toiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0tokq_x1d.fits to 16196/mastDownload/HST/lede0tokq/lede0tokq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0tomq_x1d.fits to 16196/mastDownload/HST/lede0tomq/lede0tomq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0u010_x1dsum.fits to 16196/mastDownload/HST/lede0u010/lede0u010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0u020_x1dsum.fits to 16196/mastDownload/HST/lede0u020/lede0u020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0u030_x1dsum.fits to 16196/mastDownload/HST/lede0u030/lede0u030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzeq_x1d.fits to 16196/mastDownload/HST/lede0uzeq/lede0uzeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzhq_x1d.fits to 16196/mastDownload/HST/lede0uzhq/lede0uzhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzjq_x1d.fits to 16196/mastDownload/HST/lede0uzjq/lede0uzjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzoq_x1d.fits to 16196/mastDownload/HST/lede0uzoq/lede0uzoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uztq_x1d.fits to 16196/mastDownload/HST/lede0uztq/lede0uztq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzvq_x1d.fits to 16196/mastDownload/HST/lede0uzvq/lede0uzvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzxq_x1d.fits to 16196/mastDownload/HST/lede0uzxq/lede0uzxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0uzzq_x1d.fits to 16196/mastDownload/HST/lede0uzzq/lede0uzzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0x010_x1dsum.fits to 16196/mastDownload/HST/lede0x010/lede0x010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0xgrq_x1d.fits to 16196/mastDownload/HST/lede0xgrq/lede0xgrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0xgtq_x1d.fits to 16196/mastDownload/HST/lede0xgtq/lede0xgtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0xgvq_x1d.fits to 16196/mastDownload/HST/lede0xgvq/lede0xgvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0xgyq_x1d.fits to 16196/mastDownload/HST/lede0xgyq/lede0xgyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0y010_x1dsum.fits to 16196/mastDownload/HST/lede0y010/lede0y010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0y020_x1dsum.fits to 16196/mastDownload/HST/lede0y020/lede0y020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0yh2q_x1d.fits to 16196/mastDownload/HST/lede0yh2q/lede0yh2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0yh4q_x1d.fits to 16196/mastDownload/HST/lede0yh4q/lede0yh4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0z010_x1dsum.fits to 16196/mastDownload/HST/lede0z010/lede0z010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0z020_x1dsum.fits to 16196/mastDownload/HST/lede0z020/lede0z020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0z030_x1dsum.fits to 16196/mastDownload/HST/lede0z030/lede0z030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0z040_x1dsum.fits to 16196/mastDownload/HST/lede0z040/lede0z040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zz2q_x1d.fits to 16196/mastDownload/HST/lede0zz2q/lede0zz2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zz4q_x1d.fits to 16196/mastDownload/HST/lede0zz4q/lede0zz4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zz6q_x1d.fits to 16196/mastDownload/HST/lede0zz6q/lede0zz6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zz8q_x1d.fits to 16196/mastDownload/HST/lede0zz8q/lede0zz8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzaq_x1d.fits to 16196/mastDownload/HST/lede0zzaq/lede0zzaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzcq_x1d.fits to 16196/mastDownload/HST/lede0zzcq/lede0zzcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzeq_x1d.fits to 16196/mastDownload/HST/lede0zzeq/lede0zzeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzgq_x1d.fits to 16196/mastDownload/HST/lede0zzgq/lede0zzgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zziq_x1d.fits to 16196/mastDownload/HST/lede0zziq/lede0zziq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzkq_x1d.fits to 16196/mastDownload/HST/lede0zzkq/lede0zzkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzmq_x1d.fits to 16196/mastDownload/HST/lede0zzmq/lede0zzmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede0zzoq_x1d.fits to 16196/mastDownload/HST/lede0zzoq/lede0zzoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10010_x1dsum.fits to 16196/mastDownload/HST/lede10010/lede10010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10020_x1dsum.fits to 16196/mastDownload/HST/lede10020/lede10020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10030_x1dsum.fits to 16196/mastDownload/HST/lede10030/lede10030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10iyq_x1d.fits to 16196/mastDownload/HST/lede10iyq/lede10iyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10j0q_x1d.fits to 16196/mastDownload/HST/lede10j0q/lede10j0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10j2q_x1d.fits to 16196/mastDownload/HST/lede10j2q/lede10j2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10j4q_x1d.fits to 16196/mastDownload/HST/lede10j4q/lede10j4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10j6q_x1d.fits to 16196/mastDownload/HST/lede10j6q/lede10j6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10j8q_x1d.fits to 16196/mastDownload/HST/lede10j8q/lede10j8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10jaq_x1d.fits to 16196/mastDownload/HST/lede10jaq/lede10jaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede10jcq_x1d.fits to 16196/mastDownload/HST/lede10jcq/lede10jcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11010_x1dsum.fits to 16196/mastDownload/HST/lede11010/lede11010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11020_x1dsum.fits to 16196/mastDownload/HST/lede11020/lede11020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11030_x1dsum.fits to 16196/mastDownload/HST/lede11030/lede11030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11a4q_x1d.fits to 16196/mastDownload/HST/lede11a4q/lede11a4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11a6q_x1d.fits to 16196/mastDownload/HST/lede11a6q/lede11a6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11a8q_x1d.fits to 16196/mastDownload/HST/lede11a8q/lede11a8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11aaq_x1d.fits to 16196/mastDownload/HST/lede11aaq/lede11aaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11adq_x1d.fits to 16196/mastDownload/HST/lede11adq/lede11adq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11afq_x1d.fits to 16196/mastDownload/HST/lede11afq/lede11afq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11ahq_x1d.fits to 16196/mastDownload/HST/lede11ahq/lede11ahq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede11ajq_x1d.fits to 16196/mastDownload/HST/lede11ajq/lede11ajq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12010_x1dsum.fits to 16196/mastDownload/HST/lede12010/lede12010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12020_x1dsum.fits to 16196/mastDownload/HST/lede12020/lede12020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12030_x1dsum.fits to 16196/mastDownload/HST/lede12030/lede12030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12lzq_x1d.fits to 16196/mastDownload/HST/lede12lzq/lede12lzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12m1q_x1d.fits to 16196/mastDownload/HST/lede12m1q/lede12m1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12m3q_x1d.fits to 16196/mastDownload/HST/lede12m3q/lede12m3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12m5q_x1d.fits to 16196/mastDownload/HST/lede12m5q/lede12m5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12m7q_x1d.fits to 16196/mastDownload/HST/lede12m7q/lede12m7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12m9q_x1d.fits to 16196/mastDownload/HST/lede12m9q/lede12m9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12mbq_x1d.fits to 16196/mastDownload/HST/lede12mbq/lede12mbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede12mdq_x1d.fits to 16196/mastDownload/HST/lede12mdq/lede12mdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14010_x1dsum.fits to 16196/mastDownload/HST/lede14010/lede14010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14020_x1dsum.fits to 16196/mastDownload/HST/lede14020/lede14020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14030_x1dsum.fits to 16196/mastDownload/HST/lede14030/lede14030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14jzq_x1d.fits to 16196/mastDownload/HST/lede14jzq/lede14jzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14k1q_x1d.fits to 16196/mastDownload/HST/lede14k1q/lede14k1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14k3q_x1d.fits to 16196/mastDownload/HST/lede14k3q/lede14k3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14k5q_x1d.fits to 16196/mastDownload/HST/lede14k5q/lede14k5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14k7q_x1d.fits to 16196/mastDownload/HST/lede14k7q/lede14k7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14k9q_x1d.fits to 16196/mastDownload/HST/lede14k9q/lede14k9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14kbq_x1d.fits to 16196/mastDownload/HST/lede14kbq/lede14kbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede14kdq_x1d.fits to 16196/mastDownload/HST/lede14kdq/lede14kdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15010_x1dsum.fits to 16196/mastDownload/HST/lede15010/lede15010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15020_x1dsum.fits to 16196/mastDownload/HST/lede15020/lede15020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15030_x1dsum.fits to 16196/mastDownload/HST/lede15030/lede15030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15ngq_x1d.fits to 16196/mastDownload/HST/lede15ngq/lede15ngq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15niq_x1d.fits to 16196/mastDownload/HST/lede15niq/lede15niq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15nkq_x1d.fits to 16196/mastDownload/HST/lede15nkq/lede15nkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15nmq_x1d.fits to 16196/mastDownload/HST/lede15nmq/lede15nmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15noq_x1d.fits to 16196/mastDownload/HST/lede15noq/lede15noq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15nqq_x1d.fits to 16196/mastDownload/HST/lede15nqq/lede15nqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15nsq_x1d.fits to 16196/mastDownload/HST/lede15nsq/lede15nsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede15nuq_x1d.fits to 16196/mastDownload/HST/lede15nuq/lede15nuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16010_x1dsum.fits to 16196/mastDownload/HST/lede16010/lede16010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16020_x1dsum.fits to 16196/mastDownload/HST/lede16020/lede16020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16030_x1dsum.fits to 16196/mastDownload/HST/lede16030/lede16030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16vzq_x1d.fits to 16196/mastDownload/HST/lede16vzq/lede16vzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16w2q_x1d.fits to 16196/mastDownload/HST/lede16w2q/lede16w2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16w4q_x1d.fits to 16196/mastDownload/HST/lede16w4q/lede16w4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16w6q_x1d.fits to 16196/mastDownload/HST/lede16w6q/lede16w6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16w8q_x1d.fits to 16196/mastDownload/HST/lede16w8q/lede16w8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16waq_x1d.fits to 16196/mastDownload/HST/lede16waq/lede16waq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16wcq_x1d.fits to 16196/mastDownload/HST/lede16wcq/lede16wcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede16weq_x1d.fits to 16196/mastDownload/HST/lede16weq/lede16weq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17010_x1dsum.fits to 16196/mastDownload/HST/lede17010/lede17010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17020_x1dsum.fits to 16196/mastDownload/HST/lede17020/lede17020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17030_x1dsum.fits to 16196/mastDownload/HST/lede17030/lede17030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17hqq_x1d.fits to 16196/mastDownload/HST/lede17hqq/lede17hqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17hsq_x1d.fits to 16196/mastDownload/HST/lede17hsq/lede17hsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17huq_x1d.fits to 16196/mastDownload/HST/lede17huq/lede17huq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17hwq_x1d.fits to 16196/mastDownload/HST/lede17hwq/lede17hwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17hyq_x1d.fits to 16196/mastDownload/HST/lede17hyq/lede17hyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17i0q_x1d.fits to 16196/mastDownload/HST/lede17i0q/lede17i0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17i2q_x1d.fits to 16196/mastDownload/HST/lede17i2q/lede17i2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede17i4q_x1d.fits to 16196/mastDownload/HST/lede17i4q/lede17i4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18010_x1dsum.fits to 16196/mastDownload/HST/lede18010/lede18010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18020_x1dsum.fits to 16196/mastDownload/HST/lede18020/lede18020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18030_x1dsum.fits to 16196/mastDownload/HST/lede18030/lede18030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18s8q_x1d.fits to 16196/mastDownload/HST/lede18s8q/lede18s8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18saq_x1d.fits to 16196/mastDownload/HST/lede18saq/lede18saq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18scq_x1d.fits to 16196/mastDownload/HST/lede18scq/lede18scq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18seq_x1d.fits to 16196/mastDownload/HST/lede18seq/lede18seq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18sgq_x1d.fits to 16196/mastDownload/HST/lede18sgq/lede18sgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18siq_x1d.fits to 16196/mastDownload/HST/lede18siq/lede18siq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18skq_x1d.fits to 16196/mastDownload/HST/lede18skq/lede18skq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede18smq_x1d.fits to 16196/mastDownload/HST/lede18smq/lede18smq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19010_x1dsum.fits to 16196/mastDownload/HST/lede19010/lede19010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19020_x1dsum.fits to 16196/mastDownload/HST/lede19020/lede19020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19030_x1dsum.fits to 16196/mastDownload/HST/lede19030/lede19030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19msq_x1d.fits to 16196/mastDownload/HST/lede19msq/lede19msq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19muq_x1d.fits to 16196/mastDownload/HST/lede19muq/lede19muq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19mwq_x1d.fits to 16196/mastDownload/HST/lede19mwq/lede19mwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19myq_x1d.fits to 16196/mastDownload/HST/lede19myq/lede19myq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19n1q_x1d.fits to 16196/mastDownload/HST/lede19n1q/lede19n1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19n3q_x1d.fits to 16196/mastDownload/HST/lede19n3q/lede19n3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19n5q_x1d.fits to 16196/mastDownload/HST/lede19n5q/lede19n5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede19n7q_x1d.fits to 16196/mastDownload/HST/lede19n7q/lede19n7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1a010_x1dsum.fits to 16196/mastDownload/HST/lede1a010/lede1a010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1a020_x1dsum.fits to 16196/mastDownload/HST/lede1a020/lede1a020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1a030_x1dsum.fits to 16196/mastDownload/HST/lede1a030/lede1a030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajaq_x1d.fits to 16196/mastDownload/HST/lede1ajaq/lede1ajaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajcq_x1d.fits to 16196/mastDownload/HST/lede1ajcq/lede1ajcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajeq_x1d.fits to 16196/mastDownload/HST/lede1ajeq/lede1ajeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajgq_x1d.fits to 16196/mastDownload/HST/lede1ajgq/lede1ajgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajiq_x1d.fits to 16196/mastDownload/HST/lede1ajiq/lede1ajiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajkq_x1d.fits to 16196/mastDownload/HST/lede1ajkq/lede1ajkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajmq_x1d.fits to 16196/mastDownload/HST/lede1ajmq/lede1ajmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ajoq_x1d.fits to 16196/mastDownload/HST/lede1ajoq/lede1ajoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1b010_x1dsum.fits to 16196/mastDownload/HST/lede1b010/lede1b010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1b020_x1dsum.fits to 16196/mastDownload/HST/lede1b020/lede1b020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1b030_x1dsum.fits to 16196/mastDownload/HST/lede1b030/lede1b030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvgq_x1d.fits to 16196/mastDownload/HST/lede1bvgq/lede1bvgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bviq_x1d.fits to 16196/mastDownload/HST/lede1bviq/lede1bviq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvkq_x1d.fits to 16196/mastDownload/HST/lede1bvkq/lede1bvkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvmq_x1d.fits to 16196/mastDownload/HST/lede1bvmq/lede1bvmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvoq_x1d.fits to 16196/mastDownload/HST/lede1bvoq/lede1bvoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvqq_x1d.fits to 16196/mastDownload/HST/lede1bvqq/lede1bvqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvsq_x1d.fits to 16196/mastDownload/HST/lede1bvsq/lede1bvsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1bvuq_x1d.fits to 16196/mastDownload/HST/lede1bvuq/lede1bvuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1c010_x1dsum.fits to 16196/mastDownload/HST/lede1c010/lede1c010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1c020_x1dsum.fits to 16196/mastDownload/HST/lede1c020/lede1c020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1c030_x1dsum.fits to 16196/mastDownload/HST/lede1c030/lede1c030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cf2q_x1d.fits to 16196/mastDownload/HST/lede1cf2q/lede1cf2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cf4q_x1d.fits to 16196/mastDownload/HST/lede1cf4q/lede1cf4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cf6q_x1d.fits to 16196/mastDownload/HST/lede1cf6q/lede1cf6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cf8q_x1d.fits to 16196/mastDownload/HST/lede1cf8q/lede1cf8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cfaq_x1d.fits to 16196/mastDownload/HST/lede1cfaq/lede1cfaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cfcq_x1d.fits to 16196/mastDownload/HST/lede1cfcq/lede1cfcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cfeq_x1d.fits to 16196/mastDownload/HST/lede1cfeq/lede1cfeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1cfgq_x1d.fits to 16196/mastDownload/HST/lede1cfgq/lede1cfgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1d010_x1dsum.fits to 16196/mastDownload/HST/lede1d010/lede1d010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1d020_x1dsum.fits to 16196/mastDownload/HST/lede1d020/lede1d020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1d030_x1dsum.fits to 16196/mastDownload/HST/lede1d030/lede1d030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dkfq_x1d.fits to 16196/mastDownload/HST/lede1dkfq/lede1dkfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dkhq_x1d.fits to 16196/mastDownload/HST/lede1dkhq/lede1dkhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dkjq_x1d.fits to 16196/mastDownload/HST/lede1dkjq/lede1dkjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dklq_x1d.fits to 16196/mastDownload/HST/lede1dklq/lede1dklq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dknq_x1d.fits to 16196/mastDownload/HST/lede1dknq/lede1dknq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dkpq_x1d.fits to 16196/mastDownload/HST/lede1dkpq/lede1dkpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dkrq_x1d.fits to 16196/mastDownload/HST/lede1dkrq/lede1dkrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1dktq_x1d.fits to 16196/mastDownload/HST/lede1dktq/lede1dktq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1e010_x1dsum.fits to 16196/mastDownload/HST/lede1e010/lede1e010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1e020_x1dsum.fits to 16196/mastDownload/HST/lede1e020/lede1e020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1e030_x1dsum.fits to 16196/mastDownload/HST/lede1e030/lede1e030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejlq_x1d.fits to 16196/mastDownload/HST/lede1ejlq/lede1ejlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejnq_x1d.fits to 16196/mastDownload/HST/lede1ejnq/lede1ejnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejpq_x1d.fits to 16196/mastDownload/HST/lede1ejpq/lede1ejpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejrq_x1d.fits to 16196/mastDownload/HST/lede1ejrq/lede1ejrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejtq_x1d.fits to 16196/mastDownload/HST/lede1ejtq/lede1ejtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejvq_x1d.fits to 16196/mastDownload/HST/lede1ejvq/lede1ejvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejxq_x1d.fits to 16196/mastDownload/HST/lede1ejxq/lede1ejxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ejzq_x1d.fits to 16196/mastDownload/HST/lede1ejzq/lede1ejzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1f010_x1dsum.fits to 16196/mastDownload/HST/lede1f010/lede1f010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1f020_x1dsum.fits to 16196/mastDownload/HST/lede1f020/lede1f020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1f030_x1dsum.fits to 16196/mastDownload/HST/lede1f030/lede1f030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ftfq_x1d.fits to 16196/mastDownload/HST/lede1ftfq/lede1ftfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1fthq_x1d.fits to 16196/mastDownload/HST/lede1fthq/lede1fthq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ftjq_x1d.fits to 16196/mastDownload/HST/lede1ftjq/lede1ftjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ftlq_x1d.fits to 16196/mastDownload/HST/lede1ftlq/lede1ftlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ftoq_x1d.fits to 16196/mastDownload/HST/lede1ftoq/lede1ftoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ftqq_x1d.fits to 16196/mastDownload/HST/lede1ftqq/lede1ftqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1fumq_x1d.fits to 16196/mastDownload/HST/lede1fumq/lede1fumq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1fuoq_x1d.fits to 16196/mastDownload/HST/lede1fuoq/lede1fuoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1g010_x1dsum.fits to 16196/mastDownload/HST/lede1g010/lede1g010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1g020_x1dsum.fits to 16196/mastDownload/HST/lede1g020/lede1g020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1g030_x1dsum.fits to 16196/mastDownload/HST/lede1g030/lede1g030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gaeq_x1d.fits to 16196/mastDownload/HST/lede1gaeq/lede1gaeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gahq_x1d.fits to 16196/mastDownload/HST/lede1gahq/lede1gahq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gajq_x1d.fits to 16196/mastDownload/HST/lede1gajq/lede1gajq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gamq_x1d.fits to 16196/mastDownload/HST/lede1gamq/lede1gamq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gaoq_x1d.fits to 16196/mastDownload/HST/lede1gaoq/lede1gaoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gaqq_x1d.fits to 16196/mastDownload/HST/lede1gaqq/lede1gaqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gbiq_x1d.fits to 16196/mastDownload/HST/lede1gbiq/lede1gbiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1gbkq_x1d.fits to 16196/mastDownload/HST/lede1gbkq/lede1gbkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1h010_x1dsum.fits to 16196/mastDownload/HST/lede1h010/lede1h010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1h020_x1dsum.fits to 16196/mastDownload/HST/lede1h020/lede1h020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1h030_x1dsum.fits to 16196/mastDownload/HST/lede1h030/lede1h030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhcq_x1d.fits to 16196/mastDownload/HST/lede1hhcq/lede1hhcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hheq_x1d.fits to 16196/mastDownload/HST/lede1hheq/lede1hheq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhgq_x1d.fits to 16196/mastDownload/HST/lede1hhgq/lede1hhgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhiq_x1d.fits to 16196/mastDownload/HST/lede1hhiq/lede1hhiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhkq_x1d.fits to 16196/mastDownload/HST/lede1hhkq/lede1hhkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhmq_x1d.fits to 16196/mastDownload/HST/lede1hhmq/lede1hhmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhoq_x1d.fits to 16196/mastDownload/HST/lede1hhoq/lede1hhoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1hhqq_x1d.fits to 16196/mastDownload/HST/lede1hhqq/lede1hhqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1i010_x1dsum.fits to 16196/mastDownload/HST/lede1i010/lede1i010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1i020_x1dsum.fits to 16196/mastDownload/HST/lede1i020/lede1i020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1i030_x1dsum.fits to 16196/mastDownload/HST/lede1i030/lede1i030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irbq_x1d.fits to 16196/mastDownload/HST/lede1irbq/lede1irbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irdq_x1d.fits to 16196/mastDownload/HST/lede1irdq/lede1irdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irfq_x1d.fits to 16196/mastDownload/HST/lede1irfq/lede1irfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irhq_x1d.fits to 16196/mastDownload/HST/lede1irhq/lede1irhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irjq_x1d.fits to 16196/mastDownload/HST/lede1irjq/lede1irjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irlq_x1d.fits to 16196/mastDownload/HST/lede1irlq/lede1irlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irnq_x1d.fits to 16196/mastDownload/HST/lede1irnq/lede1irnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1irpq_x1d.fits to 16196/mastDownload/HST/lede1irpq/lede1irpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1j010_x1dsum.fits to 16196/mastDownload/HST/lede1j010/lede1j010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1j020_x1dsum.fits to 16196/mastDownload/HST/lede1j020/lede1j020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1j030_x1dsum.fits to 16196/mastDownload/HST/lede1j030/lede1j030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jayq_x1d.fits to 16196/mastDownload/HST/lede1jayq/lede1jayq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jb0q_x1d.fits to 16196/mastDownload/HST/lede1jb0q/lede1jb0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jb2q_x1d.fits to 16196/mastDownload/HST/lede1jb2q/lede1jb2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jb4q_x1d.fits to 16196/mastDownload/HST/lede1jb4q/lede1jb4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jb6q_x1d.fits to 16196/mastDownload/HST/lede1jb6q/lede1jb6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jb8q_x1d.fits to 16196/mastDownload/HST/lede1jb8q/lede1jb8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jbaq_x1d.fits to 16196/mastDownload/HST/lede1jbaq/lede1jbaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1jbcq_x1d.fits to 16196/mastDownload/HST/lede1jbcq/lede1jbcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1k010_x1dsum.fits to 16196/mastDownload/HST/lede1k010/lede1k010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1k020_x1dsum.fits to 16196/mastDownload/HST/lede1k020/lede1k020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1k030_x1dsum.fits to 16196/mastDownload/HST/lede1k030/lede1k030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kmqq_x1d.fits to 16196/mastDownload/HST/lede1kmqq/lede1kmqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kmsq_x1d.fits to 16196/mastDownload/HST/lede1kmsq/lede1kmsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kmuq_x1d.fits to 16196/mastDownload/HST/lede1kmuq/lede1kmuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kmwq_x1d.fits to 16196/mastDownload/HST/lede1kmwq/lede1kmwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kmyq_x1d.fits to 16196/mastDownload/HST/lede1kmyq/lede1kmyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kn0q_x1d.fits to 16196/mastDownload/HST/lede1kn0q/lede1kn0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kn2q_x1d.fits to 16196/mastDownload/HST/lede1kn2q/lede1kn2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1kn4q_x1d.fits to 16196/mastDownload/HST/lede1kn4q/lede1kn4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1l010_x1dsum.fits to 16196/mastDownload/HST/lede1l010/lede1l010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1l020_x1dsum.fits to 16196/mastDownload/HST/lede1l020/lede1l020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1l030_x1dsum.fits to 16196/mastDownload/HST/lede1l030/lede1l030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ljoq_x1d.fits to 16196/mastDownload/HST/lede1ljoq/lede1ljoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ljqq_x1d.fits to 16196/mastDownload/HST/lede1ljqq/lede1ljqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ljsq_x1d.fits to 16196/mastDownload/HST/lede1ljsq/lede1ljsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ljuq_x1d.fits to 16196/mastDownload/HST/lede1ljuq/lede1ljuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ljwq_x1d.fits to 16196/mastDownload/HST/lede1ljwq/lede1ljwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ljzq_x1d.fits to 16196/mastDownload/HST/lede1ljzq/lede1ljzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1lk4q_x1d.fits to 16196/mastDownload/HST/lede1lk4q/lede1lk4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1lk6q_x1d.fits to 16196/mastDownload/HST/lede1lk6q/lede1lk6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1m010_x1dsum.fits to 16196/mastDownload/HST/lede1m010/lede1m010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1m020_x1dsum.fits to 16196/mastDownload/HST/lede1m020/lede1m020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1m030_x1dsum.fits to 16196/mastDownload/HST/lede1m030/lede1m030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mtsq_x1d.fits to 16196/mastDownload/HST/lede1mtsq/lede1mtsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mtuq_x1d.fits to 16196/mastDownload/HST/lede1mtuq/lede1mtuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mtwq_x1d.fits to 16196/mastDownload/HST/lede1mtwq/lede1mtwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mu1q_x1d.fits to 16196/mastDownload/HST/lede1mu1q/lede1mu1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mu3q_x1d.fits to 16196/mastDownload/HST/lede1mu3q/lede1mu3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mu5q_x1d.fits to 16196/mastDownload/HST/lede1mu5q/lede1mu5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mu7q_x1d.fits to 16196/mastDownload/HST/lede1mu7q/lede1mu7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1mu9q_x1d.fits to 16196/mastDownload/HST/lede1mu9q/lede1mu9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1n010_x1dsum.fits to 16196/mastDownload/HST/lede1n010/lede1n010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1n020_x1dsum.fits to 16196/mastDownload/HST/lede1n020/lede1n020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1n030_x1dsum.fits to 16196/mastDownload/HST/lede1n030/lede1n030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1noiq_x1d.fits to 16196/mastDownload/HST/lede1noiq/lede1noiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1nokq_x1d.fits to 16196/mastDownload/HST/lede1nokq/lede1nokq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1nomq_x1d.fits to 16196/mastDownload/HST/lede1nomq/lede1nomq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1nooq_x1d.fits to 16196/mastDownload/HST/lede1nooq/lede1nooq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1noqq_x1d.fits to 16196/mastDownload/HST/lede1noqq/lede1noqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1nosq_x1d.fits to 16196/mastDownload/HST/lede1nosq/lede1nosq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1nouq_x1d.fits to 16196/mastDownload/HST/lede1nouq/lede1nouq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1nowq_x1d.fits to 16196/mastDownload/HST/lede1nowq/lede1nowq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1o010_x1dsum.fits to 16196/mastDownload/HST/lede1o010/lede1o010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1o020_x1dsum.fits to 16196/mastDownload/HST/lede1o020/lede1o020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1o030_x1dsum.fits to 16196/mastDownload/HST/lede1o030/lede1o030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1oceq_x1d.fits to 16196/mastDownload/HST/lede1oceq/lede1oceq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ocgq_x1d.fits to 16196/mastDownload/HST/lede1ocgq/lede1ocgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ociq_x1d.fits to 16196/mastDownload/HST/lede1ociq/lede1ociq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ockq_x1d.fits to 16196/mastDownload/HST/lede1ockq/lede1ockq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ocmq_x1d.fits to 16196/mastDownload/HST/lede1ocmq/lede1ocmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ocoq_x1d.fits to 16196/mastDownload/HST/lede1ocoq/lede1ocoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ocqq_x1d.fits to 16196/mastDownload/HST/lede1ocqq/lede1ocqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ocsq_x1d.fits to 16196/mastDownload/HST/lede1ocsq/lede1ocsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1p010_x1dsum.fits to 16196/mastDownload/HST/lede1p010/lede1p010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1p020_x1dsum.fits to 16196/mastDownload/HST/lede1p020/lede1p020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1p030_x1dsum.fits to 16196/mastDownload/HST/lede1p030/lede1p030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pkjq_x1d.fits to 16196/mastDownload/HST/lede1pkjq/lede1pkjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pklq_x1d.fits to 16196/mastDownload/HST/lede1pklq/lede1pklq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pknq_x1d.fits to 16196/mastDownload/HST/lede1pknq/lede1pknq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pkpq_x1d.fits to 16196/mastDownload/HST/lede1pkpq/lede1pkpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pkrq_x1d.fits to 16196/mastDownload/HST/lede1pkrq/lede1pkrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pktq_x1d.fits to 16196/mastDownload/HST/lede1pktq/lede1pktq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pkvq_x1d.fits to 16196/mastDownload/HST/lede1pkvq/lede1pkvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1pkxq_x1d.fits to 16196/mastDownload/HST/lede1pkxq/lede1pkxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1q010_x1dsum.fits to 16196/mastDownload/HST/lede1q010/lede1q010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1q020_x1dsum.fits to 16196/mastDownload/HST/lede1q020/lede1q020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1q030_x1dsum.fits to 16196/mastDownload/HST/lede1q030/lede1q030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qspq_x1d.fits to 16196/mastDownload/HST/lede1qspq/lede1qspq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qsrq_x1d.fits to 16196/mastDownload/HST/lede1qsrq/lede1qsrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qstq_x1d.fits to 16196/mastDownload/HST/lede1qstq/lede1qstq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qsvq_x1d.fits to 16196/mastDownload/HST/lede1qsvq/lede1qsvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qsxq_x1d.fits to 16196/mastDownload/HST/lede1qsxq/lede1qsxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qszq_x1d.fits to 16196/mastDownload/HST/lede1qszq/lede1qszq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qt1q_x1d.fits to 16196/mastDownload/HST/lede1qt1q/lede1qt1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1qt3q_x1d.fits to 16196/mastDownload/HST/lede1qt3q/lede1qt3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1r010_x1dsum.fits to 16196/mastDownload/HST/lede1r010/lede1r010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1r020_x1dsum.fits to 16196/mastDownload/HST/lede1r020/lede1r020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1r030_x1dsum.fits to 16196/mastDownload/HST/lede1r030/lede1r030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmeq_x1d.fits to 16196/mastDownload/HST/lede1rmeq/lede1rmeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmgq_x1d.fits to 16196/mastDownload/HST/lede1rmgq/lede1rmgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmiq_x1d.fits to 16196/mastDownload/HST/lede1rmiq/lede1rmiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmkq_x1d.fits to 16196/mastDownload/HST/lede1rmkq/lede1rmkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmmq_x1d.fits to 16196/mastDownload/HST/lede1rmmq/lede1rmmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmoq_x1d.fits to 16196/mastDownload/HST/lede1rmoq/lede1rmoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmqq_x1d.fits to 16196/mastDownload/HST/lede1rmqq/lede1rmqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1rmsq_x1d.fits to 16196/mastDownload/HST/lede1rmsq/lede1rmsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1s010_x1dsum.fits to 16196/mastDownload/HST/lede1s010/lede1s010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1suaq_x1d.fits to 16196/mastDownload/HST/lede1suaq/lede1suaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1sucq_x1d.fits to 16196/mastDownload/HST/lede1sucq/lede1sucq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1sueq_x1d.fits to 16196/mastDownload/HST/lede1sueq/lede1sueq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1sugq_x1d.fits to 16196/mastDownload/HST/lede1sugq/lede1sugq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1t010_x1dsum.fits to 16196/mastDownload/HST/lede1t010/lede1t010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1t020_x1dsum.fits to 16196/mastDownload/HST/lede1t020/lede1t020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1tukq_x1d.fits to 16196/mastDownload/HST/lede1tukq/lede1tukq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1tumq_x1d.fits to 16196/mastDownload/HST/lede1tumq/lede1tumq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1u010_x1dsum.fits to 16196/mastDownload/HST/lede1u010/lede1u010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ucsq_x1d.fits to 16196/mastDownload/HST/lede1ucsq/lede1ucsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ucuq_x1d.fits to 16196/mastDownload/HST/lede1ucuq/lede1ucuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ucwq_x1d.fits to 16196/mastDownload/HST/lede1ucwq/lede1ucwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ucyq_x1d.fits to 16196/mastDownload/HST/lede1ucyq/lede1ucyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1v010_x1dsum.fits to 16196/mastDownload/HST/lede1v010/lede1v010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1v020_x1dsum.fits to 16196/mastDownload/HST/lede1v020/lede1v020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1vd2q_x1d.fits to 16196/mastDownload/HST/lede1vd2q/lede1vd2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1vd4q_x1d.fits to 16196/mastDownload/HST/lede1vd4q/lede1vd4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1w010_x1dsum.fits to 16196/mastDownload/HST/lede1w010/lede1w010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1w020_x1dsum.fits to 16196/mastDownload/HST/lede1w020/lede1w020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1w030_x1dsum.fits to 16196/mastDownload/HST/lede1w030/lede1w030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wsvq_x1d.fits to 16196/mastDownload/HST/lede1wsvq/lede1wsvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wsxq_x1d.fits to 16196/mastDownload/HST/lede1wsxq/lede1wsxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wszq_x1d.fits to 16196/mastDownload/HST/lede1wszq/lede1wszq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wt1q_x1d.fits to 16196/mastDownload/HST/lede1wt1q/lede1wt1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wt3q_x1d.fits to 16196/mastDownload/HST/lede1wt3q/lede1wt3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wt5q_x1d.fits to 16196/mastDownload/HST/lede1wt5q/lede1wt5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wt7q_x1d.fits to 16196/mastDownload/HST/lede1wt7q/lede1wt7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1wt9q_x1d.fits to 16196/mastDownload/HST/lede1wt9q/lede1wt9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1x010_x1dsum.fits to 16196/mastDownload/HST/lede1x010/lede1x010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1x020_x1dsum.fits to 16196/mastDownload/HST/lede1x020/lede1x020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1x030_x1dsum.fits to 16196/mastDownload/HST/lede1x030/lede1x030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xz3q_x1d.fits to 16196/mastDownload/HST/lede1xz3q/lede1xz3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xz5q_x1d.fits to 16196/mastDownload/HST/lede1xz5q/lede1xz5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xz7q_x1d.fits to 16196/mastDownload/HST/lede1xz7q/lede1xz7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xzcq_x1d.fits to 16196/mastDownload/HST/lede1xzcq/lede1xzcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xzeq_x1d.fits to 16196/mastDownload/HST/lede1xzeq/lede1xzeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xzgq_x1d.fits to 16196/mastDownload/HST/lede1xzgq/lede1xzgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xziq_x1d.fits to 16196/mastDownload/HST/lede1xziq/lede1xziq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1xzkq_x1d.fits to 16196/mastDownload/HST/lede1xzkq/lede1xzkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1y010_x1dsum.fits to 16196/mastDownload/HST/lede1y010/lede1y010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1y020_x1dsum.fits to 16196/mastDownload/HST/lede1y020/lede1y020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1y030_x1dsum.fits to 16196/mastDownload/HST/lede1y030/lede1y030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ykxq_x1d.fits to 16196/mastDownload/HST/lede1ykxq/lede1ykxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ykzq_x1d.fits to 16196/mastDownload/HST/lede1ykzq/lede1ykzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1yl1q_x1d.fits to 16196/mastDownload/HST/lede1yl1q/lede1yl1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1yl3q_x1d.fits to 16196/mastDownload/HST/lede1yl3q/lede1yl3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1yl5q_x1d.fits to 16196/mastDownload/HST/lede1yl5q/lede1yl5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1yl7q_x1d.fits to 16196/mastDownload/HST/lede1yl7q/lede1yl7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1yl9q_x1d.fits to 16196/mastDownload/HST/lede1yl9q/lede1yl9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1ylbq_x1d.fits to 16196/mastDownload/HST/lede1ylbq/lede1ylbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1z010_x1dsum.fits to 16196/mastDownload/HST/lede1z010/lede1z010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1z020_x1dsum.fits to 16196/mastDownload/HST/lede1z020/lede1z020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1z030_x1dsum.fits to 16196/mastDownload/HST/lede1z030/lede1z030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zlsq_x1d.fits to 16196/mastDownload/HST/lede1zlsq/lede1zlsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zluq_x1d.fits to 16196/mastDownload/HST/lede1zluq/lede1zluq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zlwq_x1d.fits to 16196/mastDownload/HST/lede1zlwq/lede1zlwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zlyq_x1d.fits to 16196/mastDownload/HST/lede1zlyq/lede1zlyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zm0q_x1d.fits to 16196/mastDownload/HST/lede1zm0q/lede1zm0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zm2q_x1d.fits to 16196/mastDownload/HST/lede1zm2q/lede1zm2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zm4q_x1d.fits to 16196/mastDownload/HST/lede1zm4q/lede1zm4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede1zm6q_x1d.fits to 16196/mastDownload/HST/lede1zm6q/lede1zm6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20010_x1dsum.fits to 16196/mastDownload/HST/lede20010/lede20010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20020_x1dsum.fits to 16196/mastDownload/HST/lede20020/lede20020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20030_x1dsum.fits to 16196/mastDownload/HST/lede20030/lede20030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20alq_x1d.fits to 16196/mastDownload/HST/lede20alq/lede20alq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20anq_x1d.fits to 16196/mastDownload/HST/lede20anq/lede20anq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20apq_x1d.fits to 16196/mastDownload/HST/lede20apq/lede20apq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20arq_x1d.fits to 16196/mastDownload/HST/lede20arq/lede20arq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20atq_x1d.fits to 16196/mastDownload/HST/lede20atq/lede20atq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20avq_x1d.fits to 16196/mastDownload/HST/lede20avq/lede20avq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20axq_x1d.fits to 16196/mastDownload/HST/lede20axq/lede20axq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede20azq_x1d.fits to 16196/mastDownload/HST/lede20azq/lede20azq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21010_x1dsum.fits to 16196/mastDownload/HST/lede21010/lede21010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21020_x1dsum.fits to 16196/mastDownload/HST/lede21020/lede21020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21030_x1dsum.fits to 16196/mastDownload/HST/lede21030/lede21030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21keq_x1d.fits to 16196/mastDownload/HST/lede21keq/lede21keq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21kgq_x1d.fits to 16196/mastDownload/HST/lede21kgq/lede21kgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21kiq_x1d.fits to 16196/mastDownload/HST/lede21kiq/lede21kiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21kkq_x1d.fits to 16196/mastDownload/HST/lede21kkq/lede21kkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21kmq_x1d.fits to 16196/mastDownload/HST/lede21kmq/lede21kmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21koq_x1d.fits to 16196/mastDownload/HST/lede21koq/lede21koq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21kqq_x1d.fits to 16196/mastDownload/HST/lede21kqq/lede21kqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede21ksq_x1d.fits to 16196/mastDownload/HST/lede21ksq/lede21ksq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22010_x1dsum.fits to 16196/mastDownload/HST/lede22010/lede22010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22020_x1dsum.fits to 16196/mastDownload/HST/lede22020/lede22020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22030_x1dsum.fits to 16196/mastDownload/HST/lede22030/lede22030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22loq_x1d.fits to 16196/mastDownload/HST/lede22loq/lede22loq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22lqq_x1d.fits to 16196/mastDownload/HST/lede22lqq/lede22lqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22lsq_x1d.fits to 16196/mastDownload/HST/lede22lsq/lede22lsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22luq_x1d.fits to 16196/mastDownload/HST/lede22luq/lede22luq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22lwq_x1d.fits to 16196/mastDownload/HST/lede22lwq/lede22lwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22lyq_x1d.fits to 16196/mastDownload/HST/lede22lyq/lede22lyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22m0q_x1d.fits to 16196/mastDownload/HST/lede22m0q/lede22m0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede22m2q_x1d.fits to 16196/mastDownload/HST/lede22m2q/lede22m2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23010_x1dsum.fits to 16196/mastDownload/HST/lede23010/lede23010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23020_x1dsum.fits to 16196/mastDownload/HST/lede23020/lede23020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23030_x1dsum.fits to 16196/mastDownload/HST/lede23030/lede23030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23upq_x1d.fits to 16196/mastDownload/HST/lede23upq/lede23upq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23urq_x1d.fits to 16196/mastDownload/HST/lede23urq/lede23urq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23utq_x1d.fits to 16196/mastDownload/HST/lede23utq/lede23utq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23uvq_x1d.fits to 16196/mastDownload/HST/lede23uvq/lede23uvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23uxq_x1d.fits to 16196/mastDownload/HST/lede23uxq/lede23uxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23uzq_x1d.fits to 16196/mastDownload/HST/lede23uzq/lede23uzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23v1q_x1d.fits to 16196/mastDownload/HST/lede23v1q/lede23v1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede23v3q_x1d.fits to 16196/mastDownload/HST/lede23v3q/lede23v3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24010_x1dsum.fits to 16196/mastDownload/HST/lede24010/lede24010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24020_x1dsum.fits to 16196/mastDownload/HST/lede24020/lede24020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24030_x1dsum.fits to 16196/mastDownload/HST/lede24030/lede24030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24jsq_x1d.fits to 16196/mastDownload/HST/lede24jsq/lede24jsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24juq_x1d.fits to 16196/mastDownload/HST/lede24juq/lede24juq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24jwq_x1d.fits to 16196/mastDownload/HST/lede24jwq/lede24jwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24jyq_x1d.fits to 16196/mastDownload/HST/lede24jyq/lede24jyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24k0q_x1d.fits to 16196/mastDownload/HST/lede24k0q/lede24k0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24k2q_x1d.fits to 16196/mastDownload/HST/lede24k2q/lede24k2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24k4q_x1d.fits to 16196/mastDownload/HST/lede24k4q/lede24k4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede24k6q_x1d.fits to 16196/mastDownload/HST/lede24k6q/lede24k6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25010_x1dsum.fits to 16196/mastDownload/HST/lede25010/lede25010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25020_x1dsum.fits to 16196/mastDownload/HST/lede25020/lede25020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25030_x1dsum.fits to 16196/mastDownload/HST/lede25030/lede25030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25rzq_x1d.fits to 16196/mastDownload/HST/lede25rzq/lede25rzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25s1q_x1d.fits to 16196/mastDownload/HST/lede25s1q/lede25s1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25s3q_x1d.fits to 16196/mastDownload/HST/lede25s3q/lede25s3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25s5q_x1d.fits to 16196/mastDownload/HST/lede25s5q/lede25s5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25s7q_x1d.fits to 16196/mastDownload/HST/lede25s7q/lede25s7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25s9q_x1d.fits to 16196/mastDownload/HST/lede25s9q/lede25s9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25sbq_x1d.fits to 16196/mastDownload/HST/lede25sbq/lede25sbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede25sdq_x1d.fits to 16196/mastDownload/HST/lede25sdq/lede25sdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26010_x1dsum.fits to 16196/mastDownload/HST/lede26010/lede26010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26020_x1dsum.fits to 16196/mastDownload/HST/lede26020/lede26020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26030_x1dsum.fits to 16196/mastDownload/HST/lede26030/lede26030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26k2q_x1d.fits to 16196/mastDownload/HST/lede26k2q/lede26k2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26k4q_x1d.fits to 16196/mastDownload/HST/lede26k4q/lede26k4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26k6q_x1d.fits to 16196/mastDownload/HST/lede26k6q/lede26k6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26k8q_x1d.fits to 16196/mastDownload/HST/lede26k8q/lede26k8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26kaq_x1d.fits to 16196/mastDownload/HST/lede26kaq/lede26kaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26kcq_x1d.fits to 16196/mastDownload/HST/lede26kcq/lede26kcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26keq_x1d.fits to 16196/mastDownload/HST/lede26keq/lede26keq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede26kgq_x1d.fits to 16196/mastDownload/HST/lede26kgq/lede26kgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27010_x1dsum.fits to 16196/mastDownload/HST/lede27010/lede27010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27020_x1dsum.fits to 16196/mastDownload/HST/lede27020/lede27020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27030_x1dsum.fits to 16196/mastDownload/HST/lede27030/lede27030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qjq_x1d.fits to 16196/mastDownload/HST/lede27qjq/lede27qjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qlq_x1d.fits to 16196/mastDownload/HST/lede27qlq/lede27qlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qnq_x1d.fits to 16196/mastDownload/HST/lede27qnq/lede27qnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qpq_x1d.fits to 16196/mastDownload/HST/lede27qpq/lede27qpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qrq_x1d.fits to 16196/mastDownload/HST/lede27qrq/lede27qrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qtq_x1d.fits to 16196/mastDownload/HST/lede27qtq/lede27qtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qvq_x1d.fits to 16196/mastDownload/HST/lede27qvq/lede27qvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede27qxq_x1d.fits to 16196/mastDownload/HST/lede27qxq/lede27qxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28010_x1dsum.fits to 16196/mastDownload/HST/lede28010/lede28010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28020_x1dsum.fits to 16196/mastDownload/HST/lede28020/lede28020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28030_x1dsum.fits to 16196/mastDownload/HST/lede28030/lede28030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28a5q_x1d.fits to 16196/mastDownload/HST/lede28a5q/lede28a5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28a7q_x1d.fits to 16196/mastDownload/HST/lede28a7q/lede28a7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28a9q_x1d.fits to 16196/mastDownload/HST/lede28a9q/lede28a9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28abq_x1d.fits to 16196/mastDownload/HST/lede28abq/lede28abq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28adq_x1d.fits to 16196/mastDownload/HST/lede28adq/lede28adq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28afq_x1d.fits to 16196/mastDownload/HST/lede28afq/lede28afq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28ahq_x1d.fits to 16196/mastDownload/HST/lede28ahq/lede28ahq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede28ajq_x1d.fits to 16196/mastDownload/HST/lede28ajq/lede28ajq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29010_x1dsum.fits to 16196/mastDownload/HST/lede29010/lede29010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29020_x1dsum.fits to 16196/mastDownload/HST/lede29020/lede29020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29030_x1dsum.fits to 16196/mastDownload/HST/lede29030/lede29030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29hzq_x1d.fits to 16196/mastDownload/HST/lede29hzq/lede29hzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29i1q_x1d.fits to 16196/mastDownload/HST/lede29i1q/lede29i1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29i3q_x1d.fits to 16196/mastDownload/HST/lede29i3q/lede29i3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29i5q_x1d.fits to 16196/mastDownload/HST/lede29i5q/lede29i5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29i8q_x1d.fits to 16196/mastDownload/HST/lede29i8q/lede29i8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29iaq_x1d.fits to 16196/mastDownload/HST/lede29iaq/lede29iaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29icq_x1d.fits to 16196/mastDownload/HST/lede29icq/lede29icq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede29ieq_x1d.fits to 16196/mastDownload/HST/lede29ieq/lede29ieq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2a010_x1dsum.fits to 16196/mastDownload/HST/lede2a010/lede2a010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2a020_x1dsum.fits to 16196/mastDownload/HST/lede2a020/lede2a020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2a030_x1dsum.fits to 16196/mastDownload/HST/lede2a030/lede2a030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ataq_x1d.fits to 16196/mastDownload/HST/lede2ataq/lede2ataq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2atcq_x1d.fits to 16196/mastDownload/HST/lede2atcq/lede2atcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ateq_x1d.fits to 16196/mastDownload/HST/lede2ateq/lede2ateq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2atgq_x1d.fits to 16196/mastDownload/HST/lede2atgq/lede2atgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2atiq_x1d.fits to 16196/mastDownload/HST/lede2atiq/lede2atiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2atkq_x1d.fits to 16196/mastDownload/HST/lede2atkq/lede2atkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2atmq_x1d.fits to 16196/mastDownload/HST/lede2atmq/lede2atmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2atoq_x1d.fits to 16196/mastDownload/HST/lede2atoq/lede2atoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2b010_x1dsum.fits to 16196/mastDownload/HST/lede2b010/lede2b010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2b020_x1dsum.fits to 16196/mastDownload/HST/lede2b020/lede2b020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2b030_x1dsum.fits to 16196/mastDownload/HST/lede2b030/lede2b030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bb4q_x1d.fits to 16196/mastDownload/HST/lede2bb4q/lede2bb4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bb6q_x1d.fits to 16196/mastDownload/HST/lede2bb6q/lede2bb6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bb8q_x1d.fits to 16196/mastDownload/HST/lede2bb8q/lede2bb8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bbaq_x1d.fits to 16196/mastDownload/HST/lede2bbaq/lede2bbaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bbcq_x1d.fits to 16196/mastDownload/HST/lede2bbcq/lede2bbcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bbhq_x1d.fits to 16196/mastDownload/HST/lede2bbhq/lede2bbhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bbjq_x1d.fits to 16196/mastDownload/HST/lede2bbjq/lede2bbjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2bblq_x1d.fits to 16196/mastDownload/HST/lede2bblq/lede2bblq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2c010_x1dsum.fits to 16196/mastDownload/HST/lede2c010/lede2c010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2c020_x1dsum.fits to 16196/mastDownload/HST/lede2c020/lede2c020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2c030_x1dsum.fits to 16196/mastDownload/HST/lede2c030/lede2c030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2cisq_x1d.fits to 16196/mastDownload/HST/lede2cisq/lede2cisq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ciuq_x1d.fits to 16196/mastDownload/HST/lede2ciuq/lede2ciuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ciwq_x1d.fits to 16196/mastDownload/HST/lede2ciwq/lede2ciwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ciyq_x1d.fits to 16196/mastDownload/HST/lede2ciyq/lede2ciyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2cj0q_x1d.fits to 16196/mastDownload/HST/lede2cj0q/lede2cj0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2cj2q_x1d.fits to 16196/mastDownload/HST/lede2cj2q/lede2cj2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2cj4q_x1d.fits to 16196/mastDownload/HST/lede2cj4q/lede2cj4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2cj6q_x1d.fits to 16196/mastDownload/HST/lede2cj6q/lede2cj6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2d010_x1dsum.fits to 16196/mastDownload/HST/lede2d010/lede2d010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2d020_x1dsum.fits to 16196/mastDownload/HST/lede2d020/lede2d020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2d030_x1dsum.fits to 16196/mastDownload/HST/lede2d030/lede2d030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2dokq_x1d.fits to 16196/mastDownload/HST/lede2dokq/lede2dokq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2domq_x1d.fits to 16196/mastDownload/HST/lede2domq/lede2domq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2dorq_x1d.fits to 16196/mastDownload/HST/lede2dorq/lede2dorq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2dotq_x1d.fits to 16196/mastDownload/HST/lede2dotq/lede2dotq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2dowq_x1d.fits to 16196/mastDownload/HST/lede2dowq/lede2dowq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2doyq_x1d.fits to 16196/mastDownload/HST/lede2doyq/lede2doyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2dp0q_x1d.fits to 16196/mastDownload/HST/lede2dp0q/lede2dp0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2dp3q_x1d.fits to 16196/mastDownload/HST/lede2dp3q/lede2dp3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2e010_x1dsum.fits to 16196/mastDownload/HST/lede2e010/lede2e010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2e020_x1dsum.fits to 16196/mastDownload/HST/lede2e020/lede2e020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2e030_x1dsum.fits to 16196/mastDownload/HST/lede2e030/lede2e030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eyeq_x1d.fits to 16196/mastDownload/HST/lede2eyeq/lede2eyeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eygq_x1d.fits to 16196/mastDownload/HST/lede2eygq/lede2eygq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eyiq_x1d.fits to 16196/mastDownload/HST/lede2eyiq/lede2eyiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eylq_x1d.fits to 16196/mastDownload/HST/lede2eylq/lede2eylq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eynq_x1d.fits to 16196/mastDownload/HST/lede2eynq/lede2eynq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eyqq_x1d.fits to 16196/mastDownload/HST/lede2eyqq/lede2eyqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eysq_x1d.fits to 16196/mastDownload/HST/lede2eysq/lede2eysq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2eyuq_x1d.fits to 16196/mastDownload/HST/lede2eyuq/lede2eyuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2f010_x1dsum.fits to 16196/mastDownload/HST/lede2f010/lede2f010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2f020_x1dsum.fits to 16196/mastDownload/HST/lede2f020/lede2f020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2f030_x1dsum.fits to 16196/mastDownload/HST/lede2f030/lede2f030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fhvq_x1d.fits to 16196/mastDownload/HST/lede2fhvq/lede2fhvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fhxq_x1d.fits to 16196/mastDownload/HST/lede2fhxq/lede2fhxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fhzq_x1d.fits to 16196/mastDownload/HST/lede2fhzq/lede2fhzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fi1q_x1d.fits to 16196/mastDownload/HST/lede2fi1q/lede2fi1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fi3q_x1d.fits to 16196/mastDownload/HST/lede2fi3q/lede2fi3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fi5q_x1d.fits to 16196/mastDownload/HST/lede2fi5q/lede2fi5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fi7q_x1d.fits to 16196/mastDownload/HST/lede2fi7q/lede2fi7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2fi9q_x1d.fits to 16196/mastDownload/HST/lede2fi9q/lede2fi9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2g010_x1dsum.fits to 16196/mastDownload/HST/lede2g010/lede2g010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2g020_x1dsum.fits to 16196/mastDownload/HST/lede2g020/lede2g020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2g030_x1dsum.fits to 16196/mastDownload/HST/lede2g030/lede2g030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gf0q_x1d.fits to 16196/mastDownload/HST/lede2gf0q/lede2gf0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gf2q_x1d.fits to 16196/mastDownload/HST/lede2gf2q/lede2gf2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gf4q_x1d.fits to 16196/mastDownload/HST/lede2gf4q/lede2gf4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gf6q_x1d.fits to 16196/mastDownload/HST/lede2gf6q/lede2gf6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gf8q_x1d.fits to 16196/mastDownload/HST/lede2gf8q/lede2gf8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gfaq_x1d.fits to 16196/mastDownload/HST/lede2gfaq/lede2gfaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gfcq_x1d.fits to 16196/mastDownload/HST/lede2gfcq/lede2gfcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2gfxq_x1d.fits to 16196/mastDownload/HST/lede2gfxq/lede2gfxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2h010_x1dsum.fits to 16196/mastDownload/HST/lede2h010/lede2h010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2h020_x1dsum.fits to 16196/mastDownload/HST/lede2h020/lede2h020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2h030_x1dsum.fits to 16196/mastDownload/HST/lede2h030/lede2h030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hqxq_x1d.fits to 16196/mastDownload/HST/lede2hqxq/lede2hqxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hqzq_x1d.fits to 16196/mastDownload/HST/lede2hqzq/lede2hqzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hr1q_x1d.fits to 16196/mastDownload/HST/lede2hr1q/lede2hr1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hr3q_x1d.fits to 16196/mastDownload/HST/lede2hr3q/lede2hr3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hr5q_x1d.fits to 16196/mastDownload/HST/lede2hr5q/lede2hr5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hr7q_x1d.fits to 16196/mastDownload/HST/lede2hr7q/lede2hr7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hr9q_x1d.fits to 16196/mastDownload/HST/lede2hr9q/lede2hr9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2hrbq_x1d.fits to 16196/mastDownload/HST/lede2hrbq/lede2hrbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2i010_x1dsum.fits to 16196/mastDownload/HST/lede2i010/lede2i010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2i020_x1dsum.fits to 16196/mastDownload/HST/lede2i020/lede2i020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2i030_x1dsum.fits to 16196/mastDownload/HST/lede2i030/lede2i030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ib3q_x1d.fits to 16196/mastDownload/HST/lede2ib3q/lede2ib3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ib5q_x1d.fits to 16196/mastDownload/HST/lede2ib5q/lede2ib5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ib7q_x1d.fits to 16196/mastDownload/HST/lede2ib7q/lede2ib7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ib9q_x1d.fits to 16196/mastDownload/HST/lede2ib9q/lede2ib9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ibbq_x1d.fits to 16196/mastDownload/HST/lede2ibbq/lede2ibbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ibdq_x1d.fits to 16196/mastDownload/HST/lede2ibdq/lede2ibdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ibfq_x1d.fits to 16196/mastDownload/HST/lede2ibfq/lede2ibfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ibhq_x1d.fits to 16196/mastDownload/HST/lede2ibhq/lede2ibhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2j010_x1dsum.fits to 16196/mastDownload/HST/lede2j010/lede2j010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2j020_x1dsum.fits to 16196/mastDownload/HST/lede2j020/lede2j020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2j030_x1dsum.fits to 16196/mastDownload/HST/lede2j030/lede2j030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jjoq_x1d.fits to 16196/mastDownload/HST/lede2jjoq/lede2jjoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jjqq_x1d.fits to 16196/mastDownload/HST/lede2jjqq/lede2jjqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jjsq_x1d.fits to 16196/mastDownload/HST/lede2jjsq/lede2jjsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jjuq_x1d.fits to 16196/mastDownload/HST/lede2jjuq/lede2jjuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jjwq_x1d.fits to 16196/mastDownload/HST/lede2jjwq/lede2jjwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jjyq_x1d.fits to 16196/mastDownload/HST/lede2jjyq/lede2jjyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jk0q_x1d.fits to 16196/mastDownload/HST/lede2jk0q/lede2jk0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2jk2q_x1d.fits to 16196/mastDownload/HST/lede2jk2q/lede2jk2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2k010_x1dsum.fits to 16196/mastDownload/HST/lede2k010/lede2k010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2k020_x1dsum.fits to 16196/mastDownload/HST/lede2k020/lede2k020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2k030_x1dsum.fits to 16196/mastDownload/HST/lede2k030/lede2k030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkaq_x1d.fits to 16196/mastDownload/HST/lede2kkaq/lede2kkaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkcq_x1d.fits to 16196/mastDownload/HST/lede2kkcq/lede2kkcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkhq_x1d.fits to 16196/mastDownload/HST/lede2kkhq/lede2kkhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkjq_x1d.fits to 16196/mastDownload/HST/lede2kkjq/lede2kkjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkmq_x1d.fits to 16196/mastDownload/HST/lede2kkmq/lede2kkmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkoq_x1d.fits to 16196/mastDownload/HST/lede2kkoq/lede2kkoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kkqq_x1d.fits to 16196/mastDownload/HST/lede2kkqq/lede2kkqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2kktq_x1d.fits to 16196/mastDownload/HST/lede2kktq/lede2kktq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2l010_x1dsum.fits to 16196/mastDownload/HST/lede2l010/lede2l010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2l020_x1dsum.fits to 16196/mastDownload/HST/lede2l020/lede2l020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2l030_x1dsum.fits to 16196/mastDownload/HST/lede2l030/lede2l030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ls0q_x1d.fits to 16196/mastDownload/HST/lede2ls0q/lede2ls0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ls2q_x1d.fits to 16196/mastDownload/HST/lede2ls2q/lede2ls2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ls4q_x1d.fits to 16196/mastDownload/HST/lede2ls4q/lede2ls4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ls6q_x1d.fits to 16196/mastDownload/HST/lede2ls6q/lede2ls6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ls8q_x1d.fits to 16196/mastDownload/HST/lede2ls8q/lede2ls8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2lsaq_x1d.fits to 16196/mastDownload/HST/lede2lsaq/lede2lsaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2lscq_x1d.fits to 16196/mastDownload/HST/lede2lscq/lede2lscq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2lseq_x1d.fits to 16196/mastDownload/HST/lede2lseq/lede2lseq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2m010_x1dsum.fits to 16196/mastDownload/HST/lede2m010/lede2m010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2m020_x1dsum.fits to 16196/mastDownload/HST/lede2m020/lede2m020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2m030_x1dsum.fits to 16196/mastDownload/HST/lede2m030/lede2m030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mauq_x1d.fits to 16196/mastDownload/HST/lede2mauq/lede2mauq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mawq_x1d.fits to 16196/mastDownload/HST/lede2mawq/lede2mawq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mayq_x1d.fits to 16196/mastDownload/HST/lede2mayq/lede2mayq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mb0q_x1d.fits to 16196/mastDownload/HST/lede2mb0q/lede2mb0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mb2q_x1d.fits to 16196/mastDownload/HST/lede2mb2q/lede2mb2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mb4q_x1d.fits to 16196/mastDownload/HST/lede2mb4q/lede2mb4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mb6q_x1d.fits to 16196/mastDownload/HST/lede2mb6q/lede2mb6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2mb8q_x1d.fits to 16196/mastDownload/HST/lede2mb8q/lede2mb8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2n010_x1dsum.fits to 16196/mastDownload/HST/lede2n010/lede2n010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2n020_x1dsum.fits to 16196/mastDownload/HST/lede2n020/lede2n020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2n030_x1dsum.fits to 16196/mastDownload/HST/lede2n030/lede2n030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nknq_x1d.fits to 16196/mastDownload/HST/lede2nknq/lede2nknq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nkqq_x1d.fits to 16196/mastDownload/HST/lede2nkqq/lede2nkqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nkuq_x1d.fits to 16196/mastDownload/HST/lede2nkuq/lede2nkuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nkwq_x1d.fits to 16196/mastDownload/HST/lede2nkwq/lede2nkwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nkyq_x1d.fits to 16196/mastDownload/HST/lede2nkyq/lede2nkyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nl3q_x1d.fits to 16196/mastDownload/HST/lede2nl3q/lede2nl3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nl5q_x1d.fits to 16196/mastDownload/HST/lede2nl5q/lede2nl5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2nl7q_x1d.fits to 16196/mastDownload/HST/lede2nl7q/lede2nl7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2o010_x1dsum.fits to 16196/mastDownload/HST/lede2o010/lede2o010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2o020_x1dsum.fits to 16196/mastDownload/HST/lede2o020/lede2o020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2o030_x1dsum.fits to 16196/mastDownload/HST/lede2o030/lede2o030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ogxq_x1d.fits to 16196/mastDownload/HST/lede2ogxq/lede2ogxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ogzq_x1d.fits to 16196/mastDownload/HST/lede2ogzq/lede2ogzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2oh1q_x1d.fits to 16196/mastDownload/HST/lede2oh1q/lede2oh1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2oh7q_x1d.fits to 16196/mastDownload/HST/lede2oh7q/lede2oh7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2oh9q_x1d.fits to 16196/mastDownload/HST/lede2oh9q/lede2oh9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ohbq_x1d.fits to 16196/mastDownload/HST/lede2ohbq/lede2ohbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ohdq_x1d.fits to 16196/mastDownload/HST/lede2ohdq/lede2ohdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ohhq_x1d.fits to 16196/mastDownload/HST/lede2ohhq/lede2ohhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2p010_x1dsum.fits to 16196/mastDownload/HST/lede2p010/lede2p010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2p020_x1dsum.fits to 16196/mastDownload/HST/lede2p020/lede2p020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2p030_x1dsum.fits to 16196/mastDownload/HST/lede2p030/lede2p030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2pu8q_x1d.fits to 16196/mastDownload/HST/lede2pu8q/lede2pu8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2puaq_x1d.fits to 16196/mastDownload/HST/lede2puaq/lede2puaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2pucq_x1d.fits to 16196/mastDownload/HST/lede2pucq/lede2pucq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2pueq_x1d.fits to 16196/mastDownload/HST/lede2pueq/lede2pueq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2pugq_x1d.fits to 16196/mastDownload/HST/lede2pugq/lede2pugq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2puiq_x1d.fits to 16196/mastDownload/HST/lede2puiq/lede2puiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2pukq_x1d.fits to 16196/mastDownload/HST/lede2pukq/lede2pukq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2pumq_x1d.fits to 16196/mastDownload/HST/lede2pumq/lede2pumq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2q010_x1dsum.fits to 16196/mastDownload/HST/lede2q010/lede2q010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2q020_x1dsum.fits to 16196/mastDownload/HST/lede2q020/lede2q020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2q030_x1dsum.fits to 16196/mastDownload/HST/lede2q030/lede2q030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qcuq_x1d.fits to 16196/mastDownload/HST/lede2qcuq/lede2qcuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qcwq_x1d.fits to 16196/mastDownload/HST/lede2qcwq/lede2qcwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qcyq_x1d.fits to 16196/mastDownload/HST/lede2qcyq/lede2qcyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qd0q_x1d.fits to 16196/mastDownload/HST/lede2qd0q/lede2qd0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qd2q_x1d.fits to 16196/mastDownload/HST/lede2qd2q/lede2qd2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qd4q_x1d.fits to 16196/mastDownload/HST/lede2qd4q/lede2qd4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qd6q_x1d.fits to 16196/mastDownload/HST/lede2qd6q/lede2qd6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2qd8q_x1d.fits to 16196/mastDownload/HST/lede2qd8q/lede2qd8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2r010_x1dsum.fits to 16196/mastDownload/HST/lede2r010/lede2r010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2r020_x1dsum.fits to 16196/mastDownload/HST/lede2r020/lede2r020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2r030_x1dsum.fits to 16196/mastDownload/HST/lede2r030/lede2r030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rl6q_x1d.fits to 16196/mastDownload/HST/lede2rl6q/lede2rl6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rl8q_x1d.fits to 16196/mastDownload/HST/lede2rl8q/lede2rl8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rlaq_x1d.fits to 16196/mastDownload/HST/lede2rlaq/lede2rlaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rlcq_x1d.fits to 16196/mastDownload/HST/lede2rlcq/lede2rlcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rleq_x1d.fits to 16196/mastDownload/HST/lede2rleq/lede2rleq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rlgq_x1d.fits to 16196/mastDownload/HST/lede2rlgq/lede2rlgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rliq_x1d.fits to 16196/mastDownload/HST/lede2rliq/lede2rliq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2rlkq_x1d.fits to 16196/mastDownload/HST/lede2rlkq/lede2rlkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2s010_x1dsum.fits to 16196/mastDownload/HST/lede2s010/lede2s010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2s020_x1dsum.fits to 16196/mastDownload/HST/lede2s020/lede2s020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2s030_x1dsum.fits to 16196/mastDownload/HST/lede2s030/lede2s030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2sk1q_x1d.fits to 16196/mastDownload/HST/lede2sk1q/lede2sk1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2sk4q_x1d.fits to 16196/mastDownload/HST/lede2sk4q/lede2sk4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2sk6q_x1d.fits to 16196/mastDownload/HST/lede2sk6q/lede2sk6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2sk8q_x1d.fits to 16196/mastDownload/HST/lede2sk8q/lede2sk8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2skaq_x1d.fits to 16196/mastDownload/HST/lede2skaq/lede2skaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2skcq_x1d.fits to 16196/mastDownload/HST/lede2skcq/lede2skcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2skeq_x1d.fits to 16196/mastDownload/HST/lede2skeq/lede2skeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2skgq_x1d.fits to 16196/mastDownload/HST/lede2skgq/lede2skgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2t010_x1dsum.fits to 16196/mastDownload/HST/lede2t010/lede2t010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2t020_x1dsum.fits to 16196/mastDownload/HST/lede2t020/lede2t020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2t030_x1dsum.fits to 16196/mastDownload/HST/lede2t030/lede2t030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2tr7q_x1d.fits to 16196/mastDownload/HST/lede2tr7q/lede2tr7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2tr9q_x1d.fits to 16196/mastDownload/HST/lede2tr9q/lede2tr9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2trbq_x1d.fits to 16196/mastDownload/HST/lede2trbq/lede2trbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2trdq_x1d.fits to 16196/mastDownload/HST/lede2trdq/lede2trdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2trfq_x1d.fits to 16196/mastDownload/HST/lede2trfq/lede2trfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2trhq_x1d.fits to 16196/mastDownload/HST/lede2trhq/lede2trhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2trjq_x1d.fits to 16196/mastDownload/HST/lede2trjq/lede2trjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2trlq_x1d.fits to 16196/mastDownload/HST/lede2trlq/lede2trlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2u010_x1dsum.fits to 16196/mastDownload/HST/lede2u010/lede2u010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2u020_x1dsum.fits to 16196/mastDownload/HST/lede2u020/lede2u020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2u030_x1dsum.fits to 16196/mastDownload/HST/lede2u030/lede2u030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ua2q_x1d.fits to 16196/mastDownload/HST/lede2ua2q/lede2ua2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ua4q_x1d.fits to 16196/mastDownload/HST/lede2ua4q/lede2ua4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ua6q_x1d.fits to 16196/mastDownload/HST/lede2ua6q/lede2ua6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ua8q_x1d.fits to 16196/mastDownload/HST/lede2ua8q/lede2ua8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2uaaq_x1d.fits to 16196/mastDownload/HST/lede2uaaq/lede2uaaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2uzvq_x1d.fits to 16196/mastDownload/HST/lede2uzvq/lede2uzvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2uzxq_x1d.fits to 16196/mastDownload/HST/lede2uzxq/lede2uzxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2uzzq_x1d.fits to 16196/mastDownload/HST/lede2uzzq/lede2uzzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2y010_x1dsum.fits to 16196/mastDownload/HST/lede2y010/lede2y010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2y020_x1dsum.fits to 16196/mastDownload/HST/lede2y020/lede2y020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2y030_x1dsum.fits to 16196/mastDownload/HST/lede2y030/lede2y030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2yd3q_x1d.fits to 16196/mastDownload/HST/lede2yd3q/lede2yd3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2yd5q_x1d.fits to 16196/mastDownload/HST/lede2yd5q/lede2yd5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2yd7q_x1d.fits to 16196/mastDownload/HST/lede2yd7q/lede2yd7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2yd9q_x1d.fits to 16196/mastDownload/HST/lede2yd9q/lede2yd9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ydbq_x1d.fits to 16196/mastDownload/HST/lede2ydbq/lede2ydbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2yddq_x1d.fits to 16196/mastDownload/HST/lede2yddq/lede2yddq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ydfq_x1d.fits to 16196/mastDownload/HST/lede2ydfq/lede2ydfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2ydhq_x1d.fits to 16196/mastDownload/HST/lede2ydhq/lede2ydhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2z010_x1dsum.fits to 16196/mastDownload/HST/lede2z010/lede2z010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2z020_x1dsum.fits to 16196/mastDownload/HST/lede2z020/lede2z020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2z030_x1dsum.fits to 16196/mastDownload/HST/lede2z030/lede2z030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zo6q_x1d.fits to 16196/mastDownload/HST/lede2zo6q/lede2zo6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zo8q_x1d.fits to 16196/mastDownload/HST/lede2zo8q/lede2zo8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zoaq_x1d.fits to 16196/mastDownload/HST/lede2zoaq/lede2zoaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zocq_x1d.fits to 16196/mastDownload/HST/lede2zocq/lede2zocq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zoeq_x1d.fits to 16196/mastDownload/HST/lede2zoeq/lede2zoeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zogq_x1d.fits to 16196/mastDownload/HST/lede2zogq/lede2zogq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zoiq_x1d.fits to 16196/mastDownload/HST/lede2zoiq/lede2zoiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede2zokq_x1d.fits to 16196/mastDownload/HST/lede2zokq/lede2zokq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30010_x1dsum.fits to 16196/mastDownload/HST/lede30010/lede30010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30020_x1dsum.fits to 16196/mastDownload/HST/lede30020/lede30020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30030_x1dsum.fits to 16196/mastDownload/HST/lede30030/lede30030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30sbq_x1d.fits to 16196/mastDownload/HST/lede30sbq/lede30sbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30sdq_x1d.fits to 16196/mastDownload/HST/lede30sdq/lede30sdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30sfq_x1d.fits to 16196/mastDownload/HST/lede30sfq/lede30sfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30shq_x1d.fits to 16196/mastDownload/HST/lede30shq/lede30shq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30sjq_x1d.fits to 16196/mastDownload/HST/lede30sjq/lede30sjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30slq_x1d.fits to 16196/mastDownload/HST/lede30slq/lede30slq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30snq_x1d.fits to 16196/mastDownload/HST/lede30snq/lede30snq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede30spq_x1d.fits to 16196/mastDownload/HST/lede30spq/lede30spq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31010_x1dsum.fits to 16196/mastDownload/HST/lede31010/lede31010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31020_x1dsum.fits to 16196/mastDownload/HST/lede31020/lede31020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31030_x1dsum.fits to 16196/mastDownload/HST/lede31030/lede31030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31d6q_x1d.fits to 16196/mastDownload/HST/lede31d6q/lede31d6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31d8q_x1d.fits to 16196/mastDownload/HST/lede31d8q/lede31d8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31daq_x1d.fits to 16196/mastDownload/HST/lede31daq/lede31daq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31dcq_x1d.fits to 16196/mastDownload/HST/lede31dcq/lede31dcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31deq_x1d.fits to 16196/mastDownload/HST/lede31deq/lede31deq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31dgq_x1d.fits to 16196/mastDownload/HST/lede31dgq/lede31dgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31diq_x1d.fits to 16196/mastDownload/HST/lede31diq/lede31diq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede31dkq_x1d.fits to 16196/mastDownload/HST/lede31dkq/lede31dkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32010_x1dsum.fits to 16196/mastDownload/HST/lede32010/lede32010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32020_x1dsum.fits to 16196/mastDownload/HST/lede32020/lede32020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32030_x1dsum.fits to 16196/mastDownload/HST/lede32030/lede32030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32s0q_x1d.fits to 16196/mastDownload/HST/lede32s0q/lede32s0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32s2q_x1d.fits to 16196/mastDownload/HST/lede32s2q/lede32s2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32s5q_x1d.fits to 16196/mastDownload/HST/lede32s5q/lede32s5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32s7q_x1d.fits to 16196/mastDownload/HST/lede32s7q/lede32s7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32s9q_x1d.fits to 16196/mastDownload/HST/lede32s9q/lede32s9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32sbq_x1d.fits to 16196/mastDownload/HST/lede32sbq/lede32sbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32sdq_x1d.fits to 16196/mastDownload/HST/lede32sdq/lede32sdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede32sfq_x1d.fits to 16196/mastDownload/HST/lede32sfq/lede32sfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33010_x1dsum.fits to 16196/mastDownload/HST/lede33010/lede33010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33020_x1dsum.fits to 16196/mastDownload/HST/lede33020/lede33020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33030_x1dsum.fits to 16196/mastDownload/HST/lede33030/lede33030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33rzq_x1d.fits to 16196/mastDownload/HST/lede33rzq/lede33rzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33s2q_x1d.fits to 16196/mastDownload/HST/lede33s2q/lede33s2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33s4q_x1d.fits to 16196/mastDownload/HST/lede33s4q/lede33s4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33s7q_x1d.fits to 16196/mastDownload/HST/lede33s7q/lede33s7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33s9q_x1d.fits to 16196/mastDownload/HST/lede33s9q/lede33s9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33syq_x1d.fits to 16196/mastDownload/HST/lede33syq/lede33syq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33t0q_x1d.fits to 16196/mastDownload/HST/lede33t0q/lede33t0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede33t2q_x1d.fits to 16196/mastDownload/HST/lede33t2q/lede33t2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34010_x1dsum.fits to 16196/mastDownload/HST/lede34010/lede34010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34020_x1dsum.fits to 16196/mastDownload/HST/lede34020/lede34020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34030_x1dsum.fits to 16196/mastDownload/HST/lede34030/lede34030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34lnq_x1d.fits to 16196/mastDownload/HST/lede34lnq/lede34lnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34lpq_x1d.fits to 16196/mastDownload/HST/lede34lpq/lede34lpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34lrq_x1d.fits to 16196/mastDownload/HST/lede34lrq/lede34lrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34luq_x1d.fits to 16196/mastDownload/HST/lede34luq/lede34luq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34lwq_x1d.fits to 16196/mastDownload/HST/lede34lwq/lede34lwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34lyq_x1d.fits to 16196/mastDownload/HST/lede34lyq/lede34lyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34m0q_x1d.fits to 16196/mastDownload/HST/lede34m0q/lede34m0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede34m3q_x1d.fits to 16196/mastDownload/HST/lede34m3q/lede34m3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35010_x1dsum.fits to 16196/mastDownload/HST/lede35010/lede35010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35020_x1dsum.fits to 16196/mastDownload/HST/lede35020/lede35020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35030_x1dsum.fits to 16196/mastDownload/HST/lede35030/lede35030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35xrq_x1d.fits to 16196/mastDownload/HST/lede35xrq/lede35xrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35xtq_x1d.fits to 16196/mastDownload/HST/lede35xtq/lede35xtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35xvq_x1d.fits to 16196/mastDownload/HST/lede35xvq/lede35xvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35xxq_x1d.fits to 16196/mastDownload/HST/lede35xxq/lede35xxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35xzq_x1d.fits to 16196/mastDownload/HST/lede35xzq/lede35xzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35y1q_x1d.fits to 16196/mastDownload/HST/lede35y1q/lede35y1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35y3q_x1d.fits to 16196/mastDownload/HST/lede35y3q/lede35y3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede35y5q_x1d.fits to 16196/mastDownload/HST/lede35y5q/lede35y5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36010_x1dsum.fits to 16196/mastDownload/HST/lede36010/lede36010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36020_x1dsum.fits to 16196/mastDownload/HST/lede36020/lede36020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36030_x1dsum.fits to 16196/mastDownload/HST/lede36030/lede36030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36g0q_x1d.fits to 16196/mastDownload/HST/lede36g0q/lede36g0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36g2q_x1d.fits to 16196/mastDownload/HST/lede36g2q/lede36g2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36g4q_x1d.fits to 16196/mastDownload/HST/lede36g4q/lede36g4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36g6q_x1d.fits to 16196/mastDownload/HST/lede36g6q/lede36g6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36g8q_x1d.fits to 16196/mastDownload/HST/lede36g8q/lede36g8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36gaq_x1d.fits to 16196/mastDownload/HST/lede36gaq/lede36gaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36gcq_x1d.fits to 16196/mastDownload/HST/lede36gcq/lede36gcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede36geq_x1d.fits to 16196/mastDownload/HST/lede36geq/lede36geq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37010_x1dsum.fits to 16196/mastDownload/HST/lede37010/lede37010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37020_x1dsum.fits to 16196/mastDownload/HST/lede37020/lede37020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37030_x1dsum.fits to 16196/mastDownload/HST/lede37030/lede37030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37l5q_x1d.fits to 16196/mastDownload/HST/lede37l5q/lede37l5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37l7q_x1d.fits to 16196/mastDownload/HST/lede37l7q/lede37l7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37l9q_x1d.fits to 16196/mastDownload/HST/lede37l9q/lede37l9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37lbq_x1d.fits to 16196/mastDownload/HST/lede37lbq/lede37lbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37ldq_x1d.fits to 16196/mastDownload/HST/lede37ldq/lede37ldq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37lfq_x1d.fits to 16196/mastDownload/HST/lede37lfq/lede37lfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37lhq_x1d.fits to 16196/mastDownload/HST/lede37lhq/lede37lhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede37ljq_x1d.fits to 16196/mastDownload/HST/lede37ljq/lede37ljq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38010_x1dsum.fits to 16196/mastDownload/HST/lede38010/lede38010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38020_x1dsum.fits to 16196/mastDownload/HST/lede38020/lede38020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38030_x1dsum.fits to 16196/mastDownload/HST/lede38030/lede38030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38tsq_x1d.fits to 16196/mastDownload/HST/lede38tsq/lede38tsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38tuq_x1d.fits to 16196/mastDownload/HST/lede38tuq/lede38tuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38twq_x1d.fits to 16196/mastDownload/HST/lede38twq/lede38twq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38tyq_x1d.fits to 16196/mastDownload/HST/lede38tyq/lede38tyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38u0q_x1d.fits to 16196/mastDownload/HST/lede38u0q/lede38u0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38u2q_x1d.fits to 16196/mastDownload/HST/lede38u2q/lede38u2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38u4q_x1d.fits to 16196/mastDownload/HST/lede38u4q/lede38u4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede38u6q_x1d.fits to 16196/mastDownload/HST/lede38u6q/lede38u6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39010_x1dsum.fits to 16196/mastDownload/HST/lede39010/lede39010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39020_x1dsum.fits to 16196/mastDownload/HST/lede39020/lede39020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39030_x1dsum.fits to 16196/mastDownload/HST/lede39030/lede39030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39clq_x1d.fits to 16196/mastDownload/HST/lede39clq/lede39clq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39cnq_x1d.fits to 16196/mastDownload/HST/lede39cnq/lede39cnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39cpq_x1d.fits to 16196/mastDownload/HST/lede39cpq/lede39cpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39crq_x1d.fits to 16196/mastDownload/HST/lede39crq/lede39crq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39ctq_x1d.fits to 16196/mastDownload/HST/lede39ctq/lede39ctq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39cvq_x1d.fits to 16196/mastDownload/HST/lede39cvq/lede39cvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39cxq_x1d.fits to 16196/mastDownload/HST/lede39cxq/lede39cxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede39czq_x1d.fits to 16196/mastDownload/HST/lede39czq/lede39czq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3a010_x1dsum.fits to 16196/mastDownload/HST/lede3a010/lede3a010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3a020_x1dsum.fits to 16196/mastDownload/HST/lede3a020/lede3a020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3a030_x1dsum.fits to 16196/mastDownload/HST/lede3a030/lede3a030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axcq_x1d.fits to 16196/mastDownload/HST/lede3axcq/lede3axcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axeq_x1d.fits to 16196/mastDownload/HST/lede3axeq/lede3axeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axgq_x1d.fits to 16196/mastDownload/HST/lede3axgq/lede3axgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axiq_x1d.fits to 16196/mastDownload/HST/lede3axiq/lede3axiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axkq_x1d.fits to 16196/mastDownload/HST/lede3axkq/lede3axkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axmq_x1d.fits to 16196/mastDownload/HST/lede3axmq/lede3axmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axoq_x1d.fits to 16196/mastDownload/HST/lede3axoq/lede3axoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3axqq_x1d.fits to 16196/mastDownload/HST/lede3axqq/lede3axqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3b010_x1dsum.fits to 16196/mastDownload/HST/lede3b010/lede3b010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3b020_x1dsum.fits to 16196/mastDownload/HST/lede3b020/lede3b020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3b030_x1dsum.fits to 16196/mastDownload/HST/lede3b030/lede3b030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bk0q_x1d.fits to 16196/mastDownload/HST/lede3bk0q/lede3bk0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bk2q_x1d.fits to 16196/mastDownload/HST/lede3bk2q/lede3bk2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bk4q_x1d.fits to 16196/mastDownload/HST/lede3bk4q/lede3bk4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bk6q_x1d.fits to 16196/mastDownload/HST/lede3bk6q/lede3bk6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bk8q_x1d.fits to 16196/mastDownload/HST/lede3bk8q/lede3bk8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bkaq_x1d.fits to 16196/mastDownload/HST/lede3bkaq/lede3bkaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bkcq_x1d.fits to 16196/mastDownload/HST/lede3bkcq/lede3bkcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3bkeq_x1d.fits to 16196/mastDownload/HST/lede3bkeq/lede3bkeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3c010_x1dsum.fits to 16196/mastDownload/HST/lede3c010/lede3c010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3c020_x1dsum.fits to 16196/mastDownload/HST/lede3c020/lede3c020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3c030_x1dsum.fits to 16196/mastDownload/HST/lede3c030/lede3c030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ck6q_x1d.fits to 16196/mastDownload/HST/lede3ck6q/lede3ck6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ck8q_x1d.fits to 16196/mastDownload/HST/lede3ck8q/lede3ck8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ckaq_x1d.fits to 16196/mastDownload/HST/lede3ckaq/lede3ckaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ckcq_x1d.fits to 16196/mastDownload/HST/lede3ckcq/lede3ckcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ckeq_x1d.fits to 16196/mastDownload/HST/lede3ckeq/lede3ckeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ckgq_x1d.fits to 16196/mastDownload/HST/lede3ckgq/lede3ckgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ckiq_x1d.fits to 16196/mastDownload/HST/lede3ckiq/lede3ckiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ckkq_x1d.fits to 16196/mastDownload/HST/lede3ckkq/lede3ckkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3d010_x1dsum.fits to 16196/mastDownload/HST/lede3d010/lede3d010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3d020_x1dsum.fits to 16196/mastDownload/HST/lede3d020/lede3d020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3d030_x1dsum.fits to 16196/mastDownload/HST/lede3d030/lede3d030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dt1q_x1d.fits to 16196/mastDownload/HST/lede3dt1q/lede3dt1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dt3q_x1d.fits to 16196/mastDownload/HST/lede3dt3q/lede3dt3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dt5q_x1d.fits to 16196/mastDownload/HST/lede3dt5q/lede3dt5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dt7q_x1d.fits to 16196/mastDownload/HST/lede3dt7q/lede3dt7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dt9q_x1d.fits to 16196/mastDownload/HST/lede3dt9q/lede3dt9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dtbq_x1d.fits to 16196/mastDownload/HST/lede3dtbq/lede3dtbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dtdq_x1d.fits to 16196/mastDownload/HST/lede3dtdq/lede3dtdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3dtfq_x1d.fits to 16196/mastDownload/HST/lede3dtfq/lede3dtfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3e010_x1dsum.fits to 16196/mastDownload/HST/lede3e010/lede3e010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3e020_x1dsum.fits to 16196/mastDownload/HST/lede3e020/lede3e020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3e030_x1dsum.fits to 16196/mastDownload/HST/lede3e030/lede3e030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efcq_x1d.fits to 16196/mastDownload/HST/lede3efcq/lede3efcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efeq_x1d.fits to 16196/mastDownload/HST/lede3efeq/lede3efeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efgq_x1d.fits to 16196/mastDownload/HST/lede3efgq/lede3efgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efiq_x1d.fits to 16196/mastDownload/HST/lede3efiq/lede3efiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efkq_x1d.fits to 16196/mastDownload/HST/lede3efkq/lede3efkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efmq_x1d.fits to 16196/mastDownload/HST/lede3efmq/lede3efmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efoq_x1d.fits to 16196/mastDownload/HST/lede3efoq/lede3efoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3efqq_x1d.fits to 16196/mastDownload/HST/lede3efqq/lede3efqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3f010_x1dsum.fits to 16196/mastDownload/HST/lede3f010/lede3f010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3f020_x1dsum.fits to 16196/mastDownload/HST/lede3f020/lede3f020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3f030_x1dsum.fits to 16196/mastDownload/HST/lede3f030/lede3f030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdhq_x1d.fits to 16196/mastDownload/HST/lede3fdhq/lede3fdhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdjq_x1d.fits to 16196/mastDownload/HST/lede3fdjq/lede3fdjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdlq_x1d.fits to 16196/mastDownload/HST/lede3fdlq/lede3fdlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdnq_x1d.fits to 16196/mastDownload/HST/lede3fdnq/lede3fdnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdpq_x1d.fits to 16196/mastDownload/HST/lede3fdpq/lede3fdpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdrq_x1d.fits to 16196/mastDownload/HST/lede3fdrq/lede3fdrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fdtq_x1d.fits to 16196/mastDownload/HST/lede3fdtq/lede3fdtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3fe0q_x1d.fits to 16196/mastDownload/HST/lede3fe0q/lede3fe0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3g010_x1dsum.fits to 16196/mastDownload/HST/lede3g010/lede3g010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3g020_x1dsum.fits to 16196/mastDownload/HST/lede3g020/lede3g020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3g030_x1dsum.fits to 16196/mastDownload/HST/lede3g030/lede3g030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmjq_x1d.fits to 16196/mastDownload/HST/lede3gmjq/lede3gmjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmlq_x1d.fits to 16196/mastDownload/HST/lede3gmlq/lede3gmlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmnq_x1d.fits to 16196/mastDownload/HST/lede3gmnq/lede3gmnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmpq_x1d.fits to 16196/mastDownload/HST/lede3gmpq/lede3gmpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmrq_x1d.fits to 16196/mastDownload/HST/lede3gmrq/lede3gmrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmtq_x1d.fits to 16196/mastDownload/HST/lede3gmtq/lede3gmtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmvq_x1d.fits to 16196/mastDownload/HST/lede3gmvq/lede3gmvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3gmxq_x1d.fits to 16196/mastDownload/HST/lede3gmxq/lede3gmxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3h010_x1dsum.fits to 16196/mastDownload/HST/lede3h010/lede3h010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3h020_x1dsum.fits to 16196/mastDownload/HST/lede3h020/lede3h020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3h030_x1dsum.fits to 16196/mastDownload/HST/lede3h030/lede3h030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbeq_x1d.fits to 16196/mastDownload/HST/lede3hbeq/lede3hbeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbhq_x1d.fits to 16196/mastDownload/HST/lede3hbhq/lede3hbhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbjq_x1d.fits to 16196/mastDownload/HST/lede3hbjq/lede3hbjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hblq_x1d.fits to 16196/mastDownload/HST/lede3hblq/lede3hblq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbnq_x1d.fits to 16196/mastDownload/HST/lede3hbnq/lede3hbnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbpq_x1d.fits to 16196/mastDownload/HST/lede3hbpq/lede3hbpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbrq_x1d.fits to 16196/mastDownload/HST/lede3hbrq/lede3hbrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3hbtq_x1d.fits to 16196/mastDownload/HST/lede3hbtq/lede3hbtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3i010_x1dsum.fits to 16196/mastDownload/HST/lede3i010/lede3i010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3i020_x1dsum.fits to 16196/mastDownload/HST/lede3i020/lede3i020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3i030_x1dsum.fits to 16196/mastDownload/HST/lede3i030/lede3i030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3irrq_x1d.fits to 16196/mastDownload/HST/lede3irrq/lede3irrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3irtq_x1d.fits to 16196/mastDownload/HST/lede3irtq/lede3irtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3irvq_x1d.fits to 16196/mastDownload/HST/lede3irvq/lede3irvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3irxq_x1d.fits to 16196/mastDownload/HST/lede3irxq/lede3irxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3irzq_x1d.fits to 16196/mastDownload/HST/lede3irzq/lede3irzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3is1q_x1d.fits to 16196/mastDownload/HST/lede3is1q/lede3is1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3is3q_x1d.fits to 16196/mastDownload/HST/lede3is3q/lede3is3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3is6q_x1d.fits to 16196/mastDownload/HST/lede3is6q/lede3is6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3l010_x1dsum.fits to 16196/mastDownload/HST/lede3l010/lede3l010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3l020_x1dsum.fits to 16196/mastDownload/HST/lede3l020/lede3l020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3l030_x1dsum.fits to 16196/mastDownload/HST/lede3l030/lede3l030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lppq_x1d.fits to 16196/mastDownload/HST/lede3lppq/lede3lppq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lprq_x1d.fits to 16196/mastDownload/HST/lede3lprq/lede3lprq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lptq_x1d.fits to 16196/mastDownload/HST/lede3lptq/lede3lptq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lpvq_x1d.fits to 16196/mastDownload/HST/lede3lpvq/lede3lpvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lpxq_x1d.fits to 16196/mastDownload/HST/lede3lpxq/lede3lpxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lpzq_x1d.fits to 16196/mastDownload/HST/lede3lpzq/lede3lpzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lq1q_x1d.fits to 16196/mastDownload/HST/lede3lq1q/lede3lq1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3lq3q_x1d.fits to 16196/mastDownload/HST/lede3lq3q/lede3lq3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3m010_x1dsum.fits to 16196/mastDownload/HST/lede3m010/lede3m010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3m020_x1dsum.fits to 16196/mastDownload/HST/lede3m020/lede3m020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3m030_x1dsum.fits to 16196/mastDownload/HST/lede3m030/lede3m030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3me4q_x1d.fits to 16196/mastDownload/HST/lede3me4q/lede3me4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3me6q_x1d.fits to 16196/mastDownload/HST/lede3me6q/lede3me6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3me8q_x1d.fits to 16196/mastDownload/HST/lede3me8q/lede3me8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3meaq_x1d.fits to 16196/mastDownload/HST/lede3meaq/lede3meaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3medq_x1d.fits to 16196/mastDownload/HST/lede3medq/lede3medq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3mefq_x1d.fits to 16196/mastDownload/HST/lede3mefq/lede3mefq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3mehq_x1d.fits to 16196/mastDownload/HST/lede3mehq/lede3mehq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3mejq_x1d.fits to 16196/mastDownload/HST/lede3mejq/lede3mejq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3n010_x1dsum.fits to 16196/mastDownload/HST/lede3n010/lede3n010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3n020_x1dsum.fits to 16196/mastDownload/HST/lede3n020/lede3n020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3n030_x1dsum.fits to 16196/mastDownload/HST/lede3n030/lede3n030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3n040_x1dsum.fits to 16196/mastDownload/HST/lede3n040/lede3n040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3nc4q_x1d.fits to 16196/mastDownload/HST/lede3nc4q/lede3nc4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3nc6q_x1d.fits to 16196/mastDownload/HST/lede3nc6q/lede3nc6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3nc8q_x1d.fits to 16196/mastDownload/HST/lede3nc8q/lede3nc8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ncaq_x1d.fits to 16196/mastDownload/HST/lede3ncaq/lede3ncaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ncdq_x1d.fits to 16196/mastDownload/HST/lede3ncdq/lede3ncdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ncgq_x1d.fits to 16196/mastDownload/HST/lede3ncgq/lede3ncgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ncjq_x1d.fits to 16196/mastDownload/HST/lede3ncjq/lede3ncjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3nclq_x1d.fits to 16196/mastDownload/HST/lede3nclq/lede3nclq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ncqq_x1d.fits to 16196/mastDownload/HST/lede3ncqq/lede3ncqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3nctq_x1d.fits to 16196/mastDownload/HST/lede3nctq/lede3nctq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ncwq_x1d.fits to 16196/mastDownload/HST/lede3ncwq/lede3ncwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3nd5q_x1d.fits to 16196/mastDownload/HST/lede3nd5q/lede3nd5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3p010_x1dsum.fits to 16196/mastDownload/HST/lede3p010/lede3p010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3p020_x1dsum.fits to 16196/mastDownload/HST/lede3p020/lede3p020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3p030_x1dsum.fits to 16196/mastDownload/HST/lede3p030/lede3p030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3pr0q_x1d.fits to 16196/mastDownload/HST/lede3pr0q/lede3pr0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3pr2q_x1d.fits to 16196/mastDownload/HST/lede3pr2q/lede3pr2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3pr4q_x1d.fits to 16196/mastDownload/HST/lede3pr4q/lede3pr4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3pr6q_x1d.fits to 16196/mastDownload/HST/lede3pr6q/lede3pr6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3pr9q_x1d.fits to 16196/mastDownload/HST/lede3pr9q/lede3pr9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3prbq_x1d.fits to 16196/mastDownload/HST/lede3prbq/lede3prbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3prdq_x1d.fits to 16196/mastDownload/HST/lede3prdq/lede3prdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3prfq_x1d.fits to 16196/mastDownload/HST/lede3prfq/lede3prfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3q010_x1dsum.fits to 16196/mastDownload/HST/lede3q010/lede3q010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3q020_x1dsum.fits to 16196/mastDownload/HST/lede3q020/lede3q020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3q030_x1dsum.fits to 16196/mastDownload/HST/lede3q030/lede3q030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qa2q_x1d.fits to 16196/mastDownload/HST/lede3qa2q/lede3qa2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qa4q_x1d.fits to 16196/mastDownload/HST/lede3qa4q/lede3qa4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qzpq_x1d.fits to 16196/mastDownload/HST/lede3qzpq/lede3qzpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qzrq_x1d.fits to 16196/mastDownload/HST/lede3qzrq/lede3qzrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qztq_x1d.fits to 16196/mastDownload/HST/lede3qztq/lede3qztq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qzvq_x1d.fits to 16196/mastDownload/HST/lede3qzvq/lede3qzvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qzxq_x1d.fits to 16196/mastDownload/HST/lede3qzxq/lede3qzxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3qzzq_x1d.fits to 16196/mastDownload/HST/lede3qzzq/lede3qzzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3r010_x1dsum.fits to 16196/mastDownload/HST/lede3r010/lede3r010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3r020_x1dsum.fits to 16196/mastDownload/HST/lede3r020/lede3r020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3r030_x1dsum.fits to 16196/mastDownload/HST/lede3r030/lede3r030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rh0q_x1d.fits to 16196/mastDownload/HST/lede3rh0q/lede3rh0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rh2q_x1d.fits to 16196/mastDownload/HST/lede3rh2q/lede3rh2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rh4q_x1d.fits to 16196/mastDownload/HST/lede3rh4q/lede3rh4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rh6q_x1d.fits to 16196/mastDownload/HST/lede3rh6q/lede3rh6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rh8q_x1d.fits to 16196/mastDownload/HST/lede3rh8q/lede3rh8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rhaq_x1d.fits to 16196/mastDownload/HST/lede3rhaq/lede3rhaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rhcq_x1d.fits to 16196/mastDownload/HST/lede3rhcq/lede3rhcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3rheq_x1d.fits to 16196/mastDownload/HST/lede3rheq/lede3rheq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3s010_x1dsum.fits to 16196/mastDownload/HST/lede3s010/lede3s010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3s020_x1dsum.fits to 16196/mastDownload/HST/lede3s020/lede3s020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3s030_x1dsum.fits to 16196/mastDownload/HST/lede3s030/lede3s030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3staq_x1d.fits to 16196/mastDownload/HST/lede3staq/lede3staq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3stcq_x1d.fits to 16196/mastDownload/HST/lede3stcq/lede3stcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3steq_x1d.fits to 16196/mastDownload/HST/lede3steq/lede3steq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3stgq_x1d.fits to 16196/mastDownload/HST/lede3stgq/lede3stgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3stjq_x1d.fits to 16196/mastDownload/HST/lede3stjq/lede3stjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3stpq_x1d.fits to 16196/mastDownload/HST/lede3stpq/lede3stpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3strq_x1d.fits to 16196/mastDownload/HST/lede3strq/lede3strq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3sttq_x1d.fits to 16196/mastDownload/HST/lede3sttq/lede3sttq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3u010_x1dsum.fits to 16196/mastDownload/HST/lede3u010/lede3u010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3u020_x1dsum.fits to 16196/mastDownload/HST/lede3u020/lede3u020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3u030_x1dsum.fits to 16196/mastDownload/HST/lede3u030/lede3u030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ua1q_x1d.fits to 16196/mastDownload/HST/lede3ua1q/lede3ua1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ua3q_x1d.fits to 16196/mastDownload/HST/lede3ua3q/lede3ua3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ua5q_x1d.fits to 16196/mastDownload/HST/lede3ua5q/lede3ua5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ua7q_x1d.fits to 16196/mastDownload/HST/lede3ua7q/lede3ua7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3ua9q_x1d.fits to 16196/mastDownload/HST/lede3ua9q/lede3ua9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3uabq_x1d.fits to 16196/mastDownload/HST/lede3uabq/lede3uabq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3uzvq_x1d.fits to 16196/mastDownload/HST/lede3uzvq/lede3uzvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3uzyq_x1d.fits to 16196/mastDownload/HST/lede3uzyq/lede3uzyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3v010_x1dsum.fits to 16196/mastDownload/HST/lede3v010/lede3v010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3v020_x1dsum.fits to 16196/mastDownload/HST/lede3v020/lede3v020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3v030_x1dsum.fits to 16196/mastDownload/HST/lede3v030/lede3v030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3vijq_x1d.fits to 16196/mastDownload/HST/lede3vijq/lede3vijq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3vimq_x1d.fits to 16196/mastDownload/HST/lede3vimq/lede3vimq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3vioq_x1d.fits to 16196/mastDownload/HST/lede3vioq/lede3vioq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3viqq_x1d.fits to 16196/mastDownload/HST/lede3viqq/lede3viqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3visq_x1d.fits to 16196/mastDownload/HST/lede3visq/lede3visq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3viuq_x1d.fits to 16196/mastDownload/HST/lede3viuq/lede3viuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3viwq_x1d.fits to 16196/mastDownload/HST/lede3viwq/lede3viwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3viyq_x1d.fits to 16196/mastDownload/HST/lede3viyq/lede3viyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3w010_x1dsum.fits to 16196/mastDownload/HST/lede3w010/lede3w010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3w020_x1dsum.fits to 16196/mastDownload/HST/lede3w020/lede3w020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3w030_x1dsum.fits to 16196/mastDownload/HST/lede3w030/lede3w030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3wduq_x1d.fits to 16196/mastDownload/HST/lede3wduq/lede3wduq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3wdwq_x1d.fits to 16196/mastDownload/HST/lede3wdwq/lede3wdwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3wdyq_x1d.fits to 16196/mastDownload/HST/lede3wdyq/lede3wdyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3we0q_x1d.fits to 16196/mastDownload/HST/lede3we0q/lede3we0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3we2q_x1d.fits to 16196/mastDownload/HST/lede3we2q/lede3we2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3we4q_x1d.fits to 16196/mastDownload/HST/lede3we4q/lede3we4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3we6q_x1d.fits to 16196/mastDownload/HST/lede3we6q/lede3we6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3we8q_x1d.fits to 16196/mastDownload/HST/lede3we8q/lede3we8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3x010_x1dsum.fits to 16196/mastDownload/HST/lede3x010/lede3x010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3x020_x1dsum.fits to 16196/mastDownload/HST/lede3x020/lede3x020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3x030_x1dsum.fits to 16196/mastDownload/HST/lede3x030/lede3x030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xjdq_x1d.fits to 16196/mastDownload/HST/lede3xjdq/lede3xjdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xjfq_x1d.fits to 16196/mastDownload/HST/lede3xjfq/lede3xjfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xjhq_x1d.fits to 16196/mastDownload/HST/lede3xjhq/lede3xjhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xjmq_x1d.fits to 16196/mastDownload/HST/lede3xjmq/lede3xjmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xjoq_x1d.fits to 16196/mastDownload/HST/lede3xjoq/lede3xjoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xk9q_x1d.fits to 16196/mastDownload/HST/lede3xk9q/lede3xk9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xkhq_x1d.fits to 16196/mastDownload/HST/lede3xkhq/lede3xkhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3xkjq_x1d.fits to 16196/mastDownload/HST/lede3xkjq/lede3xkjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3y010_x1dsum.fits to 16196/mastDownload/HST/lede3y010/lede3y010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3y020_x1dsum.fits to 16196/mastDownload/HST/lede3y020/lede3y020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3y030_x1dsum.fits to 16196/mastDownload/HST/lede3y030/lede3y030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yq7q_x1d.fits to 16196/mastDownload/HST/lede3yq7q/lede3yq7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yq9q_x1d.fits to 16196/mastDownload/HST/lede3yq9q/lede3yq9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yqbq_x1d.fits to 16196/mastDownload/HST/lede3yqbq/lede3yqbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yqdq_x1d.fits to 16196/mastDownload/HST/lede3yqdq/lede3yqdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yqfq_x1d.fits to 16196/mastDownload/HST/lede3yqfq/lede3yqfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yqhq_x1d.fits to 16196/mastDownload/HST/lede3yqhq/lede3yqhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yqjq_x1d.fits to 16196/mastDownload/HST/lede3yqjq/lede3yqjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3yqlq_x1d.fits to 16196/mastDownload/HST/lede3yqlq/lede3yqlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3z010_x1dsum.fits to 16196/mastDownload/HST/lede3z010/lede3z010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3z020_x1dsum.fits to 16196/mastDownload/HST/lede3z020/lede3z020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3z030_x1dsum.fits to 16196/mastDownload/HST/lede3z030/lede3z030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3za1q_x1d.fits to 16196/mastDownload/HST/lede3za1q/lede3za1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3za3q_x1d.fits to 16196/mastDownload/HST/lede3za3q/lede3za3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3za5q_x1d.fits to 16196/mastDownload/HST/lede3za5q/lede3za5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3za7q_x1d.fits to 16196/mastDownload/HST/lede3za7q/lede3za7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3za9q_x1d.fits to 16196/mastDownload/HST/lede3za9q/lede3za9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3zzuq_x1d.fits to 16196/mastDownload/HST/lede3zzuq/lede3zzuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3zzwq_x1d.fits to 16196/mastDownload/HST/lede3zzwq/lede3zzwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede3zzyq_x1d.fits to 16196/mastDownload/HST/lede3zzyq/lede3zzyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40010_x1dsum.fits to 16196/mastDownload/HST/lede40010/lede40010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40020_x1dsum.fits to 16196/mastDownload/HST/lede40020/lede40020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40030_x1dsum.fits to 16196/mastDownload/HST/lede40030/lede40030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40mcq_x1d.fits to 16196/mastDownload/HST/lede40mcq/lede40mcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40meq_x1d.fits to 16196/mastDownload/HST/lede40meq/lede40meq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40mgq_x1d.fits to 16196/mastDownload/HST/lede40mgq/lede40mgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40miq_x1d.fits to 16196/mastDownload/HST/lede40miq/lede40miq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40mkq_x1d.fits to 16196/mastDownload/HST/lede40mkq/lede40mkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40mmq_x1d.fits to 16196/mastDownload/HST/lede40mmq/lede40mmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40moq_x1d.fits to 16196/mastDownload/HST/lede40moq/lede40moq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede40mqq_x1d.fits to 16196/mastDownload/HST/lede40mqq/lede40mqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41010_x1dsum.fits to 16196/mastDownload/HST/lede41010/lede41010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41020_x1dsum.fits to 16196/mastDownload/HST/lede41020/lede41020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41030_x1dsum.fits to 16196/mastDownload/HST/lede41030/lede41030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41u9q_x1d.fits to 16196/mastDownload/HST/lede41u9q/lede41u9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41ubq_x1d.fits to 16196/mastDownload/HST/lede41ubq/lede41ubq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41udq_x1d.fits to 16196/mastDownload/HST/lede41udq/lede41udq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41ufq_x1d.fits to 16196/mastDownload/HST/lede41ufq/lede41ufq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41uiq_x1d.fits to 16196/mastDownload/HST/lede41uiq/lede41uiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41ukq_x1d.fits to 16196/mastDownload/HST/lede41ukq/lede41ukq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41umq_x1d.fits to 16196/mastDownload/HST/lede41umq/lede41umq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede41uoq_x1d.fits to 16196/mastDownload/HST/lede41uoq/lede41uoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42010_x1dsum.fits to 16196/mastDownload/HST/lede42010/lede42010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42020_x1dsum.fits to 16196/mastDownload/HST/lede42020/lede42020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42030_x1dsum.fits to 16196/mastDownload/HST/lede42030/lede42030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hfq_x1d.fits to 16196/mastDownload/HST/lede42hfq/lede42hfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hhq_x1d.fits to 16196/mastDownload/HST/lede42hhq/lede42hhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hjq_x1d.fits to 16196/mastDownload/HST/lede42hjq/lede42hjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hlq_x1d.fits to 16196/mastDownload/HST/lede42hlq/lede42hlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hnq_x1d.fits to 16196/mastDownload/HST/lede42hnq/lede42hnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hpq_x1d.fits to 16196/mastDownload/HST/lede42hpq/lede42hpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42hrq_x1d.fits to 16196/mastDownload/HST/lede42hrq/lede42hrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede42htq_x1d.fits to 16196/mastDownload/HST/lede42htq/lede42htq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43010_x1dsum.fits to 16196/mastDownload/HST/lede43010/lede43010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43020_x1dsum.fits to 16196/mastDownload/HST/lede43020/lede43020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43030_x1dsum.fits to 16196/mastDownload/HST/lede43030/lede43030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43p8q_x1d.fits to 16196/mastDownload/HST/lede43p8q/lede43p8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43paq_x1d.fits to 16196/mastDownload/HST/lede43paq/lede43paq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43pcq_x1d.fits to 16196/mastDownload/HST/lede43pcq/lede43pcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43peq_x1d.fits to 16196/mastDownload/HST/lede43peq/lede43peq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43pgq_x1d.fits to 16196/mastDownload/HST/lede43pgq/lede43pgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43piq_x1d.fits to 16196/mastDownload/HST/lede43piq/lede43piq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43pkq_x1d.fits to 16196/mastDownload/HST/lede43pkq/lede43pkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede43pmq_x1d.fits to 16196/mastDownload/HST/lede43pmq/lede43pmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44010_x1dsum.fits to 16196/mastDownload/HST/lede44010/lede44010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44020_x1dsum.fits to 16196/mastDownload/HST/lede44020/lede44020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44030_x1dsum.fits to 16196/mastDownload/HST/lede44030/lede44030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44grq_x1d.fits to 16196/mastDownload/HST/lede44grq/lede44grq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44gtq_x1d.fits to 16196/mastDownload/HST/lede44gtq/lede44gtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44gvq_x1d.fits to 16196/mastDownload/HST/lede44gvq/lede44gvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44gxq_x1d.fits to 16196/mastDownload/HST/lede44gxq/lede44gxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44gzq_x1d.fits to 16196/mastDownload/HST/lede44gzq/lede44gzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44h1q_x1d.fits to 16196/mastDownload/HST/lede44h1q/lede44h1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44h3q_x1d.fits to 16196/mastDownload/HST/lede44h3q/lede44h3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede44h5q_x1d.fits to 16196/mastDownload/HST/lede44h5q/lede44h5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45010_x1dsum.fits to 16196/mastDownload/HST/lede45010/lede45010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45020_x1dsum.fits to 16196/mastDownload/HST/lede45020/lede45020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45030_x1dsum.fits to 16196/mastDownload/HST/lede45030/lede45030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45q3q_x1d.fits to 16196/mastDownload/HST/lede45q3q/lede45q3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45q5q_x1d.fits to 16196/mastDownload/HST/lede45q5q/lede45q5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45q7q_x1d.fits to 16196/mastDownload/HST/lede45q7q/lede45q7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45q9q_x1d.fits to 16196/mastDownload/HST/lede45q9q/lede45q9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45qbq_x1d.fits to 16196/mastDownload/HST/lede45qbq/lede45qbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45qdq_x1d.fits to 16196/mastDownload/HST/lede45qdq/lede45qdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45qfq_x1d.fits to 16196/mastDownload/HST/lede45qfq/lede45qfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede45qhq_x1d.fits to 16196/mastDownload/HST/lede45qhq/lede45qhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46010_x1dsum.fits to 16196/mastDownload/HST/lede46010/lede46010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46020_x1dsum.fits to 16196/mastDownload/HST/lede46020/lede46020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46030_x1dsum.fits to 16196/mastDownload/HST/lede46030/lede46030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46ynq_x1d.fits to 16196/mastDownload/HST/lede46ynq/lede46ynq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46ypq_x1d.fits to 16196/mastDownload/HST/lede46ypq/lede46ypq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46yrq_x1d.fits to 16196/mastDownload/HST/lede46yrq/lede46yrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46ytq_x1d.fits to 16196/mastDownload/HST/lede46ytq/lede46ytq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46yvq_x1d.fits to 16196/mastDownload/HST/lede46yvq/lede46yvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46yxq_x1d.fits to 16196/mastDownload/HST/lede46yxq/lede46yxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46yzq_x1d.fits to 16196/mastDownload/HST/lede46yzq/lede46yzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede46z1q_x1d.fits to 16196/mastDownload/HST/lede46z1q/lede46z1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47010_x1dsum.fits to 16196/mastDownload/HST/lede47010/lede47010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47020_x1dsum.fits to 16196/mastDownload/HST/lede47020/lede47020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47030_x1dsum.fits to 16196/mastDownload/HST/lede47030/lede47030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47b4q_x1d.fits to 16196/mastDownload/HST/lede47b4q/lede47b4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47b6q_x1d.fits to 16196/mastDownload/HST/lede47b6q/lede47b6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47b8q_x1d.fits to 16196/mastDownload/HST/lede47b8q/lede47b8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47baq_x1d.fits to 16196/mastDownload/HST/lede47baq/lede47baq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47bcq_x1d.fits to 16196/mastDownload/HST/lede47bcq/lede47bcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47beq_x1d.fits to 16196/mastDownload/HST/lede47beq/lede47beq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47bgq_x1d.fits to 16196/mastDownload/HST/lede47bgq/lede47bgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede47biq_x1d.fits to 16196/mastDownload/HST/lede47biq/lede47biq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48010_x1dsum.fits to 16196/mastDownload/HST/lede48010/lede48010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48020_x1dsum.fits to 16196/mastDownload/HST/lede48020/lede48020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48030_x1dsum.fits to 16196/mastDownload/HST/lede48030/lede48030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48t2q_x1d.fits to 16196/mastDownload/HST/lede48t2q/lede48t2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48t4q_x1d.fits to 16196/mastDownload/HST/lede48t4q/lede48t4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48t6q_x1d.fits to 16196/mastDownload/HST/lede48t6q/lede48t6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48t8q_x1d.fits to 16196/mastDownload/HST/lede48t8q/lede48t8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48taq_x1d.fits to 16196/mastDownload/HST/lede48taq/lede48taq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48tcq_x1d.fits to 16196/mastDownload/HST/lede48tcq/lede48tcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48teq_x1d.fits to 16196/mastDownload/HST/lede48teq/lede48teq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede48tgq_x1d.fits to 16196/mastDownload/HST/lede48tgq/lede48tgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49010_x1dsum.fits to 16196/mastDownload/HST/lede49010/lede49010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49020_x1dsum.fits to 16196/mastDownload/HST/lede49020/lede49020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49030_x1dsum.fits to 16196/mastDownload/HST/lede49030/lede49030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49h4q_x1d.fits to 16196/mastDownload/HST/lede49h4q/lede49h4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49h6q_x1d.fits to 16196/mastDownload/HST/lede49h6q/lede49h6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49h8q_x1d.fits to 16196/mastDownload/HST/lede49h8q/lede49h8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49haq_x1d.fits to 16196/mastDownload/HST/lede49haq/lede49haq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49hcq_x1d.fits to 16196/mastDownload/HST/lede49hcq/lede49hcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49heq_x1d.fits to 16196/mastDownload/HST/lede49heq/lede49heq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49hgq_x1d.fits to 16196/mastDownload/HST/lede49hgq/lede49hgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede49hiq_x1d.fits to 16196/mastDownload/HST/lede49hiq/lede49hiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4a010_x1dsum.fits to 16196/mastDownload/HST/lede4a010/lede4a010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4ak6q_x1d.fits to 16196/mastDownload/HST/lede4ak6q/lede4ak6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4ak8q_x1d.fits to 16196/mastDownload/HST/lede4ak8q/lede4ak8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4akaq_x1d.fits to 16196/mastDownload/HST/lede4akaq/lede4akaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4akcq_x1d.fits to 16196/mastDownload/HST/lede4akcq/lede4akcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4c010_x1dsum.fits to 16196/mastDownload/HST/lede4c010/lede4c010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4c020_x1dsum.fits to 16196/mastDownload/HST/lede4c020/lede4c020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4c030_x1dsum.fits to 16196/mastDownload/HST/lede4c030/lede4c030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cehq_x1d.fits to 16196/mastDownload/HST/lede4cehq/lede4cehq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cejq_x1d.fits to 16196/mastDownload/HST/lede4cejq/lede4cejq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4celq_x1d.fits to 16196/mastDownload/HST/lede4celq/lede4celq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cenq_x1d.fits to 16196/mastDownload/HST/lede4cenq/lede4cenq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cepq_x1d.fits to 16196/mastDownload/HST/lede4cepq/lede4cepq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cerq_x1d.fits to 16196/mastDownload/HST/lede4cerq/lede4cerq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cetq_x1d.fits to 16196/mastDownload/HST/lede4cetq/lede4cetq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4cevq_x1d.fits to 16196/mastDownload/HST/lede4cevq/lede4cevq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4d010_x1dsum.fits to 16196/mastDownload/HST/lede4d010/lede4d010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4d020_x1dsum.fits to 16196/mastDownload/HST/lede4d020/lede4d020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4d030_x1dsum.fits to 16196/mastDownload/HST/lede4d030/lede4d030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dp5q_x1d.fits to 16196/mastDownload/HST/lede4dp5q/lede4dp5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dp7q_x1d.fits to 16196/mastDownload/HST/lede4dp7q/lede4dp7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dp9q_x1d.fits to 16196/mastDownload/HST/lede4dp9q/lede4dp9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dpbq_x1d.fits to 16196/mastDownload/HST/lede4dpbq/lede4dpbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dpdq_x1d.fits to 16196/mastDownload/HST/lede4dpdq/lede4dpdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dpfq_x1d.fits to 16196/mastDownload/HST/lede4dpfq/lede4dpfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dphq_x1d.fits to 16196/mastDownload/HST/lede4dphq/lede4dphq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4dpjq_x1d.fits to 16196/mastDownload/HST/lede4dpjq/lede4dpjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4e010_x1dsum.fits to 16196/mastDownload/HST/lede4e010/lede4e010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4epnq_x1d.fits to 16196/mastDownload/HST/lede4epnq/lede4epnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4eppq_x1d.fits to 16196/mastDownload/HST/lede4eppq/lede4eppq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4eprq_x1d.fits to 16196/mastDownload/HST/lede4eprq/lede4eprq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede4eptq_x1d.fits to 16196/mastDownload/HST/lede4eptq/lede4eptq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50010_x1dsum.fits to 16196/mastDownload/HST/lede50010/lede50010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50020_x1dsum.fits to 16196/mastDownload/HST/lede50020/lede50020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50030_x1dsum.fits to 16196/mastDownload/HST/lede50030/lede50030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50wsq_x1d.fits to 16196/mastDownload/HST/lede50wsq/lede50wsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50wuq_x1d.fits to 16196/mastDownload/HST/lede50wuq/lede50wuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50wwq_x1d.fits to 16196/mastDownload/HST/lede50wwq/lede50wwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50wyq_x1d.fits to 16196/mastDownload/HST/lede50wyq/lede50wyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50x0q_x1d.fits to 16196/mastDownload/HST/lede50x0q/lede50x0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50x2q_x1d.fits to 16196/mastDownload/HST/lede50x2q/lede50x2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50x4q_x1d.fits to 16196/mastDownload/HST/lede50x4q/lede50x4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede50x6q_x1d.fits to 16196/mastDownload/HST/lede50x6q/lede50x6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51010_x1dsum.fits to 16196/mastDownload/HST/lede51010/lede51010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51020_x1dsum.fits to 16196/mastDownload/HST/lede51020/lede51020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51030_x1dsum.fits to 16196/mastDownload/HST/lede51030/lede51030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51h1q_x1d.fits to 16196/mastDownload/HST/lede51h1q/lede51h1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51h3q_x1d.fits to 16196/mastDownload/HST/lede51h3q/lede51h3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51h5q_x1d.fits to 16196/mastDownload/HST/lede51h5q/lede51h5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51h7q_x1d.fits to 16196/mastDownload/HST/lede51h7q/lede51h7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51h9q_x1d.fits to 16196/mastDownload/HST/lede51h9q/lede51h9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51hbq_x1d.fits to 16196/mastDownload/HST/lede51hbq/lede51hbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51hdq_x1d.fits to 16196/mastDownload/HST/lede51hdq/lede51hdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede51hfq_x1d.fits to 16196/mastDownload/HST/lede51hfq/lede51hfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede52010_x1dsum.fits to 16196/mastDownload/HST/lede52010/lede52010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede52mkq_x1d.fits to 16196/mastDownload/HST/lede52mkq/lede52mkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede52mmq_x1d.fits to 16196/mastDownload/HST/lede52mmq/lede52mmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede52moq_x1d.fits to 16196/mastDownload/HST/lede52moq/lede52moq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede52mqq_x1d.fits to 16196/mastDownload/HST/lede52mqq/lede52mqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede53010_x1dsum.fits to 16196/mastDownload/HST/lede53010/lede53010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede53020_x1dsum.fits to 16196/mastDownload/HST/lede53020/lede53020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede53mvq_x1d.fits to 16196/mastDownload/HST/lede53mvq/lede53mvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede53mxq_x1d.fits to 16196/mastDownload/HST/lede53mxq/lede53mxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede56010_x1dsum.fits to 16196/mastDownload/HST/lede56010/lede56010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede56a3q_x1d.fits to 16196/mastDownload/HST/lede56a3q/lede56a3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede56a5q_x1d.fits to 16196/mastDownload/HST/lede56a5q/lede56a5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede56a7q_x1d.fits to 16196/mastDownload/HST/lede56a7q/lede56a7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede56ahq_x1d.fits to 16196/mastDownload/HST/lede56ahq/lede56ahq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede57010_x1dsum.fits to 16196/mastDownload/HST/lede57010/lede57010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede57020_x1dsum.fits to 16196/mastDownload/HST/lede57020/lede57020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede57azq_x1d.fits to 16196/mastDownload/HST/lede57azq/lede57azq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede57b2q_x1d.fits to 16196/mastDownload/HST/lede57b2q/lede57b2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59010_x1dsum.fits to 16196/mastDownload/HST/lede59010/lede59010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59020_x1dsum.fits to 16196/mastDownload/HST/lede59020/lede59020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59030_x1dsum.fits to 16196/mastDownload/HST/lede59030/lede59030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59npq_x1d.fits to 16196/mastDownload/HST/lede59npq/lede59npq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59nrq_x1d.fits to 16196/mastDownload/HST/lede59nrq/lede59nrq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59ntq_x1d.fits to 16196/mastDownload/HST/lede59ntq/lede59ntq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59nvq_x1d.fits to 16196/mastDownload/HST/lede59nvq/lede59nvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59nxq_x1d.fits to 16196/mastDownload/HST/lede59nxq/lede59nxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59nzq_x1d.fits to 16196/mastDownload/HST/lede59nzq/lede59nzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59o1q_x1d.fits to 16196/mastDownload/HST/lede59o1q/lede59o1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede59o3q_x1d.fits to 16196/mastDownload/HST/lede59o3q/lede59o3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60010_x1dsum.fits to 16196/mastDownload/HST/lede60010/lede60010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60020_x1dsum.fits to 16196/mastDownload/HST/lede60020/lede60020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60030_x1dsum.fits to 16196/mastDownload/HST/lede60030/lede60030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60waq_x1d.fits to 16196/mastDownload/HST/lede60waq/lede60waq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60weq_x1d.fits to 16196/mastDownload/HST/lede60weq/lede60weq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60wgq_x1d.fits to 16196/mastDownload/HST/lede60wgq/lede60wgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60wiq_x1d.fits to 16196/mastDownload/HST/lede60wiq/lede60wiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60wkq_x1d.fits to 16196/mastDownload/HST/lede60wkq/lede60wkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60x5q_x1d.fits to 16196/mastDownload/HST/lede60x5q/lede60x5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60x7q_x1d.fits to 16196/mastDownload/HST/lede60x7q/lede60x7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede60xbq_x1d.fits to 16196/mastDownload/HST/lede60xbq/lede60xbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61010_x1dsum.fits to 16196/mastDownload/HST/lede61010/lede61010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61020_x1dsum.fits to 16196/mastDownload/HST/lede61020/lede61020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61030_x1dsum.fits to 16196/mastDownload/HST/lede61030/lede61030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61dtq_x1d.fits to 16196/mastDownload/HST/lede61dtq/lede61dtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61dvq_x1d.fits to 16196/mastDownload/HST/lede61dvq/lede61dvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61dxq_x1d.fits to 16196/mastDownload/HST/lede61dxq/lede61dxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61dzq_x1d.fits to 16196/mastDownload/HST/lede61dzq/lede61dzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61e1q_x1d.fits to 16196/mastDownload/HST/lede61e1q/lede61e1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61e3q_x1d.fits to 16196/mastDownload/HST/lede61e3q/lede61e3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61e5q_x1d.fits to 16196/mastDownload/HST/lede61e5q/lede61e5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede61e7q_x1d.fits to 16196/mastDownload/HST/lede61e7q/lede61e7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62010_x1dsum.fits to 16196/mastDownload/HST/lede62010/lede62010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62020_x1dsum.fits to 16196/mastDownload/HST/lede62020/lede62020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62030_x1dsum.fits to 16196/mastDownload/HST/lede62030/lede62030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62maq_x1d.fits to 16196/mastDownload/HST/lede62maq/lede62maq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62mcq_x1d.fits to 16196/mastDownload/HST/lede62mcq/lede62mcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62meq_x1d.fits to 16196/mastDownload/HST/lede62meq/lede62meq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62mgq_x1d.fits to 16196/mastDownload/HST/lede62mgq/lede62mgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62miq_x1d.fits to 16196/mastDownload/HST/lede62miq/lede62miq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62mkq_x1d.fits to 16196/mastDownload/HST/lede62mkq/lede62mkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62mmq_x1d.fits to 16196/mastDownload/HST/lede62mmq/lede62mmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede62moq_x1d.fits to 16196/mastDownload/HST/lede62moq/lede62moq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63010_x1dsum.fits to 16196/mastDownload/HST/lede63010/lede63010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63020_x1dsum.fits to 16196/mastDownload/HST/lede63020/lede63020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63030_x1dsum.fits to 16196/mastDownload/HST/lede63030/lede63030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63x0q_x1d.fits to 16196/mastDownload/HST/lede63x0q/lede63x0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63x2q_x1d.fits to 16196/mastDownload/HST/lede63x2q/lede63x2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63x4q_x1d.fits to 16196/mastDownload/HST/lede63x4q/lede63x4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63x6q_x1d.fits to 16196/mastDownload/HST/lede63x6q/lede63x6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63x8q_x1d.fits to 16196/mastDownload/HST/lede63x8q/lede63x8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63xaq_x1d.fits to 16196/mastDownload/HST/lede63xaq/lede63xaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63xcq_x1d.fits to 16196/mastDownload/HST/lede63xcq/lede63xcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede63xmq_x1d.fits to 16196/mastDownload/HST/lede63xmq/lede63xmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64010_x1dsum.fits to 16196/mastDownload/HST/lede64010/lede64010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64020_x1dsum.fits to 16196/mastDownload/HST/lede64020/lede64020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64030_x1dsum.fits to 16196/mastDownload/HST/lede64030/lede64030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64imq_x1d.fits to 16196/mastDownload/HST/lede64imq/lede64imq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64ioq_x1d.fits to 16196/mastDownload/HST/lede64ioq/lede64ioq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64iqq_x1d.fits to 16196/mastDownload/HST/lede64iqq/lede64iqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64isq_x1d.fits to 16196/mastDownload/HST/lede64isq/lede64isq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64iuq_x1d.fits to 16196/mastDownload/HST/lede64iuq/lede64iuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64iwq_x1d.fits to 16196/mastDownload/HST/lede64iwq/lede64iwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64iyq_x1d.fits to 16196/mastDownload/HST/lede64iyq/lede64iyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede64j0q_x1d.fits to 16196/mastDownload/HST/lede64j0q/lede64j0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65010_x1dsum.fits to 16196/mastDownload/HST/lede65010/lede65010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65020_x1dsum.fits to 16196/mastDownload/HST/lede65020/lede65020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65030_x1dsum.fits to 16196/mastDownload/HST/lede65030/lede65030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65dxq_x1d.fits to 16196/mastDownload/HST/lede65dxq/lede65dxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65dzq_x1d.fits to 16196/mastDownload/HST/lede65dzq/lede65dzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65e1q_x1d.fits to 16196/mastDownload/HST/lede65e1q/lede65e1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65e3q_x1d.fits to 16196/mastDownload/HST/lede65e3q/lede65e3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65e5q_x1d.fits to 16196/mastDownload/HST/lede65e5q/lede65e5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65e7q_x1d.fits to 16196/mastDownload/HST/lede65e7q/lede65e7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65e9q_x1d.fits to 16196/mastDownload/HST/lede65e9q/lede65e9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede65ebq_x1d.fits to 16196/mastDownload/HST/lede65ebq/lede65ebq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66010_x1dsum.fits to 16196/mastDownload/HST/lede66010/lede66010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66020_x1dsum.fits to 16196/mastDownload/HST/lede66020/lede66020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66030_x1dsum.fits to 16196/mastDownload/HST/lede66030/lede66030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66lbq_x1d.fits to 16196/mastDownload/HST/lede66lbq/lede66lbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66ldq_x1d.fits to 16196/mastDownload/HST/lede66ldq/lede66ldq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66lfq_x1d.fits to 16196/mastDownload/HST/lede66lfq/lede66lfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66lhq_x1d.fits to 16196/mastDownload/HST/lede66lhq/lede66lhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66ljq_x1d.fits to 16196/mastDownload/HST/lede66ljq/lede66ljq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66llq_x1d.fits to 16196/mastDownload/HST/lede66llq/lede66llq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66lnq_x1d.fits to 16196/mastDownload/HST/lede66lnq/lede66lnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede66lpq_x1d.fits to 16196/mastDownload/HST/lede66lpq/lede66lpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67010_x1dsum.fits to 16196/mastDownload/HST/lede67010/lede67010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67020_x1dsum.fits to 16196/mastDownload/HST/lede67020/lede67020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67030_x1dsum.fits to 16196/mastDownload/HST/lede67030/lede67030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67x1q_x1d.fits to 16196/mastDownload/HST/lede67x1q/lede67x1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67x3q_x1d.fits to 16196/mastDownload/HST/lede67x3q/lede67x3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67x5q_x1d.fits to 16196/mastDownload/HST/lede67x5q/lede67x5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67x7q_x1d.fits to 16196/mastDownload/HST/lede67x7q/lede67x7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67x9q_x1d.fits to 16196/mastDownload/HST/lede67x9q/lede67x9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67xbq_x1d.fits to 16196/mastDownload/HST/lede67xbq/lede67xbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67xdq_x1d.fits to 16196/mastDownload/HST/lede67xdq/lede67xdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede67xfq_x1d.fits to 16196/mastDownload/HST/lede67xfq/lede67xfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68010_x1dsum.fits to 16196/mastDownload/HST/lede68010/lede68010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68020_x1dsum.fits to 16196/mastDownload/HST/lede68020/lede68020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68030_x1dsum.fits to 16196/mastDownload/HST/lede68030/lede68030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68fvq_x1d.fits to 16196/mastDownload/HST/lede68fvq/lede68fvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68fxq_x1d.fits to 16196/mastDownload/HST/lede68fxq/lede68fxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68fzq_x1d.fits to 16196/mastDownload/HST/lede68fzq/lede68fzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68g1q_x1d.fits to 16196/mastDownload/HST/lede68g1q/lede68g1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68g3q_x1d.fits to 16196/mastDownload/HST/lede68g3q/lede68g3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68g5q_x1d.fits to 16196/mastDownload/HST/lede68g5q/lede68g5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68g7q_x1d.fits to 16196/mastDownload/HST/lede68g7q/lede68g7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede68g9q_x1d.fits to 16196/mastDownload/HST/lede68g9q/lede68g9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69010_x1dsum.fits to 16196/mastDownload/HST/lede69010/lede69010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69020_x1dsum.fits to 16196/mastDownload/HST/lede69020/lede69020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69030_x1dsum.fits to 16196/mastDownload/HST/lede69030/lede69030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69h8q_x1d.fits to 16196/mastDownload/HST/lede69h8q/lede69h8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hbq_x1d.fits to 16196/mastDownload/HST/lede69hbq/lede69hbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hdq_x1d.fits to 16196/mastDownload/HST/lede69hdq/lede69hdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hfq_x1d.fits to 16196/mastDownload/HST/lede69hfq/lede69hfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hhq_x1d.fits to 16196/mastDownload/HST/lede69hhq/lede69hhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hjq_x1d.fits to 16196/mastDownload/HST/lede69hjq/lede69hjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hmq_x1d.fits to 16196/mastDownload/HST/lede69hmq/lede69hmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede69hoq_x1d.fits to 16196/mastDownload/HST/lede69hoq/lede69hoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70010_x1dsum.fits to 16196/mastDownload/HST/lede70010/lede70010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70020_x1dsum.fits to 16196/mastDownload/HST/lede70020/lede70020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70030_x1dsum.fits to 16196/mastDownload/HST/lede70030/lede70030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70t5q_x1d.fits to 16196/mastDownload/HST/lede70t5q/lede70t5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70t7q_x1d.fits to 16196/mastDownload/HST/lede70t7q/lede70t7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70t9q_x1d.fits to 16196/mastDownload/HST/lede70t9q/lede70t9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70tbq_x1d.fits to 16196/mastDownload/HST/lede70tbq/lede70tbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70tdq_x1d.fits to 16196/mastDownload/HST/lede70tdq/lede70tdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70tfq_x1d.fits to 16196/mastDownload/HST/lede70tfq/lede70tfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70thq_x1d.fits to 16196/mastDownload/HST/lede70thq/lede70thq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede70tjq_x1d.fits to 16196/mastDownload/HST/lede70tjq/lede70tjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71010_x1dsum.fits to 16196/mastDownload/HST/lede71010/lede71010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71020_x1dsum.fits to 16196/mastDownload/HST/lede71020/lede71020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71030_x1dsum.fits to 16196/mastDownload/HST/lede71030/lede71030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71bfq_x1d.fits to 16196/mastDownload/HST/lede71bfq/lede71bfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71bhq_x1d.fits to 16196/mastDownload/HST/lede71bhq/lede71bhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71bjq_x1d.fits to 16196/mastDownload/HST/lede71bjq/lede71bjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71blq_x1d.fits to 16196/mastDownload/HST/lede71blq/lede71blq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71bnq_x1d.fits to 16196/mastDownload/HST/lede71bnq/lede71bnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71bpq_x1d.fits to 16196/mastDownload/HST/lede71bpq/lede71bpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71brq_x1d.fits to 16196/mastDownload/HST/lede71brq/lede71brq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede71btq_x1d.fits to 16196/mastDownload/HST/lede71btq/lede71btq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72010_x1dsum.fits to 16196/mastDownload/HST/lede72010/lede72010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72020_x1dsum.fits to 16196/mastDownload/HST/lede72020/lede72020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72030_x1dsum.fits to 16196/mastDownload/HST/lede72030/lede72030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72c8q_x1d.fits to 16196/mastDownload/HST/lede72c8q/lede72c8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72caq_x1d.fits to 16196/mastDownload/HST/lede72caq/lede72caq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72ccq_x1d.fits to 16196/mastDownload/HST/lede72ccq/lede72ccq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72chq_x1d.fits to 16196/mastDownload/HST/lede72chq/lede72chq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72cjq_x1d.fits to 16196/mastDownload/HST/lede72cjq/lede72cjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72clq_x1d.fits to 16196/mastDownload/HST/lede72clq/lede72clq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72cnq_x1d.fits to 16196/mastDownload/HST/lede72cnq/lede72cnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede72cpq_x1d.fits to 16196/mastDownload/HST/lede72cpq/lede72cpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73010_x1dsum.fits to 16196/mastDownload/HST/lede73010/lede73010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73020_x1dsum.fits to 16196/mastDownload/HST/lede73020/lede73020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73030_x1dsum.fits to 16196/mastDownload/HST/lede73030/lede73030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73o7q_x1d.fits to 16196/mastDownload/HST/lede73o7q/lede73o7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73o9q_x1d.fits to 16196/mastDownload/HST/lede73o9q/lede73o9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73obq_x1d.fits to 16196/mastDownload/HST/lede73obq/lede73obq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73odq_x1d.fits to 16196/mastDownload/HST/lede73odq/lede73odq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73ogq_x1d.fits to 16196/mastDownload/HST/lede73ogq/lede73ogq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73ojq_x1d.fits to 16196/mastDownload/HST/lede73ojq/lede73ojq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73olq_x1d.fits to 16196/mastDownload/HST/lede73olq/lede73olq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede73onq_x1d.fits to 16196/mastDownload/HST/lede73onq/lede73onq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74010_x1dsum.fits to 16196/mastDownload/HST/lede74010/lede74010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74020_x1dsum.fits to 16196/mastDownload/HST/lede74020/lede74020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74030_x1dsum.fits to 16196/mastDownload/HST/lede74030/lede74030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74ubq_x1d.fits to 16196/mastDownload/HST/lede74ubq/lede74ubq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74udq_x1d.fits to 16196/mastDownload/HST/lede74udq/lede74udq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74ufq_x1d.fits to 16196/mastDownload/HST/lede74ufq/lede74ufq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74uhq_x1d.fits to 16196/mastDownload/HST/lede74uhq/lede74uhq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74ukq_x1d.fits to 16196/mastDownload/HST/lede74ukq/lede74ukq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74umq_x1d.fits to 16196/mastDownload/HST/lede74umq/lede74umq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74uoq_x1d.fits to 16196/mastDownload/HST/lede74uoq/lede74uoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede74v9q_x1d.fits to 16196/mastDownload/HST/lede74v9q/lede74v9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75010_x1dsum.fits to 16196/mastDownload/HST/lede75010/lede75010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75020_x1dsum.fits to 16196/mastDownload/HST/lede75020/lede75020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75030_x1dsum.fits to 16196/mastDownload/HST/lede75030/lede75030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75040_x1dsum.fits to 16196/mastDownload/HST/lede75040/lede75040_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75c8q_x1d.fits to 16196/mastDownload/HST/lede75c8q/lede75c8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cbq_x1d.fits to 16196/mastDownload/HST/lede75cbq/lede75cbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cdq_x1d.fits to 16196/mastDownload/HST/lede75cdq/lede75cdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cfq_x1d.fits to 16196/mastDownload/HST/lede75cfq/lede75cfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75chq_x1d.fits to 16196/mastDownload/HST/lede75chq/lede75chq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cjq_x1d.fits to 16196/mastDownload/HST/lede75cjq/lede75cjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75clq_x1d.fits to 16196/mastDownload/HST/lede75clq/lede75clq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cnq_x1d.fits to 16196/mastDownload/HST/lede75cnq/lede75cnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cqq_x1d.fits to 16196/mastDownload/HST/lede75cqq/lede75cqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75csq_x1d.fits to 16196/mastDownload/HST/lede75csq/lede75csq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cuq_x1d.fits to 16196/mastDownload/HST/lede75cuq/lede75cuq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede75cwq_x1d.fits to 16196/mastDownload/HST/lede75cwq/lede75cwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede77010_x1dsum.fits to 16196/mastDownload/HST/lede77010/lede77010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede77v8q_x1d.fits to 16196/mastDownload/HST/lede77v8q/lede77v8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede77vaq_x1d.fits to 16196/mastDownload/HST/lede77vaq/lede77vaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede77vcq_x1d.fits to 16196/mastDownload/HST/lede77vcq/lede77vcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede77veq_x1d.fits to 16196/mastDownload/HST/lede77veq/lede77veq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede78010_x1dsum.fits to 16196/mastDownload/HST/lede78010/lede78010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede78020_x1dsum.fits to 16196/mastDownload/HST/lede78020/lede78020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede78vjq_x1d.fits to 16196/mastDownload/HST/lede78vjq/lede78vjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede78vlq_x1d.fits to 16196/mastDownload/HST/lede78vlq/lede78vlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede80010_x1dsum.fits to 16196/mastDownload/HST/lede80010/lede80010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede80n4q_x1d.fits to 16196/mastDownload/HST/lede80n4q/lede80n4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede80n6q_x1d.fits to 16196/mastDownload/HST/lede80n6q/lede80n6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede80n8q_x1d.fits to 16196/mastDownload/HST/lede80n8q/lede80n8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede80naq_x1d.fits to 16196/mastDownload/HST/lede80naq/lede80naq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede81010_x1dsum.fits to 16196/mastDownload/HST/lede81010/lede81010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede81020_x1dsum.fits to 16196/mastDownload/HST/lede81020/lede81020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede81neq_x1d.fits to 16196/mastDownload/HST/lede81neq/lede81neq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede81ngq_x1d.fits to 16196/mastDownload/HST/lede81ngq/lede81ngq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82010_x1dsum.fits to 16196/mastDownload/HST/lede82010/lede82010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82020_x1dsum.fits to 16196/mastDownload/HST/lede82020/lede82020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82030_x1dsum.fits to 16196/mastDownload/HST/lede82030/lede82030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82i5q_x1d.fits to 16196/mastDownload/HST/lede82i5q/lede82i5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82i7q_x1d.fits to 16196/mastDownload/HST/lede82i7q/lede82i7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82i9q_x1d.fits to 16196/mastDownload/HST/lede82i9q/lede82i9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82ibq_x1d.fits to 16196/mastDownload/HST/lede82ibq/lede82ibq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82idq_x1d.fits to 16196/mastDownload/HST/lede82idq/lede82idq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede82ifq_x1d.fits to 16196/mastDownload/HST/lede82ifq/lede82ifq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83010_x1dsum.fits to 16196/mastDownload/HST/lede83010/lede83010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83020_x1dsum.fits to 16196/mastDownload/HST/lede83020/lede83020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83030_x1dsum.fits to 16196/mastDownload/HST/lede83030/lede83030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83ijq_x1d.fits to 16196/mastDownload/HST/lede83ijq/lede83ijq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83ilq_x1d.fits to 16196/mastDownload/HST/lede83ilq/lede83ilq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83inq_x1d.fits to 16196/mastDownload/HST/lede83inq/lede83inq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83ipq_x1d.fits to 16196/mastDownload/HST/lede83ipq/lede83ipq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83irq_x1d.fits to 16196/mastDownload/HST/lede83irq/lede83irq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede83itq_x1d.fits to 16196/mastDownload/HST/lede83itq/lede83itq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84010_x1dsum.fits to 16196/mastDownload/HST/lede84010/lede84010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84020_x1dsum.fits to 16196/mastDownload/HST/lede84020/lede84020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84030_x1dsum.fits to 16196/mastDownload/HST/lede84030/lede84030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84qmq_x1d.fits to 16196/mastDownload/HST/lede84qmq/lede84qmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84qoq_x1d.fits to 16196/mastDownload/HST/lede84qoq/lede84qoq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84qqq_x1d.fits to 16196/mastDownload/HST/lede84qqq/lede84qqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84qsq_x1d.fits to 16196/mastDownload/HST/lede84qsq/lede84qsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84quq_x1d.fits to 16196/mastDownload/HST/lede84quq/lede84quq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84qwq_x1d.fits to 16196/mastDownload/HST/lede84qwq/lede84qwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84qyq_x1d.fits to 16196/mastDownload/HST/lede84qyq/lede84qyq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede84r0q_x1d.fits to 16196/mastDownload/HST/lede84r0q/lede84r0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85010_x1dsum.fits to 16196/mastDownload/HST/lede85010/lede85010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85020_x1dsum.fits to 16196/mastDownload/HST/lede85020/lede85020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85030_x1dsum.fits to 16196/mastDownload/HST/lede85030/lede85030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85bqq_x1d.fits to 16196/mastDownload/HST/lede85bqq/lede85bqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85bsq_x1d.fits to 16196/mastDownload/HST/lede85bsq/lede85bsq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85buq_x1d.fits to 16196/mastDownload/HST/lede85buq/lede85buq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85bwq_x1d.fits to 16196/mastDownload/HST/lede85bwq/lede85bwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85byq_x1d.fits to 16196/mastDownload/HST/lede85byq/lede85byq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85c0q_x1d.fits to 16196/mastDownload/HST/lede85c0q/lede85c0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85c2q_x1d.fits to 16196/mastDownload/HST/lede85c2q/lede85c2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede85c4q_x1d.fits to 16196/mastDownload/HST/lede85c4q/lede85c4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86010_x1dsum.fits to 16196/mastDownload/HST/lede86010/lede86010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86020_x1dsum.fits to 16196/mastDownload/HST/lede86020/lede86020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86030_x1dsum.fits to 16196/mastDownload/HST/lede86030/lede86030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86j0q_x1d.fits to 16196/mastDownload/HST/lede86j0q/lede86j0q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86j2q_x1d.fits to 16196/mastDownload/HST/lede86j2q/lede86j2q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86j4q_x1d.fits to 16196/mastDownload/HST/lede86j4q/lede86j4q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86j6q_x1d.fits to 16196/mastDownload/HST/lede86j6q/lede86j6q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86j8q_x1d.fits to 16196/mastDownload/HST/lede86j8q/lede86j8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86jaq_x1d.fits to 16196/mastDownload/HST/lede86jaq/lede86jaq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86jcq_x1d.fits to 16196/mastDownload/HST/lede86jcq/lede86jcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede86jeq_x1d.fits to 16196/mastDownload/HST/lede86jeq/lede86jeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87010_x1dsum.fits to 16196/mastDownload/HST/lede87010/lede87010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87020_x1dsum.fits to 16196/mastDownload/HST/lede87020/lede87020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87030_x1dsum.fits to 16196/mastDownload/HST/lede87030/lede87030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jcq_x1d.fits to 16196/mastDownload/HST/lede87jcq/lede87jcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jeq_x1d.fits to 16196/mastDownload/HST/lede87jeq/lede87jeq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jgq_x1d.fits to 16196/mastDownload/HST/lede87jgq/lede87jgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jiq_x1d.fits to 16196/mastDownload/HST/lede87jiq/lede87jiq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jkq_x1d.fits to 16196/mastDownload/HST/lede87jkq/lede87jkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jmq_x1d.fits to 16196/mastDownload/HST/lede87jmq/lede87jmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87joq_x1d.fits to 16196/mastDownload/HST/lede87joq/lede87joq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede87jqq_x1d.fits to 16196/mastDownload/HST/lede87jqq/lede87jqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88010_x1dsum.fits to 16196/mastDownload/HST/lede88010/lede88010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88020_x1dsum.fits to 16196/mastDownload/HST/lede88020/lede88020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88030_x1dsum.fits to 16196/mastDownload/HST/lede88030/lede88030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88tdq_x1d.fits to 16196/mastDownload/HST/lede88tdq/lede88tdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88tfq_x1d.fits to 16196/mastDownload/HST/lede88tfq/lede88tfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88thq_x1d.fits to 16196/mastDownload/HST/lede88thq/lede88thq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88tjq_x1d.fits to 16196/mastDownload/HST/lede88tjq/lede88tjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88tlq_x1d.fits to 16196/mastDownload/HST/lede88tlq/lede88tlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88tnq_x1d.fits to 16196/mastDownload/HST/lede88tnq/lede88tnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88tpq_x1d.fits to 16196/mastDownload/HST/lede88tpq/lede88tpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede88trq_x1d.fits to 16196/mastDownload/HST/lede88trq/lede88trq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89010_x1dsum.fits to 16196/mastDownload/HST/lede89010/lede89010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89020_x1dsum.fits to 16196/mastDownload/HST/lede89020/lede89020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89030_x1dsum.fits to 16196/mastDownload/HST/lede89030/lede89030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89bcq_x1d.fits to 16196/mastDownload/HST/lede89bcq/lede89bcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89beq_x1d.fits to 16196/mastDownload/HST/lede89beq/lede89beq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89bgq_x1d.fits to 16196/mastDownload/HST/lede89bgq/lede89bgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89biq_x1d.fits to 16196/mastDownload/HST/lede89biq/lede89biq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89bkq_x1d.fits to 16196/mastDownload/HST/lede89bkq/lede89bkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89bmq_x1d.fits to 16196/mastDownload/HST/lede89bmq/lede89bmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89boq_x1d.fits to 16196/mastDownload/HST/lede89boq/lede89boq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede89bqq_x1d.fits to 16196/mastDownload/HST/lede89bqq/lede89bqq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90010_x1dsum.fits to 16196/mastDownload/HST/lede90010/lede90010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90020_x1dsum.fits to 16196/mastDownload/HST/lede90020/lede90020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90030_x1dsum.fits to 16196/mastDownload/HST/lede90030/lede90030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90dnq_x1d.fits to 16196/mastDownload/HST/lede90dnq/lede90dnq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90dpq_x1d.fits to 16196/mastDownload/HST/lede90dpq/lede90dpq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90drq_x1d.fits to 16196/mastDownload/HST/lede90drq/lede90drq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90dtq_x1d.fits to 16196/mastDownload/HST/lede90dtq/lede90dtq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90dvq_x1d.fits to 16196/mastDownload/HST/lede90dvq/lede90dvq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90dxq_x1d.fits to 16196/mastDownload/HST/lede90dxq/lede90dxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90dzq_x1d.fits to 16196/mastDownload/HST/lede90dzq/lede90dzq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede90e1q_x1d.fits to 16196/mastDownload/HST/lede90e1q/lede90e1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91010_x1dsum.fits to 16196/mastDownload/HST/lede91010/lede91010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91020_x1dsum.fits to 16196/mastDownload/HST/lede91020/lede91020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91030_x1dsum.fits to 16196/mastDownload/HST/lede91030/lede91030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91p8q_x1d.fits to 16196/mastDownload/HST/lede91p8q/lede91p8q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91paq_x1d.fits to 16196/mastDownload/HST/lede91paq/lede91paq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91pcq_x1d.fits to 16196/mastDownload/HST/lede91pcq/lede91pcq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91peq_x1d.fits to 16196/mastDownload/HST/lede91peq/lede91peq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91pgq_x1d.fits to 16196/mastDownload/HST/lede91pgq/lede91pgq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91piq_x1d.fits to 16196/mastDownload/HST/lede91piq/lede91piq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91pkq_x1d.fits to 16196/mastDownload/HST/lede91pkq/lede91pkq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede91pmq_x1d.fits to 16196/mastDownload/HST/lede91pmq/lede91pmq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92010_x1dsum.fits to 16196/mastDownload/HST/lede92010/lede92010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92020_x1dsum.fits to 16196/mastDownload/HST/lede92020/lede92020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92030_x1dsum.fits to 16196/mastDownload/HST/lede92030/lede92030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92k3q_x1d.fits to 16196/mastDownload/HST/lede92k3q/lede92k3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92k5q_x1d.fits to 16196/mastDownload/HST/lede92k5q/lede92k5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92k7q_x1d.fits to 16196/mastDownload/HST/lede92k7q/lede92k7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92k9q_x1d.fits to 16196/mastDownload/HST/lede92k9q/lede92k9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92kbq_x1d.fits to 16196/mastDownload/HST/lede92kbq/lede92kbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92kdq_x1d.fits to 16196/mastDownload/HST/lede92kdq/lede92kdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92kfq_x1d.fits to 16196/mastDownload/HST/lede92kfq/lede92kfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede92khq_x1d.fits to 16196/mastDownload/HST/lede92khq/lede92khq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93010_x1dsum.fits to 16196/mastDownload/HST/lede93010/lede93010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93020_x1dsum.fits to 16196/mastDownload/HST/lede93020/lede93020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93030_x1dsum.fits to 16196/mastDownload/HST/lede93030/lede93030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93stq_x1d.fits to 16196/mastDownload/HST/lede93stq/lede93stq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93svq_x1d.fits to 16196/mastDownload/HST/lede93svq/lede93svq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93sxq_x1d.fits to 16196/mastDownload/HST/lede93sxq/lede93sxq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93szq_x1d.fits to 16196/mastDownload/HST/lede93szq/lede93szq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93t1q_x1d.fits to 16196/mastDownload/HST/lede93t1q/lede93t1q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93t3q_x1d.fits to 16196/mastDownload/HST/lede93t3q/lede93t3q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93t5q_x1d.fits to 16196/mastDownload/HST/lede93t5q/lede93t5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede93t7q_x1d.fits to 16196/mastDownload/HST/lede93t7q/lede93t7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede94010_x1dsum.fits to 16196/mastDownload/HST/lede94010/lede94010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede94r5q_x1d.fits to 16196/mastDownload/HST/lede94r5q/lede94r5q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede94r7q_x1d.fits to 16196/mastDownload/HST/lede94r7q/lede94r7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede94r9q_x1d.fits to 16196/mastDownload/HST/lede94r9q/lede94r9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede94rbq_x1d.fits to 16196/mastDownload/HST/lede94rbq/lede94rbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede95010_x1dsum.fits to 16196/mastDownload/HST/lede95010/lede95010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede95020_x1dsum.fits to 16196/mastDownload/HST/lede95020/lede95020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede95roq_x1d.fits to 16196/mastDownload/HST/lede95roq/lede95roq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede95rwq_x1d.fits to 16196/mastDownload/HST/lede95rwq/lede95rwq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede96010_x1dsum.fits to 16196/mastDownload/HST/lede96010/lede96010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede96e9q_x1d.fits to 16196/mastDownload/HST/lede96e9q/lede96e9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede96ebq_x1d.fits to 16196/mastDownload/HST/lede96ebq/lede96ebq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede96edq_x1d.fits to 16196/mastDownload/HST/lede96edq/lede96edq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede96efq_x1d.fits to 16196/mastDownload/HST/lede96efq/lede96efq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede97010_x1dsum.fits to 16196/mastDownload/HST/lede97010/lede97010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede97020_x1dsum.fits to 16196/mastDownload/HST/lede97020/lede97020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede97ejq_x1d.fits to 16196/mastDownload/HST/lede97ejq/lede97ejq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede97elq_x1d.fits to 16196/mastDownload/HST/lede97elq/lede97elq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99010_x1dsum.fits to 16196/mastDownload/HST/lede99010/lede99010_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99020_x1dsum.fits to 16196/mastDownload/HST/lede99020/lede99020_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99030_x1dsum.fits to 16196/mastDownload/HST/lede99030/lede99030_x1dsum.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99w7q_x1d.fits to 16196/mastDownload/HST/lede99w7q/lede99w7q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99w9q_x1d.fits to 16196/mastDownload/HST/lede99w9q/lede99w9q_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99wbq_x1d.fits to 16196/mastDownload/HST/lede99wbq/lede99wbq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99wdq_x1d.fits to 16196/mastDownload/HST/lede99wdq/lede99wdq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99wfq_x1d.fits to 16196/mastDownload/HST/lede99wfq/lede99wfq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99whq_x1d.fits to 16196/mastDownload/HST/lede99whq/lede99whq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99wjq_x1d.fits to 16196/mastDownload/HST/lede99wjq/lede99wjq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/lede99wlq_x1d.fits to 16196/mastDownload/HST/lede99wlq/lede99wlq_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o020_sx1.fits to 16196/mastDownload/HST/oede3o020/oede3o020_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o030_sx1.fits to 16196/mastDownload/HST/oede3o030/oede3o030_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o040_sx1.fits to 16196/mastDownload/HST/oede3o040/oede3o040_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o050_sx1.fits to 16196/mastDownload/HST/oede3o050/oede3o050_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o060_sx1.fits to 16196/mastDownload/HST/oede3o060/oede3o060_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o070_sx1.fits to 16196/mastDownload/HST/oede3o070/oede3o070_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o080_x1d.fits to 16196/mastDownload/HST/oede3o080/oede3o080_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede3o090_x1d.fits to 16196/mastDownload/HST/oede3o090/oede3o090_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b020_sx1.fits to 16196/mastDownload/HST/oede4b020/oede4b020_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b030_sx1.fits to 16196/mastDownload/HST/oede4b030/oede4b030_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b040_sx1.fits to 16196/mastDownload/HST/oede4b040/oede4b040_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b050_sx1.fits to 16196/mastDownload/HST/oede4b050/oede4b050_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b060_sx1.fits to 16196/mastDownload/HST/oede4b060/oede4b060_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b070_sx1.fits to 16196/mastDownload/HST/oede4b070/oede4b070_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b080_x1d.fits to 16196/mastDownload/HST/oede4b080/oede4b080_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4b090_x1d.fits to 16196/mastDownload/HST/oede4b090/oede4b090_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f020_sx1.fits to 16196/mastDownload/HST/oede4f020/oede4f020_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f030_sx1.fits to 16196/mastDownload/HST/oede4f030/oede4f030_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f040_sx1.fits to 16196/mastDownload/HST/oede4f040/oede4f040_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f050_sx1.fits to 16196/mastDownload/HST/oede4f050/oede4f050_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f060_sx1.fits to 16196/mastDownload/HST/oede4f060/oede4f060_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f070_sx1.fits to 16196/mastDownload/HST/oede4f070/oede4f070_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f080_x1d.fits to 16196/mastDownload/HST/oede4f080/oede4f080_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oede4f090_x1d.fits to 16196/mastDownload/HST/oede4f090/oede4f090_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5020_sx1.fits to 16196/mastDownload/HST/oedea5020/oedea5020_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5030_sx1.fits to 16196/mastDownload/HST/oedea5030/oedea5030_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5040_sx1.fits to 16196/mastDownload/HST/oedea5040/oedea5040_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5050_sx1.fits to 16196/mastDownload/HST/oedea5050/oedea5050_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5060_sx1.fits to 16196/mastDownload/HST/oedea5060/oedea5060_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5070_sx1.fits to 16196/mastDownload/HST/oedea5070/oedea5070_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea5080_x1d.fits to 16196/mastDownload/HST/oedea5080/oedea5080_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6020_sx1.fits to 16196/mastDownload/HST/oedea6020/oedea6020_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6030_sx1.fits to 16196/mastDownload/HST/oedea6030/oedea6030_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6040_sx1.fits to 16196/mastDownload/HST/oedea6040/oedea6040_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6050_sx1.fits to 16196/mastDownload/HST/oedea6050/oedea6050_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6060_sx1.fits to 16196/mastDownload/HST/oedea6060/oedea6060_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6070_sx1.fits to 16196/mastDownload/HST/oedea6070/oedea6070_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedea6080_x1d.fits to 16196/mastDownload/HST/oedea6080/oedea6080_x1d.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean020_sx1.fits to 16196/mastDownload/HST/oedean020/oedean020_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean030_sx1.fits to 16196/mastDownload/HST/oedean030/oedean030_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean040_sx1.fits to 16196/mastDownload/HST/oedean040/oedean040_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean050_sx1.fits to 16196/mastDownload/HST/oedean050/oedean050_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean060_sx1.fits to 16196/mastDownload/HST/oedean060/oedean060_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean070_sx1.fits to 16196/mastDownload/HST/oedean070/oedean070_sx1.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/oedean080_x1d.fits to 16196/mastDownload/HST/oedean080/oedean080_x1d.fits ...
 [Done]
# Use `glob` to make a list of every x1d file available in MAST for this PID
# Then print out a table of some table info on the program
# Note that this program has both x1d and sx1 extracted data products!
allfiles = glob.glob(os.path.join(datadir_ex3, '*_x1d.fits'))\
         + glob.glob(os.path.join(datadir_ex3, '*_sx1.fits'))
print('rootname  target  visit  grating')
for myfile in sorted(allfiles):
    hdr0 = fits.getheader(myfile, ext=0)
    print(hdr0['rootname'], hdr0['targname'],
          hdr0['obset_id'], hdr0['opt_elem'])
print(f'N files from MAST = {len(allfiles)}')
rootname  target  visit  grating
lede01icq MRK-817 01 G130M
lede01ieq MRK-817 01 G130M
lede01igq MRK-817 01 G130M
lede01iiq MRK-817 01 G130M
lede01iqq MRK-817 01 G160M
lede01isq MRK-817 01 G160M
lede01iuq MRK-817 01 G160M
lede01iwq MRK-817 01 G160M
lede02vbq MRK-817 02 G130M
lede02vdq MRK-817 02 G130M
lede02vfq MRK-817 02 G130M
lede02vhq MRK-817 02 G130M
lede02vjq MRK-817 02 G160M
lede02vlq MRK-817 02 G160M
lede02vnq MRK-817 02 G160M
lede02vpq MRK-817 02 G160M
lede03g0q MRK-817 03 G130M
lede03g2q MRK-817 03 G130M
lede03g4q MRK-817 03 G130M
lede03g6q MRK-817 03 G130M
lede03g8q MRK-817 03 G160M
lede03gaq MRK-817 03 G160M
lede03gcq MRK-817 03 G160M
lede03geq MRK-817 03 G160M
lede04maq MRK-817 04 G130M
lede04mcq MRK-817 04 G130M
lede04meq MRK-817 04 G130M
lede04mgq MRK-817 04 G130M
lede04miq MRK-817 04 G160M
lede04mkq MRK-817 04 G160M
lede04mmq MRK-817 04 G160M
lede04moq MRK-817 04 G160M
lede05qcq MRK-817 05 G130M
lede05qeq MRK-817 05 G130M
lede05qgq MRK-817 05 G130M
lede05qiq MRK-817 05 G130M
lede05qlq MRK-817 05 G160M
lede05r6q MRK-817 05 G160M
lede05r8q MRK-817 05 G160M
lede05raq MRK-817 05 G160M
lede06yyq MRK-817 06 G130M
lede06z0q MRK-817 06 G130M
lede06z2q MRK-817 06 G130M
lede06z4q MRK-817 06 G130M
lede06z7q MRK-817 06 G160M
lede06z9q MRK-817 06 G160M
lede06zbq MRK-817 06 G160M
lede06zdq MRK-817 06 G160M
lede07jyq MRK-817 07 G130M
lede07k0q MRK-817 07 G130M
lede07k2q MRK-817 07 G130M
lede07k4q MRK-817 07 G130M
lede07k6q MRK-817 07 G160M
lede07k8q MRK-817 07 G160M
lede07kaq MRK-817 07 G160M
lede07kcq MRK-817 07 G160M
lede08f3q MRK-817 08 G130M
lede08f5q MRK-817 08 G130M
lede08f7q MRK-817 08 G130M
lede08fcq MRK-817 08 G130M
lede08feq MRK-817 08 G160M
lede08fgq MRK-817 08 G160M
lede08fiq MRK-817 08 G160M
lede08fkq MRK-817 08 G160M
lede09a1q MRK-817 09 G130M
lede09a3q MRK-817 09 G130M
lede09a5q MRK-817 09 G130M
lede09a7q MRK-817 09 G130M
lede09a9q MRK-817 09 G160M
lede09abq MRK-817 09 G160M
lede09adq MRK-817 09 G160M
lede09afq MRK-817 09 G160M
lede0aetq MRK-817 0A G130M
lede0aevq MRK-817 0A G130M
lede0aexq MRK-817 0A G130M
lede0aezq MRK-817 0A G130M
lede0af2q MRK-817 0A G160M
lede0af5q MRK-817 0A G160M
lede0af7q MRK-817 0A G160M
lede0af9q MRK-817 0A G160M
lede0bj1q MRK-817 0B G130M
lede0bj3q MRK-817 0B G130M
lede0bj5q MRK-817 0B G130M
lede0bj7q MRK-817 0B G130M
lede0bj9q MRK-817 0B G160M
lede0bjbq MRK-817 0B G160M
lede0bjdq MRK-817 0B G160M
lede0bjyq MRK-817 0B G160M
lede0cvpq MRK-817 0C G130M
lede0cvrq MRK-817 0C G130M
lede0cvtq MRK-817 0C G130M
lede0cvvq MRK-817 0C G130M
lede0cvxq MRK-817 0C G160M
lede0cvzq MRK-817 0C G160M
lede0cw1q MRK-817 0C G160M
lede0cw3q MRK-817 0C G160M
lede0df6q MRK-817 0D G130M
lede0df8q MRK-817 0D G130M
lede0dfaq MRK-817 0D G130M
lede0dfcq MRK-817 0D G130M
lede0dfeq MRK-817 0D G160M
lede0dfgq MRK-817 0D G160M
lede0dfiq MRK-817 0D G160M
lede0dfoq MRK-817 0D G160M
lede0iknq MRK-817 0I G130M
lede0ikpq MRK-817 0I G130M
lede0ikrq MRK-817 0I G130M
lede0iktq MRK-817 0I G130M
lede0ikvq MRK-817 0I G160M
lede0ikxq MRK-817 0I G160M
lede0ikzq MRK-817 0I G160M
lede0il1q MRK-817 0I G160M
lede0jw1q MRK-817 0J G130M
lede0jw3q MRK-817 0J G130M
lede0jw5q MRK-817 0J G130M
lede0jw7q MRK-817 0J G130M
lede0jw9q MRK-817 0J G160M
lede0jwbq MRK-817 0J G160M
lede0jwdq MRK-817 0J G160M
lede0jwfq MRK-817 0J G160M
lede0kf5q MRK-817 0K G130M
lede0kf7q MRK-817 0K G130M
lede0kf9q MRK-817 0K G130M
lede0kfbq MRK-817 0K G130M
lede0kfeq MRK-817 0K G160M
lede0kfgq MRK-817 0K G160M
lede0kfiq MRK-817 0K G160M
lede0kfkq MRK-817 0K G160M
lede0loxq MRK-817 0L G130M
lede0lozq MRK-817 0L G130M
lede0lp1q MRK-817 0L G130M
lede0lp3q MRK-817 0L G130M
lede0lp5q MRK-817 0L G160M
lede0lp7q MRK-817 0L G160M
lede0lp9q MRK-817 0L G160M
lede0lpbq MRK-817 0L G160M
lede0ma1q MRK-817 0M G160M
lede0ma4q MRK-817 0M G160M
lede0ma6q MRK-817 0M G160M
lede0mz6q MRK-817 0M G130M
lede0mz8q MRK-817 0M G130M
lede0mzaq MRK-817 0M G130M
lede0mzvq MRK-817 0M G130M
lede0mzxq MRK-817 0M G160M
lede0njbq MRK-817 0N G130M
lede0njeq MRK-817 0N G130M
lede0njgq MRK-817 0N G130M
lede0njiq MRK-817 0N G130M
lede0njkq MRK-817 0N G160M
lede0njmq MRK-817 0N G160M
lede0njoq MRK-817 0N G160M
lede0nk9q MRK-817 0N G160M
lede0oglq MRK-817 0O G130M
lede0ognq MRK-817 0O G130M
lede0ogpq MRK-817 0O G130M
lede0ogrq MRK-817 0O G130M
lede0ogtq MRK-817 0O G160M
lede0ogvq MRK-817 0O G160M
lede0ogxq MRK-817 0O G160M
lede0ogzq MRK-817 0O G160M
lede0psiq MRK-817 0P G130M
lede0pskq MRK-817 0P G130M
lede0psmq MRK-817 0P G130M
lede0psoq MRK-817 0P G130M
lede0psqq MRK-817 0P G160M
lede0pssq MRK-817 0P G160M
lede0psuq MRK-817 0P G160M
lede0pswq MRK-817 0P G160M
lede0qc2q MRK-817 0Q G130M
lede0qc4q MRK-817 0Q G130M
lede0qc6q MRK-817 0Q G130M
lede0qc8q MRK-817 0Q G130M
lede0qcaq MRK-817 0Q G160M
lede0qccq MRK-817 0Q G160M
lede0qceq MRK-817 0Q G160M
lede0qcgq MRK-817 0Q G160M
lede0ra6q MRK-817 0R G130M
lede0ra8q MRK-817 0R G130M
lede0rabq MRK-817 0R G130M
lede0ragq MRK-817 0R G130M
lede0raiq MRK-817 0R G160M
lede0ranq MRK-817 0R G160M
lede0rapq MRK-817 0R G160M
lede0rarq MRK-817 0R G160M
lede0to1q MRK-817 0T G130M
lede0to4q MRK-817 0T G130M
lede0to6q MRK-817 0T G130M
lede0tobq MRK-817 0T G130M
lede0togq MRK-817 0T G160M
lede0toiq MRK-817 0T G160M
lede0tokq MRK-817 0T G160M
lede0tomq MRK-817 0T G160M
lede0uzeq MRK-817 0U G130M
lede0uzhq MRK-817 0U G130M
lede0uzjq MRK-817 0U G130M
lede0uzoq MRK-817 0U G130M
lede0uztq MRK-817 0U G160M
lede0uzvq MRK-817 0U G160M
lede0uzxq MRK-817 0U G160M
lede0uzzq MRK-817 0U G160M
lede0xgrq MRK-817 0X G130M
lede0xgtq MRK-817 0X G130M
lede0xgvq MRK-817 0X G130M
lede0xgyq MRK-817 0X G130M
lede0yh2q MRK-817 0Y G160M
lede0yh4q MRK-817 0Y G160M
lede0zz2q MRK-817 0Z G130M
lede0zz4q MRK-817 0Z G130M
lede0zz6q MRK-817 0Z G130M
lede0zz8q MRK-817 0Z G130M
lede0zzaq MRK-817 0Z G160M
lede0zzcq MRK-817 0Z G160M
lede0zzeq MRK-817 0Z G160M
lede0zzgq MRK-817 0Z G160M
lede0zziq MRK-817 0Z G130M
lede0zzkq MRK-817 0Z G130M
lede0zzmq MRK-817 0Z G130M
lede0zzoq MRK-817 0Z G130M
lede10iyq MRK-817 10 G130M
lede10j0q MRK-817 10 G130M
lede10j2q MRK-817 10 G130M
lede10j4q MRK-817 10 G130M
lede10j6q MRK-817 10 G160M
lede10j8q MRK-817 10 G160M
lede10jaq MRK-817 10 G160M
lede10jcq MRK-817 10 G160M
lede11a4q MRK-817 11 G130M
lede11a6q MRK-817 11 G130M
lede11a8q MRK-817 11 G130M
lede11aaq MRK-817 11 G130M
lede11adq MRK-817 11 G160M
lede11afq MRK-817 11 G160M
lede11ahq MRK-817 11 G160M
lede11ajq MRK-817 11 G160M
lede12lzq MRK-817 12 G130M
lede12m1q MRK-817 12 G130M
lede12m3q MRK-817 12 G130M
lede12m5q MRK-817 12 G130M
lede12m7q MRK-817 12 G160M
lede12m9q MRK-817 12 G160M
lede12mbq MRK-817 12 G160M
lede12mdq MRK-817 12 G160M
lede14jzq MRK-817 14 G130M
lede14k1q MRK-817 14 G130M
lede14k3q MRK-817 14 G130M
lede14k5q MRK-817 14 G130M
lede14k7q MRK-817 14 G160M
lede14k9q MRK-817 14 G160M
lede14kbq MRK-817 14 G160M
lede14kdq MRK-817 14 G160M
lede15ngq MRK-817 15 G130M
lede15niq MRK-817 15 G130M
lede15nkq MRK-817 15 G130M
lede15nmq MRK-817 15 G130M
lede15noq MRK-817 15 G160M
lede15nqq MRK-817 15 G160M
lede15nsq MRK-817 15 G160M
lede15nuq MRK-817 15 G160M
lede16vzq MRK-817 16 G130M
lede16w2q MRK-817 16 G130M
lede16w4q MRK-817 16 G130M
lede16w6q MRK-817 16 G130M
lede16w8q MRK-817 16 G160M
lede16waq MRK-817 16 G160M
lede16wcq MRK-817 16 G160M
lede16weq MRK-817 16 G160M
lede17hqq MRK-817 17 G130M
lede17hsq MRK-817 17 G130M
lede17huq MRK-817 17 G130M
lede17hwq MRK-817 17 G130M
lede17hyq MRK-817 17 G160M
lede17i0q MRK-817 17 G160M
lede17i2q MRK-817 17 G160M
lede17i4q MRK-817 17 G160M
lede18s8q MRK-817 18 G130M
lede18saq MRK-817 18 G130M
lede18scq MRK-817 18 G130M
lede18seq MRK-817 18 G130M
lede18sgq MRK-817 18 G160M
lede18siq MRK-817 18 G160M
lede18skq MRK-817 18 G160M
lede18smq MRK-817 18 G160M
lede19msq MRK-817 19 G130M
lede19muq MRK-817 19 G130M
lede19mwq MRK-817 19 G130M
lede19myq MRK-817 19 G130M
lede19n1q MRK-817 19 G160M
lede19n3q MRK-817 19 G160M
lede19n5q MRK-817 19 G160M
lede19n7q MRK-817 19 G160M
lede1ajaq MRK-817 1A G130M
lede1ajcq MRK-817 1A G130M
lede1ajeq MRK-817 1A G130M
lede1ajgq MRK-817 1A G130M
lede1ajiq MRK-817 1A G160M
lede1ajkq MRK-817 1A G160M
lede1ajmq MRK-817 1A G160M
lede1ajoq MRK-817 1A G160M
lede1bvgq MRK-817 1B G130M
lede1bviq MRK-817 1B G130M
lede1bvkq MRK-817 1B G130M
lede1bvmq MRK-817 1B G130M
lede1bvoq MRK-817 1B G160M
lede1bvqq MRK-817 1B G160M
lede1bvsq MRK-817 1B G160M
lede1bvuq MRK-817 1B G160M
lede1cf2q MRK-817 1C G130M
lede1cf4q MRK-817 1C G130M
lede1cf6q MRK-817 1C G130M
lede1cf8q MRK-817 1C G130M
lede1cfaq MRK-817 1C G160M
lede1cfcq MRK-817 1C G160M
lede1cfeq MRK-817 1C G160M
lede1cfgq MRK-817 1C G160M
lede1dkfq MRK-817 1D G130M
lede1dkhq MRK-817 1D G130M
lede1dkjq MRK-817 1D G130M
lede1dklq MRK-817 1D G130M
lede1dknq MRK-817 1D G160M
lede1dkpq MRK-817 1D G160M
lede1dkrq MRK-817 1D G160M
lede1dktq MRK-817 1D G160M
lede1ejlq MRK-817 1E G130M
lede1ejnq MRK-817 1E G130M
lede1ejpq MRK-817 1E G130M
lede1ejrq MRK-817 1E G130M
lede1ejtq MRK-817 1E G160M
lede1ejvq MRK-817 1E G160M
lede1ejxq MRK-817 1E G160M
lede1ejzq MRK-817 1E G160M
lede1ftfq MRK-817 1F G130M
lede1fthq MRK-817 1F G130M
lede1ftjq MRK-817 1F G130M
lede1ftlq MRK-817 1F G130M
lede1ftoq MRK-817 1F G160M
lede1ftqq MRK-817 1F G160M
lede1fumq MRK-817 1F G160M
lede1fuoq MRK-817 1F G160M
lede1gaeq MRK-817 1G G130M
lede1gahq MRK-817 1G G130M
lede1gajq MRK-817 1G G130M
lede1gamq MRK-817 1G G130M
lede1gaoq MRK-817 1G G160M
lede1gaqq MRK-817 1G G160M
lede1gbiq MRK-817 1G G160M
lede1gbkq MRK-817 1G G160M
lede1hhcq MRK-817 1H G130M
lede1hheq MRK-817 1H G130M
lede1hhgq MRK-817 1H G130M
lede1hhiq MRK-817 1H G130M
lede1hhkq MRK-817 1H G160M
lede1hhmq MRK-817 1H G160M
lede1hhoq MRK-817 1H G160M
lede1hhqq MRK-817 1H G160M
lede1irbq MRK-817 1I G130M
lede1irdq MRK-817 1I G130M
lede1irfq MRK-817 1I G130M
lede1irhq MRK-817 1I G130M
lede1irjq MRK-817 1I G160M
lede1irlq MRK-817 1I G160M
lede1irnq MRK-817 1I G160M
lede1irpq MRK-817 1I G160M
lede1jayq MRK-817 1J G130M
lede1jb0q MRK-817 1J G130M
lede1jb2q MRK-817 1J G130M
lede1jb4q MRK-817 1J G130M
lede1jb6q MRK-817 1J G160M
lede1jb8q MRK-817 1J G160M
lede1jbaq MRK-817 1J G160M
lede1jbcq MRK-817 1J G160M
lede1kmqq MRK-817 1K G130M
lede1kmsq MRK-817 1K G130M
lede1kmuq MRK-817 1K G130M
lede1kmwq MRK-817 1K G130M
lede1kmyq MRK-817 1K G160M
lede1kn0q MRK-817 1K G160M
lede1kn2q MRK-817 1K G160M
lede1kn4q MRK-817 1K G160M
lede1ljoq MRK-817 1L G130M
lede1ljqq MRK-817 1L G130M
lede1ljsq MRK-817 1L G130M
lede1ljuq MRK-817 1L G130M
lede1ljwq MRK-817 1L G160M
lede1ljzq MRK-817 1L G160M
lede1lk4q MRK-817 1L G160M
lede1lk6q MRK-817 1L G160M
lede1mtsq MRK-817 1M G130M
lede1mtuq MRK-817 1M G130M
lede1mtwq MRK-817 1M G130M
lede1mu1q MRK-817 1M G130M
lede1mu3q MRK-817 1M G160M
lede1mu5q MRK-817 1M G160M
lede1mu7q MRK-817 1M G160M
lede1mu9q MRK-817 1M G160M
lede1noiq MRK-817 1N G130M
lede1nokq MRK-817 1N G130M
lede1nomq MRK-817 1N G130M
lede1nooq MRK-817 1N G130M
lede1noqq MRK-817 1N G160M
lede1nosq MRK-817 1N G160M
lede1nouq MRK-817 1N G160M
lede1nowq MRK-817 1N G160M
lede1oceq MRK-817 1O G130M
lede1ocgq MRK-817 1O G130M
lede1ociq MRK-817 1O G130M
lede1ockq MRK-817 1O G130M
lede1ocmq MRK-817 1O G160M
lede1ocoq MRK-817 1O G160M
lede1ocqq MRK-817 1O G160M
lede1ocsq MRK-817 1O G160M
lede1pkjq MRK-817 1P G130M
lede1pklq MRK-817 1P G130M
lede1pknq MRK-817 1P G130M
lede1pkpq MRK-817 1P G130M
lede1pkrq MRK-817 1P G160M
lede1pktq MRK-817 1P G160M
lede1pkvq MRK-817 1P G160M
lede1pkxq MRK-817 1P G160M
lede1qspq MRK-817 1Q G130M
lede1qsrq MRK-817 1Q G130M
lede1qstq MRK-817 1Q G130M
lede1qsvq MRK-817 1Q G130M
lede1qsxq MRK-817 1Q G160M
lede1qszq MRK-817 1Q G160M
lede1qt1q MRK-817 1Q G160M
lede1qt3q MRK-817 1Q G160M
lede1rmeq MRK-817 1R G130M
lede1rmgq MRK-817 1R G130M
lede1rmiq MRK-817 1R G130M
lede1rmkq MRK-817 1R G130M
lede1rmmq MRK-817 1R G160M
lede1rmoq MRK-817 1R G160M
lede1rmqq MRK-817 1R G160M
lede1rmsq MRK-817 1R G160M
lede1suaq MRK-817 1S G130M
lede1sucq MRK-817 1S G130M
lede1sueq MRK-817 1S G130M
lede1sugq MRK-817 1S G130M
lede1tukq MRK-817 1T G160M
lede1tumq MRK-817 1T G160M
lede1ucsq MRK-817 1U G130M
lede1ucuq MRK-817 1U G130M
lede1ucwq MRK-817 1U G130M
lede1ucyq MRK-817 1U G130M
lede1vd2q MRK-817 1V G160M
lede1vd4q MRK-817 1V G160M
lede1wsvq MRK-817 1W G130M
lede1wsxq MRK-817 1W G130M
lede1wszq MRK-817 1W G130M
lede1wt1q MRK-817 1W G130M
lede1wt3q MRK-817 1W G160M
lede1wt5q MRK-817 1W G160M
lede1wt7q MRK-817 1W G160M
lede1wt9q MRK-817 1W G160M
lede1xz3q MRK-817 1X G130M
lede1xz5q MRK-817 1X G130M
lede1xz7q MRK-817 1X G130M
lede1xzcq MRK-817 1X G130M
lede1xzeq MRK-817 1X G160M
lede1xzgq MRK-817 1X G160M
lede1xziq MRK-817 1X G160M
lede1xzkq MRK-817 1X G160M
lede1ykxq MRK-817 1Y G130M
lede1ykzq MRK-817 1Y G130M
lede1yl1q MRK-817 1Y G130M
lede1yl3q MRK-817 1Y G130M
lede1yl5q MRK-817 1Y G160M
lede1yl7q MRK-817 1Y G160M
lede1yl9q MRK-817 1Y G160M
lede1ylbq MRK-817 1Y G160M
lede1zlsq MRK-817 1Z G130M
lede1zluq MRK-817 1Z G130M
lede1zlwq MRK-817 1Z G130M
lede1zlyq MRK-817 1Z G130M
lede1zm0q MRK-817 1Z G160M
lede1zm2q MRK-817 1Z G160M
lede1zm4q MRK-817 1Z G160M
lede1zm6q MRK-817 1Z G160M
lede20alq MRK-817 20 G130M
lede20anq MRK-817 20 G130M
lede20apq MRK-817 20 G130M
lede20arq MRK-817 20 G130M
lede20atq MRK-817 20 G160M
lede20avq MRK-817 20 G160M
lede20axq MRK-817 20 G160M
lede20azq MRK-817 20 G160M
lede21keq MRK-817 21 G130M
lede21kgq MRK-817 21 G130M
lede21kiq MRK-817 21 G130M
lede21kkq MRK-817 21 G130M
lede21kmq MRK-817 21 G160M
lede21koq MRK-817 21 G160M
lede21kqq MRK-817 21 G160M
lede21ksq MRK-817 21 G160M
lede22loq MRK-817 22 G130M
lede22lqq MRK-817 22 G130M
lede22lsq MRK-817 22 G130M
lede22luq MRK-817 22 G130M
lede22lwq MRK-817 22 G160M
lede22lyq MRK-817 22 G160M
lede22m0q MRK-817 22 G160M
lede22m2q MRK-817 22 G160M
lede23upq MRK-817 23 G130M
lede23urq MRK-817 23 G130M
lede23utq MRK-817 23 G130M
lede23uvq MRK-817 23 G130M
lede23uxq MRK-817 23 G160M
lede23uzq MRK-817 23 G160M
lede23v1q MRK-817 23 G160M
lede23v3q MRK-817 23 G160M
lede24jsq MRK-817 24 G130M
lede24juq MRK-817 24 G130M
lede24jwq MRK-817 24 G130M
lede24jyq MRK-817 24 G130M
lede24k0q MRK-817 24 G160M
lede24k2q MRK-817 24 G160M
lede24k4q MRK-817 24 G160M
lede24k6q MRK-817 24 G160M
lede25rzq MRK-817 25 G130M
lede25s1q MRK-817 25 G130M
lede25s3q MRK-817 25 G130M
lede25s5q MRK-817 25 G130M
lede25s7q MRK-817 25 G160M
lede25s9q MRK-817 25 G160M
lede25sbq MRK-817 25 G160M
lede25sdq MRK-817 25 G160M
lede26k2q MRK-817 26 G130M
lede26k4q MRK-817 26 G130M
lede26k6q MRK-817 26 G130M
lede26k8q MRK-817 26 G130M
lede26kaq MRK-817 26 G160M
lede26kcq MRK-817 26 G160M
lede26keq MRK-817 26 G160M
lede26kgq MRK-817 26 G160M
lede27qjq MRK-817 27 G130M
lede27qlq MRK-817 27 G130M
lede27qnq MRK-817 27 G130M
lede27qpq MRK-817 27 G130M
lede27qrq MRK-817 27 G160M
lede27qtq MRK-817 27 G160M
lede27qvq MRK-817 27 G160M
lede27qxq MRK-817 27 G160M
lede28a5q MRK-817 28 G130M
lede28a7q MRK-817 28 G130M
lede28a9q MRK-817 28 G130M
lede28abq MRK-817 28 G130M
lede28adq MRK-817 28 G160M
lede28afq MRK-817 28 G160M
lede28ahq MRK-817 28 G160M
lede28ajq MRK-817 28 G160M
lede29hzq MRK-817 29 G130M
lede29i1q MRK-817 29 G130M
lede29i3q MRK-817 29 G130M
lede29i5q MRK-817 29 G130M
lede29i8q MRK-817 29 G160M
lede29iaq MRK-817 29 G160M
lede29icq MRK-817 29 G160M
lede29ieq MRK-817 29 G160M
lede2ataq MRK-817 2A G130M
lede2atcq MRK-817 2A G130M
lede2ateq MRK-817 2A G130M
lede2atgq MRK-817 2A G130M
lede2atiq MRK-817 2A G160M
lede2atkq MRK-817 2A G160M
lede2atmq MRK-817 2A G160M
lede2atoq MRK-817 2A G160M
lede2bb4q MRK-817 2B G130M
lede2bb6q MRK-817 2B G130M
lede2bb8q MRK-817 2B G130M
lede2bbaq MRK-817 2B G130M
lede2bbcq MRK-817 2B G160M
lede2bbhq MRK-817 2B G160M
lede2bbjq MRK-817 2B G160M
lede2bblq MRK-817 2B G160M
lede2cisq MRK-817 2C G130M
lede2ciuq MRK-817 2C G130M
lede2ciwq MRK-817 2C G130M
lede2ciyq MRK-817 2C G130M
lede2cj0q MRK-817 2C G160M
lede2cj2q MRK-817 2C G160M
lede2cj4q MRK-817 2C G160M
lede2cj6q MRK-817 2C G160M
lede2dokq MRK-817 2D G130M
lede2domq MRK-817 2D G130M
lede2dorq MRK-817 2D G130M
lede2dotq MRK-817 2D G130M
lede2dowq MRK-817 2D G160M
lede2doyq MRK-817 2D G160M
lede2dp0q MRK-817 2D G160M
lede2dp3q MRK-817 2D G160M
lede2eyeq MRK-817 2E G130M
lede2eygq MRK-817 2E G130M
lede2eyiq MRK-817 2E G130M
lede2eylq MRK-817 2E G130M
lede2eynq MRK-817 2E G160M
lede2eyqq MRK-817 2E G160M
lede2eysq MRK-817 2E G160M
lede2eyuq MRK-817 2E G160M
lede2fhvq MRK-817 2F G130M
lede2fhxq MRK-817 2F G130M
lede2fhzq MRK-817 2F G130M
lede2fi1q MRK-817 2F G130M
lede2fi3q MRK-817 2F G160M
lede2fi5q MRK-817 2F G160M
lede2fi7q MRK-817 2F G160M
lede2fi9q MRK-817 2F G160M
lede2gf0q MRK-817 2G G130M
lede2gf2q MRK-817 2G G130M
lede2gf4q MRK-817 2G G130M
lede2gf6q MRK-817 2G G130M
lede2gf8q MRK-817 2G G160M
lede2gfaq MRK-817 2G G160M
lede2gfcq MRK-817 2G G160M
lede2gfxq MRK-817 2G G160M
lede2hqxq MRK-817 2H G130M
lede2hqzq MRK-817 2H G130M
lede2hr1q MRK-817 2H G130M
lede2hr3q MRK-817 2H G130M
lede2hr5q MRK-817 2H G160M
lede2hr7q MRK-817 2H G160M
lede2hr9q MRK-817 2H G160M
lede2hrbq MRK-817 2H G160M
lede2ib3q MRK-817 2I G130M
lede2ib5q MRK-817 2I G130M
lede2ib7q MRK-817 2I G130M
lede2ib9q MRK-817 2I G130M
lede2ibbq MRK-817 2I G160M
lede2ibdq MRK-817 2I G160M
lede2ibfq MRK-817 2I G160M
lede2ibhq MRK-817 2I G160M
lede2jjoq MRK-817 2J G130M
lede2jjqq MRK-817 2J G130M
lede2jjsq MRK-817 2J G130M
lede2jjuq MRK-817 2J G130M
lede2jjwq MRK-817 2J G160M
lede2jjyq MRK-817 2J G160M
lede2jk0q MRK-817 2J G160M
lede2jk2q MRK-817 2J G160M
lede2kkaq MRK-817 2K G130M
lede2kkcq MRK-817 2K G130M
lede2kkhq MRK-817 2K G130M
lede2kkjq MRK-817 2K G130M
lede2kkmq MRK-817 2K G160M
lede2kkoq MRK-817 2K G160M
lede2kkqq MRK-817 2K G160M
lede2kktq MRK-817 2K G160M
lede2ls0q MRK-817 2L G130M
lede2ls2q MRK-817 2L G130M
lede2ls4q MRK-817 2L G130M
lede2ls6q MRK-817 2L G130M
lede2ls8q MRK-817 2L G160M
lede2lsaq MRK-817 2L G160M
lede2lscq MRK-817 2L G160M
lede2lseq MRK-817 2L G160M
lede2mauq MRK-817 2M G130M
lede2mawq MRK-817 2M G130M
lede2mayq MRK-817 2M G130M
lede2mb0q MRK-817 2M G130M
lede2mb2q MRK-817 2M G160M
lede2mb4q MRK-817 2M G160M
lede2mb6q MRK-817 2M G160M
lede2mb8q MRK-817 2M G160M
lede2nknq MRK-817 2N G130M
lede2nkqq MRK-817 2N G130M
lede2nkuq MRK-817 2N G130M
lede2nkwq MRK-817 2N G130M
lede2nkyq MRK-817 2N G160M
lede2nl3q MRK-817 2N G160M
lede2nl5q MRK-817 2N G160M
lede2nl7q MRK-817 2N G160M
lede2ogxq MRK-817 2O G130M
lede2ogzq MRK-817 2O G130M
lede2oh1q MRK-817 2O G130M
lede2oh7q MRK-817 2O G130M
lede2oh9q MRK-817 2O G160M
lede2ohbq MRK-817 2O G160M
lede2ohdq MRK-817 2O G160M
lede2ohhq MRK-817 2O G160M
lede2pu8q MRK-817 2P G130M
lede2puaq MRK-817 2P G130M
lede2pucq MRK-817 2P G130M
lede2pueq MRK-817 2P G130M
lede2pugq MRK-817 2P G160M
lede2puiq MRK-817 2P G160M
lede2pukq MRK-817 2P G160M
lede2pumq MRK-817 2P G160M
lede2qcuq MRK-817 2Q G130M
lede2qcwq MRK-817 2Q G130M
lede2qcyq MRK-817 2Q G130M
lede2qd0q MRK-817 2Q G130M
lede2qd2q MRK-817 2Q G160M
lede2qd4q MRK-817 2Q G160M
lede2qd6q MRK-817 2Q G160M
lede2qd8q MRK-817 2Q G160M
lede2rl6q MRK-817 2R G130M
lede2rl8q MRK-817 2R G130M
lede2rlaq MRK-817 2R G130M
lede2rlcq MRK-817 2R G130M
lede2rleq MRK-817 2R G160M
lede2rlgq MRK-817 2R G160M
lede2rliq MRK-817 2R G160M
lede2rlkq MRK-817 2R G160M
lede2sk1q MRK-817 2S G130M
lede2sk4q MRK-817 2S G130M
lede2sk6q MRK-817 2S G130M
lede2sk8q MRK-817 2S G130M
lede2skaq MRK-817 2S G160M
lede2skcq MRK-817 2S G160M
lede2skeq MRK-817 2S G160M
lede2skgq MRK-817 2S G160M
lede2tr7q MRK-817 2T G130M
lede2tr9q MRK-817 2T G130M
lede2trbq MRK-817 2T G130M
lede2trdq MRK-817 2T G130M
lede2trfq MRK-817 2T G160M
lede2trhq MRK-817 2T G160M
lede2trjq MRK-817 2T G160M
lede2trlq MRK-817 2T G160M
lede2ua2q MRK-817 2U G130M
lede2ua4q MRK-817 2U G160M
lede2ua6q MRK-817 2U G160M
lede2ua8q MRK-817 2U G160M
lede2uaaq MRK-817 2U G160M
lede2uzvq MRK-817 2U G130M
lede2uzxq MRK-817 2U G130M
lede2uzzq MRK-817 2U G130M
lede2yd3q MRK-817 2Y G130M
lede2yd5q MRK-817 2Y G130M
lede2yd7q MRK-817 2Y G130M
lede2yd9q MRK-817 2Y G130M
lede2ydbq MRK-817 2Y G160M
lede2yddq MRK-817 2Y G160M
lede2ydfq MRK-817 2Y G160M
lede2ydhq MRK-817 2Y G160M
lede2zo6q MRK-817 2Z G130M
lede2zo8q MRK-817 2Z G130M
lede2zoaq MRK-817 2Z G130M
lede2zocq MRK-817 2Z G130M
lede2zoeq MRK-817 2Z G160M
lede2zogq MRK-817 2Z G160M
lede2zoiq MRK-817 2Z G160M
lede2zokq MRK-817 2Z G160M
lede30sbq MRK-817 30 G130M
lede30sdq MRK-817 30 G130M
lede30sfq MRK-817 30 G130M
lede30shq MRK-817 30 G130M
lede30sjq MRK-817 30 G160M
lede30slq MRK-817 30 G160M
lede30snq MRK-817 30 G160M
lede30spq MRK-817 30 G160M
lede31d6q MRK-817 31 G130M
lede31d8q MRK-817 31 G130M
lede31daq MRK-817 31 G130M
lede31dcq MRK-817 31 G130M
lede31deq MRK-817 31 G160M
lede31dgq MRK-817 31 G160M
lede31diq MRK-817 31 G160M
lede31dkq MRK-817 31 G160M
lede32s0q MRK-817 32 G130M
lede32s2q MRK-817 32 G130M
lede32s5q MRK-817 32 G130M
lede32s7q MRK-817 32 G130M
lede32s9q MRK-817 32 G160M
lede32sbq MRK-817 32 G160M
lede32sdq MRK-817 32 G160M
lede32sfq MRK-817 32 G160M
lede33rzq MRK-817 33 G130M
lede33s2q MRK-817 33 G130M
lede33s4q MRK-817 33 G130M
lede33s7q MRK-817 33 G130M
lede33s9q MRK-817 33 G160M
lede33syq MRK-817 33 G160M
lede33t0q MRK-817 33 G160M
lede33t2q MRK-817 33 G160M
lede34lnq MRK-817 34 G130M
lede34lpq MRK-817 34 G130M
lede34lrq MRK-817 34 G130M
lede34luq MRK-817 34 G130M
lede34lwq MRK-817 34 G160M
lede34lyq MRK-817 34 G160M
lede34m0q MRK-817 34 G160M
lede34m3q MRK-817 34 G160M
lede35xrq MRK-817 35 G130M
lede35xtq MRK-817 35 G130M
lede35xvq MRK-817 35 G130M
lede35xxq MRK-817 35 G130M
lede35xzq MRK-817 35 G160M
lede35y1q MRK-817 35 G160M
lede35y3q MRK-817 35 G160M
lede35y5q MRK-817 35 G160M
lede36g0q MRK-817 36 G130M
lede36g2q MRK-817 36 G130M
lede36g4q MRK-817 36 G130M
lede36g6q MRK-817 36 G130M
lede36g8q MRK-817 36 G160M
lede36gaq MRK-817 36 G160M
lede36gcq MRK-817 36 G160M
lede36geq MRK-817 36 G160M
lede37l5q MRK-817 37 G130M
lede37l7q MRK-817 37 G130M
lede37l9q MRK-817 37 G130M
lede37lbq MRK-817 37 G130M
lede37ldq MRK-817 37 G160M
lede37lfq MRK-817 37 G160M
lede37lhq MRK-817 37 G160M
lede37ljq MRK-817 37 G160M
lede38tsq MRK-817 38 G130M
lede38tuq MRK-817 38 G130M
lede38twq MRK-817 38 G130M
lede38tyq MRK-817 38 G130M
lede38u0q MRK-817 38 G160M
lede38u2q MRK-817 38 G160M
lede38u4q MRK-817 38 G160M
lede38u6q MRK-817 38 G160M
lede39clq MRK-817 39 G130M
lede39cnq MRK-817 39 G130M
lede39cpq MRK-817 39 G130M
lede39crq MRK-817 39 G130M
lede39ctq MRK-817 39 G160M
lede39cvq MRK-817 39 G160M
lede39cxq MRK-817 39 G160M
lede39czq MRK-817 39 G160M
lede3axcq MRK-817 3A G130M
lede3axeq MRK-817 3A G130M
lede3axgq MRK-817 3A G130M
lede3axiq MRK-817 3A G130M
lede3axkq MRK-817 3A G160M
lede3axmq MRK-817 3A G160M
lede3axoq MRK-817 3A G160M
lede3axqq MRK-817 3A G160M
lede3bk0q MRK-817 3B G130M
lede3bk2q MRK-817 3B G130M
lede3bk4q MRK-817 3B G130M
lede3bk6q MRK-817 3B G130M
lede3bk8q MRK-817 3B G160M
lede3bkaq MRK-817 3B G160M
lede3bkcq MRK-817 3B G160M
lede3bkeq MRK-817 3B G160M
lede3ck6q MRK-817 3C G130M
lede3ck8q MRK-817 3C G130M
lede3ckaq MRK-817 3C G130M
lede3ckcq MRK-817 3C G130M
lede3ckeq MRK-817 3C G160M
lede3ckgq MRK-817 3C G160M
lede3ckiq MRK-817 3C G160M
lede3ckkq MRK-817 3C G160M
lede3dt1q MRK-817 3D G130M
lede3dt3q MRK-817 3D G130M
lede3dt5q MRK-817 3D G130M
lede3dt7q MRK-817 3D G130M
lede3dt9q MRK-817 3D G160M
lede3dtbq MRK-817 3D G160M
lede3dtdq MRK-817 3D G160M
lede3dtfq MRK-817 3D G160M
lede3efcq MRK-817 3E G130M
lede3efeq MRK-817 3E G130M
lede3efgq MRK-817 3E G130M
lede3efiq MRK-817 3E G130M
lede3efkq MRK-817 3E G160M
lede3efmq MRK-817 3E G160M
lede3efoq MRK-817 3E G160M
lede3efqq MRK-817 3E G160M
lede3fdhq MRK-817 3F G130M
lede3fdjq MRK-817 3F G130M
lede3fdlq MRK-817 3F G130M
lede3fdnq MRK-817 3F G130M
lede3fdpq MRK-817 3F G160M
lede3fdrq MRK-817 3F G160M
lede3fdtq MRK-817 3F G160M
lede3fe0q MRK-817 3F G160M
lede3gmjq MRK-817 3G G130M
lede3gmlq MRK-817 3G G130M
lede3gmnq MRK-817 3G G130M
lede3gmpq MRK-817 3G G130M
lede3gmrq MRK-817 3G G160M
lede3gmtq MRK-817 3G G160M
lede3gmvq MRK-817 3G G160M
lede3gmxq MRK-817 3G G160M
lede3hbeq MRK-817 3H G130M
lede3hbhq MRK-817 3H G130M
lede3hbjq MRK-817 3H G130M
lede3hblq MRK-817 3H G130M
lede3hbnq MRK-817 3H G160M
lede3hbpq MRK-817 3H G160M
lede3hbrq MRK-817 3H G160M
lede3hbtq MRK-817 3H G160M
lede3irrq MRK-817 3I G130M
lede3irtq MRK-817 3I G130M
lede3irvq MRK-817 3I G130M
lede3irxq MRK-817 3I G130M
lede3irzq MRK-817 3I G160M
lede3is1q MRK-817 3I G160M
lede3is3q MRK-817 3I G160M
lede3is6q MRK-817 3I G160M
lede3lppq MRK-817 3L G130M
lede3lprq MRK-817 3L G130M
lede3lptq MRK-817 3L G130M
lede3lpvq MRK-817 3L G130M
lede3lpxq MRK-817 3L G160M
lede3lpzq MRK-817 3L G160M
lede3lq1q MRK-817 3L G160M
lede3lq3q MRK-817 3L G160M
lede3me4q MRK-817 3M G130M
lede3me6q MRK-817 3M G130M
lede3me8q MRK-817 3M G130M
lede3meaq MRK-817 3M G130M
lede3medq MRK-817 3M G160M
lede3mefq MRK-817 3M G160M
lede3mehq MRK-817 3M G160M
lede3mejq MRK-817 3M G160M
lede3nc4q MRK-817 3N G130M
lede3nc6q MRK-817 3N G130M
lede3nc8q MRK-817 3N G130M
lede3ncaq MRK-817 3N G130M
lede3ncdq MRK-817 3N G160M
lede3ncgq MRK-817 3N G160M
lede3ncjq MRK-817 3N G160M
lede3nclq MRK-817 3N G160M
lede3ncqq MRK-817 3N G130M
lede3nctq MRK-817 3N G130M
lede3ncwq MRK-817 3N G130M
lede3nd5q MRK-817 3N G130M
lede3pr0q MRK-817 3P G130M
lede3pr2q MRK-817 3P G130M
lede3pr4q MRK-817 3P G130M
lede3pr6q MRK-817 3P G130M
lede3pr9q MRK-817 3P G160M
lede3prbq MRK-817 3P G160M
lede3prdq MRK-817 3P G160M
lede3prfq MRK-817 3P G160M
lede3qa2q MRK-817 3Q G160M
lede3qa4q MRK-817 3Q G160M
lede3qzpq MRK-817 3Q G130M
lede3qzrq MRK-817 3Q G130M
lede3qztq MRK-817 3Q G130M
lede3qzvq MRK-817 3Q G130M
lede3qzxq MRK-817 3Q G160M
lede3qzzq MRK-817 3Q G160M
lede3rh0q MRK-817 3R G130M
lede3rh2q MRK-817 3R G130M
lede3rh4q MRK-817 3R G130M
lede3rh6q MRK-817 3R G130M
lede3rh8q MRK-817 3R G160M
lede3rhaq MRK-817 3R G160M
lede3rhcq MRK-817 3R G160M
lede3rheq MRK-817 3R G160M
lede3staq MRK-817 3S G130M
lede3stcq MRK-817 3S G130M
lede3steq MRK-817 3S G130M
lede3stgq MRK-817 3S G130M
lede3stjq MRK-817 3S G160M
lede3stpq MRK-817 3S G160M
lede3strq MRK-817 3S G160M
lede3sttq MRK-817 3S G160M
lede3ua1q MRK-817 3U G130M
lede3ua3q MRK-817 3U G130M
lede3ua5q MRK-817 3U G160M
lede3ua7q MRK-817 3U G160M
lede3ua9q MRK-817 3U G160M
lede3uabq MRK-817 3U G160M
lede3uzvq MRK-817 3U G130M
lede3uzyq MRK-817 3U G130M
lede3vijq MRK-817 3V G130M
lede3vimq MRK-817 3V G130M
lede3vioq MRK-817 3V G130M
lede3viqq MRK-817 3V G130M
lede3visq MRK-817 3V G160M
lede3viuq MRK-817 3V G160M
lede3viwq MRK-817 3V G160M
lede3viyq MRK-817 3V G160M
lede3wduq MRK-817 3W G130M
lede3wdwq MRK-817 3W G130M
lede3wdyq MRK-817 3W G130M
lede3we0q MRK-817 3W G130M
lede3we2q MRK-817 3W G160M
lede3we4q MRK-817 3W G160M
lede3we6q MRK-817 3W G160M
lede3we8q MRK-817 3W G160M
lede3xjdq MRK-817 3X G130M
lede3xjfq MRK-817 3X G130M
lede3xjhq MRK-817 3X G130M
lede3xjmq MRK-817 3X G130M
lede3xjoq MRK-817 3X G160M
lede3xk9q MRK-817 3X G160M
lede3xkhq MRK-817 3X G160M
lede3xkjq MRK-817 3X G160M
lede3yq7q MRK-817 3Y G130M
lede3yq9q MRK-817 3Y G130M
lede3yqbq MRK-817 3Y G130M
lede3yqdq MRK-817 3Y G130M
lede3yqfq MRK-817 3Y G160M
lede3yqhq MRK-817 3Y G160M
lede3yqjq MRK-817 3Y G160M
lede3yqlq MRK-817 3Y G160M
lede3za1q MRK-817 3Z G130M
lede3za3q MRK-817 3Z G160M
lede3za5q MRK-817 3Z G160M
lede3za7q MRK-817 3Z G160M
lede3za9q MRK-817 3Z G160M
lede3zzuq MRK-817 3Z G130M
lede3zzwq MRK-817 3Z G130M
lede3zzyq MRK-817 3Z G130M
lede40mcq MRK-817 40 G130M
lede40meq MRK-817 40 G130M
lede40mgq MRK-817 40 G130M
lede40miq MRK-817 40 G130M
lede40mkq MRK-817 40 G160M
lede40mmq MRK-817 40 G160M
lede40moq MRK-817 40 G160M
lede40mqq MRK-817 40 G160M
lede41u9q MRK-817 41 G130M
lede41ubq MRK-817 41 G130M
lede41udq MRK-817 41 G130M
lede41ufq MRK-817 41 G130M
lede41uiq MRK-817 41 G160M
lede41ukq MRK-817 41 G160M
lede41umq MRK-817 41 G160M
lede41uoq MRK-817 41 G160M
lede42hfq MRK-817 42 G130M
lede42hhq MRK-817 42 G130M
lede42hjq MRK-817 42 G130M
lede42hlq MRK-817 42 G130M
lede42hnq MRK-817 42 G160M
lede42hpq MRK-817 42 G160M
lede42hrq MRK-817 42 G160M
lede42htq MRK-817 42 G160M
lede43p8q MRK-817 43 G130M
lede43paq MRK-817 43 G130M
lede43pcq MRK-817 43 G130M
lede43peq MRK-817 43 G130M
lede43pgq MRK-817 43 G160M
lede43piq MRK-817 43 G160M
lede43pkq MRK-817 43 G160M
lede43pmq MRK-817 43 G160M
lede44grq MRK-817 44 G130M
lede44gtq MRK-817 44 G130M
lede44gvq MRK-817 44 G130M
lede44gxq MRK-817 44 G130M
lede44gzq MRK-817 44 G160M
lede44h1q MRK-817 44 G160M
lede44h3q MRK-817 44 G160M
lede44h5q MRK-817 44 G160M
lede45q3q MRK-817 45 G130M
lede45q5q MRK-817 45 G130M
lede45q7q MRK-817 45 G130M
lede45q9q MRK-817 45 G130M
lede45qbq MRK-817 45 G160M
lede45qdq MRK-817 45 G160M
lede45qfq MRK-817 45 G160M
lede45qhq MRK-817 45 G160M
lede46ynq MRK-817 46 G130M
lede46ypq MRK-817 46 G130M
lede46yrq MRK-817 46 G130M
lede46ytq MRK-817 46 G130M
lede46yvq MRK-817 46 G160M
lede46yxq MRK-817 46 G160M
lede46yzq MRK-817 46 G160M
lede46z1q MRK-817 46 G160M
lede47b4q MRK-817 47 G130M
lede47b6q MRK-817 47 G130M
lede47b8q MRK-817 47 G130M
lede47baq MRK-817 47 G130M
lede47bcq MRK-817 47 G160M
lede47beq MRK-817 47 G160M
lede47bgq MRK-817 47 G160M
lede47biq MRK-817 47 G160M
lede48t2q MRK-817 48 G130M
lede48t4q MRK-817 48 G130M
lede48t6q MRK-817 48 G130M
lede48t8q MRK-817 48 G130M
lede48taq MRK-817 48 G160M
lede48tcq MRK-817 48 G160M
lede48teq MRK-817 48 G160M
lede48tgq MRK-817 48 G160M
lede49h4q MRK-817 49 G130M
lede49h6q MRK-817 49 G130M
lede49h8q MRK-817 49 G130M
lede49haq MRK-817 49 G130M
lede49hcq MRK-817 49 G160M
lede49heq MRK-817 49 G160M
lede49hgq MRK-817 49 G160M
lede49hiq MRK-817 49 G160M
lede4ak6q MRK-817 4A G130M
lede4ak8q MRK-817 4A G130M
lede4akaq MRK-817 4A G130M
lede4akcq MRK-817 4A G130M
lede4cehq MRK-817 4C G130M
lede4cejq MRK-817 4C G130M
lede4celq MRK-817 4C G130M
lede4cenq MRK-817 4C G130M
lede4cepq MRK-817 4C G160M
lede4cerq MRK-817 4C G160M
lede4cetq MRK-817 4C G160M
lede4cevq MRK-817 4C G160M
lede4dp5q MRK-817 4D G130M
lede4dp7q MRK-817 4D G130M
lede4dp9q MRK-817 4D G130M
lede4dpbq MRK-817 4D G130M
lede4dpdq MRK-817 4D G160M
lede4dpfq MRK-817 4D G160M
lede4dphq MRK-817 4D G160M
lede4dpjq MRK-817 4D G160M
lede4epnq MRK-817 4E G130M
lede4eppq MRK-817 4E G130M
lede4eprq MRK-817 4E G130M
lede4eptq MRK-817 4E G130M
lede50wsq MRK-817 50 G130M
lede50wuq MRK-817 50 G130M
lede50wwq MRK-817 50 G130M
lede50wyq MRK-817 50 G130M
lede50x0q MRK-817 50 G160M
lede50x2q MRK-817 50 G160M
lede50x4q MRK-817 50 G160M
lede50x6q MRK-817 50 G160M
lede51h1q MRK-817 51 G130M
lede51h3q MRK-817 51 G130M
lede51h5q MRK-817 51 G130M
lede51h7q MRK-817 51 G130M
lede51h9q MRK-817 51 G160M
lede51hbq MRK-817 51 G160M
lede51hdq MRK-817 51 G160M
lede51hfq MRK-817 51 G160M
lede52mkq MRK-817 52 G130M
lede52mmq MRK-817 52 G130M
lede52moq MRK-817 52 G130M
lede52mqq MRK-817 52 G130M
lede53mvq MRK-817 53 G160M
lede53mxq MRK-817 53 G160M
lede56a3q MRK-817 56 G130M
lede56a5q MRK-817 56 G130M
lede56a7q MRK-817 56 G130M
lede56ahq MRK-817 56 G130M
lede57azq MRK-817 57 G160M
lede57b2q MRK-817 57 G160M
lede59npq MRK-817 59 G130M
lede59nrq MRK-817 59 G130M
lede59ntq MRK-817 59 G130M
lede59nvq MRK-817 59 G130M
lede59nxq MRK-817 59 G160M
lede59nzq MRK-817 59 G160M
lede59o1q MRK-817 59 G160M
lede59o3q MRK-817 59 G160M
lede60waq MRK-817 60 G130M
lede60weq MRK-817 60 G130M
lede60wgq MRK-817 60 G130M
lede60wiq MRK-817 60 G130M
lede60wkq MRK-817 60 G160M
lede60x5q MRK-817 60 G160M
lede60x7q MRK-817 60 G160M
lede60xbq MRK-817 60 G160M
lede61dtq MRK-817 61 G130M
lede61dvq MRK-817 61 G130M
lede61dxq MRK-817 61 G130M
lede61dzq MRK-817 61 G130M
lede61e1q MRK-817 61 G160M
lede61e3q MRK-817 61 G160M
lede61e5q MRK-817 61 G160M
lede61e7q MRK-817 61 G160M
lede62maq MRK-817 62 G130M
lede62mcq MRK-817 62 G130M
lede62meq MRK-817 62 G130M
lede62mgq MRK-817 62 G130M
lede62miq MRK-817 62 G160M
lede62mkq MRK-817 62 G160M
lede62mmq MRK-817 62 G160M
lede62moq MRK-817 62 G160M
lede63x0q MRK-817 63 G130M
lede63x2q MRK-817 63 G130M
lede63x4q MRK-817 63 G130M
lede63x6q MRK-817 63 G130M
lede63x8q MRK-817 63 G160M
lede63xaq MRK-817 63 G160M
lede63xcq MRK-817 63 G160M
lede63xmq MRK-817 63 G160M
lede64imq MRK-817 64 G130M
lede64ioq MRK-817 64 G130M
lede64iqq MRK-817 64 G130M
lede64isq MRK-817 64 G130M
lede64iuq MRK-817 64 G160M
lede64iwq MRK-817 64 G160M
lede64iyq MRK-817 64 G160M
lede64j0q MRK-817 64 G160M
lede65dxq MRK-817 65 G130M
lede65dzq MRK-817 65 G130M
lede65e1q MRK-817 65 G130M
lede65e3q MRK-817 65 G130M
lede65e5q MRK-817 65 G160M
lede65e7q MRK-817 65 G160M
lede65e9q MRK-817 65 G160M
lede65ebq MRK-817 65 G160M
lede66lbq MRK-817 66 G130M
lede66ldq MRK-817 66 G130M
lede66lfq MRK-817 66 G130M
lede66lhq MRK-817 66 G130M
lede66ljq MRK-817 66 G160M
lede66llq MRK-817 66 G160M
lede66lnq MRK-817 66 G160M
lede66lpq MRK-817 66 G160M
lede67x1q MRK-817 67 G130M
lede67x3q MRK-817 67 G130M
lede67x5q MRK-817 67 G130M
lede67x7q MRK-817 67 G130M
lede67x9q MRK-817 67 G160M
lede67xbq MRK-817 67 G160M
lede67xdq MRK-817 67 G160M
lede67xfq MRK-817 67 G160M
lede68fvq MRK-817 68 G130M
lede68fxq MRK-817 68 G130M
lede68fzq MRK-817 68 G130M
lede68g1q MRK-817 68 G130M
lede68g3q MRK-817 68 G160M
lede68g5q MRK-817 68 G160M
lede68g7q MRK-817 68 G160M
lede68g9q MRK-817 68 G160M
lede69h8q MRK-817 69 G130M
lede69hbq MRK-817 69 G130M
lede69hdq MRK-817 69 G130M
lede69hfq MRK-817 69 G130M
lede69hhq MRK-817 69 G160M
lede69hjq MRK-817 69 G160M
lede69hmq MRK-817 69 G160M
lede69hoq MRK-817 69 G160M
lede70t5q MRK-817 70 G130M
lede70t7q MRK-817 70 G130M
lede70t9q MRK-817 70 G130M
lede70tbq MRK-817 70 G130M
lede70tdq MRK-817 70 G160M
lede70tfq MRK-817 70 G160M
lede70thq MRK-817 70 G160M
lede70tjq MRK-817 70 G160M
lede71bfq MRK-817 71 G130M
lede71bhq MRK-817 71 G130M
lede71bjq MRK-817 71 G130M
lede71blq MRK-817 71 G130M
lede71bnq MRK-817 71 G160M
lede71bpq MRK-817 71 G160M
lede71brq MRK-817 71 G160M
lede71btq MRK-817 71 G160M
lede72c8q MRK-817 72 G130M
lede72caq MRK-817 72 G130M
lede72ccq MRK-817 72 G130M
lede72chq MRK-817 72 G130M
lede72cjq MRK-817 72 G160M
lede72clq MRK-817 72 G160M
lede72cnq MRK-817 72 G160M
lede72cpq MRK-817 72 G160M
lede73o7q MRK-817 73 G130M
lede73o9q MRK-817 73 G130M
lede73obq MRK-817 73 G130M
lede73odq MRK-817 73 G130M
lede73ogq MRK-817 73 G160M
lede73ojq MRK-817 73 G160M
lede73olq MRK-817 73 G160M
lede73onq MRK-817 73 G160M
lede74ubq MRK-817 74 G130M
lede74udq MRK-817 74 G130M
lede74ufq MRK-817 74 G130M
lede74uhq MRK-817 74 G130M
lede74ukq MRK-817 74 G160M
lede74umq MRK-817 74 G160M
lede74uoq MRK-817 74 G160M
lede74v9q MRK-817 74 G160M
lede75c8q MRK-817 75 G130M
lede75cbq MRK-817 75 G130M
lede75cdq MRK-817 75 G130M
lede75cfq MRK-817 75 G130M
lede75chq MRK-817 75 G160M
lede75cjq MRK-817 75 G160M
lede75clq MRK-817 75 G160M
lede75cnq MRK-817 75 G160M
lede75cqq MRK-817 75 G130M
lede75csq MRK-817 75 G130M
lede75cuq MRK-817 75 G130M
lede75cwq MRK-817 75 G130M
lede77v8q MRK-817 77 G130M
lede77vaq MRK-817 77 G130M
lede77vcq MRK-817 77 G130M
lede77veq MRK-817 77 G130M
lede78vjq MRK-817 78 G160M
lede78vlq MRK-817 78 G160M
lede80n4q MRK-817 80 G130M
lede80n6q MRK-817 80 G130M
lede80n8q MRK-817 80 G130M
lede80naq MRK-817 80 G130M
lede81neq MRK-817 81 G160M
lede81ngq MRK-817 81 G160M
lede82i5q MRK-817 82 G130M
lede82i7q MRK-817 82 G130M
lede82i9q MRK-817 82 G130M
lede82ibq MRK-817 82 G130M
lede82idq MRK-817 82 G160M
lede82ifq MRK-817 82 G160M
lede83ijq MRK-817 83 G130M
lede83ilq MRK-817 83 G130M
lede83inq MRK-817 83 G130M
lede83ipq MRK-817 83 G130M
lede83irq MRK-817 83 G160M
lede83itq MRK-817 83 G160M
lede84qmq MRK-817 84 G130M
lede84qoq MRK-817 84 G130M
lede84qqq MRK-817 84 G130M
lede84qsq MRK-817 84 G130M
lede84quq MRK-817 84 G160M
lede84qwq MRK-817 84 G160M
lede84qyq MRK-817 84 G160M
lede84r0q MRK-817 84 G160M
lede85bqq MRK-817 85 G130M
lede85bsq MRK-817 85 G130M
lede85buq MRK-817 85 G130M
lede85bwq MRK-817 85 G130M
lede85byq MRK-817 85 G160M
lede85c0q MRK-817 85 G160M
lede85c2q MRK-817 85 G160M
lede85c4q MRK-817 85 G160M
lede86j0q MRK-817 86 G130M
lede86j2q MRK-817 86 G130M
lede86j4q MRK-817 86 G130M
lede86j6q MRK-817 86 G130M
lede86j8q MRK-817 86 G160M
lede86jaq MRK-817 86 G160M
lede86jcq MRK-817 86 G160M
lede86jeq MRK-817 86 G160M
lede87jcq MRK-817 87 G130M
lede87jeq MRK-817 87 G130M
lede87jgq MRK-817 87 G130M
lede87jiq MRK-817 87 G130M
lede87jkq MRK-817 87 G160M
lede87jmq MRK-817 87 G160M
lede87joq MRK-817 87 G160M
lede87jqq MRK-817 87 G160M
lede88tdq MRK-817 88 G130M
lede88tfq MRK-817 88 G130M
lede88thq MRK-817 88 G130M
lede88tjq MRK-817 88 G130M
lede88tlq MRK-817 88 G160M
lede88tnq MRK-817 88 G160M
lede88tpq MRK-817 88 G160M
lede88trq MRK-817 88 G160M
lede89bcq MRK-817 89 G130M
lede89beq MRK-817 89 G130M
lede89bgq MRK-817 89 G130M
lede89biq MRK-817 89 G130M
lede89bkq MRK-817 89 G160M
lede89bmq MRK-817 89 G160M
lede89boq MRK-817 89 G160M
lede89bqq MRK-817 89 G160M
lede90dnq MRK-817 90 G130M
lede90dpq MRK-817 90 G130M
lede90drq MRK-817 90 G130M
lede90dtq MRK-817 90 G130M
lede90dvq MRK-817 90 G160M
lede90dxq MRK-817 90 G160M
lede90dzq MRK-817 90 G160M
lede90e1q MRK-817 90 G160M
lede91p8q MRK-817 91 G130M
lede91paq MRK-817 91 G130M
lede91pcq MRK-817 91 G130M
lede91peq MRK-817 91 G130M
lede91pgq MRK-817 91 G160M
lede91piq MRK-817 91 G160M
lede91pkq MRK-817 91 G160M
lede91pmq MRK-817 91 G160M
lede92k3q MRK-817 92 G130M
lede92k5q MRK-817 92 G130M
lede92k7q MRK-817 92 G130M
lede92k9q MRK-817 92 G130M
lede92kbq MRK-817 92 G160M
lede92kdq MRK-817 92 G160M
lede92kfq MRK-817 92 G160M
lede92khq MRK-817 92 G160M
lede93stq MRK-817 93 G130M
lede93svq MRK-817 93 G130M
lede93sxq MRK-817 93 G130M
lede93szq MRK-817 93 G130M
lede93t1q MRK-817 93 G160M
lede93t3q MRK-817 93 G160M
lede93t5q MRK-817 93 G160M
lede93t7q MRK-817 93 G160M
lede94r5q MRK-817 94 G130M
lede94r7q MRK-817 94 G130M
lede94r9q MRK-817 94 G130M
lede94rbq MRK-817 94 G130M
lede95roq MRK-817 95 G160M
lede95rwq MRK-817 95 G160M
lede96e9q MRK-817 96 G130M
lede96ebq MRK-817 96 G130M
lede96edq MRK-817 96 G130M
lede96efq MRK-817 96 G130M
lede97ejq MRK-817 97 G160M
lede97elq MRK-817 97 G160M
lede99w7q MRK-817 99 G130M
lede99w9q MRK-817 99 G130M
lede99wbq MRK-817 99 G130M
lede99wdq MRK-817 99 G130M
lede99wfq MRK-817 99 G160M
lede99whq MRK-817 99 G160M
lede99wjq MRK-817 99 G160M
lede99wlq MRK-817 99 G160M
oede3o020 MRK-817 3O G750L
oede3o030 MRK-817 3O G750L
oede3o040 MRK-817 3O G750L
oede3o050 MRK-817 3O G430L
oede3o060 MRK-817 3O G430L
oede3o070 MRK-817 3O G430L
oede3o080 MRK-817 3O G140L
oede3o090 MRK-817 3O G230L
oede4b020 MRK-817 4B G750L
oede4b030 MRK-817 4B G750L
oede4b040 MRK-817 4B G750L
oede4b050 MRK-817 4B G430L
oede4b060 MRK-817 4B G430L
oede4b070 MRK-817 4B G430L
oede4b080 MRK-817 4B G140L
oede4b090 MRK-817 4B G230L
oede4f020 MRK-817 4F G750L
oede4f030 MRK-817 4F G750L
oede4f040 MRK-817 4F G750L
oede4f050 MRK-817 4F G430L
oede4f060 MRK-817 4F G430L
oede4f070 MRK-817 4F G430L
oede4f080 MRK-817 4F G140L
oede4f090 MRK-817 4F G230L
oedea5020 MRK-817 A5 G750L
oedea5030 MRK-817 A5 G750L
oedea5040 MRK-817 A5 G750L
oedea5050 MRK-817 A5 G430L
oedea5060 MRK-817 A5 G430L
oedea5070 MRK-817 A5 G430L
oedea5080 MRK-817 A5 G230L
oedea6020 MRK-817 A6 G750L
oedea6030 MRK-817 A6 G750L
oedea6040 MRK-817 A6 G750L
oedea6050 MRK-817 A6 G430L
oedea6060 MRK-817 A6 G430L
oedea6070 MRK-817 A6 G430L
oedea6080 MRK-817 A6 G230L
oedean020 MRK-817 AN G750L
oedean030 MRK-817 AN G750L
oedean040 MRK-817 AN G750L
oedean050 MRK-817 AN G430L
oedean060 MRK-817 AN G430L
oedean070 MRK-817 AN G430L
oedean080 MRK-817 AN G230L
N files from MAST = 1443

3.2 Examining Output Logs#

# Set up path to the coadd log file
logfile = './logfiles/HASP_16196.out'

with open(logfile, 'r') as f:
    for line in f:
        print(line.strip())
Program_id = EDE, Proposal_id=16196
First cut: 1547
With obsnums: 1673
with times: 1583
wht pdq_summary removed: 1583
Number removed = 0
dataset archive_class  ... member_type  exptime
0     lede01icq           CAL  ...         NaN   60.032
1     lede01ieq           CAL  ...         NaN   60.000
2     lede01igq           CAL  ...         NaN   60.000
3     lede01iiq           CAL  ...         NaN   60.032
4     lede01iqq           CAL  ...         NaN  175.040
...         ...           ...  ...         ...      ...
1578  lede3dtbq           CAL  ...         NaN  180.032
1579  lede3dt9q           CAL  ...         NaN  175.008
1580  lede81ngq           CAL  ...         NaN  307.712
1581  lede3fdrq           CAL  ...         NaN  180.000
1582  lede3fdpq           CAL  ...         NaN  175.008

[1583 rows x 10 columns]
with exclude removed: 1583
Number removed = 0
1547
File ./lede0zziq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede0zzkq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede0zzmq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede0zzoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajaq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajcq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajeq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajgq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajiq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajkq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajmq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ajoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dkfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dkhq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dkjq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dklq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dknq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dkpq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dkrq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1dktq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ftfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1fthq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ftjq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ftlq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ftoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ftqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1fumq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1fuoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1hhqq_x1d.fits removed from products because EXPFLAG = INTERRUPTED
File ./lede1jayq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jb0q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jb2q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jb4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jb6q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jb8q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jbaq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1jbcq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kmqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kmsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kmuq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kmwq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kmyq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kn0q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kn2q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1kn4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ljoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ljqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ljsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ljuq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ljwq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ljzq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1lk4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1lk6q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1rmmq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1rmoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1rmqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1rmsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xz3q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xz5q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xz7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xzcq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xzeq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xzgq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xziq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1xzkq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ykxq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ykzq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1yl1q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1yl3q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1yl5q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1yl7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1yl9q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1ylbq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zlsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zluq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zlwq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zlyq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zm0q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zm2q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zm4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede1zm6q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99w7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99w9q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99wbq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99wdq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99wfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99whq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99wjq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede99wlq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7d5q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7d7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7d9q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7dbq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7ddq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7dfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7dhq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./ledes7djq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./lede2ogxq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2ogzq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2oh1q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2oh7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2oh9q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2ohbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2ohdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2ohhq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2pu8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2puaq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2pucq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2pueq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2pugq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2puiq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2pukq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2pumq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qcuq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qcwq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qcyq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qd0q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qd2q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qd4q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qd6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2qd8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rl6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rl8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rlaq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rlcq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rleq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rlgq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rliq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2rlkq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2sk1q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2sk4q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2sk6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2sk8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2skaq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2skcq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2skeq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2skgq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2tr7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2tr9q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2trbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2trdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2trfq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2trhq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2trjq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede2trlq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cehq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cejq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4celq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cenq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cepq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cerq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cetq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4cevq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dp5q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dp7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dp9q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dpbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dpdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dpfq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dphq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./lede4dpjq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5toq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5tqq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5tsq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5tuq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5twq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5tyq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5u0q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledes5u2q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbntq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbnvq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbnxq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbnzq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbo1q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbo3q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbo5q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledesbo7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescrsq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescruq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescrwq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescryq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescs0q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescs2q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescs4q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./ledescs6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
Creating list of unique modes from these files:
./lede01icq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./lede01ieq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./lede01igq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./lede01iiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./lede01iqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./lede01isq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./lede01iuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./lede01iwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./lede02vbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./lede02vdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./lede02vfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./lede02vhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./lede02vjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./lede02vlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./lede02vnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./lede02vpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./lede03g0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./lede03g2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./lede03g4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./lede03g6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./lede03g8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./lede03gaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./lede03gcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./lede03geq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./lede04maq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./lede04mcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./lede04meq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./lede04mgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./lede04miq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./lede04mkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./lede04mmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./lede04moq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./lede05qcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./lede05qeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./lede05qgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./lede05qiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./lede05qlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./lede05r6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./lede05r8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./lede05raq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./lede06yyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./lede06z0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./lede06z2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./lede06z4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./lede06z7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./lede06z9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./lede06zbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./lede06zdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./lede07jyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./lede07k0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./lede07k2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./lede07k4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./lede07k6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./lede07k8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./lede07kaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./lede07kcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./lede08f3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./lede08f5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./lede08f7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./lede08fcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./lede08feq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./lede08fgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./lede08fiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./lede08fkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./lede09a1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./lede09a3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./lede09a5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./lede09a7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./lede09a9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./lede09abq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./lede09adq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./lede09afq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./lede0aetq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./lede0aevq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./lede0aexq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./lede0aezq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./lede0af2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./lede0af5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./lede0af7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./lede0af9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./lede0bj1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./lede0bj3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./lede0bj5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./lede0bj7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./lede0bj9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./lede0bjbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./lede0bjdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./lede0bjyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./lede0cvpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./lede0cvrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./lede0cvtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./lede0cvvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./lede0cvxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./lede0cvzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./lede0cw1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./lede0cw3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./lede0df6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./lede0df8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./lede0dfaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./lede0dfcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./lede0dfeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./lede0dfgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./lede0dfiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./lede0dfoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./lede0iknq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./lede0ikpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./lede0ikrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./lede0iktq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./lede0ikvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./lede0ikxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./lede0ikzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./lede0il1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./lede0jw1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./lede0jw3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./lede0jw5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./lede0jw7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./lede0jw9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./lede0jwbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./lede0jwdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./lede0jwfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./lede0kf5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./lede0kf7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./lede0kf9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./lede0kfbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./lede0kfeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./lede0kfgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./lede0kfiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./lede0kfkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./lede0loxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./lede0lozq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./lede0lp1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./lede0lp3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./lede0lp5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./lede0lp7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./lede0lp9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./lede0lpbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./lede0ma1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./lede0ma4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./lede0ma6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./lede0mz6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./lede0mz8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./lede0mzaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./lede0mzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./lede0mzxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./lede0njbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./lede0njeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./lede0njgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./lede0njiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./lede0njkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./lede0njmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./lede0njoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./lede0nk9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./lede0oglq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./lede0ognq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./lede0ogpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./lede0ogrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./lede0ogtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./lede0ogvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./lede0ogxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./lede0ogzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./lede0psiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./lede0pskq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./lede0psmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./lede0psoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./lede0psqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./lede0pssq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./lede0psuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./lede0pswq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./lede0qc2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./lede0qc4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./lede0qc6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./lede0qc8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./lede0qcaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./lede0qccq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./lede0qceq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./lede0qcgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./lede0ra6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./lede0ra8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./lede0rabq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./lede0ragq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./lede0raiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./lede0ranq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./lede0rapq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./lede0rarq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./lede0to1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./lede0to4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./lede0to6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./lede0tobq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./lede0togq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./lede0toiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./lede0tokq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./lede0tomq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./lede0uzeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./lede0uzhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./lede0uzjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./lede0uzoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./lede0uztq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./lede0uzvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./lede0uzxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./lede0uzzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./lede0xgrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./lede0xgtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./lede0xgvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./lede0xgyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./lede0yh2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0y')
./lede0yh4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0y')
./lede0zz2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./lede0zz4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./lede0zz6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./lede0zz8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./lede0zzaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./lede0zzcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./lede0zzeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./lede0zzgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./lede10iyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./lede10j0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./lede10j2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./lede10j4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./lede10j6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./lede10j8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./lede10jaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./lede10jcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./lede11a4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./lede11a6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./lede11a8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./lede11aaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./lede11adq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./lede11afq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./lede11ahq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./lede11ajq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./lede12lzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./lede12m1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./lede12m3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./lede12m5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./lede12m7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./lede12m9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./lede12mbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./lede12mdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./lede14jzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./lede14k1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./lede14k3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./lede14k5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./lede14k7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./lede14k9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./lede14kbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./lede14kdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./lede15ngq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./lede15niq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./lede15nkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./lede15nmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./lede15noq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./lede15nqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./lede15nsq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./lede15nuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./lede16vzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./lede16w2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./lede16w4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./lede16w6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./lede16w8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./lede16waq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./lede16wcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./lede16weq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./lede17hqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./lede17hsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./lede17huq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./lede17hwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./lede17hyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./lede17i0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./lede17i2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./lede17i4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./lede18s8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./lede18saq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./lede18scq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./lede18seq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./lede18sgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./lede18siq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./lede18skq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./lede18smq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./lede19msq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./lede19muq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./lede19mwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./lede19myq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./lede19n1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./lede19n3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./lede19n5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./lede19n7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./lede1bvgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./lede1bviq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./lede1bvkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./lede1bvmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./lede1bvoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./lede1bvqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./lede1bvsq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./lede1bvuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./lede1cf2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./lede1cf4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./lede1cf6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./lede1cf8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./lede1cfaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./lede1cfcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./lede1cfeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./lede1cfgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./lede1ejlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./lede1ejnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./lede1ejpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./lede1ejrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./lede1ejtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./lede1ejvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./lede1ejxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./lede1ejzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./lede1gaeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./lede1gahq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./lede1gajq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./lede1gamq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./lede1gaoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./lede1gaqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./lede1gbiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./lede1gbkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./lede1hhcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./lede1hheq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./lede1hhgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./lede1hhiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./lede1hhkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1h')
./lede1hhmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1h')
./lede1hhoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1h')
./lede1irbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./lede1irdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./lede1irfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./lede1irhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./lede1irjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./lede1irlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./lede1irnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./lede1irpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./lede1mtsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./lede1mtuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./lede1mtwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./lede1mu1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./lede1mu3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./lede1mu5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./lede1mu7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./lede1mu9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./lede1noiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./lede1nokq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./lede1nomq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./lede1nooq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./lede1noqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./lede1nosq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./lede1nouq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./lede1nowq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./lede1oceq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./lede1ocgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./lede1ociq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./lede1ockq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./lede1ocmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./lede1ocoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./lede1ocqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./lede1ocsq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./lede1pkjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./lede1pklq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./lede1pknq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./lede1pkpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./lede1pkrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./lede1pktq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./lede1pkvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./lede1pkxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./lede1qspq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./lede1qsrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./lede1qstq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./lede1qsvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./lede1qsxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./lede1qszq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./lede1qt1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./lede1qt3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./lede1rmeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./lede1rmgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./lede1rmiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./lede1rmkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./lede1suaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./lede1sucq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./lede1sueq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./lede1sugq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./lede1tukq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1t')
./lede1tumq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1t')
./lede1ucsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./lede1ucuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./lede1ucwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./lede1ucyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./lede1vd2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1v')
./lede1vd4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1v')
./lede1wsvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./lede1wsxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./lede1wszq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./lede1wt1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./lede1wt3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./lede1wt5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./lede1wt7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./lede1wt9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./lede20alq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./lede20anq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./lede20apq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./lede20arq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./lede20atq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./lede20avq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./lede20axq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./lede20azq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./lede21keq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./lede21kgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./lede21kiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./lede21kkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./lede21kmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./lede21koq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./lede21kqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./lede21ksq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./lede22loq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./lede22lqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./lede22lsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./lede22luq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./lede22lwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./lede22lyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./lede22m0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./lede22m2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./lede23upq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./lede23urq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./lede23utq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./lede23uvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./lede23uxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./lede23uzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./lede23v1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./lede23v3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./lede24jsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./lede24juq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./lede24jwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./lede24jyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./lede24k0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./lede24k2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./lede24k4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./lede24k6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./lede25rzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./lede25s1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./lede25s3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./lede25s5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./lede25s7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./lede25s9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./lede25sbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./lede25sdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./lede26k2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./lede26k4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./lede26k6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./lede26k8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./lede26kaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./lede26kcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./lede26keq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./lede26kgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./lede27qjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./lede27qlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./lede27qnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./lede27qpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./lede27qrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./lede27qtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./lede27qvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./lede27qxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./lede28a5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./lede28a7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./lede28a9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./lede28abq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./lede28adq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./lede28afq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./lede28ahq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./lede28ajq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./lede29hzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./lede29i1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./lede29i3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./lede29i5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./lede29i8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./lede29iaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./lede29icq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./lede29ieq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./lede2ataq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./lede2atcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./lede2ateq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./lede2atgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./lede2atiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./lede2atkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./lede2atmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./lede2atoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./lede2bb4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./lede2bb6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./lede2bb8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./lede2bbaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./lede2bbcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./lede2bbhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./lede2bbjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./lede2bblq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./lede2cisq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./lede2ciuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./lede2ciwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./lede2ciyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./lede2cj0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./lede2cj2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./lede2cj4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./lede2cj6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./lede2dokq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./lede2domq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./lede2dorq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./lede2dotq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./lede2dowq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./lede2doyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./lede2dp0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./lede2dp3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./lede2eyeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./lede2eygq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./lede2eyiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./lede2eylq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./lede2eynq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./lede2eyqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./lede2eysq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./lede2eyuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./lede2fhvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./lede2fhxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./lede2fhzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./lede2fi1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./lede2fi3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./lede2fi5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./lede2fi7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./lede2fi9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./lede2gf0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./lede2gf2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./lede2gf4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./lede2gf6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./lede2gf8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./lede2gfaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./lede2gfcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./lede2gfxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./lede2hqxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./lede2hqzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./lede2hr1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./lede2hr3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./lede2hr5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./lede2hr7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./lede2hr9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./lede2hrbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./lede2ib3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./lede2ib5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./lede2ib7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./lede2ib9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./lede2ibbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./lede2ibdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./lede2ibfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./lede2ibhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./lede2jjoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./lede2jjqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./lede2jjsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./lede2jjuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./lede2jjwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./lede2jjyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./lede2jk0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./lede2jk2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./lede2kkaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./lede2kkcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./lede2kkhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./lede2kkjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./lede2kkmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./lede2kkoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./lede2kkqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./lede2kktq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./lede2ls0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./lede2ls2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./lede2ls4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./lede2ls6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./lede2ls8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./lede2lsaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./lede2lscq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./lede2lseq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./lede2mauq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./lede2mawq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./lede2mayq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./lede2mb0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./lede2mb2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./lede2mb4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./lede2mb6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./lede2mb8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./lede2nknq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./lede2nkqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./lede2nkuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./lede2nkwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./lede2nkyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./lede2nl3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./lede2nl5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./lede2nl7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./lede2ua2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./lede2ua4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./lede2ua6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./lede2ua8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./lede2uaaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./lede2uzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./lede2uzxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./lede2uzzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./lede2yd3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./lede2yd5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./lede2yd7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./lede2yd9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./lede2ydbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./lede2yddq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./lede2ydfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./lede2ydhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./lede2zo6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./lede2zo8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./lede2zoaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./lede2zocq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./lede2zoeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./lede2zogq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./lede2zoiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./lede2zokq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./lede30sbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./lede30sdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./lede30sfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./lede30shq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./lede30sjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./lede30slq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./lede30snq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./lede30spq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./lede31d6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./lede31d8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./lede31daq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./lede31dcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./lede31deq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./lede31dgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./lede31diq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./lede31dkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./lede32s0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./lede32s2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./lede32s5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./lede32s7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./lede32s9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./lede32sbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./lede32sdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./lede32sfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./lede33rzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./lede33s2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./lede33s4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./lede33s7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./lede33s9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./lede33syq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./lede33t0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./lede33t2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./lede34lnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./lede34lpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./lede34lrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./lede34luq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./lede34lwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./lede34lyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./lede34m0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./lede34m3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./lede35xrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./lede35xtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./lede35xvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./lede35xxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./lede35xzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./lede35y1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./lede35y3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./lede35y5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./lede36g0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./lede36g2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./lede36g4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./lede36g6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./lede36g8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./lede36gaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./lede36gcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./lede36geq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./lede37l5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./lede37l7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./lede37l9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./lede37lbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./lede37ldq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./lede37lfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./lede37lhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./lede37ljq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./lede38tsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./lede38tuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./lede38twq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./lede38tyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./lede38u0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./lede38u2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./lede38u4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./lede38u6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./lede39clq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./lede39cnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./lede39cpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./lede39crq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./lede39ctq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./lede39cvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./lede39cxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./lede39czq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./lede3axcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./lede3axeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./lede3axgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./lede3axiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./lede3axkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./lede3axmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./lede3axoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./lede3axqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./lede3bk0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./lede3bk2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./lede3bk4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./lede3bk6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./lede3bk8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./lede3bkaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./lede3bkcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./lede3bkeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./lede3ck6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./lede3ck8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./lede3ckaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./lede3ckcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./lede3ckeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./lede3ckgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./lede3ckiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./lede3ckkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./lede3dt1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./lede3dt3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./lede3dt5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./lede3dt7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./lede3dt9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./lede3dtbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./lede3dtdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./lede3dtfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./lede3efcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./lede3efeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./lede3efgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./lede3efiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./lede3efkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./lede3efmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./lede3efoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./lede3efqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./lede3fdhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./lede3fdjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./lede3fdlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./lede3fdnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./lede3fdpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./lede3fdrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./lede3fdtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./lede3fe0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./lede3gmjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./lede3gmlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./lede3gmnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./lede3gmpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./lede3gmrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./lede3gmtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./lede3gmvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./lede3gmxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./lede3hbeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./lede3hbhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./lede3hbjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./lede3hblq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./lede3hbnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./lede3hbpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./lede3hbrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./lede3hbtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./lede3irrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./lede3irtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./lede3irvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./lede3irxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./lede3irzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./lede3is1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./lede3is3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./lede3is6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./lede3lppq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./lede3lprq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./lede3lptq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./lede3lpvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./lede3lpxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./lede3lpzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./lede3lq1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./lede3lq3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./lede3me4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./lede3me6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./lede3me8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./lede3meaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./lede3medq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./lede3mefq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./lede3mehq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./lede3mejq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./lede3nc4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3nc6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3nc8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3ncaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3ncdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./lede3ncgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./lede3ncjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./lede3nclq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./lede3ncqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3nctq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3ncwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3nd5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./lede3pr0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./lede3pr2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./lede3pr4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./lede3pr6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./lede3pr9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./lede3prbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./lede3prdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./lede3prfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./lede3qa2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./lede3qa4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./lede3qzpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./lede3qzrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./lede3qztq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./lede3qzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./lede3qzxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./lede3qzzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./lede3rh0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./lede3rh2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./lede3rh4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./lede3rh6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./lede3rh8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./lede3rhaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./lede3rhcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./lede3rheq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./lede3staq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./lede3stcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./lede3steq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./lede3stgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./lede3stjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./lede3stpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./lede3strq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./lede3sttq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./lede3ua1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./lede3ua3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./lede3ua5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./lede3ua7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./lede3ua9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./lede3uabq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./lede3uzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./lede3uzyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./lede3vijq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./lede3vimq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./lede3vioq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./lede3viqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./lede3visq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./lede3viuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./lede3viwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./lede3viyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./lede3wduq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./lede3wdwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./lede3wdyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./lede3we0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./lede3we2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./lede3we4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./lede3we6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./lede3we8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./lede3xjdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./lede3xjfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./lede3xjhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./lede3xjmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./lede3xjoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./lede3xk9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./lede3xkhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./lede3xkjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./lede3yq7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./lede3yq9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./lede3yqbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./lede3yqdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./lede3yqfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./lede3yqhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./lede3yqjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./lede3yqlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./lede3za1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./lede3za3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./lede3za5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./lede3za7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./lede3za9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./lede3zzuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./lede3zzwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./lede3zzyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./lede40mcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./lede40meq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./lede40mgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./lede40miq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./lede40mkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./lede40mmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./lede40moq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./lede40mqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./lede41u9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./lede41ubq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./lede41udq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./lede41ufq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./lede41uiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./lede41ukq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./lede41umq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./lede41uoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./lede42hfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./lede42hhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./lede42hjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./lede42hlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./lede42hnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./lede42hpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./lede42hrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./lede42htq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./lede43p8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./lede43paq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./lede43pcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./lede43peq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./lede43pgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./lede43piq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./lede43pkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./lede43pmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./lede44grq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./lede44gtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./lede44gvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./lede44gxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./lede44gzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./lede44h1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./lede44h3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./lede44h5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./lede45q3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./lede45q5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./lede45q7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./lede45q9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./lede45qbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./lede45qdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./lede45qfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./lede45qhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./lede46ynq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./lede46ypq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./lede46yrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./lede46ytq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./lede46yvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./lede46yxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./lede46yzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./lede46z1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./lede47b4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./lede47b6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./lede47b8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./lede47baq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./lede47bcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./lede47beq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./lede47bgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./lede47biq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./lede48t2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./lede48t4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./lede48t6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./lede48t8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./lede48taq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./lede48tcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./lede48teq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./lede48tgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./lede49h4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./lede49h6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./lede49h8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./lede49haq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./lede49hcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./lede49heq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./lede49hgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./lede49hiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./lede4ak6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./lede4ak8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./lede4akaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./lede4akcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./lede4epnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./lede4eppq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./lede4eprq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./lede4eptq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./lede50wsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./lede50wuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./lede50wwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./lede50wyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./lede50x0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./lede50x2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./lede50x4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./lede50x6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./lede51h1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./lede51h3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./lede51h5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./lede51h7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./lede51h9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./lede51hbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./lede51hdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./lede51hfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./lede52mkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./lede52mmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./lede52moq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./lede52mqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./lede53mvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '53')
./lede53mxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '53')
./lede56a3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./lede56a5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./lede56a7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./lede56ahq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./lede57azq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '57')
./lede57b2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '57')
./lede59npq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./lede59nrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./lede59ntq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./lede59nvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./lede59nxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./lede59nzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./lede59o1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./lede59o3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./lede60waq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./lede60weq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./lede60wgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./lede60wiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./lede60wkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./lede60x5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./lede60x7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./lede60xbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./lede61dtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./lede61dvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./lede61dxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./lede61dzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./lede61e1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./lede61e3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./lede61e5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./lede61e7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./lede62maq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./lede62mcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./lede62meq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./lede62mgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./lede62miq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./lede62mkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./lede62mmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./lede62moq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./lede63x0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./lede63x2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./lede63x4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./lede63x6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./lede63x8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./lede63xaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./lede63xcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./lede63xmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./lede64imq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./lede64ioq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./lede64iqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./lede64isq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./lede64iuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./lede64iwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./lede64iyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./lede64j0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./lede65dxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./lede65dzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./lede65e1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./lede65e3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./lede65e5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./lede65e7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./lede65e9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./lede65ebq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./lede66lbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./lede66ldq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./lede66lfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./lede66lhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./lede66ljq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./lede66llq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./lede66lnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./lede66lpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./lede67x1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./lede67x3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./lede67x5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./lede67x7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./lede67x9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./lede67xbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./lede67xdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./lede67xfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./lede68fvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./lede68fxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./lede68fzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./lede68g1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./lede68g3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./lede68g5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./lede68g7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./lede68g9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./lede69h8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./lede69hbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./lede69hdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./lede69hfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./lede69hhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./lede69hjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./lede69hmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./lede69hoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./lede70t5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./lede70t7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./lede70t9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./lede70tbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./lede70tdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./lede70tfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./lede70thq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./lede70tjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./lede71bfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./lede71bhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./lede71bjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./lede71blq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./lede71bnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./lede71bpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./lede71brq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./lede71btq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./lede72c8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./lede72caq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./lede72ccq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./lede72chq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./lede72cjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./lede72clq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./lede72cnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./lede72cpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./lede73o7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./lede73o9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./lede73obq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./lede73odq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./lede73ogq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./lede73ojq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./lede73olq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./lede73onq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./lede74ubq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./lede74udq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./lede74ufq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./lede74uhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./lede74ukq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./lede74umq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./lede74uoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./lede74v9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./lede75c8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75cbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75cdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75cfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75chq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./lede75cjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./lede75clq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./lede75cnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./lede75cqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75csq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75cuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede75cwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./lede77v8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./lede77vaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./lede77vcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./lede77veq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./lede78vjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '78')
./lede78vlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '78')
./lede80n4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./lede80n6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./lede80n8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./lede80naq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./lede81neq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '81')
./lede81ngq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '81')
./lede82i5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./lede82i7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./lede82i9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./lede82ibq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./lede82idq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '82')
./lede82ifq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '82')
./lede83ijq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./lede83ilq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./lede83inq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./lede83ipq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./lede83irq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '83')
./lede83itq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '83')
./lede84qmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./lede84qoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./lede84qqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./lede84qsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./lede84quq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./lede84qwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./lede84qyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./lede84r0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./lede85bqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./lede85bsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./lede85buq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./lede85bwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./lede85byq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./lede85c0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./lede85c2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./lede85c4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./lede86j0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./lede86j2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./lede86j4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./lede86j6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./lede86j8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./lede86jaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./lede86jcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./lede86jeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./lede87jcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./lede87jeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./lede87jgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./lede87jiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./lede87jkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./lede87jmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./lede87joq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./lede87jqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./lede88tdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./lede88tfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./lede88thq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./lede88tjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./lede88tlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./lede88tnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./lede88tpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./lede88trq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./lede89bcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./lede89beq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./lede89bgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./lede89biq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./lede89bkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./lede89bmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./lede89boq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./lede89bqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./lede90dnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./lede90dpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./lede90drq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./lede90dtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./lede90dvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./lede90dxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./lede90dzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./lede90e1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./lede91p8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./lede91paq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./lede91pcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./lede91peq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./lede91pgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./lede91piq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./lede91pkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./lede91pmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./lede92k3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./lede92k5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./lede92k7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./lede92k9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./lede92kbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./lede92kdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./lede92kfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./lede92khq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./lede93stq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./lede93svq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./lede93sxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./lede93szq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./lede93t1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./lede93t3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./lede93t5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./lede93t7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./lede94r5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./lede94r7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./lede94r9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./lede94rbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./lede95roq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '95')
./lede95rwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '95')
./lede96e9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./lede96ebq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./lede96edq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./lede96efq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./lede97ejq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '97')
./lede97elq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '97')
./ledes1vuq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's1')
./ledes1vwq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's1')
./ledes1vyq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's1')
./ledes1w0q_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's1')
./ledes1w2q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's1')
./ledes1w4q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's1')
./ledes1w6q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's1')
./ledes1w8q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's1')
./ledes2epq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's2')
./ledes2erq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's2')
./ledes2etq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's2')
./ledes2evq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's2')
./ledes2f5q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's2')
./ledes2f7q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's2')
./ledes2f9q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's2')
./ledes2fbq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's2')
./ledes3fhq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's3')
./ledes3fjq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's3')
./ledes3flq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's3')
./ledes3fnq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's3')
./ledes3fpq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's3')
./ledes3fsq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's3')
./ledes3fuq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's3')
./ledes3fwq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's3')
./ledes4egq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's4')
./ledes4eiq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's4')
./ledes4ekq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's4')
./ledes4emq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's4')
./ledes4eoq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's4')
./ledes4eqq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's4')
./ledes4esq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's4')
./ledes4euq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's4')
./ledes6f7q_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's6')
./ledes6f9q_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's6')
./ledes6fbq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's6')
./ledes6fdq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's6')
./ledes6ffq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's6')
./ledes6fhq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's6')
./ledes6fjq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's6')
./ledes6flq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's6')
./ledes9hdq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's9')
./ledes9hgq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's9')
./ledes9hiq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's9')
./ledes9hkq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 's9')
./ledes9htq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's9')
./ledes9hwq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's9')
./ledes9hyq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's9')
./ledes9i0q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 's9')
./ledesapwq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sa')
./ledesapyq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sa')
./ledesaq0q_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sa')
./ledesaq6q_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sa')
./ledesaq8q_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sa')
./ledesaqtq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sa')
./ledesaqvq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sa')
./ledesaqxq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sa')
./ledesdniq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sd')
./ledesdnkq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sd')
./ledesdnmq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sd')
./ledesdnoq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'sd')
./ledesdnqq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sd')
./ledesdnsq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sd')
./ledesdnuq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sd')
./ledesdnwq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'sd')
./ledesex9q_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'se')
./ledesexbq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'se')
./ledesexdq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'se')
./ledesexfq_x1d.fits WD0308-565 COS FUV G130M PSA 16196 (16196, 'se')
./ledesexhq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'se')
./ledesexjq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'se')
./ledesexwq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'se')
./ledesexyq_x1d.fits WD0308-565 COS FUV G160M PSA 16196 (16196, 'se')
./oede3o020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '3o')
./oede3o030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '3o')
./oede3o040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '3o')
./oede3o050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '3o')
./oede3o060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '3o')
./oede3o070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '3o')
./oede3o080_x1d.fits MRK-817 STIS FUV-MAMA G140L 52X0.2 16196 (16196, '3o')
./oede3o090_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, '3o')
./oede4b020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4b')
./oede4b030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4b')
./oede4b040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4b')
./oede4b050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4b')
./oede4b060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4b')
./oede4b070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4b')
./oede4b080_x1d.fits MRK-817 STIS FUV-MAMA G140L 52X0.2 16196 (16196, '4b')
./oede4b090_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, '4b')
./oede4f020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4f')
./oede4f030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4f')
./oede4f040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4f')
./oede4f050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4f')
./oede4f060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4f')
./oede4f070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4f')
./oede4f080_x1d.fits MRK-817 STIS FUV-MAMA G140L 52X0.2 16196 (16196, '4f')
./oede4f090_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, '4f')
./oedea5020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a5')
./oedea5030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a5')
./oedea5040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a5')
./oedea5050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a5')
./oedea5060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a5')
./oedea5070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a5')
./oedea5080_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, 'a5')
./oedea6020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a6')
./oedea6030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a6')
./oedea6040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a6')
./oedea6050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a6')
./oedea6060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a6')
./oedea6070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a6')
./oedea6080_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, 'a6')
./oedean020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'an')
./oedean030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'an')
./oedean040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'an')
./oedean050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'an')
./oedean060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'an')
./oedean070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'an')
./oedean080_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, 'an')
Looping over visits
Processing product (16196, '01')
Targets in visit (16196, '01'): ['MRK-817']
Processing target MRK-817 in visit (16196, '01')
Processing grating COS/G130M
Importing files ['./lede01icq_x1d.fits', './lede01ieq_x1d.fits', './lede01igq_x1d.fits', './lede01iiq_x1d.fits']
Processing file ./lede01icq_x1d.fits
Processing file ./lede01ieq_x1d.fits
Processing file ./lede01igq_x1d.fits
Processing file ./lede01iiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede01_cspec.fits
Processing grating COS/G160M
Importing files ['./lede01iqq_x1d.fits', './lede01isq_x1d.fits', './lede01iuq_x1d.fits', './lede01iwq_x1d.fits']
Processing file ./lede01iqq_x1d.fits
Processing file ./lede01isq_x1d.fits
Processing file ./lede01iuq_x1d.fits
Processing file ./lede01iwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede01_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.326905690119
Truncating current grating at 1747.893994864158
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede01_cspec.fits
Processing product (16196, '02')
Targets in visit (16196, '02'): ['MRK-817']
Processing target MRK-817 in visit (16196, '02')
Processing grating COS/G130M
Importing files ['./lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits']
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede02_cspec.fits
Processing grating COS/G160M
Importing files ['./lede02vjq_x1d.fits', './lede02vlq_x1d.fits', './lede02vnq_x1d.fits', './lede02vpq_x1d.fits']
Processing file ./lede02vjq_x1d.fits
Processing file ./lede02vlq_x1d.fits
Processing file ./lede02vnq_x1d.fits
Processing file ./lede02vpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede02_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2274253744195
Truncating current grating at 1747.8819450777246
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede02_cspec.fits
Processing product (16196, '03')
Targets in visit (16196, '03'): ['MRK-817']
Processing target MRK-817 in visit (16196, '03')
Processing grating COS/G130M
Importing files ['./lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits']
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede03_cspec.fits
Processing grating COS/G160M
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede03_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2275769071362
Truncating current grating at 1747.9678824552072
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede03_cspec.fits
Processing product (16196, '04')
Targets in visit (16196, '04'): ['MRK-817']
Processing target MRK-817 in visit (16196, '04')
Processing grating COS/G130M
Importing files ['./lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits']
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede04_cspec.fits
Processing grating COS/G160M
Importing files ['./lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits']
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede04_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.4)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3771240606993
Truncating current grating at 1747.9190324722601
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede04_cspec.fits
Processing product (16196, '05')
Targets in visit (16196, '05'): ['MRK-817']
Processing target MRK-817 in visit (16196, '05')
Processing grating COS/G130M
Importing files ['./lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits']
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede05_cspec.fits
Processing grating COS/G160M
Importing files ['./lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits']
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede05_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.5-1367.4)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.417127026532
Truncating current grating at 1747.882496538914
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede05_cspec.fits
Processing product (16196, '06')
Targets in visit (16196, '06'): ['MRK-817']
Processing target MRK-817 in visit (16196, '06')
Processing grating COS/G130M
Importing files ['./lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits']
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede06_cspec.fits
Processing grating COS/G160M
Importing files ['./lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits']
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede06_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2179271413936
Truncating current grating at 1747.931562721271
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede06_cspec.fits
Processing product (16196, '07')
Targets in visit (16196, '07'): ['MRK-817']
Processing target MRK-817 in visit (16196, '07')
Processing grating COS/G130M
Importing files ['./lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits']
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede07_cspec.fits
Processing grating COS/G160M
Importing files ['./lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits']
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede07_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.4-1367.4)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3674529863483
Truncating current grating at 1747.8336941074513
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede07_cspec.fits
Processing product (16196, '08')
Targets in visit (16196, '08'): ['MRK-817']
Processing target MRK-817 in visit (16196, '08')
Processing grating COS/G130M
Importing files ['./lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits']
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede08_cspec.fits
Processing grating COS/G160M
Importing files ['./lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits']
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede08_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2579327310818
Truncating current grating at 1747.8827802718752
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede08_cspec.fits
Processing product (16196, '09')
Targets in visit (16196, '09'): ['MRK-817']
Processing target MRK-817 in visit (16196, '09')
Processing grating COS/G130M
Importing files ['./lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits']
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede09_cspec.fits
Processing grating COS/G160M
Importing files ['./lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits']
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede09_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2579894554744
Truncating current grating at 1747.8828567578967
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede09_cspec.fits
Processing product (16196, '0a')
Targets in visit (16196, '0a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0a')
Processing grating COS/G130M
Importing files ['./lede0aetq_x1d.fits', './lede0aevq_x1d.fits', './lede0aexq_x1d.fits', './lede0aezq_x1d.fits']
Processing file ./lede0aetq_x1d.fits
Processing file ./lede0aevq_x1d.fits
Processing file ./lede0aexq_x1d.fits
Processing file ./lede0aezq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0a_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0af2q_x1d.fits', './lede0af5q_x1d.fits', './lede0af7q_x1d.fits', './lede0af9q_x1d.fits']
Processing file ./lede0af2q_x1d.fits
Processing file ./lede0af5q_x1d.fits
Processing file ./lede0af7q_x1d.fits
Processing file ./lede0af9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0a_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3130430937558
Truncating current grating at 1747.6823166955037
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0a_cspec.fits
Processing product (16196, '0b')
Targets in visit (16196, '0b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0b')
Processing grating COS/G130M
Importing files ['./lede0bj1q_x1d.fits', './lede0bj3q_x1d.fits', './lede0bj5q_x1d.fits', './lede0bj7q_x1d.fits']
Processing file ./lede0bj1q_x1d.fits
Processing file ./lede0bj3q_x1d.fits
Processing file ./lede0bj5q_x1d.fits
Processing file ./lede0bj7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0b_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0bj9q_x1d.fits', './lede0bjbq_x1d.fits', './lede0bjdq_x1d.fits', './lede0bjyq_x1d.fits']
Processing file ./lede0bj9q_x1d.fits
Processing file ./lede0bjbq_x1d.fits
Processing file ./lede0bjdq_x1d.fits
Processing file ./lede0bjyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.243265327722
Truncating current grating at 1747.7189978695003
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0b_cspec.fits
Processing product (16196, '0c')
Targets in visit (16196, '0c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0c')
Processing grating COS/G130M
Importing files ['./lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits']
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0c_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0cvxq_x1d.fits', './lede0cvzq_x1d.fits', './lede0cw1q_x1d.fits', './lede0cw3q_x1d.fits']
Processing file ./lede0cvxq_x1d.fits
Processing file ./lede0cvzq_x1d.fits
Processing file ./lede0cw1q_x1d.fits
Processing file ./lede0cw3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2830621654111
Truncating current grating at 1747.7189283065552
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0c_cspec.fits
Processing product (16196, '0d')
Targets in visit (16196, '0d'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0d')
Processing grating COS/G130M
Importing files ['./lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits']
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0d_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits']
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0d_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.153534716562
Truncating current grating at 1747.7189009804765
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0d_cspec.fits
Processing product (16196, '0i')
Targets in visit (16196, '0i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0i')
Processing grating COS/G130M
Importing files ['./lede0iknq_x1d.fits', './lede0ikpq_x1d.fits', './lede0ikrq_x1d.fits', './lede0iktq_x1d.fits']
Processing file ./lede0iknq_x1d.fits
Processing file ./lede0ikpq_x1d.fits
Processing file ./lede0ikrq_x1d.fits
Processing file ./lede0iktq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0i_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0ikvq_x1d.fits', './lede0ikxq_x1d.fits', './lede0ikzq_x1d.fits', './lede0il1q_x1d.fits']
Processing file ./lede0ikvq_x1d.fits
Processing file ./lede0ikxq_x1d.fits
Processing file ./lede0ikzq_x1d.fits
Processing file ./lede0il1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.9)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.949131349409
Truncating current grating at 1747.9563298335283
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0i_cspec.fits
Processing product (16196, '0j')
Targets in visit (16196, '0j'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0j')
Processing grating COS/G130M
Importing files ['./lede0jw1q_x1d.fits', './lede0jw3q_x1d.fits', './lede0jw5q_x1d.fits', './lede0jw7q_x1d.fits']
Processing file ./lede0jw1q_x1d.fits
Processing file ./lede0jw3q_x1d.fits
Processing file ./lede0jw5q_x1d.fits
Processing file ./lede0jw7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0j_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0jw9q_x1d.fits', './lede0jwbq_x1d.fits', './lede0jwdq_x1d.fits', './lede0jwfq_x1d.fits']
Processing file ./lede0jw9q_x1d.fits
Processing file ./lede0jwbq_x1d.fits
Processing file ./lede0jwdq_x1d.fits
Processing file ./lede0jwfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0j_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.7)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.7299868866985
Truncating current grating at 1747.944135095638
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0j_cspec.fits
Processing product (16196, '0k')
Targets in visit (16196, '0k'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0k')
Processing grating COS/G130M
Importing files ['./lede0kf5q_x1d.fits', './lede0kf7q_x1d.fits', './lede0kf9q_x1d.fits', './lede0kfbq_x1d.fits']
Processing file ./lede0kf5q_x1d.fits
Processing file ./lede0kf7q_x1d.fits
Processing file ./lede0kf9q_x1d.fits
Processing file ./lede0kfbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0k_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0kfeq_x1d.fits', './lede0kfgq_x1d.fits', './lede0kfiq_x1d.fits', './lede0kfkq_x1d.fits']
Processing file ./lede0kfeq_x1d.fits
Processing file ./lede0kfgq_x1d.fits
Processing file ./lede0kfiq_x1d.fits
Processing file ./lede0kfkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0k_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1366.8)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8196776207672
Truncating current grating at 1747.9319209806872
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0k_cspec.fits
Processing product (16196, '0l')
Targets in visit (16196, '0l'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0l')
Processing grating COS/G130M
Importing files ['./lede0loxq_x1d.fits', './lede0lozq_x1d.fits', './lede0lp1q_x1d.fits', './lede0lp3q_x1d.fits']
Processing file ./lede0loxq_x1d.fits
Processing file ./lede0lozq_x1d.fits
Processing file ./lede0lp1q_x1d.fits
Processing file ./lede0lp3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0l_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0lp5q_x1d.fits', './lede0lp7q_x1d.fits', './lede0lp9q_x1d.fits', './lede0lpbq_x1d.fits']
Processing file ./lede0lp5q_x1d.fits
Processing file ./lede0lp7q_x1d.fits
Processing file ./lede0lp9q_x1d.fits
Processing file ./lede0lpbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0l_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9392420144077
Truncating current grating at 1747.9074390952806
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0l_cspec.fits
Processing product (16196, '0m')
Targets in visit (16196, '0m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0m')
Processing grating COS/G160M
Importing files ['./lede0ma1q_x1d.fits', './lede0ma4q_x1d.fits', './lede0ma6q_x1d.fits', './lede0mzxq_x1d.fits']
Processing file ./lede0ma1q_x1d.fits
Processing file ./lede0ma4q_x1d.fits
Processing file ./lede0ma6q_x1d.fits
Processing file ./lede0mzxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0m_cspec.fits
Processing grating COS/G130M
Importing files ['./lede0mz6q_x1d.fits', './lede0mz8q_x1d.fits', './lede0mzaq_x1d.fits', './lede0mzvq_x1d.fits']
Processing file ./lede0mz6q_x1d.fits
Processing file ./lede0mz8q_x1d.fits
Processing file ./lede0mzaq_x1d.fits
Processing file ./lede0mzvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1345.9-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.839611497799
Truncating current grating at 1747.9564265073204
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0m_cspec.fits
Processing product (16196, '0n')
Targets in visit (16196, '0n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0n')
Processing grating COS/G130M
Importing files ['./lede0njbq_x1d.fits', './lede0njeq_x1d.fits', './lede0njgq_x1d.fits', './lede0njiq_x1d.fits']
Processing file ./lede0njbq_x1d.fits
Processing file ./lede0njeq_x1d.fits
Processing file ./lede0njgq_x1d.fits
Processing file ./lede0njiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0n_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0njkq_x1d.fits', './lede0njmq_x1d.fits', './lede0njoq_x1d.fits', './lede0nk9q_x1d.fits']
Processing file ./lede0njkq_x1d.fits
Processing file ./lede0njmq_x1d.fits
Processing file ./lede0njoq_x1d.fits
Processing file ./lede0nk9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.94918619098
Truncating current grating at 1747.8339287513736
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0n_cspec.fits
Processing product (16196, '0o')
Targets in visit (16196, '0o'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0o')
Processing grating COS/G130M
Importing files ['./lede0oglq_x1d.fits', './lede0ognq_x1d.fits', './lede0ogpq_x1d.fits', './lede0ogrq_x1d.fits']
Processing file ./lede0oglq_x1d.fits
Processing file ./lede0ognq_x1d.fits
Processing file ./lede0ogpq_x1d.fits
Processing file ./lede0ogrq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0o_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0ogtq_x1d.fits', './lede0ogvq_x1d.fits', './lede0ogxq_x1d.fits', './lede0ogzq_x1d.fits']
Processing file ./lede0ogtq_x1d.fits
Processing file ./lede0ogvq_x1d.fits
Processing file ./lede0ogxq_x1d.fits
Processing file ./lede0ogzq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0o_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1366.9)
COS/G160M 1342-1800 (Actual: 1346.2-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8694507172818
Truncating current grating at 1747.944111810499
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0o_cspec.fits
Processing product (16196, '0p')
Targets in visit (16196, '0p'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0p')
Processing grating COS/G130M
Importing files ['./lede0psiq_x1d.fits', './lede0pskq_x1d.fits', './lede0psmq_x1d.fits', './lede0psoq_x1d.fits']
Processing file ./lede0psiq_x1d.fits
Processing file ./lede0pskq_x1d.fits
Processing file ./lede0psmq_x1d.fits
Processing file ./lede0psoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0p_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0psqq_x1d.fits', './lede0pssq_x1d.fits', './lede0psuq_x1d.fits', './lede0pswq_x1d.fits']
Processing file ./lede0psqq_x1d.fits
Processing file ./lede0pssq_x1d.fits
Processing file ./lede0psuq_x1d.fits
Processing file ./lede0pswq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0p_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1346.2-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8395162322117
Truncating current grating at 1747.9073072948245
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0p_cspec.fits
Processing product (16196, '0q')
Targets in visit (16196, '0q'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0q')
Processing grating COS/G130M
Importing files ['./lede0qc2q_x1d.fits', './lede0qc4q_x1d.fits', './lede0qc6q_x1d.fits', './lede0qc8q_x1d.fits']
Processing file ./lede0qc2q_x1d.fits
Processing file ./lede0qc4q_x1d.fits
Processing file ./lede0qc6q_x1d.fits
Processing file ./lede0qc8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0q_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0qcaq_x1d.fits', './lede0qccq_x1d.fits', './lede0qceq_x1d.fits', './lede0qcgq_x1d.fits']
Processing file ./lede0qcaq_x1d.fits
Processing file ./lede0qccq_x1d.fits
Processing file ./lede0qceq_x1d.fits
Processing file ./lede0qcgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0q_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9590083120634
Truncating current grating at 1747.9072224950255
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0q_cspec.fits
Processing product (16196, '0r')
Targets in visit (16196, '0r'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0r')
Processing grating COS/G130M
Importing files ['./lede0ra6q_x1d.fits', './lede0ra8q_x1d.fits', './lede0rabq_x1d.fits', './lede0ragq_x1d.fits']
Processing file ./lede0ra6q_x1d.fits
Processing file ./lede0ra8q_x1d.fits
Processing file ./lede0rabq_x1d.fits
Processing file ./lede0ragq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0r_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0raiq_x1d.fits', './lede0ranq_x1d.fits', './lede0rapq_x1d.fits', './lede0rarq_x1d.fits']
Processing file ./lede0raiq_x1d.fits
Processing file ./lede0ranq_x1d.fits
Processing file ./lede0rapq_x1d.fits
Processing file ./lede0rarq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0r_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9987820309273
Truncating current grating at 1747.9683542610364
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0r_cspec.fits
Processing product (16196, '0t')
Targets in visit (16196, '0t'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0t')
Processing grating COS/G130M
Importing files ['./lede0to1q_x1d.fits', './lede0to4q_x1d.fits', './lede0to6q_x1d.fits', './lede0tobq_x1d.fits']
Processing file ./lede0to1q_x1d.fits
Processing file ./lede0to4q_x1d.fits
Processing file ./lede0to6q_x1d.fits
Processing file ./lede0tobq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0t_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0togq_x1d.fits', './lede0toiq_x1d.fits', './lede0tokq_x1d.fits', './lede0tomq_x1d.fits']
Processing file ./lede0togq_x1d.fits
Processing file ./lede0toiq_x1d.fits
Processing file ./lede0tokq_x1d.fits
Processing file ./lede0tomq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0t_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.8)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.809394449967
Truncating current grating at 1747.8824963992702
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0t_cspec.fits
Processing product (16196, '0u')
Targets in visit (16196, '0u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0u')
Processing grating COS/G130M
Importing files ['./lede0uzeq_x1d.fits', './lede0uzhq_x1d.fits', './lede0uzjq_x1d.fits', './lede0uzoq_x1d.fits']
Processing file ./lede0uzeq_x1d.fits
Processing file ./lede0uzhq_x1d.fits
Processing file ./lede0uzjq_x1d.fits
Processing file ./lede0uzoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0u_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0uztq_x1d.fits', './lede0uzvq_x1d.fits', './lede0uzxq_x1d.fits', './lede0uzzq_x1d.fits']
Processing file ./lede0uztq_x1d.fits
Processing file ./lede0uzvq_x1d.fits
Processing file ./lede0uzxq_x1d.fits
Processing file ./lede0uzzq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0u_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0583583721166
Truncating current grating at 1747.8701026912433
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0u_cspec.fits
Processing product (16196, '0x')
Targets in visit (16196, '0x'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0x')
Processing grating COS/G130M
Importing files ['./lede0xgrq_x1d.fits', './lede0xgtq_x1d.fits', './lede0xgvq_x1d.fits', './lede0xgyq_x1d.fits']
Processing file ./lede0xgrq_x1d.fits
Processing file ./lede0xgtq_x1d.fits
Processing file ./lede0xgvq_x1d.fits
Processing file ./lede0xgyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0x_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '0y')
Targets in visit (16196, '0y'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0y')
Processing grating COS/G160M
Importing files ['./lede0yh2q_x1d.fits', './lede0yh4q_x1d.fits']
Processing file ./lede0yh2q_x1d.fits
Processing file ./lede0yh4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0y_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '0z')
Targets in visit (16196, '0z'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0z')
Processing grating COS/G130M
Importing files ['./lede0zz2q_x1d.fits', './lede0zz4q_x1d.fits', './lede0zz6q_x1d.fits', './lede0zz8q_x1d.fits']
Processing file ./lede0zz2q_x1d.fits
Processing file ./lede0zz4q_x1d.fits
Processing file ./lede0zz6q_x1d.fits
Processing file ./lede0zz8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede0z_cspec.fits
Processing grating COS/G160M
Importing files ['./lede0zzaq_x1d.fits', './lede0zzcq_x1d.fits', './lede0zzeq_x1d.fits', './lede0zzgq_x1d.fits']
Processing file ./lede0zzaq_x1d.fits
Processing file ./lede0zzcq_x1d.fits
Processing file ./lede0zzeq_x1d.fits
Processing file ./lede0zzgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede0z_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1861183868532
Truncating current grating at 1747.7348034867864
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede0z_cspec.fits
Processing product (16196, '10')
Targets in visit (16196, '10'): ['MRK-817']
Processing target MRK-817 in visit (16196, '10')
Processing grating COS/G130M
Importing files ['./lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits']
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede10_cspec.fits
Processing grating COS/G160M
Importing files ['./lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits']
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede10_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2978793770124
Truncating current grating at 1747.9318982160767
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede10_cspec.fits
Processing product (16196, '11')
Targets in visit (16196, '11'): ['MRK-817']
Processing target MRK-817 in visit (16196, '11')
Processing grating COS/G130M
Importing files ['./lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits']
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede11_cspec.fits
Processing grating COS/G160M
Importing files ['./lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits']
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede11_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.337752894577
Truncating current grating at 1747.9319277231707
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede11_cspec.fits
Processing product (16196, '12')
Targets in visit (16196, '12'): ['MRK-817']
Processing target MRK-817 in visit (16196, '12')
Processing grating COS/G130M
Importing files ['./lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits']
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede12_cspec.fits
Processing grating COS/G160M
Importing files ['./lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits']
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede12_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.4-1367.3)
COS/G160M 1342-1800 (Actual: 1346.1-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3078698171475
Truncating current grating at 1747.8217080879983
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede12_cspec.fits
Processing product (16196, '14')
Targets in visit (16196, '14'): ['MRK-817']
Processing target MRK-817 in visit (16196, '14')
Processing grating COS/G130M
Importing files ['./lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits']
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede14_cspec.fits
Processing grating COS/G160M
Importing files ['./lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits']
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede14_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2082080932832
Truncating current grating at 1747.882900606055
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede14_cspec.fits
Processing product (16196, '15')
Targets in visit (16196, '15'): ['MRK-817']
Processing target MRK-817 in visit (16196, '15')
Processing grating COS/G130M
Importing files ['./lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits']
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede15_cspec.fits
Processing grating COS/G160M
Importing files ['./lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits']
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede15_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2480184516899
Truncating current grating at 1747.8705973106605
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede15_cspec.fits
Processing product (16196, '16')
Targets in visit (16196, '16'): ['MRK-817']
Processing target MRK-817 in visit (16196, '16')
Processing grating COS/G130M
Importing files ['./lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits']
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede16_cspec.fits
Processing grating COS/G160M
Importing files ['./lede16w8q_x1d.fits', './lede16waq_x1d.fits', './lede16wcq_x1d.fits', './lede16weq_x1d.fits']
Processing file ./lede16w8q_x1d.fits
Processing file ./lede16waq_x1d.fits
Processing file ./lede16wcq_x1d.fits
Processing file ./lede16weq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede16_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1084907517666
Truncating current grating at 1747.8705332315428
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede16_cspec.fits
Processing product (16196, '17')
Targets in visit (16196, '17'): ['MRK-817']
Processing target MRK-817 in visit (16196, '17')
Processing grating COS/G130M
Importing files ['./lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits']
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede17_cspec.fits
Processing grating COS/G160M
Importing files ['./lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits']
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede17_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1681864577022
Truncating current grating at 1747.8826701627258
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede17_cspec.fits
Processing product (16196, '18')
Targets in visit (16196, '18'): ['MRK-817']
Processing target MRK-817 in visit (16196, '18')
Processing grating COS/G130M
Importing files ['./lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits']
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede18_cspec.fits
Processing grating COS/G160M
Importing files ['./lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits']
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede18_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0883968896887
Truncating current grating at 1747.870305587762
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede18_cspec.fits
Processing product (16196, '19')
Targets in visit (16196, '19'): ['MRK-817']
Processing target MRK-817 in visit (16196, '19')
Processing grating COS/G130M
Importing files ['./lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits']
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede19_cspec.fits
Processing grating COS/G160M
Importing files ['./lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits']
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede19_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2078783727902
Truncating current grating at 1747.7967220944997
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede19_cspec.fits
Processing product (16196, '1b')
Targets in visit (16196, '1b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1b')
Processing grating COS/G130M
Importing files ['./lede1bvgq_x1d.fits', './lede1bviq_x1d.fits', './lede1bvkq_x1d.fits', './lede1bvmq_x1d.fits']
Processing file ./lede1bvgq_x1d.fits
Processing file ./lede1bviq_x1d.fits
Processing file ./lede1bvkq_x1d.fits
Processing file ./lede1bvmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1b_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1bvoq_x1d.fits', './lede1bvqq_x1d.fits', './lede1bvsq_x1d.fits', './lede1bvuq_x1d.fits']
Processing file ./lede1bvoq_x1d.fits
Processing file ./lede1bvqq_x1d.fits
Processing file ./lede1bvsq_x1d.fits
Processing file ./lede1bvuq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1069462489859
Truncating current grating at 1747.7600084548149
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1b_cspec.fits
Processing product (16196, '1c')
Targets in visit (16196, '1c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1c')
Processing grating COS/G130M
Importing files ['./lede1cf2q_x1d.fits', './lede1cf4q_x1d.fits', './lede1cf6q_x1d.fits', './lede1cf8q_x1d.fits']
Processing file ./lede1cf2q_x1d.fits
Processing file ./lede1cf4q_x1d.fits
Processing file ./lede1cf6q_x1d.fits
Processing file ./lede1cf8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1c_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1cfaq_x1d.fits', './lede1cfcq_x1d.fits', './lede1cfeq_x1d.fits', './lede1cfgq_x1d.fits']
Processing file ./lede1cfaq_x1d.fits
Processing file ./lede1cfcq_x1d.fits
Processing file ./lede1cfeq_x1d.fits
Processing file ./lede1cfgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1869549950916
Truncating current grating at 1747.6747038209066
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1c_cspec.fits
Processing product (16196, '1e')
Targets in visit (16196, '1e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1e')
Processing grating COS/G130M
Importing files ['./lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits']
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1e_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1ejtq_x1d.fits', './lede1ejvq_x1d.fits', './lede1ejxq_x1d.fits', './lede1ejzq_x1d.fits']
Processing file ./lede1ejtq_x1d.fits
Processing file ./lede1ejvq_x1d.fits
Processing file ./lede1ejxq_x1d.fits
Processing file ./lede1ejzq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1e_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.287058967394
Truncating current grating at 1747.7120962336303
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1e_cspec.fits
Processing product (16196, '1g')
Targets in visit (16196, '1g'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1g')
Processing grating COS/G130M
Importing files ['./lede1gaeq_x1d.fits', './lede1gahq_x1d.fits', './lede1gajq_x1d.fits', './lede1gamq_x1d.fits']
Processing file ./lede1gaeq_x1d.fits
Processing file ./lede1gahq_x1d.fits
Processing file ./lede1gajq_x1d.fits
Processing file ./lede1gamq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1g_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1gaoq_x1d.fits', './lede1gaqq_x1d.fits', './lede1gbiq_x1d.fits', './lede1gbkq_x1d.fits']
Processing file ./lede1gaoq_x1d.fits
Processing file ./lede1gaqq_x1d.fits
Processing file ./lede1gbiq_x1d.fits
Processing file ./lede1gbkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1g_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2677828249352
Truncating current grating at 1747.6884903471391
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1g_cspec.fits
Processing product (16196, '1h')
Targets in visit (16196, '1h'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1h')
Processing grating COS/G130M
Importing files ['./lede1hhcq_x1d.fits', './lede1hheq_x1d.fits', './lede1hhgq_x1d.fits', './lede1hhiq_x1d.fits']
Processing file ./lede1hhcq_x1d.fits
Processing file ./lede1hheq_x1d.fits
Processing file ./lede1hhgq_x1d.fits
Processing file ./lede1hhiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1h_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1hhkq_x1d.fits', './lede1hhmq_x1d.fits', './lede1hhoq_x1d.fits']
Processing file ./lede1hhkq_x1d.fits
Processing file ./lede1hhmq_x1d.fits
Processing file ./lede1hhoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1h_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.31798721702
Truncating current grating at 1747.7012590313404
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1h_cspec.fits
Processing product (16196, '1i')
Targets in visit (16196, '1i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1i')
Processing grating COS/G130M
Importing files ['./lede1irbq_x1d.fits', './lede1irdq_x1d.fits', './lede1irfq_x1d.fits', './lede1irhq_x1d.fits']
Processing file ./lede1irbq_x1d.fits
Processing file ./lede1irdq_x1d.fits
Processing file ./lede1irfq_x1d.fits
Processing file ./lede1irhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1i_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1irjq_x1d.fits', './lede1irlq_x1d.fits', './lede1irnq_x1d.fits', './lede1irpq_x1d.fits']
Processing file ./lede1irjq_x1d.fits
Processing file ./lede1irlq_x1d.fits
Processing file ./lede1irnq_x1d.fits
Processing file ./lede1irpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2585164262593
Truncating current grating at 1747.7261631327144
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1i_cspec.fits
Processing product (16196, '1m')
Targets in visit (16196, '1m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1m')
Processing grating COS/G130M
Importing files ['./lede1mtsq_x1d.fits', './lede1mtuq_x1d.fits', './lede1mtwq_x1d.fits', './lede1mu1q_x1d.fits']
Processing file ./lede1mtsq_x1d.fits
Processing file ./lede1mtuq_x1d.fits
Processing file ./lede1mtwq_x1d.fits
Processing file ./lede1mu1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1m_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1mu3q_x1d.fits', './lede1mu5q_x1d.fits', './lede1mu7q_x1d.fits', './lede1mu9q_x1d.fits']
Processing file ./lede1mu3q_x1d.fits
Processing file ./lede1mu5q_x1d.fits
Processing file ./lede1mu7q_x1d.fits
Processing file ./lede1mu9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2400241903026
Truncating current grating at 1747.8015832487984
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1m_cspec.fits
Processing product (16196, '1n')
Targets in visit (16196, '1n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1n')
Processing grating COS/G130M
Importing files ['./lede1noiq_x1d.fits', './lede1nokq_x1d.fits', './lede1nomq_x1d.fits', './lede1nooq_x1d.fits']
Processing file ./lede1noiq_x1d.fits
Processing file ./lede1nokq_x1d.fits
Processing file ./lede1nomq_x1d.fits
Processing file ./lede1nooq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1n_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1noqq_x1d.fits', './lede1nosq_x1d.fits', './lede1nouq_x1d.fits', './lede1nowq_x1d.fits']
Processing file ./lede1noqq_x1d.fits
Processing file ./lede1nosq_x1d.fits
Processing file ./lede1nouq_x1d.fits
Processing file ./lede1nowq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.140760841836
Truncating current grating at 1747.814317404721
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1n_cspec.fits
Processing product (16196, '1o')
Targets in visit (16196, '1o'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1o')
Processing grating COS/G130M
Importing files ['./lede1oceq_x1d.fits', './lede1ocgq_x1d.fits', './lede1ociq_x1d.fits', './lede1ockq_x1d.fits']
Processing file ./lede1oceq_x1d.fits
Processing file ./lede1ocgq_x1d.fits
Processing file ./lede1ociq_x1d.fits
Processing file ./lede1ockq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1o_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1ocmq_x1d.fits', './lede1ocoq_x1d.fits', './lede1ocqq_x1d.fits', './lede1ocsq_x1d.fits']
Processing file ./lede1ocmq_x1d.fits
Processing file ./lede1ocoq_x1d.fits
Processing file ./lede1ocqq_x1d.fits
Processing file ./lede1ocsq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1o_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2107947999061
Truncating current grating at 1747.9004499693488
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1o_cspec.fits
Processing product (16196, '1p')
Targets in visit (16196, '1p'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1p')
Processing grating COS/G130M
Importing files ['./lede1pkjq_x1d.fits', './lede1pklq_x1d.fits', './lede1pknq_x1d.fits', './lede1pkpq_x1d.fits']
Processing file ./lede1pkjq_x1d.fits
Processing file ./lede1pklq_x1d.fits
Processing file ./lede1pknq_x1d.fits
Processing file ./lede1pkpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1p_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1pkrq_x1d.fits', './lede1pktq_x1d.fits', './lede1pkvq_x1d.fits', './lede1pkxq_x1d.fits']
Processing file ./lede1pkrq_x1d.fits
Processing file ./lede1pktq_x1d.fits
Processing file ./lede1pkvq_x1d.fits
Processing file ./lede1pkxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1p_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1414288409007
Truncating current grating at 1747.8397176049875
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1p_cspec.fits
Processing product (16196, '1q')
Targets in visit (16196, '1q'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1q')
Processing grating COS/G130M
Importing files ['./lede1qspq_x1d.fits', './lede1qsrq_x1d.fits', './lede1qstq_x1d.fits', './lede1qsvq_x1d.fits']
Processing file ./lede1qspq_x1d.fits
Processing file ./lede1qsrq_x1d.fits
Processing file ./lede1qstq_x1d.fits
Processing file ./lede1qsvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1q_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1qsxq_x1d.fits', './lede1qszq_x1d.fits', './lede1qt1q_x1d.fits', './lede1qt3q_x1d.fits']
Processing file ./lede1qsxq_x1d.fits
Processing file ./lede1qszq_x1d.fits
Processing file ./lede1qt1q_x1d.fits
Processing file ./lede1qt3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1q_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1716697052416
Truncating current grating at 1747.8279486541135
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1q_cspec.fits
Processing product (16196, '1r')
Targets in visit (16196, '1r'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1r')
Processing grating COS/G130M
Importing files ['./lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits']
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1r_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '1s')
Targets in visit (16196, '1s'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1s')
Processing grating COS/G130M
Importing files ['./lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits']
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1s_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '1t')
Targets in visit (16196, '1t'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1t')
Processing grating COS/G160M
Importing files ['./lede1tukq_x1d.fits', './lede1tumq_x1d.fits']
Processing file ./lede1tukq_x1d.fits
Processing file ./lede1tumq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1t_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '1u')
Targets in visit (16196, '1u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1u')
Processing grating COS/G130M
Importing files ['./lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits']
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1u_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '1v')
Targets in visit (16196, '1v'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1v')
Processing grating COS/G160M
Importing files ['./lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits']
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1v_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '1w')
Targets in visit (16196, '1w'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1w')
Processing grating COS/G130M
Importing files ['./lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits']
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede1w_cspec.fits
Processing grating COS/G160M
Importing files ['./lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits']
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede1w_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1742595491237
Truncating current grating at 1747.8517059566843
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede1w_cspec.fits
Processing product (16196, '20')
Targets in visit (16196, '20'): ['MRK-817']
Processing target MRK-817 in visit (16196, '20')
Processing grating COS/G130M
Importing files ['./lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits']
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede20_cspec.fits
Processing grating COS/G160M
Importing files ['./lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits']
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede20_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2177245632445
Truncating current grating at 1747.7965642440402
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede20_cspec.fits
Processing product (16196, '21')
Targets in visit (16196, '21'): ['MRK-817']
Processing target MRK-817 in visit (16196, '21')
Processing grating COS/G130M
Importing files ['./lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits']
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede21_cspec.fits
Processing grating COS/G160M
Importing files ['./lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits']
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede21_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2076291135818
Truncating current grating at 1747.8453746288017
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede21_cspec.fits
Processing product (16196, '22')
Targets in visit (16196, '22'): ['MRK-817']
Processing target MRK-817 in visit (16196, '22')
Processing grating COS/G130M
Importing files ['./lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits']
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede22_cspec.fits
Processing grating COS/G160M
Importing files ['./lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits']
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede22_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.277205709817
Truncating current grating at 1747.8574009633462
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede22_cspec.fits
Processing product (16196, '23')
Targets in visit (16196, '23'): ['MRK-817']
Processing target MRK-817 in visit (16196, '23')
Processing grating COS/G130M
Importing files ['./lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits']
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede23_cspec.fits
Processing grating COS/G160M
Importing files ['./lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits']
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede23_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.207339045076
Truncating current grating at 1747.8817245568644
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede23_cspec.fits
Processing product (16196, '24')
Targets in visit (16196, '24'): ['MRK-817']
Processing target MRK-817 in visit (16196, '24')
Processing grating COS/G130M
Importing files ['./lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits']
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede24_cspec.fits
Processing grating COS/G160M
Importing files ['./lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits']
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede24_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1473848124633
Truncating current grating at 1747.881485021171
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede24_cspec.fits
Processing product (16196, '25')
Targets in visit (16196, '25'): ['MRK-817']
Processing target MRK-817 in visit (16196, '25')
Processing grating COS/G130M
Importing files ['./lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits']
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede25_cspec.fits
Processing grating COS/G160M
Importing files ['./lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits']
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede25_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1366.9)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9280420329596
Truncating current grating at 1747.8812684879176
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede25_cspec.fits
Processing product (16196, '26')
Targets in visit (16196, '26'): ['MRK-817']
Processing target MRK-817 in visit (16196, '26')
Processing grating COS/G130M
Importing files ['./lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits']
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede26_cspec.fits
Processing grating COS/G160M
Importing files ['./lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits']
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede26_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1569138940433
Truncating current grating at 1747.8686509501283
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede26_cspec.fits
Processing product (16196, '27')
Targets in visit (16196, '27'): ['MRK-817']
Processing target MRK-817 in visit (16196, '27')
Processing grating COS/G130M
Importing files ['./lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits']
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede27_cspec.fits
Processing grating COS/G160M
Importing files ['./lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits']
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede27_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.067098247392
Truncating current grating at 1747.8194583912114
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede27_cspec.fits
Processing product (16196, '28')
Targets in visit (16196, '28'): ['MRK-817']
Processing target MRK-817 in visit (16196, '28')
Processing grating COS/G130M
Importing files ['./lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits']
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede28_cspec.fits
Processing grating COS/G160M
Importing files ['./lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits']
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede28_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2462034354685
Truncating current grating at 1747.7946583418768
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede28_cspec.fits
Processing product (16196, '29')
Targets in visit (16196, '29'): ['MRK-817']
Processing target MRK-817 in visit (16196, '29')
Processing grating COS/G130M
Importing files ['./lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits']
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede29_cspec.fits
Processing grating COS/G160M
Importing files ['./lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits']
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede29_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0865018709774
Truncating current grating at 1747.8554944405
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede29_cspec.fits
Processing product (16196, '2a')
Targets in visit (16196, '2a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2a')
Processing grating COS/G130M
Importing files ['./lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits']
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2a_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2atiq_x1d.fits', './lede2atkq_x1d.fits', './lede2atmq_x1d.fits', './lede2atoq_x1d.fits']
Processing file ./lede2atiq_x1d.fits
Processing file ./lede2atkq_x1d.fits
Processing file ./lede2atmq_x1d.fits
Processing file ./lede2atoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2a_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1458461395873
Truncating current grating at 1747.8659451391923
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2a_cspec.fits
Processing product (16196, '2b')
Targets in visit (16196, '2b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2b')
Processing grating COS/G130M
Importing files ['./lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits']
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2b_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2bbcq_x1d.fits', './lede2bbhq_x1d.fits', './lede2bbjq_x1d.fits', './lede2bblq_x1d.fits']
Processing file ./lede2bbcq_x1d.fits
Processing file ./lede2bbhq_x1d.fits
Processing file ./lede2bbjq_x1d.fits
Processing file ./lede2bblq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.156200125195
Truncating current grating at 1747.8542273458413
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2b_cspec.fits
Processing product (16196, '2c')
Targets in visit (16196, '2c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2c')
Processing grating COS/G130M
Importing files ['./lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits']
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2c_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2cj0q_x1d.fits', './lede2cj2q_x1d.fits', './lede2cj4q_x1d.fits', './lede2cj6q_x1d.fits']
Processing file ./lede2cj0q_x1d.fits
Processing file ./lede2cj2q_x1d.fits
Processing file ./lede2cj4q_x1d.fits
Processing file ./lede2cj6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2562311403804
Truncating current grating at 1747.8180350368111
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2c_cspec.fits
Processing product (16196, '2d')
Targets in visit (16196, '2d'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2d')
Processing grating COS/G130M
Importing files ['./lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits']
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2d_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2dowq_x1d.fits', './lede2doyq_x1d.fits', './lede2dp0q_x1d.fits', './lede2dp3q_x1d.fits']
Processing file ./lede2dowq_x1d.fits
Processing file ./lede2doyq_x1d.fits
Processing file ./lede2dp0q_x1d.fits
Processing file ./lede2dp3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2d_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.216828239596
Truncating current grating at 1747.8186392125253
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2d_cspec.fits
Processing product (16196, '2e')
Targets in visit (16196, '2e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2e')
Processing grating COS/G130M
Importing files ['./lede2eyeq_x1d.fits', './lede2eygq_x1d.fits', './lede2eyiq_x1d.fits', './lede2eylq_x1d.fits']
Processing file ./lede2eyeq_x1d.fits
Processing file ./lede2eygq_x1d.fits
Processing file ./lede2eyiq_x1d.fits
Processing file ./lede2eylq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2e_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2eynq_x1d.fits', './lede2eyqq_x1d.fits', './lede2eysq_x1d.fits', './lede2eyuq_x1d.fits']
Processing file ./lede2eynq_x1d.fits
Processing file ./lede2eyqq_x1d.fits
Processing file ./lede2eysq_x1d.fits
Processing file ./lede2eyuq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2e_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2471344944581
Truncating current grating at 1747.8804399631226
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2e_cspec.fits
Processing product (16196, '2f')
Targets in visit (16196, '2f'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2f')
Processing grating COS/G130M
Importing files ['./lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits']
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2f_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2fi3q_x1d.fits', './lede2fi5q_x1d.fits', './lede2fi7q_x1d.fits', './lede2fi9q_x1d.fits']
Processing file ./lede2fi3q_x1d.fits
Processing file ./lede2fi5q_x1d.fits
Processing file ./lede2fi7q_x1d.fits
Processing file ./lede2fi9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2f_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2675048043247
Truncating current grating at 1747.8687945014462
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2f_cspec.fits
Processing product (16196, '2g')
Targets in visit (16196, '2g'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2g')
Processing grating COS/G130M
Importing files ['./lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits']
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2g_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2gf8q_x1d.fits', './lede2gfaq_x1d.fits', './lede2gfcq_x1d.fits', './lede2gfxq_x1d.fits']
Processing file ./lede2gf8q_x1d.fits
Processing file ./lede2gfaq_x1d.fits
Processing file ./lede2gfcq_x1d.fits
Processing file ./lede2gfxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2g_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2579578139598
Truncating current grating at 1747.8448618853731
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2g_cspec.fits
Processing product (16196, '2h')
Targets in visit (16196, '2h'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2h')
Processing grating COS/G130M
Importing files ['./lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits']
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2h_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits']
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2h_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.308184004033
Truncating current grating at 1747.8454202727467
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2h_cspec.fits
Processing product (16196, '2i')
Targets in visit (16196, '2i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2i')
Processing grating COS/G130M
Importing files ['./lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits']
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2i_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits']
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2388564623252
Truncating current grating at 1747.7479982654177
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2i_cspec.fits
Processing product (16196, '2j')
Targets in visit (16196, '2j'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2j')
Processing grating COS/G130M
Importing files ['./lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits']
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2j_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits']
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2j_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2391825623781
Truncating current grating at 1747.7606858548975
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2j_cspec.fits
Processing product (16196, '2k')
Targets in visit (16196, '2k'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2k')
Processing grating COS/G130M
Importing files ['./lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits']
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2k_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits']
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2k_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0404150266204
Truncating current grating at 1747.8225763496657
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2k_cspec.fits
Processing product (16196, '2l')
Targets in visit (16196, '2l'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2l')
Processing grating COS/G130M
Importing files ['./lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits']
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2l_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits']
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2l_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.230010888438
Truncating current grating at 1747.8229899416738
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2l_cspec.fits
Processing product (16196, '2m')
Targets in visit (16196, '2m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2m')
Processing grating COS/G130M
Importing files ['./lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits']
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2m_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits']
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.8)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8119756877566
Truncating current grating at 1747.8112774168255
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2m_cspec.fits
Processing product (16196, '2n')
Targets in visit (16196, '2n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2n')
Processing grating COS/G130M
Importing files ['./lede2nknq_x1d.fits', './lede2nkqq_x1d.fits', './lede2nkuq_x1d.fits', './lede2nkwq_x1d.fits']
Processing file ./lede2nknq_x1d.fits
Processing file ./lede2nkqq_x1d.fits
Processing file ./lede2nkuq_x1d.fits
Processing file ./lede2nkwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2n_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2nkyq_x1d.fits', './lede2nl3q_x1d.fits', './lede2nl5q_x1d.fits', './lede2nl7q_x1d.fits']
Processing file ./lede2nkyq_x1d.fits
Processing file ./lede2nl3q_x1d.fits
Processing file ./lede2nl5q_x1d.fits
Processing file ./lede2nl7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.098086882625
Truncating current grating at 1747.8699362406926
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2n_cspec.fits
Processing product (16196, '2u')
Targets in visit (16196, '2u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2u')
Processing grating COS/G130M
Importing files ['./lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits']
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2u_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits']
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2u_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0470248264046
Truncating current grating at 1747.8070111746379
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2u_cspec.fits
Processing product (16196, '2y')
Targets in visit (16196, '2y'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2y')
Processing grating COS/G130M
Importing files ['./lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits']
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2y_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits']
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2y_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.1)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0966367790202
Truncating current grating at 1747.8802219195768
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2y_cspec.fits
Processing product (16196, '2z')
Targets in visit (16196, '2z'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2z')
Processing grating COS/G130M
Importing files ['./lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits']
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede2z_cspec.fits
Processing grating COS/G160M
Importing files ['./lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits']
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede2z_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1366.9)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9270235881559
Truncating current grating at 1747.9656143450768
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede2z_cspec.fits
Processing product (16196, '30')
Targets in visit (16196, '30'): ['MRK-817']
Processing target MRK-817 in visit (16196, '30')
Processing grating COS/G130M
Importing files ['./lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits']
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede30_cspec.fits
Processing grating COS/G160M
Importing files ['./lede30sjq_x1d.fits', './lede30slq_x1d.fits', './lede30snq_x1d.fits', './lede30spq_x1d.fits']
Processing file ./lede30sjq_x1d.fits
Processing file ./lede30slq_x1d.fits
Processing file ./lede30snq_x1d.fits
Processing file ./lede30spq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede30_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1361305920218
Truncating current grating at 1747.879738472684
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede30_cspec.fits
Processing product (16196, '31')
Targets in visit (16196, '31'): ['MRK-817']
Processing target MRK-817 in visit (16196, '31')
Processing grating COS/G130M
Importing files ['./lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits']
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede31_cspec.fits
Processing grating COS/G160M
Importing files ['./lede31deq_x1d.fits', './lede31dgq_x1d.fits', './lede31diq_x1d.fits', './lede31dkq_x1d.fits']
Processing file ./lede31deq_x1d.fits
Processing file ./lede31dgq_x1d.fits
Processing file ./lede31diq_x1d.fits
Processing file ./lede31dkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede31_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1657913390045
Truncating current grating at 1747.867183251296
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede31_cspec.fits
Processing product (16196, '32')
Targets in visit (16196, '32'): ['MRK-817']
Processing target MRK-817 in visit (16196, '32')
Processing grating COS/G130M
Importing files ['./lede32s0q_x1d.fits', './lede32s2q_x1d.fits', './lede32s5q_x1d.fits', './lede32s7q_x1d.fits']
Processing file ./lede32s0q_x1d.fits
Processing file ./lede32s2q_x1d.fits
Processing file ./lede32s5q_x1d.fits
Processing file ./lede32s7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede32_cspec.fits
Processing grating COS/G160M
Importing files ['./lede32s9q_x1d.fits', './lede32sbq_x1d.fits', './lede32sdq_x1d.fits', './lede32sfq_x1d.fits']
Processing file ./lede32s9q_x1d.fits
Processing file ./lede32sbq_x1d.fits
Processing file ./lede32sdq_x1d.fits
Processing file ./lede32sfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede32_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.205359063777
Truncating current grating at 1747.8545526369562
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede32_cspec.fits
Processing product (16196, '33')
Targets in visit (16196, '33'): ['MRK-817']
Processing target MRK-817 in visit (16196, '33')
Processing grating COS/G130M
Importing files ['./lede33rzq_x1d.fits', './lede33s2q_x1d.fits', './lede33s4q_x1d.fits', './lede33s7q_x1d.fits']
Processing file ./lede33rzq_x1d.fits
Processing file ./lede33s2q_x1d.fits
Processing file ./lede33s4q_x1d.fits
Processing file ./lede33s7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede33_cspec.fits
Processing grating COS/G160M
Importing files ['./lede33s9q_x1d.fits', './lede33syq_x1d.fits', './lede33t0q_x1d.fits', './lede33t2q_x1d.fits']
Processing file ./lede33s9q_x1d.fits
Processing file ./lede33syq_x1d.fits
Processing file ./lede33t0q_x1d.fits
Processing file ./lede33t2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede33_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1751413236816
Truncating current grating at 1747.9030966395549
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede33_cspec.fits
Processing product (16196, '34')
Targets in visit (16196, '34'): ['MRK-817']
Processing target MRK-817 in visit (16196, '34')
Processing grating COS/G130M
Importing files ['./lede34lnq_x1d.fits', './lede34lpq_x1d.fits', './lede34lrq_x1d.fits', './lede34luq_x1d.fits']
Processing file ./lede34lnq_x1d.fits
Processing file ./lede34lpq_x1d.fits
Processing file ./lede34lrq_x1d.fits
Processing file ./lede34luq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede34_cspec.fits
Processing grating COS/G160M
Importing files ['./lede34lwq_x1d.fits', './lede34lyq_x1d.fits', './lede34m0q_x1d.fits', './lede34m3q_x1d.fits']
Processing file ./lede34lwq_x1d.fits
Processing file ./lede34lyq_x1d.fits
Processing file ./lede34m0q_x1d.fits
Processing file ./lede34m3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede34_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2446045465476
Truncating current grating at 1747.8904758532185
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede34_cspec.fits
Processing product (16196, '35')
Targets in visit (16196, '35'): ['MRK-817']
Processing target MRK-817 in visit (16196, '35')
Processing grating COS/G130M
Importing files ['./lede35xrq_x1d.fits', './lede35xtq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits']
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xtq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede35_cspec.fits
Processing grating COS/G160M
Importing files ['./lede35xzq_x1d.fits', './lede35y1q_x1d.fits', './lede35y3q_x1d.fits', './lede35y5q_x1d.fits']
Processing file ./lede35xzq_x1d.fits
Processing file ./lede35y1q_x1d.fits
Processing file ./lede35y3q_x1d.fits
Processing file ./lede35y5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede35_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1944911949759
Truncating current grating at 1747.8165871998533
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede35_cspec.fits
Processing product (16196, '36')
Targets in visit (16196, '36'): ['MRK-817']
Processing target MRK-817 in visit (16196, '36')
Processing grating COS/G130M
Importing files ['./lede36g0q_x1d.fits', './lede36g2q_x1d.fits', './lede36g4q_x1d.fits', './lede36g6q_x1d.fits']
Processing file ./lede36g0q_x1d.fits
Processing file ./lede36g2q_x1d.fits
Processing file ./lede36g4q_x1d.fits
Processing file ./lede36g6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede36_cspec.fits
Processing grating COS/G160M
Importing files ['./lede36g8q_x1d.fits', './lede36gaq_x1d.fits', './lede36gcq_x1d.fits', './lede36geq_x1d.fits']
Processing file ./lede36g8q_x1d.fits
Processing file ./lede36gaq_x1d.fits
Processing file ./lede36gcq_x1d.fits
Processing file ./lede36geq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede36_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1443902092465
Truncating current grating at 1747.840693582324
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede36_cspec.fits
Processing product (16196, '37')
Targets in visit (16196, '37'): ['MRK-817']
Processing target MRK-817 in visit (16196, '37')
Processing grating COS/G130M
Importing files ['./lede37l5q_x1d.fits', './lede37l7q_x1d.fits', './lede37l9q_x1d.fits', './lede37lbq_x1d.fits']
Processing file ./lede37l5q_x1d.fits
Processing file ./lede37l7q_x1d.fits
Processing file ./lede37l9q_x1d.fits
Processing file ./lede37lbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede37_cspec.fits
Processing grating COS/G160M
Importing files ['./lede37ldq_x1d.fits', './lede37lfq_x1d.fits', './lede37lhq_x1d.fits', './lede37ljq_x1d.fits']
Processing file ./lede37ldq_x1d.fits
Processing file ./lede37lfq_x1d.fits
Processing file ./lede37lhq_x1d.fits
Processing file ./lede37ljq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede37_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1838792746948
Truncating current grating at 1747.8402042746272
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede37_cspec.fits
Processing product (16196, '38')
Targets in visit (16196, '38'): ['MRK-817']
Processing target MRK-817 in visit (16196, '38')
Processing grating COS/G130M
Importing files ['./lede38tsq_x1d.fits', './lede38tuq_x1d.fits', './lede38twq_x1d.fits', './lede38tyq_x1d.fits']
Processing file ./lede38tsq_x1d.fits
Processing file ./lede38tuq_x1d.fits
Processing file ./lede38twq_x1d.fits
Processing file ./lede38tyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede38_cspec.fits
Processing grating COS/G160M
Importing files ['./lede38u0q_x1d.fits', './lede38u2q_x1d.fits', './lede38u4q_x1d.fits', './lede38u6q_x1d.fits']
Processing file ./lede38u0q_x1d.fits
Processing file ./lede38u2q_x1d.fits
Processing file ./lede38u4q_x1d.fits
Processing file ./lede38u6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede38_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0340990913444
Truncating current grating at 1747.8152513068835
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede38_cspec.fits
Processing product (16196, '39')
Targets in visit (16196, '39'): ['MRK-817']
Processing target MRK-817 in visit (16196, '39')
Processing grating COS/G130M
Importing files ['./lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits']
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede39_cspec.fits
Processing grating COS/G160M
Importing files ['./lede39ctq_x1d.fits', './lede39cvq_x1d.fits', './lede39cxq_x1d.fits', './lede39czq_x1d.fits']
Processing file ./lede39ctq_x1d.fits
Processing file ./lede39cvq_x1d.fits
Processing file ./lede39cxq_x1d.fits
Processing file ./lede39czq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede39_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2230896629117
Truncating current grating at 1747.8025967161402
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede39_cspec.fits
Processing product (16196, '3a')
Targets in visit (16196, '3a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3a')
Processing grating COS/G130M
Importing files ['./lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits']
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3a_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits']
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3a_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.787251312674
Truncating current grating at 1747.8427516270822
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3a_cspec.fits
Processing product (16196, '3b')
Targets in visit (16196, '3b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3b')
Processing grating COS/G130M
Importing files ['./lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits']
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3b_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits']
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1366.8)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.7869892195263
Truncating current grating at 1747.9158808531713
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3b_cspec.fits
Processing product (16196, '3c')
Targets in visit (16196, '3c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3c')
Processing grating COS/G130M
Importing files ['./lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits']
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3c_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3ckeq_x1d.fits', './lede3ckgq_x1d.fits', './lede3ckiq_x1d.fits', './lede3ckkq_x1d.fits']
Processing file ./lede3ckeq_x1d.fits
Processing file ./lede3ckgq_x1d.fits
Processing file ./lede3ckiq_x1d.fits
Processing file ./lede3ckkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.075617739116
Truncating current grating at 1747.9522269819631
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3c_cspec.fits
Processing product (16196, '3d')
Targets in visit (16196, '3d'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3d')
Processing grating COS/G130M
Importing files ['./lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits']
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3d_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3dt9q_x1d.fits', './lede3dtbq_x1d.fits', './lede3dtdq_x1d.fits', './lede3dtfq_x1d.fits']
Processing file ./lede3dt9q_x1d.fits
Processing file ./lede3dtbq_x1d.fits
Processing file ./lede3dtdq_x1d.fits
Processing file ./lede3dtfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3d_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.1-1366.7)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.726625407703
Truncating current grating at 1747.853849385373
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3d_cspec.fits
Processing product (16196, '3e')
Targets in visit (16196, '3e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3e')
Processing grating COS/G130M
Importing files ['./lede3efcq_x1d.fits', './lede3efeq_x1d.fits', './lede3efgq_x1d.fits', './lede3efiq_x1d.fits']
Processing file ./lede3efcq_x1d.fits
Processing file ./lede3efeq_x1d.fits
Processing file ./lede3efgq_x1d.fits
Processing file ./lede3efiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3e_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3efkq_x1d.fits', './lede3efmq_x1d.fits', './lede3efoq_x1d.fits', './lede3efqq_x1d.fits']
Processing file ./lede3efkq_x1d.fits
Processing file ./lede3efmq_x1d.fits
Processing file ./lede3efoq_x1d.fits
Processing file ./lede3efqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3e_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.2-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9654157837194
Truncating current grating at 1747.9024106223706
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3e_cspec.fits
Processing product (16196, '3f')
Targets in visit (16196, '3f'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3f')
Processing grating COS/G130M
Importing files ['./lede3fdhq_x1d.fits', './lede3fdjq_x1d.fits', './lede3fdlq_x1d.fits', './lede3fdnq_x1d.fits']
Processing file ./lede3fdhq_x1d.fits
Processing file ./lede3fdjq_x1d.fits
Processing file ./lede3fdlq_x1d.fits
Processing file ./lede3fdnq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3f_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3fdpq_x1d.fits', './lede3fdrq_x1d.fits', './lede3fdtq_x1d.fits', './lede3fe0q_x1d.fits']
Processing file ./lede3fdpq_x1d.fits
Processing file ./lede3fdrq_x1d.fits
Processing file ./lede3fdtq_x1d.fits
Processing file ./lede3fe0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3f_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.3-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1942425647744
Truncating current grating at 1747.9264767239847
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3f_cspec.fits
Processing product (16196, '3g')
Targets in visit (16196, '3g'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3g')
Processing grating COS/G130M
Importing files ['./lede3gmjq_x1d.fits', './lede3gmlq_x1d.fits', './lede3gmnq_x1d.fits', './lede3gmpq_x1d.fits']
Processing file ./lede3gmjq_x1d.fits
Processing file ./lede3gmlq_x1d.fits
Processing file ./lede3gmnq_x1d.fits
Processing file ./lede3gmpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3g_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3gmrq_x1d.fits', './lede3gmtq_x1d.fits', './lede3gmvq_x1d.fits', './lede3gmxq_x1d.fits']
Processing file ./lede3gmrq_x1d.fits
Processing file ./lede3gmtq_x1d.fits
Processing file ./lede3gmvq_x1d.fits
Processing file ./lede3gmxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3g_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.795493457642
Truncating current grating at 1747.8771644337303
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3g_cspec.fits
Processing product (16196, '3h')
Targets in visit (16196, '3h'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3h')
Processing grating COS/G130M
Importing files ['./lede3hbeq_x1d.fits', './lede3hbhq_x1d.fits', './lede3hbjq_x1d.fits', './lede3hblq_x1d.fits']
Processing file ./lede3hbeq_x1d.fits
Processing file ./lede3hbhq_x1d.fits
Processing file ./lede3hbjq_x1d.fits
Processing file ./lede3hblq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3h_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3hbnq_x1d.fits', './lede3hbpq_x1d.fits', './lede3hbrq_x1d.fits', './lede3hbtq_x1d.fits']
Processing file ./lede3hbnq_x1d.fits
Processing file ./lede3hbpq_x1d.fits
Processing file ./lede3hbrq_x1d.fits
Processing file ./lede3hbtq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3h_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0242113820054
Truncating current grating at 1747.9010836102557
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3h_cspec.fits
Processing product (16196, '3i')
Targets in visit (16196, '3i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3i')
Processing grating COS/G130M
Importing files ['./lede3irrq_x1d.fits', './lede3irtq_x1d.fits', './lede3irvq_x1d.fits', './lede3irxq_x1d.fits']
Processing file ./lede3irrq_x1d.fits
Processing file ./lede3irtq_x1d.fits
Processing file ./lede3irvq_x1d.fits
Processing file ./lede3irxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3i_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3irzq_x1d.fits', './lede3is1q_x1d.fits', './lede3is3q_x1d.fits', './lede3is6q_x1d.fits']
Processing file ./lede3irzq_x1d.fits
Processing file ./lede3is1q_x1d.fits
Processing file ./lede3is3q_x1d.fits
Processing file ./lede3is6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1366.7)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.675169771459
Truncating current grating at 1747.8883681240497
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3i_cspec.fits
Processing product (16196, '3l')
Targets in visit (16196, '3l'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3l')
Processing grating COS/G130M
Importing files ['./lede3lppq_x1d.fits', './lede3lprq_x1d.fits', './lede3lptq_x1d.fits', './lede3lpvq_x1d.fits']
Processing file ./lede3lppq_x1d.fits
Processing file ./lede3lprq_x1d.fits
Processing file ./lede3lptq_x1d.fits
Processing file ./lede3lpvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3l_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3lpxq_x1d.fits', './lede3lpzq_x1d.fits', './lede3lq1q_x1d.fits', './lede3lq3q_x1d.fits']
Processing file ./lede3lpxq_x1d.fits
Processing file ./lede3lpzq_x1d.fits
Processing file ./lede3lq1q_x1d.fits
Processing file ./lede3lq3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3l_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1366.9)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9040481681063
Truncating current grating at 1747.8880104702378
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3l_cspec.fits
Processing product (16196, '3m')
Targets in visit (16196, '3m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3m')
Processing grating COS/G130M
Importing files ['./lede3me4q_x1d.fits', './lede3me6q_x1d.fits', './lede3me8q_x1d.fits', './lede3meaq_x1d.fits']
Processing file ./lede3me4q_x1d.fits
Processing file ./lede3me6q_x1d.fits
Processing file ./lede3me8q_x1d.fits
Processing file ./lede3meaq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3m_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3medq_x1d.fits', './lede3mefq_x1d.fits', './lede3mehq_x1d.fits', './lede3mejq_x1d.fits']
Processing file ./lede3medq_x1d.fits
Processing file ./lede3mefq_x1d.fits
Processing file ./lede3mehq_x1d.fits
Processing file ./lede3mejq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.9)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9088569448104
Truncating current grating at 1747.8822739001225
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3m_cspec.fits
Processing product (16196, '3n')
Targets in visit (16196, '3n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3n')
Processing grating COS/G130M
Importing files ['./lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits']
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3n_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits']
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 940.2-1367.2)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2088811507729
Truncating current grating at 1747.9196641290177
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3n_cspec.fits
Processing product (16196, '3o')
Targets in visit (16196, '3o'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3o')
Processing grating STIS/G750L
Importing files ['./oede3o020_sx1.fits', './oede3o030_sx1.fits', './oede3o040_sx1.fits']
Processing file ./oede3o020_sx1.fits
Processing file ./oede3o030_sx1.fits
Processing file ./oede3o040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oede3o_cspec.fits
Processing grating STIS/G430L
Importing files ['./oede3o050_sx1.fits', './oede3o060_sx1.fits', './oede3o070_sx1.fits']
Processing file ./oede3o050_sx1.fits
Processing file ./oede3o060_sx1.fits
Processing file ./oede3o070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oede3o_cspec.fits
Processing grating STIS/G140L
Importing files ['./oede3o080_x1d.fits']
Processing file ./oede3o080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg140l_oede3o_cspec.fits
Processing grating STIS/G230L
Importing files ['./oede3o090_x1d.fits']
Processing file ./oede3o090_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oede3o_cspec.fits
Making a product from these gratings
STIS/G140L 1138.4-1716.4 (Actual: 1138.4-1710.9)
STIS/G230L 1582.0-3158.7 (Actual: 1579.6-3137.3)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5700.3)
STIS/G750L 5261.3-10252.3 (Actual: 5304.8-10243.2)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G140L
Abutting STIS/G230L product to current result
With a transition wavelength of 1710.9072984371069
Abutting STIS/G430L product to current result
With a transition wavelength of 3137.2752054262774
Abutting STIS/G750L product to current result
With a transition wavelength of 5700.294980962671
Truncating current grating at 10243.179270012915
Wrote products/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede3o_cspec.fits
Processing product (16196, '3p')
Targets in visit (16196, '3p'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3p')
Processing grating COS/G130M
Importing files ['./lede3pr0q_x1d.fits', './lede3pr2q_x1d.fits', './lede3pr4q_x1d.fits', './lede3pr6q_x1d.fits']
Processing file ./lede3pr0q_x1d.fits
Processing file ./lede3pr2q_x1d.fits
Processing file ./lede3pr4q_x1d.fits
Processing file ./lede3pr6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3p_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3pr9q_x1d.fits', './lede3prbq_x1d.fits', './lede3prdq_x1d.fits', './lede3prfq_x1d.fits']
Processing file ./lede3pr9q_x1d.fits
Processing file ./lede3prbq_x1d.fits
Processing file ./lede3prdq_x1d.fits
Processing file ./lede3prfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3p_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9787081706947
Truncating current grating at 1747.870176599446
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3p_cspec.fits
Processing product (16196, '3q')
Targets in visit (16196, '3q'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3q')
Processing grating COS/G160M
Importing files ['./lede3qa2q_x1d.fits', './lede3qa4q_x1d.fits', './lede3qzxq_x1d.fits', './lede3qzzq_x1d.fits']
Processing file ./lede3qa2q_x1d.fits
Processing file ./lede3qa4q_x1d.fits
Processing file ./lede3qzxq_x1d.fits
Processing file ./lede3qzzq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3q_cspec.fits
Processing grating COS/G130M
Importing files ['./lede3qzpq_x1d.fits', './lede3qzrq_x1d.fits', './lede3qztq_x1d.fits', './lede3qzvq_x1d.fits']
Processing file ./lede3qzpq_x1d.fits
Processing file ./lede3qzrq_x1d.fits
Processing file ./lede3qztq_x1d.fits
Processing file ./lede3qzvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3q_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9887714931879
Truncating current grating at 1747.9560443436148
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3q_cspec.fits
Processing product (16196, '3r')
Targets in visit (16196, '3r'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3r')
Processing grating COS/G130M
Importing files ['./lede3rh0q_x1d.fits', './lede3rh2q_x1d.fits', './lede3rh4q_x1d.fits', './lede3rh6q_x1d.fits']
Processing file ./lede3rh0q_x1d.fits
Processing file ./lede3rh2q_x1d.fits
Processing file ./lede3rh4q_x1d.fits
Processing file ./lede3rh6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3r_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3rh8q_x1d.fits', './lede3rhaq_x1d.fits', './lede3rhcq_x1d.fits', './lede3rheq_x1d.fits']
Processing file ./lede3rh8q_x1d.fits
Processing file ./lede3rhaq_x1d.fits
Processing file ./lede3rhcq_x1d.fits
Processing file ./lede3rheq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3r_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1382816451737
Truncating current grating at 1747.9438873001686
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3r_cspec.fits
Processing product (16196, '3s')
Targets in visit (16196, '3s'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3s')
Processing grating COS/G130M
Importing files ['./lede3staq_x1d.fits', './lede3stcq_x1d.fits', './lede3steq_x1d.fits', './lede3stgq_x1d.fits']
Processing file ./lede3staq_x1d.fits
Processing file ./lede3stcq_x1d.fits
Processing file ./lede3steq_x1d.fits
Processing file ./lede3stgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3s_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3stjq_x1d.fits', './lede3stpq_x1d.fits', './lede3strq_x1d.fits', './lede3sttq_x1d.fits']
Processing file ./lede3stjq_x1d.fits
Processing file ./lede3stpq_x1d.fits
Processing file ./lede3strq_x1d.fits
Processing file ./lede3sttq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3s_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.9)
COS/G160M 1342-1800 (Actual: 1346.2-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9490780590268
Truncating current grating at 1747.944010445268
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3s_cspec.fits
Processing product (16196, '3u')
Targets in visit (16196, '3u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3u')
Processing grating COS/G130M
Importing files ['./lede3ua1q_x1d.fits', './lede3ua3q_x1d.fits', './lede3uzvq_x1d.fits', './lede3uzyq_x1d.fits']
Processing file ./lede3ua1q_x1d.fits
Processing file ./lede3ua3q_x1d.fits
Processing file ./lede3uzvq_x1d.fits
Processing file ./lede3uzyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3u_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3ua5q_x1d.fits', './lede3ua7q_x1d.fits', './lede3ua9q_x1d.fits', './lede3uabq_x1d.fits']
Processing file ./lede3ua5q_x1d.fits
Processing file ./lede3ua7q_x1d.fits
Processing file ./lede3ua9q_x1d.fits
Processing file ./lede3uabq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3u_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1345.5-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9335883959939
Truncating current grating at 1747.8997869646928
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3u_cspec.fits
Processing product (16196, '3v')
Targets in visit (16196, '3v'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3v')
Processing grating COS/G130M
Importing files ['./lede3vijq_x1d.fits', './lede3vimq_x1d.fits', './lede3vioq_x1d.fits', './lede3viqq_x1d.fits']
Processing file ./lede3vijq_x1d.fits
Processing file ./lede3vimq_x1d.fits
Processing file ./lede3vioq_x1d.fits
Processing file ./lede3viqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3v_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3visq_x1d.fits', './lede3viuq_x1d.fits', './lede3viwq_x1d.fits', './lede3viyq_x1d.fits']
Processing file ./lede3visq_x1d.fits
Processing file ./lede3viuq_x1d.fits
Processing file ./lede3viwq_x1d.fits
Processing file ./lede3viyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3v_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0726971146764
Truncating current grating at 1747.8992877010273
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3v_cspec.fits
Processing product (16196, '3w')
Targets in visit (16196, '3w'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3w')
Processing grating COS/G130M
Importing files ['./lede3wduq_x1d.fits', './lede3wdwq_x1d.fits', './lede3wdyq_x1d.fits', './lede3we0q_x1d.fits']
Processing file ./lede3wduq_x1d.fits
Processing file ./lede3wdwq_x1d.fits
Processing file ./lede3wdyq_x1d.fits
Processing file ./lede3we0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3w_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3we2q_x1d.fits', './lede3we4q_x1d.fits', './lede3we6q_x1d.fits', './lede3we8q_x1d.fits']
Processing file ./lede3we2q_x1d.fits
Processing file ./lede3we4q_x1d.fits
Processing file ./lede3we6q_x1d.fits
Processing file ./lede3we8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3w_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.0)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9924807564626
Truncating current grating at 1747.8863441448354
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3w_cspec.fits
Processing product (16196, '3x')
Targets in visit (16196, '3x'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3x')
Processing grating COS/G130M
Importing files ['./lede3xjdq_x1d.fits', './lede3xjfq_x1d.fits', './lede3xjhq_x1d.fits', './lede3xjmq_x1d.fits']
Processing file ./lede3xjdq_x1d.fits
Processing file ./lede3xjfq_x1d.fits
Processing file ./lede3xjhq_x1d.fits
Processing file ./lede3xjmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3x_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3xjoq_x1d.fits', './lede3xk9q_x1d.fits', './lede3xkhq_x1d.fits', './lede3xkjq_x1d.fits']
Processing file ./lede3xjoq_x1d.fits
Processing file ./lede3xk9q_x1d.fits
Processing file ./lede3xkhq_x1d.fits
Processing file ./lede3xkjq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3x_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.2-1366.9)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9324459189104
Truncating current grating at 1747.8247462997979
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3x_cspec.fits
Processing product (16196, '3y')
Targets in visit (16196, '3y'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3y')
Processing grating COS/G130M
Importing files ['./lede3yq7q_x1d.fits', './lede3yq9q_x1d.fits', './lede3yqbq_x1d.fits', './lede3yqdq_x1d.fits']
Processing file ./lede3yq7q_x1d.fits
Processing file ./lede3yq9q_x1d.fits
Processing file ./lede3yqbq_x1d.fits
Processing file ./lede3yqdq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3y_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3yqfq_x1d.fits', './lede3yqhq_x1d.fits', './lede3yqjq_x1d.fits', './lede3yqlq_x1d.fits']
Processing file ./lede3yqfq_x1d.fits
Processing file ./lede3yqhq_x1d.fits
Processing file ./lede3yqjq_x1d.fits
Processing file ./lede3yqlq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3y_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.071560717101
Truncating current grating at 1747.885503759234
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3y_cspec.fits
Processing product (16196, '3z')
Targets in visit (16196, '3z'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3z')
Processing grating COS/G130M
Importing files ['./lede3za1q_x1d.fits', './lede3zzuq_x1d.fits', './lede3zzwq_x1d.fits', './lede3zzyq_x1d.fits']
Processing file ./lede3za1q_x1d.fits
Processing file ./lede3zzuq_x1d.fits
Processing file ./lede3zzwq_x1d.fits
Processing file ./lede3zzyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede3z_cspec.fits
Processing grating COS/G160M
Importing files ['./lede3za3q_x1d.fits', './lede3za5q_x1d.fits', './lede3za7q_x1d.fits', './lede3za9q_x1d.fits']
Processing file ./lede3za3q_x1d.fits
Processing file ./lede3za5q_x1d.fits
Processing file ./lede3za7q_x1d.fits
Processing file ./lede3za9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede3z_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0114022189198
Truncating current grating at 1747.872739222039
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede3z_cspec.fits
Processing product (16196, '40')
Targets in visit (16196, '40'): ['MRK-817']
Processing target MRK-817 in visit (16196, '40')
Processing grating COS/G130M
Importing files ['./lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits']
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede40_cspec.fits
Processing grating COS/G160M
Importing files ['./lede40mkq_x1d.fits', './lede40mmq_x1d.fits', './lede40moq_x1d.fits', './lede40mqq_x1d.fits']
Processing file ./lede40mkq_x1d.fits
Processing file ./lede40mmq_x1d.fits
Processing file ./lede40moq_x1d.fits
Processing file ./lede40mqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede40_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.99356725021
Truncating current grating at 1747.8143304133027
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede40_cspec.fits
Processing product (16196, '41')
Targets in visit (16196, '41'): ['MRK-817']
Processing target MRK-817 in visit (16196, '41')
Processing grating COS/G130M
Importing files ['./lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits']
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede41_cspec.fits
Processing grating COS/G160M
Importing files ['./lede41uiq_x1d.fits', './lede41ukq_x1d.fits', './lede41umq_x1d.fits', './lede41uoq_x1d.fits']
Processing file ./lede41uiq_x1d.fits
Processing file ./lede41ukq_x1d.fits
Processing file ./lede41umq_x1d.fits
Processing file ./lede41uoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede41_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1526550084182
Truncating current grating at 1747.7894092847218
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede41_cspec.fits
Processing product (16196, '42')
Targets in visit (16196, '42'): ['MRK-817']
Processing target MRK-817 in visit (16196, '42')
Processing grating COS/G130M
Importing files ['./lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits']
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede42_cspec.fits
Processing grating COS/G160M
Importing files ['./lede42hnq_x1d.fits', './lede42hpq_x1d.fits', './lede42hrq_x1d.fits', './lede42htq_x1d.fits']
Processing file ./lede42hnq_x1d.fits
Processing file ./lede42hpq_x1d.fits
Processing file ./lede42hrq_x1d.fits
Processing file ./lede42htq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede42_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0226807043255
Truncating current grating at 1747.8255300053788
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede42_cspec.fits
Processing product (16196, '43')
Targets in visit (16196, '43'): ['MRK-817']
Processing target MRK-817 in visit (16196, '43')
Processing grating COS/G130M
Importing files ['./lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits']
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede43_cspec.fits
Processing grating COS/G160M
Importing files ['./lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits']
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede43_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.972588971387
Truncating current grating at 1747.8006592274237
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede43_cspec.fits
Processing product (16196, '44')
Targets in visit (16196, '44'): ['MRK-817']
Processing target MRK-817 in visit (16196, '44')
Processing grating COS/G130M
Importing files ['./lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits']
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede44_cspec.fits
Processing grating COS/G160M
Importing files ['./lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits']
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede44_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.071752284569
Truncating current grating at 1747.8367741250431
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede44_cspec.fits
Processing product (16196, '45')
Targets in visit (16196, '45'): ['MRK-817']
Processing target MRK-817 in visit (16196, '45')
Processing grating COS/G130M
Importing files ['./lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits']
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede45_cspec.fits
Processing grating COS/G160M
Importing files ['./lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits']
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede45_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2207856133177
Truncating current grating at 1747.8239774102403
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede45_cspec.fits
Processing product (16196, '46')
Targets in visit (16196, '46'): ['MRK-817']
Processing target MRK-817 in visit (16196, '46')
Processing grating COS/G130M
Importing files ['./lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits']
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede46_cspec.fits
Processing grating COS/G160M
Importing files ['./lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits']
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede46_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1407920937286
Truncating current grating at 1747.8358294401132
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede46_cspec.fits
Processing product (16196, '47')
Targets in visit (16196, '47'): ['MRK-817']
Processing target MRK-817 in visit (16196, '47')
Processing grating COS/G130M
Importing files ['./lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits']
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede47_cspec.fits
Processing grating COS/G160M
Importing files ['./lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits']
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede47_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1204500378353
Truncating current grating at 1747.8230188988546
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede47_cspec.fits
Processing product (16196, '48')
Targets in visit (16196, '48'): ['MRK-817']
Processing target MRK-817 in visit (16196, '48')
Processing grating COS/G130M
Importing files ['./lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits']
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede48_cspec.fits
Processing grating COS/G160M
Importing files ['./lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits']
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede48_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1199732431223
Truncating current grating at 1747.8346214876751
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede48_cspec.fits
Processing product (16196, '49')
Targets in visit (16196, '49'): ['MRK-817']
Processing target MRK-817 in visit (16196, '49')
Processing grating COS/G130M
Importing files ['./lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits']
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede49_cspec.fits
Processing grating COS/G160M
Importing files ['./lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits']
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede49_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0398312036677
Truncating current grating at 1747.8462721043988
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede49_cspec.fits
Processing product (16196, '4a')
Targets in visit (16196, '4a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4a')
Processing grating COS/G130M
Importing files ['./lede4ak6q_x1d.fits', './lede4ak8q_x1d.fits', './lede4akaq_x1d.fits', './lede4akcq_x1d.fits']
Processing file ./lede4ak6q_x1d.fits
Processing file ./lede4ak8q_x1d.fits
Processing file ./lede4akaq_x1d.fits
Processing file ./lede4akcq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede4a_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '4b')
Targets in visit (16196, '4b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4b')
Processing grating STIS/G750L
Importing files ['./oede4b020_sx1.fits', './oede4b030_sx1.fits', './oede4b040_sx1.fits']
Processing file ./oede4b020_sx1.fits
Processing file ./oede4b030_sx1.fits
Processing file ./oede4b040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oede4b_cspec.fits
Processing grating STIS/G430L
Importing files ['./oede4b050_sx1.fits', './oede4b060_sx1.fits', './oede4b070_sx1.fits']
Processing file ./oede4b050_sx1.fits
Processing file ./oede4b060_sx1.fits
Processing file ./oede4b070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oede4b_cspec.fits
Processing grating STIS/G140L
Importing files ['./oede4b080_x1d.fits']
Processing file ./oede4b080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg140l_oede4b_cspec.fits
Processing grating STIS/G230L
Importing files ['./oede4b090_x1d.fits']
Processing file ./oede4b090_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oede4b_cspec.fits
Making a product from these gratings
STIS/G140L 1138.4-1716.4 (Actual: 1138.4-1711.7)
STIS/G230L 1582.0-3158.7 (Actual: 1582.8-3151.2)
STIS/G430L 2895.9-5704.4 (Actual: 2977.5-5702.5)
STIS/G750L 5261.3-10252.3 (Actual: 5307.8-10246.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G140L
Abutting STIS/G230L product to current result
With a transition wavelength of 1711.746938159625
Abutting STIS/G430L product to current result
With a transition wavelength of 3151.1776676436853
Abutting STIS/G750L product to current result
With a transition wavelength of 5702.490336445166
Truncating current grating at 10246.526672026468
Wrote products/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4b_cspec.fits
Processing product (16196, '4e')
Targets in visit (16196, '4e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4e')
Processing grating COS/G130M
Importing files ['./lede4epnq_x1d.fits', './lede4eppq_x1d.fits', './lede4eprq_x1d.fits', './lede4eptq_x1d.fits']
Processing file ./lede4epnq_x1d.fits
Processing file ./lede4eppq_x1d.fits
Processing file ./lede4eprq_x1d.fits
Processing file ./lede4eptq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede4e_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '4f')
Targets in visit (16196, '4f'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4f')
Processing grating STIS/G750L
Importing files ['./oede4f020_sx1.fits', './oede4f030_sx1.fits', './oede4f040_sx1.fits']
Processing file ./oede4f020_sx1.fits
Processing file ./oede4f030_sx1.fits
Processing file ./oede4f040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oede4f_cspec.fits
Processing grating STIS/G430L
Importing files ['./oede4f050_sx1.fits', './oede4f060_sx1.fits', './oede4f070_sx1.fits']
Processing file ./oede4f050_sx1.fits
Processing file ./oede4f060_sx1.fits
Processing file ./oede4f070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oede4f_cspec.fits
Processing grating STIS/G140L
Importing files ['./oede4f080_x1d.fits']
Processing file ./oede4f080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg140l_oede4f_cspec.fits
Processing grating STIS/G230L
Importing files ['./oede4f090_x1d.fits']
Processing file ./oede4f090_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oede4f_cspec.fits
Making a product from these gratings
STIS/G140L 1138.4-1716.4 (Actual: 1138.3-1712.2)
STIS/G230L 1582.0-3158.7 (Actual: 1580.8-3149.2)
STIS/G430L 2895.9-5704.4 (Actual: 2976.5-5701.4)
STIS/G750L 5261.3-10252.3 (Actual: 5305.8-10244.4)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G140L
Abutting STIS/G230L product to current result
With a transition wavelength of 1712.1849569551614
Abutting STIS/G430L product to current result
With a transition wavelength of 3149.1594277594645
Abutting STIS/G750L product to current result
With a transition wavelength of 5701.418865043401
Truncating current grating at 10244.400619952936
Wrote products/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4f_cspec.fits
Processing product (16196, '50')
Targets in visit (16196, '50'): ['MRK-817']
Processing target MRK-817 in visit (16196, '50')
Processing grating COS/G130M
Importing files ['./lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits']
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede50_cspec.fits
Processing grating COS/G160M
Importing files ['./lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits']
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede50_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3283286767298
Truncating current grating at 1747.8334604591912
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede50_cspec.fits
Processing product (16196, '51')
Targets in visit (16196, '51'): ['MRK-817']
Processing target MRK-817 in visit (16196, '51')
Processing grating COS/G130M
Importing files ['./lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits']
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede51_cspec.fits
Processing grating COS/G160M
Importing files ['./lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits']
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede51_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9992830877218
Truncating current grating at 1747.7595990921022
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede51_cspec.fits
Processing product (16196, '52')
Targets in visit (16196, '52'): ['MRK-817']
Processing target MRK-817 in visit (16196, '52')
Processing grating COS/G130M
Importing files ['./lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits']
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede52_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '53')
Targets in visit (16196, '53'): ['MRK-817']
Processing target MRK-817 in visit (16196, '53')
Processing grating COS/G160M
Importing files ['./lede53mvq_x1d.fits', './lede53mxq_x1d.fits']
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede53_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '56')
Targets in visit (16196, '56'): ['MRK-817']
Processing target MRK-817 in visit (16196, '56')
Processing grating COS/G130M
Importing files ['./lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits']
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede56_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '57')
Targets in visit (16196, '57'): ['MRK-817']
Processing target MRK-817 in visit (16196, '57')
Processing grating COS/G160M
Importing files ['./lede57azq_x1d.fits', './lede57b2q_x1d.fits']
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede57_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '59')
Targets in visit (16196, '59'): ['MRK-817']
Processing target MRK-817 in visit (16196, '59')
Processing grating COS/G130M
Importing files ['./lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits']
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede59_cspec.fits
Processing grating COS/G160M
Importing files ['./lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits']
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede59_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.314679402225
Truncating current grating at 1747.8652211015196
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede59_cspec.fits
Processing product (16196, '60')
Targets in visit (16196, '60'): ['MRK-817']
Processing target MRK-817 in visit (16196, '60')
Processing grating COS/G130M
Importing files ['./lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits']
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede60_cspec.fits
Processing grating COS/G160M
Importing files ['./lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits']
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede60_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.214581113572
Truncating current grating at 1747.8033465311353
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede60_cspec.fits
Processing product (16196, '61')
Targets in visit (16196, '61'): ['MRK-817']
Processing target MRK-817 in visit (16196, '61')
Processing grating COS/G130M
Importing files ['./lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits']
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede61_cspec.fits
Processing grating COS/G160M
Importing files ['./lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits']
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede61_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9950572553043
Truncating current grating at 1747.8273672103642
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede61_cspec.fits
Processing product (16196, '62')
Targets in visit (16196, '62'): ['MRK-817']
Processing target MRK-817 in visit (16196, '62')
Processing grating COS/G130M
Importing files ['./lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits']
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede62_cspec.fits
Processing grating COS/G160M
Importing files ['./lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits']
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede62_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1367.1)
COS/G160M 1342-1800 (Actual: 1345.4-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0742751159814
Truncating current grating at 1747.7819725453642
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede62_cspec.fits
Processing product (16196, '63')
Targets in visit (16196, '63'): ['MRK-817']
Processing target MRK-817 in visit (16196, '63')
Processing grating COS/G130M
Importing files ['./lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits']
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede63_cspec.fits
Processing grating COS/G160M
Importing files ['./lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits']
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede63_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.4-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0738557603036
Truncating current grating at 1747.7324169254396
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede63_cspec.fits
Processing product (16196, '64')
Targets in visit (16196, '64'): ['MRK-817']
Processing target MRK-817 in visit (16196, '64')
Processing grating COS/G130M
Importing files ['./lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits']
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede64_cspec.fits
Processing grating COS/G160M
Importing files ['./lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits']
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede64_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1332663047183
Truncating current grating at 1747.719668904264
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede64_cspec.fits
Processing product (16196, '65')
Targets in visit (16196, '65'): ['MRK-817']
Processing target MRK-817 in visit (16196, '65')
Processing grating COS/G130M
Importing files ['./lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits']
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede65_cspec.fits
Processing grating COS/G160M
Importing files ['./lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits']
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede65_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.4-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1627034739777
Truncating current grating at 1747.7558082026344
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede65_cspec.fits
Processing product (16196, '66')
Targets in visit (16196, '66'): ['MRK-817']
Processing target MRK-817 in visit (16196, '66')
Processing grating COS/G130M
Importing files ['./lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits']
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede66_cspec.fits
Processing grating COS/G160M
Importing files ['./lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits']
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede66_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1822880628297
Truncating current grating at 1747.7675943267077
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede66_cspec.fits
Processing product (16196, '67')
Targets in visit (16196, '67'): ['MRK-817']
Processing target MRK-817 in visit (16196, '67')
Processing grating COS/G130M
Importing files ['./lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits']
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede67_cspec.fits
Processing grating COS/G160M
Importing files ['./lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits']
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede67_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.23165529377
Truncating current grating at 1747.8159794348267
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede67_cspec.fits
Processing product (16196, '68')
Targets in visit (16196, '68'): ['MRK-817']
Processing target MRK-817 in visit (16196, '68')
Processing grating COS/G130M
Importing files ['./lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits']
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede68_cspec.fits
Processing grating COS/G160M
Importing files ['./lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits']
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede68_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.131685858688
Truncating current grating at 1747.7910173798828
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede68_cspec.fits
Processing product (16196, '69')
Targets in visit (16196, '69'): ['MRK-817']
Processing target MRK-817 in visit (16196, '69')
Processing grating COS/G130M
Importing files ['./lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits']
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede69_cspec.fits
Processing grating COS/G160M
Importing files ['./lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits']
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede69_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1711413566263
Truncating current grating at 1747.7782371271112
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede69_cspec.fits
Processing product (16196, '70')
Targets in visit (16196, '70'): ['MRK-817']
Processing target MRK-817 in visit (16196, '70')
Processing grating COS/G130M
Importing files ['./lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits']
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede70_cspec.fits
Processing grating COS/G160M
Importing files ['./lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits']
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede70_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2603503013827
Truncating current grating at 1747.838858788149
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede70_cspec.fits
Processing product (16196, '71')
Targets in visit (16196, '71'): ['MRK-817']
Processing target MRK-817 in visit (16196, '71')
Processing grating COS/G130M
Importing files ['./lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits']
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede71_cspec.fits
Processing grating COS/G160M
Importing files ['./lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits']
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede71_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1404847972692
Truncating current grating at 1747.7771947970941
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede71_cspec.fits
Processing product (16196, '72')
Targets in visit (16196, '72'): ['MRK-817']
Processing target MRK-817 in visit (16196, '72')
Processing grating COS/G130M
Importing files ['./lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits']
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede72_cspec.fits
Processing grating COS/G160M
Importing files ['./lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits']
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede72_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.0)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0205503145753
Truncating current grating at 1747.8134109418088
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede72_cspec.fits
Processing product (16196, '73')
Targets in visit (16196, '73'): ['MRK-817']
Processing target MRK-817 in visit (16196, '73')
Processing grating COS/G130M
Importing files ['./lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits']
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede73_cspec.fits
Processing grating COS/G160M
Importing files ['./lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits']
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede73_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1097711075663
Truncating current grating at 1747.727088106873
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede73_cspec.fits
Processing product (16196, '74')
Targets in visit (16196, '74'): ['MRK-817']
Processing target MRK-817 in visit (16196, '74')
Processing grating COS/G130M
Importing files ['./lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits']
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede74_cspec.fits
Processing grating COS/G160M
Importing files ['./lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits']
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede74_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1294443353058
Truncating current grating at 1747.7757345040995
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede74_cspec.fits
Processing product (16196, '75')
Targets in visit (16196, '75'): ['MRK-817']
Processing target MRK-817 in visit (16196, '75')
Processing grating COS/G130M
Importing files ['./lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits']
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede75_cspec.fits
Processing grating COS/G160M
Importing files ['./lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits']
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede75_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 940.2-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1418511159732
Truncating current grating at 1747.7508268918807
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede75_cspec.fits
Processing product (16196, '77')
Targets in visit (16196, '77'): ['MRK-817']
Processing target MRK-817 in visit (16196, '77')
Processing grating COS/G130M
Importing files ['./lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits']
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede77_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '78')
Targets in visit (16196, '78'): ['MRK-817']
Processing target MRK-817 in visit (16196, '78')
Processing grating COS/G160M
Importing files ['./lede78vjq_x1d.fits', './lede78vlq_x1d.fits']
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede78_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '80')
Targets in visit (16196, '80'): ['MRK-817']
Processing target MRK-817 in visit (16196, '80')
Processing grating COS/G130M
Importing files ['./lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits']
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede80_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '81')
Targets in visit (16196, '81'): ['MRK-817']
Processing target MRK-817 in visit (16196, '81')
Processing grating COS/G160M
Importing files ['./lede81neq_x1d.fits', './lede81ngq_x1d.fits']
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede81_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '82')
Targets in visit (16196, '82'): ['MRK-817']
Processing target MRK-817 in visit (16196, '82')
Processing grating COS/G130M
Importing files ['./lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits']
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede82_cspec.fits
Processing grating COS/G160M
Importing files ['./lede82idq_x1d.fits', './lede82ifq_x1d.fits']
Processing file ./lede82idq_x1d.fits
Processing file ./lede82ifq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede82_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1343.3-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2361429629557
Truncating current grating at 1747.7718266198465
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede82_cspec.fits
Processing product (16196, '83')
Targets in visit (16196, '83'): ['MRK-817']
Processing target MRK-817 in visit (16196, '83')
Processing grating COS/G130M
Importing files ['./lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits']
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede83_cspec.fits
Processing grating COS/G160M
Importing files ['./lede83irq_x1d.fits', './lede83itq_x1d.fits']
Processing file ./lede83irq_x1d.fits
Processing file ./lede83itq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede83_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1343.3-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.206247463418
Truncating current grating at 1747.7718145063297
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede83_cspec.fits
Processing product (16196, '84')
Targets in visit (16196, '84'): ['MRK-817']
Processing target MRK-817 in visit (16196, '84')
Processing grating COS/G130M
Importing files ['./lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits']
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede84_cspec.fits
Processing grating COS/G160M
Importing files ['./lede84quq_x1d.fits', './lede84qwq_x1d.fits', './lede84qyq_x1d.fits', './lede84r0q_x1d.fits']
Processing file ./lede84quq_x1d.fits
Processing file ./lede84qwq_x1d.fits
Processing file ./lede84qyq_x1d.fits
Processing file ./lede84r0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede84_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.106371580946
Truncating current grating at 1747.8694431084082
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede84_cspec.fits
Processing product (16196, '85')
Targets in visit (16196, '85'): ['MRK-817']
Processing target MRK-817 in visit (16196, '85')
Processing grating COS/G130M
Importing files ['./lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits']
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede85_cspec.fits
Processing grating COS/G160M
Importing files ['./lede85byq_x1d.fits', './lede85c0q_x1d.fits', './lede85c2q_x1d.fits', './lede85c4q_x1d.fits']
Processing file ./lede85byq_x1d.fits
Processing file ./lede85c0q_x1d.fits
Processing file ./lede85c2q_x1d.fits
Processing file ./lede85c4q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede85_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1366.9)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9467249756499
Truncating current grating at 1747.7833759298528
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede85_cspec.fits
Processing product (16196, '86')
Targets in visit (16196, '86'): ['MRK-817']
Processing target MRK-817 in visit (16196, '86')
Processing grating COS/G130M
Importing files ['./lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits']
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede86_cspec.fits
Processing grating COS/G160M
Importing files ['./lede86j8q_x1d.fits', './lede86jaq_x1d.fits', './lede86jcq_x1d.fits', './lede86jeq_x1d.fits']
Processing file ./lede86j8q_x1d.fits
Processing file ./lede86jaq_x1d.fits
Processing file ./lede86jcq_x1d.fits
Processing file ./lede86jeq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede86_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1366.9)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9266391134242
Truncating current grating at 1747.8076501637902
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede86_cspec.fits
Processing product (16196, '87')
Targets in visit (16196, '87'): ['MRK-817']
Processing target MRK-817 in visit (16196, '87')
Processing grating COS/G130M
Importing files ['./lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits']
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede87_cspec.fits
Processing grating COS/G160M
Importing files ['./lede87jkq_x1d.fits', './lede87jmq_x1d.fits', './lede87joq_x1d.fits', './lede87jqq_x1d.fits']
Processing file ./lede87jkq_x1d.fits
Processing file ./lede87jmq_x1d.fits
Processing file ./lede87joq_x1d.fits
Processing file ./lede87jqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede87_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.946304118068
Truncating current grating at 1747.8317918737994
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede87_cspec.fits
Processing product (16196, '88')
Targets in visit (16196, '88'): ['MRK-817']
Processing target MRK-817 in visit (16196, '88')
Processing grating COS/G130M
Importing files ['./lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits']
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede88_cspec.fits
Processing grating COS/G160M
Importing files ['./lede88tlq_x1d.fits', './lede88tnq_x1d.fits', './lede88tpq_x1d.fits', './lede88trq_x1d.fits']
Processing file ./lede88tlq_x1d.fits
Processing file ./lede88tnq_x1d.fits
Processing file ./lede88tpq_x1d.fits
Processing file ./lede88trq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede88_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1453350676074
Truncating current grating at 1747.672299663824
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede88_cspec.fits
Processing product (16196, '89')
Targets in visit (16196, '89'): ['MRK-817']
Processing target MRK-817 in visit (16196, '89')
Processing grating COS/G130M
Importing files ['./lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits']
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede89_cspec.fits
Processing grating COS/G160M
Importing files ['./lede89bkq_x1d.fits', './lede89bmq_x1d.fits', './lede89boq_x1d.fits', './lede89bqq_x1d.fits']
Processing file ./lede89bkq_x1d.fits
Processing file ./lede89bmq_x1d.fits
Processing file ./lede89boq_x1d.fits
Processing file ./lede89bqq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede89_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1252031478302
Truncating current grating at 1747.7577443041564
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede89_cspec.fits
Processing product (16196, '90')
Targets in visit (16196, '90'): ['MRK-817']
Processing target MRK-817 in visit (16196, '90')
Processing grating COS/G130M
Importing files ['./lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits']
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede90_cspec.fits
Processing grating COS/G160M
Importing files ['./lede90dvq_x1d.fits', './lede90dxq_x1d.fits', './lede90dzq_x1d.fits', './lede90e1q_x1d.fits']
Processing file ./lede90dvq_x1d.fits
Processing file ./lede90dxq_x1d.fits
Processing file ./lede90dzq_x1d.fits
Processing file ./lede90e1q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede90_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2345908305585
Truncating current grating at 1747.769725741073
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede90_cspec.fits
Processing product (16196, '91')
Targets in visit (16196, '91'): ['MRK-817']
Processing target MRK-817 in visit (16196, '91')
Processing grating COS/G130M
Importing files ['./lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits']
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede91_cspec.fits
Processing grating COS/G160M
Importing files ['./lede91pgq_x1d.fits', './lede91piq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits']
Processing file ./lede91pgq_x1d.fits
Processing file ./lede91piq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede91_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1846147374881
Truncating current grating at 1747.745008794437
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede91_cspec.fits
Processing product (16196, '92')
Targets in visit (16196, '92'): ['MRK-817']
Processing target MRK-817 in visit (16196, '92')
Processing grating COS/G130M
Importing files ['./lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits']
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede92_cspec.fits
Processing grating COS/G160M
Importing files ['./lede92kbq_x1d.fits', './lede92kdq_x1d.fits', './lede92kfq_x1d.fits', './lede92khq_x1d.fits']
Processing file ./lede92kbq_x1d.fits
Processing file ./lede92kdq_x1d.fits
Processing file ./lede92kfq_x1d.fits
Processing file ./lede92khq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede92_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.5-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.164524114105
Truncating current grating at 1747.7080440929208
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede92_cspec.fits
Processing product (16196, '93')
Targets in visit (16196, '93'): ['MRK-817']
Processing target MRK-817 in visit (16196, '93')
Processing grating COS/G130M
Importing files ['./lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits']
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede93_cspec.fits
Processing grating COS/G160M
Importing files ['./lede93t1q_x1d.fits', './lede93t3q_x1d.fits', './lede93t5q_x1d.fits', './lede93t7q_x1d.fits']
Processing file ./lede93t1q_x1d.fits
Processing file ./lede93t3q_x1d.fits
Processing file ./lede93t5q_x1d.fits
Processing file ./lede93t7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede93_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.5-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1743114182987
Truncating current grating at 1747.7078075018667
Wrote products/hst_16196_cos_mrk-817_g130m-g160m_lede93_cspec.fits
Processing product (16196, '94')
Targets in visit (16196, '94'): ['MRK-817']
Processing target MRK-817 in visit (16196, '94')
Processing grating COS/G130M
Importing files ['./lede94r5q_x1d.fits', './lede94r7q_x1d.fits', './lede94r9q_x1d.fits', './lede94rbq_x1d.fits']
Processing file ./lede94r5q_x1d.fits
Processing file ./lede94r7q_x1d.fits
Processing file ./lede94r9q_x1d.fits
Processing file ./lede94rbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede94_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '95')
Targets in visit (16196, '95'): ['MRK-817']
Processing target MRK-817 in visit (16196, '95')
Processing grating COS/G160M
Importing files ['./lede95roq_x1d.fits', './lede95rwq_x1d.fits']
Processing file ./lede95roq_x1d.fits
Processing file ./lede95rwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede95_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '96')
Targets in visit (16196, '96'): ['MRK-817']
Processing target MRK-817 in visit (16196, '96')
Processing grating COS/G130M
Importing files ['./lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede96_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, '97')
Targets in visit (16196, '97'): ['MRK-817']
Processing target MRK-817 in visit (16196, '97')
Processing grating COS/G160M
Importing files ['./lede97ejq_x1d.fits', './lede97elq_x1d.fits']
Processing file ./lede97ejq_x1d.fits
Processing file ./lede97elq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede97_cspec.fits
No need to make abutted product as only 1 grating
Processing product (16196, 'a5')
Targets in visit (16196, 'a5'): ['MRK-817']
Processing target MRK-817 in visit (16196, 'a5')
Processing grating STIS/G750L
Importing files ['./oedea5020_sx1.fits', './oedea5030_sx1.fits', './oedea5040_sx1.fits']
Processing file ./oedea5020_sx1.fits
Processing file ./oedea5030_sx1.fits
Processing file ./oedea5040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oedea5_cspec.fits
Processing grating STIS/G430L
Importing files ['./oedea5050_sx1.fits', './oedea5060_sx1.fits', './oedea5070_sx1.fits']
Processing file ./oedea5050_sx1.fits
Processing file ./oedea5060_sx1.fits
Processing file ./oedea5070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oedea5_cspec.fits
Processing grating STIS/G230L
Importing files ['./oedea5080_x1d.fits']
Processing file ./oedea5080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oedea5_cspec.fits
Making a product from these gratings
STIS/G230L 1582.0-3158.7 (Actual: 1579.4-3143.2)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5700.3)
STIS/G750L 5261.3-10252.3 (Actual: 5303.8-10242.2)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G230L
Abutting STIS/G430L product to current result
With a transition wavelength of 3143.215827505996
Abutting STIS/G750L product to current result
With a transition wavelength of 5700.3201354009825
Truncating current grating at 10242.22565091332
Wrote products/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea5_cspec.fits
Processing product (16196, 'a6')
Targets in visit (16196, 'a6'): ['MRK-817']
Processing target MRK-817 in visit (16196, 'a6')
Processing grating STIS/G750L
Importing files ['./oedea6020_sx1.fits', './oedea6030_sx1.fits', './oedea6040_sx1.fits']
Processing file ./oedea6020_sx1.fits
Processing file ./oedea6030_sx1.fits
Processing file ./oedea6040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oedea6_cspec.fits
Processing grating STIS/G430L
Importing files ['./oedea6050_sx1.fits', './oedea6060_sx1.fits', './oedea6070_sx1.fits']
Processing file ./oedea6050_sx1.fits
Processing file ./oedea6060_sx1.fits
Processing file ./oedea6070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oedea6_cspec.fits
Processing grating STIS/G230L
Importing files ['./oedea6080_x1d.fits']
Processing file ./oedea6080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oedea6_cspec.fits
Making a product from these gratings
STIS/G230L 1582.0-3158.7 (Actual: 1588.8-3157.1)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5700.5)
STIS/G750L 5261.3-10252.3 (Actual: 5304.8-10243.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G230L
Abutting STIS/G430L product to current result
With a transition wavelength of 3157.071135310083
Abutting STIS/G750L product to current result
With a transition wavelength of 5700.492629471769
Truncating current grating at 10243.531587044345
Wrote products/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea6_cspec.fits
Processing product (16196, 'an')
Targets in visit (16196, 'an'): ['MRK-817']
Processing target MRK-817 in visit (16196, 'an')
Processing grating STIS/G750L
Importing files ['./oedean020_sx1.fits', './oedean030_sx1.fits', './oedean040_sx1.fits']
Processing file ./oedean020_sx1.fits
Processing file ./oedean030_sx1.fits
Processing file ./oedean040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oedean_cspec.fits
Processing grating STIS/G430L
Importing files ['./oedean050_sx1.fits', './oedean060_sx1.fits', './oedean070_sx1.fits']
Processing file ./oedean050_sx1.fits
Processing file ./oedean060_sx1.fits
Processing file ./oedean070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oedean_cspec.fits
Processing grating STIS/G230L
Importing files ['./oedean080_x1d.fits']
Processing file ./oedean080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oedean_cspec.fits
Making a product from these gratings
STIS/G230L 1582.0-3158.7 (Actual: 1582.8-3151.2)
STIS/G430L 2895.9-5704.4 (Actual: 2976.5-5701.5)
STIS/G750L 5261.3-10252.3 (Actual: 5304.8-10243.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G230L
Abutting STIS/G430L product to current result
With a transition wavelength of 3151.1882325880265
Abutting STIS/G750L product to current result
With a transition wavelength of 5701.494974535856
Truncating current grating at 10243.536619541446
Wrote products/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedean_cspec.fits
Processing product (16196, 's1')
Targets in visit (16196, 's1'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 's1')
Processing grating COS/G130M
Importing files ['./ledes1vuq_x1d.fits', './ledes1vwq_x1d.fits', './ledes1vyq_x1d.fits', './ledes1w0q_x1d.fits']
Processing file ./ledes1vuq_x1d.fits
Processing file ./ledes1vwq_x1d.fits
Processing file ./ledes1vyq_x1d.fits
Processing file ./ledes1w0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledes1_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes1w2q_x1d.fits', './ledes1w4q_x1d.fits', './ledes1w6q_x1d.fits', './ledes1w8q_x1d.fits']
Processing file ./ledes1w2q_x1d.fits
Processing file ./ledes1w4q_x1d.fits
Processing file ./ledes1w6q_x1d.fits
Processing file ./ledes1w8q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledes1_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1756710234188
Truncating current grating at 1747.7096448489933
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledes1_cspec.fits
Processing product (16196, 's2')
Targets in visit (16196, 's2'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 's2')
Processing grating COS/G130M
Importing files ['./ledes2epq_x1d.fits', './ledes2erq_x1d.fits', './ledes2etq_x1d.fits', './ledes2evq_x1d.fits']
Processing file ./ledes2epq_x1d.fits
Processing file ./ledes2erq_x1d.fits
Processing file ./ledes2etq_x1d.fits
Processing file ./ledes2evq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledes2_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes2f5q_x1d.fits', './ledes2f7q_x1d.fits', './ledes2f9q_x1d.fits', './ledes2fbq_x1d.fits']
Processing file ./ledes2f5q_x1d.fits
Processing file ./ledes2f7q_x1d.fits
Processing file ./ledes2f9q_x1d.fits
Processing file ./ledes2fbq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledes2_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.094216487438
Truncating current grating at 1747.8174875721372
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledes2_cspec.fits
Processing product (16196, 's3')
Targets in visit (16196, 's3'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 's3')
Processing grating COS/G130M
Importing files ['./ledes3fhq_x1d.fits', './ledes3fjq_x1d.fits', './ledes3flq_x1d.fits', './ledes3fnq_x1d.fits']
Processing file ./ledes3fhq_x1d.fits
Processing file ./ledes3fjq_x1d.fits
Processing file ./ledes3flq_x1d.fits
Processing file ./ledes3fnq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledes3_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes3fpq_x1d.fits', './ledes3fsq_x1d.fits', './ledes3fuq_x1d.fits', './ledes3fwq_x1d.fits']
Processing file ./ledes3fpq_x1d.fits
Processing file ./ledes3fsq_x1d.fits
Processing file ./ledes3fuq_x1d.fits
Processing file ./ledes3fwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledes3_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1366.9)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.865838445995
Truncating current grating at 1747.6960426520227
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledes3_cspec.fits
Processing product (16196, 's4')
Targets in visit (16196, 's4'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 's4')
Processing grating COS/G130M
Importing files ['./ledes4egq_x1d.fits', './ledes4eiq_x1d.fits', './ledes4ekq_x1d.fits', './ledes4emq_x1d.fits']
Processing file ./ledes4egq_x1d.fits
Processing file ./ledes4eiq_x1d.fits
Processing file ./ledes4ekq_x1d.fits
Processing file ./ledes4emq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledes4_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes4eoq_x1d.fits', './ledes4eqq_x1d.fits', './ledes4esq_x1d.fits', './ledes4euq_x1d.fits']
Processing file ./ledes4eoq_x1d.fits
Processing file ./ledes4eqq_x1d.fits
Processing file ./ledes4esq_x1d.fits
Processing file ./ledes4euq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledes4_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.149200204156
Truncating current grating at 1747.7265275840853
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledes4_cspec.fits
Processing product (16196, 's6')
Targets in visit (16196, 's6'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 's6')
Processing grating COS/G130M
Importing files ['./ledes6f7q_x1d.fits', './ledes6f9q_x1d.fits', './ledes6fbq_x1d.fits', './ledes6fdq_x1d.fits']
Processing file ./ledes6f7q_x1d.fits
Processing file ./ledes6f9q_x1d.fits
Processing file ./ledes6fbq_x1d.fits
Processing file ./ledes6fdq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledes6_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes6ffq_x1d.fits', './ledes6fhq_x1d.fits', './ledes6fjq_x1d.fits', './ledes6flq_x1d.fits']
Processing file ./ledes6ffq_x1d.fits
Processing file ./ledes6fhq_x1d.fits
Processing file ./ledes6fjq_x1d.fits
Processing file ./ledes6flq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledes6_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1698791195904
Truncating current grating at 1747.798014869663
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledes6_cspec.fits
Processing product (16196, 's9')
Targets in visit (16196, 's9'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 's9')
Processing grating COS/G130M
Importing files ['./ledes9hdq_x1d.fits', './ledes9hgq_x1d.fits', './ledes9hiq_x1d.fits', './ledes9hkq_x1d.fits']
Processing file ./ledes9hdq_x1d.fits
Processing file ./ledes9hgq_x1d.fits
Processing file ./ledes9hiq_x1d.fits
Processing file ./ledes9hkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledes9_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes9htq_x1d.fits', './ledes9hwq_x1d.fits', './ledes9hyq_x1d.fits', './ledes9i0q_x1d.fits']
Processing file ./ledes9htq_x1d.fits
Processing file ./ledes9hwq_x1d.fits
Processing file ./ledes9hyq_x1d.fits
Processing file ./ledes9i0q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledes9_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.27607441689
Truncating current grating at 1747.8436207325633
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledes9_cspec.fits
Processing product (16196, 'sa')
Targets in visit (16196, 'sa'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 'sa')
Processing grating COS/G130M
Importing files ['./ledesapwq_x1d.fits', './ledesapyq_x1d.fits', './ledesaq0q_x1d.fits', './ledesaq6q_x1d.fits']
Processing file ./ledesapwq_x1d.fits
Processing file ./ledesapyq_x1d.fits
Processing file ./ledesaq0q_x1d.fits
Processing file ./ledesaq6q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledesa_cspec.fits
Processing grating COS/G160M
Importing files ['./ledesaq8q_x1d.fits', './ledesaqtq_x1d.fits', './ledesaqvq_x1d.fits', './ledesaqxq_x1d.fits']
Processing file ./ledesaq8q_x1d.fits
Processing file ./ledesaqtq_x1d.fits
Processing file ./ledesaqvq_x1d.fits
Processing file ./ledesaqxq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledesa_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.141881716389
Truncating current grating at 1747.9720217261129
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledesa_cspec.fits
Processing product (16196, 'sd')
Targets in visit (16196, 'sd'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 'sd')
Processing grating COS/G130M
Importing files ['./ledesdniq_x1d.fits', './ledesdnkq_x1d.fits', './ledesdnmq_x1d.fits', './ledesdnoq_x1d.fits']
Processing file ./ledesdniq_x1d.fits
Processing file ./ledesdnkq_x1d.fits
Processing file ./ledesdnmq_x1d.fits
Processing file ./ledesdnoq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledesd_cspec.fits
Processing grating COS/G160M
Importing files ['./ledesdnqq_x1d.fits', './ledesdnsq_x1d.fits', './ledesdnuq_x1d.fits', './ledesdnwq_x1d.fits']
Processing file ./ledesdnqq_x1d.fits
Processing file ./ledesdnsq_x1d.fits
Processing file ./ledesdnuq_x1d.fits
Processing file ./ledesdnwq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledesd_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1366.9)
COS/G160M 1342-1800 (Actual: 1345.5-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.916156199066
Truncating current grating at 1747.7946980379165
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledesd_cspec.fits
Processing product (16196, 'se')
Targets in visit (16196, 'se'): ['WD0308-565']
Processing target WD0308-565 in visit (16196, 'se')
Processing grating COS/G130M
Importing files ['./ledesex9q_x1d.fits', './ledesexbq_x1d.fits', './ledesexdq_x1d.fits', './ledesexfq_x1d.fits']
Processing file ./ledesex9q_x1d.fits
Processing file ./ledesexbq_x1d.fits
Processing file ./ledesexdq_x1d.fits
Processing file ./ledesexfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_ledese_cspec.fits
Processing grating COS/G160M
Importing files ['./ledesexhq_x1d.fits', './ledesexjq_x1d.fits', './ledesexwq_x1d.fits', './ledesexyq_x1d.fits']
Processing file ./ledesexhq_x1d.fits
Processing file ./ledesexjq_x1d.fits
Processing file ./ledesexwq_x1d.fits
Processing file ./ledesexyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_ledese_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.1-1367.0)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9963206054776
Truncating current grating at 1747.7708432557542
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_ledese_cspec.fits
Looping over proposals
Processing product 16196
Targets in proposal 16196: ['MRK-817', 'WD0308-565']
Processing target MRK-817 in proposal 16196
Processing grating COS/G130M
Importing files ['./lede01icq_x1d.fits', './lede01ieq_x1d.fits', './lede01igq_x1d.fits', './lede01iiq_x1d.fits', './lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0aetq_x1d.fits', './lede0aevq_x1d.fits', './lede0aexq_x1d.fits', './lede0aezq_x1d.fits', './lede0bj1q_x1d.fits', './lede0bj3q_x1d.fits', './lede0bj5q_x1d.fits', './lede0bj7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede0iknq_x1d.fits', './lede0ikpq_x1d.fits', './lede0ikrq_x1d.fits', './lede0iktq_x1d.fits', './lede0jw1q_x1d.fits', './lede0jw3q_x1d.fits', './lede0jw5q_x1d.fits', './lede0jw7q_x1d.fits', './lede0kf5q_x1d.fits', './lede0kf7q_x1d.fits', './lede0kf9q_x1d.fits', './lede0kfbq_x1d.fits', './lede0loxq_x1d.fits', './lede0lozq_x1d.fits', './lede0lp1q_x1d.fits', './lede0lp3q_x1d.fits', './lede0mz6q_x1d.fits', './lede0mz8q_x1d.fits', './lede0mzaq_x1d.fits', './lede0mzvq_x1d.fits', './lede0njbq_x1d.fits', './lede0njeq_x1d.fits', './lede0njgq_x1d.fits', './lede0njiq_x1d.fits', './lede0oglq_x1d.fits', './lede0ognq_x1d.fits', './lede0ogpq_x1d.fits', './lede0ogrq_x1d.fits', './lede0psiq_x1d.fits', './lede0pskq_x1d.fits', './lede0psmq_x1d.fits', './lede0psoq_x1d.fits', './lede0qc2q_x1d.fits', './lede0qc4q_x1d.fits', './lede0qc6q_x1d.fits', './lede0qc8q_x1d.fits', './lede0ra6q_x1d.fits', './lede0ra8q_x1d.fits', './lede0rabq_x1d.fits', './lede0ragq_x1d.fits', './lede0to1q_x1d.fits', './lede0to4q_x1d.fits', './lede0to6q_x1d.fits', './lede0tobq_x1d.fits', './lede0uzeq_x1d.fits', './lede0uzhq_x1d.fits', './lede0uzjq_x1d.fits', './lede0uzoq_x1d.fits', './lede0xgrq_x1d.fits', './lede0xgtq_x1d.fits', './lede0xgvq_x1d.fits', './lede0xgyq_x1d.fits', './lede0zz2q_x1d.fits', './lede0zz4q_x1d.fits', './lede0zz6q_x1d.fits', './lede0zz8q_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1bvgq_x1d.fits', './lede1bviq_x1d.fits', './lede1bvkq_x1d.fits', './lede1bvmq_x1d.fits', './lede1cf2q_x1d.fits', './lede1cf4q_x1d.fits', './lede1cf6q_x1d.fits', './lede1cf8q_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1gaeq_x1d.fits', './lede1gahq_x1d.fits', './lede1gajq_x1d.fits', './lede1gamq_x1d.fits', './lede1hhcq_x1d.fits', './lede1hheq_x1d.fits', './lede1hhgq_x1d.fits', './lede1hhiq_x1d.fits', './lede1irbq_x1d.fits', './lede1irdq_x1d.fits', './lede1irfq_x1d.fits', './lede1irhq_x1d.fits', './lede1mtsq_x1d.fits', './lede1mtuq_x1d.fits', './lede1mtwq_x1d.fits', './lede1mu1q_x1d.fits', './lede1noiq_x1d.fits', './lede1nokq_x1d.fits', './lede1nomq_x1d.fits', './lede1nooq_x1d.fits', './lede1oceq_x1d.fits', './lede1ocgq_x1d.fits', './lede1ociq_x1d.fits', './lede1ockq_x1d.fits', './lede1pkjq_x1d.fits', './lede1pklq_x1d.fits', './lede1pknq_x1d.fits', './lede1pkpq_x1d.fits', './lede1qspq_x1d.fits', './lede1qsrq_x1d.fits', './lede1qstq_x1d.fits', './lede1qsvq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2eyeq_x1d.fits', './lede2eygq_x1d.fits', './lede2eyiq_x1d.fits', './lede2eylq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2nknq_x1d.fits', './lede2nkqq_x1d.fits', './lede2nkuq_x1d.fits', './lede2nkwq_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede32s0q_x1d.fits', './lede32s2q_x1d.fits', './lede32s5q_x1d.fits', './lede32s7q_x1d.fits', './lede33rzq_x1d.fits', './lede33s2q_x1d.fits', './lede33s4q_x1d.fits', './lede33s7q_x1d.fits', './lede34lnq_x1d.fits', './lede34lpq_x1d.fits', './lede34lrq_x1d.fits', './lede34luq_x1d.fits', './lede35xrq_x1d.fits', './lede35xtq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits', './lede36g0q_x1d.fits', './lede36g2q_x1d.fits', './lede36g4q_x1d.fits', './lede36g6q_x1d.fits', './lede37l5q_x1d.fits', './lede37l7q_x1d.fits', './lede37l9q_x1d.fits', './lede37lbq_x1d.fits', './lede38tsq_x1d.fits', './lede38tuq_x1d.fits', './lede38twq_x1d.fits', './lede38tyq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3efcq_x1d.fits', './lede3efeq_x1d.fits', './lede3efgq_x1d.fits', './lede3efiq_x1d.fits', './lede3fdhq_x1d.fits', './lede3fdjq_x1d.fits', './lede3fdlq_x1d.fits', './lede3fdnq_x1d.fits', './lede3gmjq_x1d.fits', './lede3gmlq_x1d.fits', './lede3gmnq_x1d.fits', './lede3gmpq_x1d.fits', './lede3hbeq_x1d.fits', './lede3hbhq_x1d.fits', './lede3hbjq_x1d.fits', './lede3hblq_x1d.fits', './lede3irrq_x1d.fits', './lede3irtq_x1d.fits', './lede3irvq_x1d.fits', './lede3irxq_x1d.fits', './lede3lppq_x1d.fits', './lede3lprq_x1d.fits', './lede3lptq_x1d.fits', './lede3lpvq_x1d.fits', './lede3me4q_x1d.fits', './lede3me6q_x1d.fits', './lede3me8q_x1d.fits', './lede3meaq_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede3pr0q_x1d.fits', './lede3pr2q_x1d.fits', './lede3pr4q_x1d.fits', './lede3pr6q_x1d.fits', './lede3qzpq_x1d.fits', './lede3qzrq_x1d.fits', './lede3qztq_x1d.fits', './lede3qzvq_x1d.fits', './lede3rh0q_x1d.fits', './lede3rh2q_x1d.fits', './lede3rh4q_x1d.fits', './lede3rh6q_x1d.fits', './lede3staq_x1d.fits', './lede3stcq_x1d.fits', './lede3steq_x1d.fits', './lede3stgq_x1d.fits', './lede3ua1q_x1d.fits', './lede3ua3q_x1d.fits', './lede3uzvq_x1d.fits', './lede3uzyq_x1d.fits', './lede3vijq_x1d.fits', './lede3vimq_x1d.fits', './lede3vioq_x1d.fits', './lede3viqq_x1d.fits', './lede3wduq_x1d.fits', './lede3wdwq_x1d.fits', './lede3wdyq_x1d.fits', './lede3we0q_x1d.fits', './lede3xjdq_x1d.fits', './lede3xjfq_x1d.fits', './lede3xjhq_x1d.fits', './lede3xjmq_x1d.fits', './lede3yq7q_x1d.fits', './lede3yq9q_x1d.fits', './lede3yqbq_x1d.fits', './lede3yqdq_x1d.fits', './lede3za1q_x1d.fits', './lede3zzuq_x1d.fits', './lede3zzwq_x1d.fits', './lede3zzyq_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede4ak6q_x1d.fits', './lede4ak8q_x1d.fits', './lede4akaq_x1d.fits', './lede4akcq_x1d.fits', './lede4epnq_x1d.fits', './lede4eppq_x1d.fits', './lede4eprq_x1d.fits', './lede4eptq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede94r5q_x1d.fits', './lede94r7q_x1d.fits', './lede94r9q_x1d.fits', './lede94rbq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede01icq_x1d.fits
Processing file ./lede01ieq_x1d.fits
Processing file ./lede01igq_x1d.fits
Processing file ./lede01iiq_x1d.fits
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0aetq_x1d.fits
Processing file ./lede0aevq_x1d.fits
Processing file ./lede0aexq_x1d.fits
Processing file ./lede0aezq_x1d.fits
Processing file ./lede0bj1q_x1d.fits
Processing file ./lede0bj3q_x1d.fits
Processing file ./lede0bj5q_x1d.fits
Processing file ./lede0bj7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede0iknq_x1d.fits
Processing file ./lede0ikpq_x1d.fits
Processing file ./lede0ikrq_x1d.fits
Processing file ./lede0iktq_x1d.fits
Processing file ./lede0jw1q_x1d.fits
Processing file ./lede0jw3q_x1d.fits
Processing file ./lede0jw5q_x1d.fits
Processing file ./lede0jw7q_x1d.fits
Processing file ./lede0kf5q_x1d.fits
Processing file ./lede0kf7q_x1d.fits
Processing file ./lede0kf9q_x1d.fits
Processing file ./lede0kfbq_x1d.fits
Processing file ./lede0loxq_x1d.fits
Processing file ./lede0lozq_x1d.fits
Processing file ./lede0lp1q_x1d.fits
Processing file ./lede0lp3q_x1d.fits
Processing file ./lede0mz6q_x1d.fits
Processing file ./lede0mz8q_x1d.fits
Processing file ./lede0mzaq_x1d.fits
Processing file ./lede0mzvq_x1d.fits
Processing file ./lede0njbq_x1d.fits
Processing file ./lede0njeq_x1d.fits
Processing file ./lede0njgq_x1d.fits
Processing file ./lede0njiq_x1d.fits
Processing file ./lede0oglq_x1d.fits
Processing file ./lede0ognq_x1d.fits
Processing file ./lede0ogpq_x1d.fits
Processing file ./lede0ogrq_x1d.fits
Processing file ./lede0psiq_x1d.fits
Processing file ./lede0pskq_x1d.fits
Processing file ./lede0psmq_x1d.fits
Processing file ./lede0psoq_x1d.fits
Processing file ./lede0qc2q_x1d.fits
Processing file ./lede0qc4q_x1d.fits
Processing file ./lede0qc6q_x1d.fits
Processing file ./lede0qc8q_x1d.fits
Processing file ./lede0ra6q_x1d.fits
Processing file ./lede0ra8q_x1d.fits
Processing file ./lede0rabq_x1d.fits
Processing file ./lede0ragq_x1d.fits
Processing file ./lede0to1q_x1d.fits
Processing file ./lede0to4q_x1d.fits
Processing file ./lede0to6q_x1d.fits
Processing file ./lede0tobq_x1d.fits
Processing file ./lede0uzeq_x1d.fits
Processing file ./lede0uzhq_x1d.fits
Processing file ./lede0uzjq_x1d.fits
Processing file ./lede0uzoq_x1d.fits
Processing file ./lede0xgrq_x1d.fits
Processing file ./lede0xgtq_x1d.fits
Processing file ./lede0xgvq_x1d.fits
Processing file ./lede0xgyq_x1d.fits
Processing file ./lede0zz2q_x1d.fits
Processing file ./lede0zz4q_x1d.fits
Processing file ./lede0zz6q_x1d.fits
Processing file ./lede0zz8q_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1bvgq_x1d.fits
Processing file ./lede1bviq_x1d.fits
Processing file ./lede1bvkq_x1d.fits
Processing file ./lede1bvmq_x1d.fits
Processing file ./lede1cf2q_x1d.fits
Processing file ./lede1cf4q_x1d.fits
Processing file ./lede1cf6q_x1d.fits
Processing file ./lede1cf8q_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1gaeq_x1d.fits
Processing file ./lede1gahq_x1d.fits
Processing file ./lede1gajq_x1d.fits
Processing file ./lede1gamq_x1d.fits
Processing file ./lede1hhcq_x1d.fits
Processing file ./lede1hheq_x1d.fits
Processing file ./lede1hhgq_x1d.fits
Processing file ./lede1hhiq_x1d.fits
Processing file ./lede1irbq_x1d.fits
Processing file ./lede1irdq_x1d.fits
Processing file ./lede1irfq_x1d.fits
Processing file ./lede1irhq_x1d.fits
Processing file ./lede1mtsq_x1d.fits
Processing file ./lede1mtuq_x1d.fits
Processing file ./lede1mtwq_x1d.fits
Processing file ./lede1mu1q_x1d.fits
Processing file ./lede1noiq_x1d.fits
Processing file ./lede1nokq_x1d.fits
Processing file ./lede1nomq_x1d.fits
Processing file ./lede1nooq_x1d.fits
Processing file ./lede1oceq_x1d.fits
Processing file ./lede1ocgq_x1d.fits
Processing file ./lede1ociq_x1d.fits
Processing file ./lede1ockq_x1d.fits
Processing file ./lede1pkjq_x1d.fits
Processing file ./lede1pklq_x1d.fits
Processing file ./lede1pknq_x1d.fits
Processing file ./lede1pkpq_x1d.fits
Processing file ./lede1qspq_x1d.fits
Processing file ./lede1qsrq_x1d.fits
Processing file ./lede1qstq_x1d.fits
Processing file ./lede1qsvq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2eyeq_x1d.fits
Processing file ./lede2eygq_x1d.fits
Processing file ./lede2eyiq_x1d.fits
Processing file ./lede2eylq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2nknq_x1d.fits
Processing file ./lede2nkqq_x1d.fits
Processing file ./lede2nkuq_x1d.fits
Processing file ./lede2nkwq_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede32s0q_x1d.fits
Processing file ./lede32s2q_x1d.fits
Processing file ./lede32s5q_x1d.fits
Processing file ./lede32s7q_x1d.fits
Processing file ./lede33rzq_x1d.fits
Processing file ./lede33s2q_x1d.fits
Processing file ./lede33s4q_x1d.fits
Processing file ./lede33s7q_x1d.fits
Processing file ./lede34lnq_x1d.fits
Processing file ./lede34lpq_x1d.fits
Processing file ./lede34lrq_x1d.fits
Processing file ./lede34luq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xtq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede36g0q_x1d.fits
Processing file ./lede36g2q_x1d.fits
Processing file ./lede36g4q_x1d.fits
Processing file ./lede36g6q_x1d.fits
Processing file ./lede37l5q_x1d.fits
Processing file ./lede37l7q_x1d.fits
Processing file ./lede37l9q_x1d.fits
Processing file ./lede37lbq_x1d.fits
Processing file ./lede38tsq_x1d.fits
Processing file ./lede38tuq_x1d.fits
Processing file ./lede38twq_x1d.fits
Processing file ./lede38tyq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3efcq_x1d.fits
Processing file ./lede3efeq_x1d.fits
Processing file ./lede3efgq_x1d.fits
Processing file ./lede3efiq_x1d.fits
Processing file ./lede3fdhq_x1d.fits
Processing file ./lede3fdjq_x1d.fits
Processing file ./lede3fdlq_x1d.fits
Processing file ./lede3fdnq_x1d.fits
Processing file ./lede3gmjq_x1d.fits
Processing file ./lede3gmlq_x1d.fits
Processing file ./lede3gmnq_x1d.fits
Processing file ./lede3gmpq_x1d.fits
Processing file ./lede3hbeq_x1d.fits
Processing file ./lede3hbhq_x1d.fits
Processing file ./lede3hbjq_x1d.fits
Processing file ./lede3hblq_x1d.fits
Processing file ./lede3irrq_x1d.fits
Processing file ./lede3irtq_x1d.fits
Processing file ./lede3irvq_x1d.fits
Processing file ./lede3irxq_x1d.fits
Processing file ./lede3lppq_x1d.fits
Processing file ./lede3lprq_x1d.fits
Processing file ./lede3lptq_x1d.fits
Processing file ./lede3lpvq_x1d.fits
Processing file ./lede3me4q_x1d.fits
Processing file ./lede3me6q_x1d.fits
Processing file ./lede3me8q_x1d.fits
Processing file ./lede3meaq_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede3pr0q_x1d.fits
Processing file ./lede3pr2q_x1d.fits
Processing file ./lede3pr4q_x1d.fits
Processing file ./lede3pr6q_x1d.fits
Processing file ./lede3qzpq_x1d.fits
Processing file ./lede3qzrq_x1d.fits
Processing file ./lede3qztq_x1d.fits
Processing file ./lede3qzvq_x1d.fits
Processing file ./lede3rh0q_x1d.fits
Processing file ./lede3rh2q_x1d.fits
Processing file ./lede3rh4q_x1d.fits
Processing file ./lede3rh6q_x1d.fits
Processing file ./lede3staq_x1d.fits
Processing file ./lede3stcq_x1d.fits
Processing file ./lede3steq_x1d.fits
Processing file ./lede3stgq_x1d.fits
Processing file ./lede3ua1q_x1d.fits
Processing file ./lede3ua3q_x1d.fits
Processing file ./lede3uzvq_x1d.fits
Processing file ./lede3uzyq_x1d.fits
Processing file ./lede3vijq_x1d.fits
Processing file ./lede3vimq_x1d.fits
Processing file ./lede3vioq_x1d.fits
Processing file ./lede3viqq_x1d.fits
Processing file ./lede3wduq_x1d.fits
Processing file ./lede3wdwq_x1d.fits
Processing file ./lede3wdyq_x1d.fits
Processing file ./lede3we0q_x1d.fits
Processing file ./lede3xjdq_x1d.fits
Processing file ./lede3xjfq_x1d.fits
Processing file ./lede3xjhq_x1d.fits
Processing file ./lede3xjmq_x1d.fits
Processing file ./lede3yq7q_x1d.fits
Processing file ./lede3yq9q_x1d.fits
Processing file ./lede3yqbq_x1d.fits
Processing file ./lede3yqdq_x1d.fits
Processing file ./lede3za1q_x1d.fits
Processing file ./lede3zzuq_x1d.fits
Processing file ./lede3zzwq_x1d.fits
Processing file ./lede3zzyq_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede4ak6q_x1d.fits
Processing file ./lede4ak8q_x1d.fits
Processing file ./lede4akaq_x1d.fits
Processing file ./lede4akcq_x1d.fits
Processing file ./lede4epnq_x1d.fits
Processing file ./lede4eppq_x1d.fits
Processing file ./lede4eprq_x1d.fits
Processing file ./lede4eptq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede94r5q_x1d.fits
Processing file ./lede94r7q_x1d.fits
Processing file ./lede94r9q_x1d.fits
Processing file ./lede94rbq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./lede0aetq_x1d.fits has scaled median = -60.645310559877146
Removing file ./lede0aetq_x1d.fits from product
Segment #0 from file ./lede0aevq_x1d.fits has scaled median = -61.99597405961379
Removing file ./lede0aevq_x1d.fits from product
Segment #0 from file ./lede0aexq_x1d.fits has scaled median = -60.990527802869245
Removing file ./lede0aexq_x1d.fits from product
Segment #0 from file ./lede0aezq_x1d.fits has scaled median = -60.40921241398424
Removing file ./lede0aezq_x1d.fits from product
Segment #0 from file ./lede0iknq_x1d.fits has scaled median = -85.68564484268951
Removing file ./lede0iknq_x1d.fits from product
Segment #0 from file ./lede0ikpq_x1d.fits has scaled median = -91.0029630052189
Removing file ./lede0ikpq_x1d.fits from product
Segment #0 from file ./lede0ikrq_x1d.fits has scaled median = -87.95175547970042
Removing file ./lede0ikrq_x1d.fits from product
Segment #0 from file ./lede0iktq_x1d.fits has scaled median = -88.16616262836479
Removing file ./lede0iktq_x1d.fits from product
Segment #0 from file ./lede0jw1q_x1d.fits has scaled median = -88.15529783809251
Removing file ./lede0jw1q_x1d.fits from product
Segment #0 from file ./lede0jw3q_x1d.fits has scaled median = -93.17928373027799
Removing file ./lede0jw3q_x1d.fits from product
Segment #0 from file ./lede0jw5q_x1d.fits has scaled median = -92.80892178751854
Removing file ./lede0jw5q_x1d.fits from product
Segment #0 from file ./lede0jw7q_x1d.fits has scaled median = -93.6282398506962
Removing file ./lede0jw7q_x1d.fits from product
Segment #0 from file ./lede0kf5q_x1d.fits has scaled median = -93.63542203449676
Removing file ./lede0kf5q_x1d.fits from product
Segment #1 from file ./lede0kf5q_x1d.fits has scaled median = -50.6480432763095
File ./lede0kf5q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0kf7q_x1d.fits has scaled median = -96.95222167660698
Removing file ./lede0kf7q_x1d.fits from product
Segment #0 from file ./lede0kf9q_x1d.fits has scaled median = -97.78279470582092
Removing file ./lede0kf9q_x1d.fits from product
Segment #0 from file ./lede0kfbq_x1d.fits has scaled median = -97.33708227773474
Removing file ./lede0kfbq_x1d.fits from product
Segment #0 from file ./lede0loxq_x1d.fits has scaled median = -84.3874653830908
Removing file ./lede0loxq_x1d.fits from product
Segment #0 from file ./lede0lozq_x1d.fits has scaled median = -89.76875413956205
Removing file ./lede0lozq_x1d.fits from product
Segment #0 from file ./lede0lp1q_x1d.fits has scaled median = -86.70202901143092
Removing file ./lede0lp1q_x1d.fits from product
Segment #0 from file ./lede0lp3q_x1d.fits has scaled median = -87.42885757099415
Removing file ./lede0lp3q_x1d.fits from product
Segment #0 from file ./lede0mz6q_x1d.fits has scaled median = -82.9602804719811
Removing file ./lede0mz6q_x1d.fits from product
Segment #0 from file ./lede0mz8q_x1d.fits has scaled median = -83.38322392470411
Removing file ./lede0mz8q_x1d.fits from product
Segment #0 from file ./lede0mzaq_x1d.fits has scaled median = -83.1444371977958
Removing file ./lede0mzaq_x1d.fits from product
Segment #0 from file ./lede0mzvq_x1d.fits has scaled median = -86.16158337815986
Removing file ./lede0mzvq_x1d.fits from product
Segment #0 from file ./lede0njbq_x1d.fits has scaled median = -80.19526921619426
Removing file ./lede0njbq_x1d.fits from product
Segment #0 from file ./lede0njeq_x1d.fits has scaled median = -81.12286970184091
Removing file ./lede0njeq_x1d.fits from product
Segment #0 from file ./lede0njgq_x1d.fits has scaled median = -83.58005359471626
Removing file ./lede0njgq_x1d.fits from product
Segment #0 from file ./lede0njiq_x1d.fits has scaled median = -81.27044178413195
Removing file ./lede0njiq_x1d.fits from product
Segment #0 from file ./lede0oglq_x1d.fits has scaled median = -81.24223317960931
Removing file ./lede0oglq_x1d.fits from product
Segment #0 from file ./lede0ognq_x1d.fits has scaled median = -85.55659765189907
Removing file ./lede0ognq_x1d.fits from product
Segment #0 from file ./lede0ogpq_x1d.fits has scaled median = -84.21426046051236
Removing file ./lede0ogpq_x1d.fits from product
Segment #0 from file ./lede0ogrq_x1d.fits has scaled median = -84.81717254545225
Removing file ./lede0ogrq_x1d.fits from product
Segment #0 from file ./lede0psiq_x1d.fits has scaled median = -88.98517894320555
Removing file ./lede0psiq_x1d.fits from product
Segment #0 from file ./lede0pskq_x1d.fits has scaled median = -88.76943237887714
Removing file ./lede0pskq_x1d.fits from product
Segment #0 from file ./lede0psmq_x1d.fits has scaled median = -90.19342396907304
Removing file ./lede0psmq_x1d.fits from product
Segment #0 from file ./lede0psoq_x1d.fits has scaled median = -92.49661162496898
Removing file ./lede0psoq_x1d.fits from product
Segment #0 from file ./lede0qc2q_x1d.fits has scaled median = -79.58150863413215
Removing file ./lede0qc2q_x1d.fits from product
Segment #0 from file ./lede0qc4q_x1d.fits has scaled median = -84.00060262895282
Removing file ./lede0qc4q_x1d.fits from product
Segment #0 from file ./lede0qc6q_x1d.fits has scaled median = -80.66115354230288
Removing file ./lede0qc6q_x1d.fits from product
Segment #0 from file ./lede0qc8q_x1d.fits has scaled median = -84.02339963346373
Removing file ./lede0qc8q_x1d.fits from product
Segment #0 from file ./lede0ra6q_x1d.fits has scaled median = -90.01505913214224
Removing file ./lede0ra6q_x1d.fits from product
Segment #0 from file ./lede0ra8q_x1d.fits has scaled median = -92.51428079975636
Removing file ./lede0ra8q_x1d.fits from product
Segment #0 from file ./lede0rabq_x1d.fits has scaled median = -94.69102087262303
Removing file ./lede0rabq_x1d.fits from product
Segment #0 from file ./lede0ragq_x1d.fits has scaled median = -96.479543994029
Removing file ./lede0ragq_x1d.fits from product
Segment #0 from file ./lede0to1q_x1d.fits has scaled median = -90.60026195963115
Removing file ./lede0to1q_x1d.fits from product
Segment #0 from file ./lede0to4q_x1d.fits has scaled median = -89.21694043194591
Removing file ./lede0to4q_x1d.fits from product
Segment #0 from file ./lede0to6q_x1d.fits has scaled median = -89.50502910847108
Removing file ./lede0to6q_x1d.fits from product
Segment #0 from file ./lede0tobq_x1d.fits has scaled median = -90.68708164925091
Removing file ./lede0tobq_x1d.fits from product
Segment #0 from file ./lede0uzeq_x1d.fits has scaled median = -70.80000849169292
Removing file ./lede0uzeq_x1d.fits from product
Segment #0 from file ./lede0uzhq_x1d.fits has scaled median = -72.13023128581877
Removing file ./lede0uzhq_x1d.fits from product
Segment #0 from file ./lede0uzjq_x1d.fits has scaled median = -70.81445808945146
Removing file ./lede0uzjq_x1d.fits from product
Segment #0 from file ./lede0uzoq_x1d.fits has scaled median = -72.24006018190684
Removing file ./lede0uzoq_x1d.fits from product
Segment #0 from file ./lede0zz2q_x1d.fits has scaled median = -85.03232726698694
Removing file ./lede0zz2q_x1d.fits from product
Segment #1 from file ./lede0zz2q_x1d.fits has scaled median = -52.356096995826654
File ./lede0zz2q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0zz4q_x1d.fits has scaled median = -86.4741083747858
Removing file ./lede0zz4q_x1d.fits from product
Segment #1 from file ./lede0zz4q_x1d.fits has scaled median = -50.66640465279374
File ./lede0zz4q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0zz6q_x1d.fits has scaled median = -83.74377348422425
Removing file ./lede0zz6q_x1d.fits from product
Segment #0 from file ./lede0zz8q_x1d.fits has scaled median = -85.14988951032669
Removing file ./lede0zz8q_x1d.fits from product
Segment #0 from file ./lede1bvgq_x1d.fits has scaled median = -57.8212488267717
Removing file ./lede1bvgq_x1d.fits from product
Segment #0 from file ./lede1bviq_x1d.fits has scaled median = -57.999779665711465
Removing file ./lede1bviq_x1d.fits from product
Segment #0 from file ./lede1bvkq_x1d.fits has scaled median = -60.12522747731277
Removing file ./lede1bvkq_x1d.fits from product
Segment #0 from file ./lede1bvmq_x1d.fits has scaled median = -58.46024293113931
Removing file ./lede1bvmq_x1d.fits from product
Segment #0 from file ./lede1gaeq_x1d.fits has scaled median = -56.55430799245538
Removing file ./lede1gaeq_x1d.fits from product
Segment #0 from file ./lede1gahq_x1d.fits has scaled median = -57.35577179887173
Removing file ./lede1gahq_x1d.fits from product
Segment #0 from file ./lede1gajq_x1d.fits has scaled median = -59.19571050961807
Removing file ./lede1gajq_x1d.fits from product
Segment #0 from file ./lede1gamq_x1d.fits has scaled median = -59.19151187210397
Removing file ./lede1gamq_x1d.fits from product
Segment #0 from file ./lede1hhcq_x1d.fits has scaled median = -60.73876074780903
Removing file ./lede1hhcq_x1d.fits from product
Segment #0 from file ./lede1hheq_x1d.fits has scaled median = -60.79128174013747
Removing file ./lede1hheq_x1d.fits from product
Segment #0 from file ./lede1hhgq_x1d.fits has scaled median = -60.2909884422402
Removing file ./lede1hhgq_x1d.fits from product
Segment #0 from file ./lede1hhiq_x1d.fits has scaled median = -60.96920964376545
Removing file ./lede1hhiq_x1d.fits from product
Segment #0 from file ./lede1irbq_x1d.fits has scaled median = -65.83813127808475
Removing file ./lede1irbq_x1d.fits from product
Segment #0 from file ./lede1irdq_x1d.fits has scaled median = -65.3994300254094
Removing file ./lede1irdq_x1d.fits from product
Segment #0 from file ./lede1irfq_x1d.fits has scaled median = -65.59142464588828
Removing file ./lede1irfq_x1d.fits from product
Segment #0 from file ./lede1irhq_x1d.fits has scaled median = -64.9165261777422
Removing file ./lede1irhq_x1d.fits from product
Segment #0 from file ./lede1mtsq_x1d.fits has scaled median = -54.91647773953767
Removing file ./lede1mtsq_x1d.fits from product
Segment #0 from file ./lede1mtuq_x1d.fits has scaled median = -55.66596130885389
Removing file ./lede1mtuq_x1d.fits from product
Segment #0 from file ./lede1mtwq_x1d.fits has scaled median = -56.930796579638056
Removing file ./lede1mtwq_x1d.fits from product
Segment #0 from file ./lede1mu1q_x1d.fits has scaled median = -57.76784922139001
Removing file ./lede1mu1q_x1d.fits from product
Segment #0 from file ./lede2nknq_x1d.fits has scaled median = -61.546825194061306
Removing file ./lede2nknq_x1d.fits from product
Segment #0 from file ./lede2nkqq_x1d.fits has scaled median = -61.22889365219342
Removing file ./lede2nkqq_x1d.fits from product
Segment #0 from file ./lede2nkuq_x1d.fits has scaled median = -60.86703239491323
Removing file ./lede2nkuq_x1d.fits from product
Segment #0 from file ./lede2nkwq_x1d.fits has scaled median = -62.19386512235292
Removing file ./lede2nkwq_x1d.fits from product
Segment #0 from file ./lede3gmlq_x1d.fits has scaled median = -51.15217035356382
Removing file ./lede3gmlq_x1d.fits from product
Segment #0 from file ./lede3gmnq_x1d.fits has scaled median = -52.2781077478436
Removing file ./lede3gmnq_x1d.fits from product
Segment #0 from file ./lede3gmpq_x1d.fits has scaled median = -52.49150825182522
Removing file ./lede3gmpq_x1d.fits from product
Segment #0 from file ./lede3hbeq_x1d.fits has scaled median = -65.67792414687078
Removing file ./lede3hbeq_x1d.fits from product
Segment #0 from file ./lede3hbhq_x1d.fits has scaled median = -66.22884284040765
Removing file ./lede3hbhq_x1d.fits from product
Segment #0 from file ./lede3hbjq_x1d.fits has scaled median = -66.37290848488506
Removing file ./lede3hbjq_x1d.fits from product
Segment #0 from file ./lede3hblq_x1d.fits has scaled median = -64.51620042384096
Removing file ./lede3hblq_x1d.fits from product
Segment #0 from file ./lede3irrq_x1d.fits has scaled median = -58.18583858540694
Removing file ./lede3irrq_x1d.fits from product
Segment #0 from file ./lede3irtq_x1d.fits has scaled median = -60.468340788213716
Removing file ./lede3irtq_x1d.fits from product
Segment #0 from file ./lede3irvq_x1d.fits has scaled median = -58.40114270804331
Removing file ./lede3irvq_x1d.fits from product
Segment #0 from file ./lede3irxq_x1d.fits has scaled median = -59.82938946281125
Removing file ./lede3irxq_x1d.fits from product
Segment #0 from file ./lede3lppq_x1d.fits has scaled median = -60.35874983426471
Removing file ./lede3lppq_x1d.fits from product
Segment #0 from file ./lede3lprq_x1d.fits has scaled median = -60.768355239040595
Removing file ./lede3lprq_x1d.fits from product
Segment #0 from file ./lede3lptq_x1d.fits has scaled median = -60.837983570132174
Removing file ./lede3lptq_x1d.fits from product
Segment #0 from file ./lede3lpvq_x1d.fits has scaled median = -59.304719128974746
Removing file ./lede3lpvq_x1d.fits from product
Segment #0 from file ./lede3me4q_x1d.fits has scaled median = -86.85813504650694
Removing file ./lede3me4q_x1d.fits from product
Segment #0 from file ./lede3me6q_x1d.fits has scaled median = -88.99698092244816
Removing file ./lede3me6q_x1d.fits from product
Segment #0 from file ./lede3me8q_x1d.fits has scaled median = -87.03467457636378
Removing file ./lede3me8q_x1d.fits from product
Segment #0 from file ./lede3meaq_x1d.fits has scaled median = -87.7856454439362
Removing file ./lede3meaq_x1d.fits from product
Segment #0 from file ./lede3pr0q_x1d.fits has scaled median = -75.43978364035154
Removing file ./lede3pr0q_x1d.fits from product
Segment #0 from file ./lede3pr2q_x1d.fits has scaled median = -74.82111506083186
Removing file ./lede3pr2q_x1d.fits from product
Segment #0 from file ./lede3pr4q_x1d.fits has scaled median = -74.33299106253723
Removing file ./lede3pr4q_x1d.fits from product
Segment #0 from file ./lede3pr6q_x1d.fits has scaled median = -76.54734428809894
Removing file ./lede3pr6q_x1d.fits from product
Segment #0 from file ./lede3qzpq_x1d.fits has scaled median = -76.08746687596444
Removing file ./lede3qzpq_x1d.fits from product
Segment #0 from file ./lede3qzrq_x1d.fits has scaled median = -77.10940811176394
Removing file ./lede3qzrq_x1d.fits from product
Segment #0 from file ./lede3qztq_x1d.fits has scaled median = -75.4823839295765
Removing file ./lede3qztq_x1d.fits from product
Segment #0 from file ./lede3qzvq_x1d.fits has scaled median = -77.3709165008709
Removing file ./lede3qzvq_x1d.fits from product
Segment #0 from file ./lede3rh0q_x1d.fits has scaled median = -68.51171885683308
Removing file ./lede3rh0q_x1d.fits from product
Segment #0 from file ./lede3rh2q_x1d.fits has scaled median = -68.63739074966757
Removing file ./lede3rh2q_x1d.fits from product
Segment #0 from file ./lede3rh4q_x1d.fits has scaled median = -66.77270208132639
Removing file ./lede3rh4q_x1d.fits from product
Segment #0 from file ./lede3rh6q_x1d.fits has scaled median = -66.26147333060882
Removing file ./lede3rh6q_x1d.fits from product
Segment #0 from file ./lede3staq_x1d.fits has scaled median = -83.84674812224834
Removing file ./lede3staq_x1d.fits from product
Segment #0 from file ./lede3stcq_x1d.fits has scaled median = -84.64903759268687
Removing file ./lede3stcq_x1d.fits from product
Segment #0 from file ./lede3steq_x1d.fits has scaled median = -84.69271656506866
Removing file ./lede3steq_x1d.fits from product
Segment #0 from file ./lede3stgq_x1d.fits has scaled median = -89.5347136757512
Removing file ./lede3stgq_x1d.fits from product
Segment #0 from file ./lede4ak6q_x1d.fits has scaled median = -123.538654676342
Removing file ./lede4ak6q_x1d.fits from product
Segment #0 from file ./lede4ak8q_x1d.fits has scaled median = -119.54573608845419
Removing file ./lede4ak8q_x1d.fits from product
Segment #0 from file ./lede4akaq_x1d.fits has scaled median = -115.62956723009665
Removing file ./lede4akaq_x1d.fits from product
Segment #0 from file ./lede4akcq_x1d.fits has scaled median = -108.73408575818502
Removing file ./lede4akcq_x1d.fits from product
Importing files ['./lede01icq_x1d.fits', './lede01ieq_x1d.fits', './lede01igq_x1d.fits', './lede01iiq_x1d.fits', './lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0bj1q_x1d.fits', './lede0bj3q_x1d.fits', './lede0bj5q_x1d.fits', './lede0bj7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede0xgrq_x1d.fits', './lede0xgtq_x1d.fits', './lede0xgvq_x1d.fits', './lede0xgyq_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1cf2q_x1d.fits', './lede1cf4q_x1d.fits', './lede1cf6q_x1d.fits', './lede1cf8q_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1noiq_x1d.fits', './lede1nokq_x1d.fits', './lede1nomq_x1d.fits', './lede1nooq_x1d.fits', './lede1oceq_x1d.fits', './lede1ocgq_x1d.fits', './lede1ociq_x1d.fits', './lede1ockq_x1d.fits', './lede1pkjq_x1d.fits', './lede1pklq_x1d.fits', './lede1pknq_x1d.fits', './lede1pkpq_x1d.fits', './lede1qspq_x1d.fits', './lede1qsrq_x1d.fits', './lede1qstq_x1d.fits', './lede1qsvq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2eyeq_x1d.fits', './lede2eygq_x1d.fits', './lede2eyiq_x1d.fits', './lede2eylq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede32s0q_x1d.fits', './lede32s2q_x1d.fits', './lede32s5q_x1d.fits', './lede32s7q_x1d.fits', './lede33rzq_x1d.fits', './lede33s2q_x1d.fits', './lede33s4q_x1d.fits', './lede33s7q_x1d.fits', './lede34lnq_x1d.fits', './lede34lpq_x1d.fits', './lede34lrq_x1d.fits', './lede34luq_x1d.fits', './lede35xrq_x1d.fits', './lede35xtq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits', './lede36g0q_x1d.fits', './lede36g2q_x1d.fits', './lede36g4q_x1d.fits', './lede36g6q_x1d.fits', './lede37l5q_x1d.fits', './lede37l7q_x1d.fits', './lede37l9q_x1d.fits', './lede37lbq_x1d.fits', './lede38tsq_x1d.fits', './lede38tuq_x1d.fits', './lede38twq_x1d.fits', './lede38tyq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3efcq_x1d.fits', './lede3efeq_x1d.fits', './lede3efgq_x1d.fits', './lede3efiq_x1d.fits', './lede3fdhq_x1d.fits', './lede3fdjq_x1d.fits', './lede3fdlq_x1d.fits', './lede3fdnq_x1d.fits', './lede3gmjq_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede3ua1q_x1d.fits', './lede3ua3q_x1d.fits', './lede3uzvq_x1d.fits', './lede3uzyq_x1d.fits', './lede3vijq_x1d.fits', './lede3vimq_x1d.fits', './lede3vioq_x1d.fits', './lede3viqq_x1d.fits', './lede3wduq_x1d.fits', './lede3wdwq_x1d.fits', './lede3wdyq_x1d.fits', './lede3we0q_x1d.fits', './lede3xjdq_x1d.fits', './lede3xjfq_x1d.fits', './lede3xjhq_x1d.fits', './lede3xjmq_x1d.fits', './lede3yq7q_x1d.fits', './lede3yq9q_x1d.fits', './lede3yqbq_x1d.fits', './lede3yqdq_x1d.fits', './lede3za1q_x1d.fits', './lede3zzuq_x1d.fits', './lede3zzwq_x1d.fits', './lede3zzyq_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede4epnq_x1d.fits', './lede4eppq_x1d.fits', './lede4eprq_x1d.fits', './lede4eptq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede94r5q_x1d.fits', './lede94r7q_x1d.fits', './lede94r9q_x1d.fits', './lede94rbq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede01icq_x1d.fits
Processing file ./lede01ieq_x1d.fits
Processing file ./lede01igq_x1d.fits
Processing file ./lede01iiq_x1d.fits
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0bj1q_x1d.fits
Processing file ./lede0bj3q_x1d.fits
Processing file ./lede0bj5q_x1d.fits
Processing file ./lede0bj7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede0xgrq_x1d.fits
Processing file ./lede0xgtq_x1d.fits
Processing file ./lede0xgvq_x1d.fits
Processing file ./lede0xgyq_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1cf2q_x1d.fits
Processing file ./lede1cf4q_x1d.fits
Processing file ./lede1cf6q_x1d.fits
Processing file ./lede1cf8q_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1noiq_x1d.fits
Processing file ./lede1nokq_x1d.fits
Processing file ./lede1nomq_x1d.fits
Processing file ./lede1nooq_x1d.fits
Processing file ./lede1oceq_x1d.fits
Processing file ./lede1ocgq_x1d.fits
Processing file ./lede1ociq_x1d.fits
Processing file ./lede1ockq_x1d.fits
Processing file ./lede1pkjq_x1d.fits
Processing file ./lede1pklq_x1d.fits
Processing file ./lede1pknq_x1d.fits
Processing file ./lede1pkpq_x1d.fits
Processing file ./lede1qspq_x1d.fits
Processing file ./lede1qsrq_x1d.fits
Processing file ./lede1qstq_x1d.fits
Processing file ./lede1qsvq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2eyeq_x1d.fits
Processing file ./lede2eygq_x1d.fits
Processing file ./lede2eyiq_x1d.fits
Processing file ./lede2eylq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede32s0q_x1d.fits
Processing file ./lede32s2q_x1d.fits
Processing file ./lede32s5q_x1d.fits
Processing file ./lede32s7q_x1d.fits
Processing file ./lede33rzq_x1d.fits
Processing file ./lede33s2q_x1d.fits
Processing file ./lede33s4q_x1d.fits
Processing file ./lede33s7q_x1d.fits
Processing file ./lede34lnq_x1d.fits
Processing file ./lede34lpq_x1d.fits
Processing file ./lede34lrq_x1d.fits
Processing file ./lede34luq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xtq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede36g0q_x1d.fits
Processing file ./lede36g2q_x1d.fits
Processing file ./lede36g4q_x1d.fits
Processing file ./lede36g6q_x1d.fits
Processing file ./lede37l5q_x1d.fits
Processing file ./lede37l7q_x1d.fits
Processing file ./lede37l9q_x1d.fits
Processing file ./lede37lbq_x1d.fits
Processing file ./lede38tsq_x1d.fits
Processing file ./lede38tuq_x1d.fits
Processing file ./lede38twq_x1d.fits
Processing file ./lede38tyq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3efcq_x1d.fits
Processing file ./lede3efeq_x1d.fits
Processing file ./lede3efgq_x1d.fits
Processing file ./lede3efiq_x1d.fits
Processing file ./lede3fdhq_x1d.fits
Processing file ./lede3fdjq_x1d.fits
Processing file ./lede3fdlq_x1d.fits
Processing file ./lede3fdnq_x1d.fits
Processing file ./lede3gmjq_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede3ua1q_x1d.fits
Processing file ./lede3ua3q_x1d.fits
Processing file ./lede3uzvq_x1d.fits
Processing file ./lede3uzyq_x1d.fits
Processing file ./lede3vijq_x1d.fits
Processing file ./lede3vimq_x1d.fits
Processing file ./lede3vioq_x1d.fits
Processing file ./lede3viqq_x1d.fits
Processing file ./lede3wduq_x1d.fits
Processing file ./lede3wdwq_x1d.fits
Processing file ./lede3wdyq_x1d.fits
Processing file ./lede3we0q_x1d.fits
Processing file ./lede3xjdq_x1d.fits
Processing file ./lede3xjfq_x1d.fits
Processing file ./lede3xjhq_x1d.fits
Processing file ./lede3xjmq_x1d.fits
Processing file ./lede3yq7q_x1d.fits
Processing file ./lede3yq9q_x1d.fits
Processing file ./lede3yqbq_x1d.fits
Processing file ./lede3yqdq_x1d.fits
Processing file ./lede3za1q_x1d.fits
Processing file ./lede3zzuq_x1d.fits
Processing file ./lede3zzwq_x1d.fits
Processing file ./lede3zzyq_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede4epnq_x1d.fits
Processing file ./lede4eppq_x1d.fits
Processing file ./lede4eprq_x1d.fits
Processing file ./lede4eptq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede94r5q_x1d.fits
Processing file ./lede94r7q_x1d.fits
Processing file ./lede94r9q_x1d.fits
Processing file ./lede94rbq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./lede01icq_x1d.fits has scaled median = -53.432769358501446
Removing file ./lede01icq_x1d.fits from product
Segment #0 from file ./lede01ieq_x1d.fits has scaled median = -54.37450215276015
Removing file ./lede01ieq_x1d.fits from product
Segment #0 from file ./lede01igq_x1d.fits has scaled median = -55.35972982355442
Removing file ./lede01igq_x1d.fits from product
Segment #0 from file ./lede01iiq_x1d.fits has scaled median = -55.76095010333942
Removing file ./lede01iiq_x1d.fits from product
Segment #0 from file ./lede0bj1q_x1d.fits has scaled median = -58.62327143135624
Removing file ./lede0bj1q_x1d.fits from product
Segment #0 from file ./lede0bj3q_x1d.fits has scaled median = -58.45876762384852
Removing file ./lede0bj3q_x1d.fits from product
Segment #0 from file ./lede0bj5q_x1d.fits has scaled median = -60.284395494142345
Removing file ./lede0bj5q_x1d.fits from product
Segment #0 from file ./lede0bj7q_x1d.fits has scaled median = -60.79791268706215
Removing file ./lede0bj7q_x1d.fits from product
Segment #0 from file ./lede0xgrq_x1d.fits has scaled median = -66.9986954081252
Removing file ./lede0xgrq_x1d.fits from product
Segment #0 from file ./lede0xgtq_x1d.fits has scaled median = -67.27821519874504
Removing file ./lede0xgtq_x1d.fits from product
Segment #0 from file ./lede0xgvq_x1d.fits has scaled median = -68.06612798711213
Removing file ./lede0xgvq_x1d.fits from product
Segment #0 from file ./lede0xgyq_x1d.fits has scaled median = -65.6217629870415
Removing file ./lede0xgyq_x1d.fits from product
Segment #0 from file ./lede1noiq_x1d.fits has scaled median = -58.84541347735599
Removing file ./lede1noiq_x1d.fits from product
Segment #0 from file ./lede1nokq_x1d.fits has scaled median = -59.45128496279319
Removing file ./lede1nokq_x1d.fits from product
Segment #0 from file ./lede1nomq_x1d.fits has scaled median = -60.66572053249552
Removing file ./lede1nomq_x1d.fits from product
Segment #0 from file ./lede1nooq_x1d.fits has scaled median = -61.843274673968416
Removing file ./lede1nooq_x1d.fits from product
Segment #0 from file ./lede1oceq_x1d.fits has scaled median = -58.45929024866244
Removing file ./lede1oceq_x1d.fits from product
Segment #0 from file ./lede1ocgq_x1d.fits has scaled median = -58.545140138163994
Removing file ./lede1ocgq_x1d.fits from product
Segment #0 from file ./lede1ociq_x1d.fits has scaled median = -58.460646089256954
Removing file ./lede1ociq_x1d.fits from product
Segment #0 from file ./lede1ockq_x1d.fits has scaled median = -61.070390086426656
Removing file ./lede1ockq_x1d.fits from product
Segment #0 from file ./lede1pkjq_x1d.fits has scaled median = -54.37382175637994
Removing file ./lede1pkjq_x1d.fits from product
Segment #0 from file ./lede1pklq_x1d.fits has scaled median = -56.85957963315992
Removing file ./lede1pklq_x1d.fits from product
Segment #0 from file ./lede1pknq_x1d.fits has scaled median = -56.82580928735573
Removing file ./lede1pknq_x1d.fits from product
Segment #0 from file ./lede1pkpq_x1d.fits has scaled median = -57.899332053950545
Removing file ./lede1pkpq_x1d.fits from product
Segment #0 from file ./lede1qstq_x1d.fits has scaled median = -51.383297824752724
Removing file ./lede1qstq_x1d.fits from product
Segment #0 from file ./lede1qsvq_x1d.fits has scaled median = -52.517765199309665
Removing file ./lede1qsvq_x1d.fits from product
Segment #0 from file ./lede32s0q_x1d.fits has scaled median = -55.38162248873119
Removing file ./lede32s0q_x1d.fits from product
Segment #0 from file ./lede32s2q_x1d.fits has scaled median = -56.337017962322214
Removing file ./lede32s2q_x1d.fits from product
Segment #0 from file ./lede32s5q_x1d.fits has scaled median = -55.25088604413971
Removing file ./lede32s5q_x1d.fits from product
Segment #0 from file ./lede32s7q_x1d.fits has scaled median = -57.76086539228297
Removing file ./lede32s7q_x1d.fits from product
Segment #0 from file ./lede33rzq_x1d.fits has scaled median = -51.13562077828846
Removing file ./lede33rzq_x1d.fits from product
Segment #0 from file ./lede33s2q_x1d.fits has scaled median = -52.88667776922181
Removing file ./lede33s2q_x1d.fits from product
Segment #0 from file ./lede33s4q_x1d.fits has scaled median = -53.748397148882866
Removing file ./lede33s4q_x1d.fits from product
Segment #0 from file ./lede33s7q_x1d.fits has scaled median = -55.87245007218183
Removing file ./lede33s7q_x1d.fits from product
Segment #0 from file ./lede36g4q_x1d.fits has scaled median = -51.300480410934746
Removing file ./lede36g4q_x1d.fits from product
Segment #0 from file ./lede37l5q_x1d.fits has scaled median = -54.68479795761475
Removing file ./lede37l5q_x1d.fits from product
Segment #0 from file ./lede37l7q_x1d.fits has scaled median = -55.936557823393066
Removing file ./lede37l7q_x1d.fits from product
Segment #0 from file ./lede37l9q_x1d.fits has scaled median = -56.80753046094506
Removing file ./lede37l9q_x1d.fits from product
Segment #0 from file ./lede37lbq_x1d.fits has scaled median = -57.37310348198376
Removing file ./lede37lbq_x1d.fits from product
Segment #0 from file ./lede3efiq_x1d.fits has scaled median = -50.37586054858756
Removing file ./lede3efiq_x1d.fits from product
Segment #0 from file ./lede3fdhq_x1d.fits has scaled median = -58.29219534243259
Removing file ./lede3fdhq_x1d.fits from product
Segment #0 from file ./lede3fdjq_x1d.fits has scaled median = -58.5412650416264
Removing file ./lede3fdjq_x1d.fits from product
Segment #0 from file ./lede3fdlq_x1d.fits has scaled median = -59.932253326410795
Removing file ./lede3fdlq_x1d.fits from product
Segment #0 from file ./lede3fdnq_x1d.fits has scaled median = -59.39618776329697
Removing file ./lede3fdnq_x1d.fits from product
Segment #0 from file ./lede3gmjq_x1d.fits has scaled median = -63.138685056067686
Removing file ./lede3gmjq_x1d.fits from product
Segment #0 from file ./lede3ua1q_x1d.fits has scaled median = -58.692957863489326
Removing file ./lede3ua1q_x1d.fits from product
Segment #0 from file ./lede3ua3q_x1d.fits has scaled median = -57.239314821950536
Removing file ./lede3ua3q_x1d.fits from product
Segment #0 from file ./lede3uzvq_x1d.fits has scaled median = -54.23537989381389
Removing file ./lede3uzvq_x1d.fits from product
Segment #0 from file ./lede3uzyq_x1d.fits has scaled median = -56.51723567669578
Removing file ./lede3uzyq_x1d.fits from product
Segment #0 from file ./lede3viqq_x1d.fits has scaled median = -51.218886720539125
Removing file ./lede3viqq_x1d.fits from product
Segment #0 from file ./lede3za1q_x1d.fits has scaled median = -57.22378441359121
Removing file ./lede3za1q_x1d.fits from product
Segment #0 from file ./lede3zzuq_x1d.fits has scaled median = -56.74052920241048
Removing file ./lede3zzuq_x1d.fits from product
Segment #0 from file ./lede3zzwq_x1d.fits has scaled median = -59.30879289228461
Removing file ./lede3zzwq_x1d.fits from product
Segment #0 from file ./lede3zzyq_x1d.fits has scaled median = -59.20254572832221
Removing file ./lede3zzyq_x1d.fits from product
Importing files ['./lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1cf2q_x1d.fits', './lede1cf4q_x1d.fits', './lede1cf6q_x1d.fits', './lede1cf8q_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1qspq_x1d.fits', './lede1qsrq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2eyeq_x1d.fits', './lede2eygq_x1d.fits', './lede2eyiq_x1d.fits', './lede2eylq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede34lnq_x1d.fits', './lede34lpq_x1d.fits', './lede34lrq_x1d.fits', './lede34luq_x1d.fits', './lede35xrq_x1d.fits', './lede35xtq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits', './lede36g0q_x1d.fits', './lede36g2q_x1d.fits', './lede36g6q_x1d.fits', './lede38tsq_x1d.fits', './lede38tuq_x1d.fits', './lede38twq_x1d.fits', './lede38tyq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3efcq_x1d.fits', './lede3efeq_x1d.fits', './lede3efgq_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede3vijq_x1d.fits', './lede3vimq_x1d.fits', './lede3vioq_x1d.fits', './lede3wduq_x1d.fits', './lede3wdwq_x1d.fits', './lede3wdyq_x1d.fits', './lede3we0q_x1d.fits', './lede3xjdq_x1d.fits', './lede3xjfq_x1d.fits', './lede3xjhq_x1d.fits', './lede3xjmq_x1d.fits', './lede3yq7q_x1d.fits', './lede3yq9q_x1d.fits', './lede3yqbq_x1d.fits', './lede3yqdq_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede4epnq_x1d.fits', './lede4eppq_x1d.fits', './lede4eprq_x1d.fits', './lede4eptq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede94r5q_x1d.fits', './lede94r7q_x1d.fits', './lede94r9q_x1d.fits', './lede94rbq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1cf2q_x1d.fits
Processing file ./lede1cf4q_x1d.fits
Processing file ./lede1cf6q_x1d.fits
Processing file ./lede1cf8q_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1qspq_x1d.fits
Processing file ./lede1qsrq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2eyeq_x1d.fits
Processing file ./lede2eygq_x1d.fits
Processing file ./lede2eyiq_x1d.fits
Processing file ./lede2eylq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede34lnq_x1d.fits
Processing file ./lede34lpq_x1d.fits
Processing file ./lede34lrq_x1d.fits
Processing file ./lede34luq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xtq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede36g0q_x1d.fits
Processing file ./lede36g2q_x1d.fits
Processing file ./lede36g6q_x1d.fits
Processing file ./lede38tsq_x1d.fits
Processing file ./lede38tuq_x1d.fits
Processing file ./lede38twq_x1d.fits
Processing file ./lede38tyq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3efcq_x1d.fits
Processing file ./lede3efeq_x1d.fits
Processing file ./lede3efgq_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede3vijq_x1d.fits
Processing file ./lede3vimq_x1d.fits
Processing file ./lede3vioq_x1d.fits
Processing file ./lede3wduq_x1d.fits
Processing file ./lede3wdwq_x1d.fits
Processing file ./lede3wdyq_x1d.fits
Processing file ./lede3we0q_x1d.fits
Processing file ./lede3xjdq_x1d.fits
Processing file ./lede3xjfq_x1d.fits
Processing file ./lede3xjhq_x1d.fits
Processing file ./lede3xjmq_x1d.fits
Processing file ./lede3yq7q_x1d.fits
Processing file ./lede3yq9q_x1d.fits
Processing file ./lede3yqbq_x1d.fits
Processing file ./lede3yqdq_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede4epnq_x1d.fits
Processing file ./lede4eppq_x1d.fits
Processing file ./lede4eprq_x1d.fits
Processing file ./lede4eptq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede94r5q_x1d.fits
Processing file ./lede94r7q_x1d.fits
Processing file ./lede94r9q_x1d.fits
Processing file ./lede94rbq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./lede1cf4q_x1d.fits has scaled median = -52.12627553815267
Removing file ./lede1cf4q_x1d.fits from product
Segment #0 from file ./lede1cf6q_x1d.fits has scaled median = -52.614518321457815
Removing file ./lede1cf6q_x1d.fits from product
Segment #0 from file ./lede1cf8q_x1d.fits has scaled median = -53.91663146441182
Removing file ./lede1cf8q_x1d.fits from product
Segment #0 from file ./lede1qspq_x1d.fits has scaled median = -52.04482533981962
Removing file ./lede1qspq_x1d.fits from product
Segment #0 from file ./lede1qsrq_x1d.fits has scaled median = -53.6341890244662
Removing file ./lede1qsrq_x1d.fits from product
Segment #0 from file ./lede34lpq_x1d.fits has scaled median = -50.1242420413029
Removing file ./lede34lpq_x1d.fits from product
Segment #0 from file ./lede34lrq_x1d.fits has scaled median = -50.72281304271441
Removing file ./lede34lrq_x1d.fits from product
Segment #0 from file ./lede34luq_x1d.fits has scaled median = -50.101046871128425
Removing file ./lede34luq_x1d.fits from product
Segment #0 from file ./lede36g0q_x1d.fits has scaled median = -53.44817907154106
Removing file ./lede36g0q_x1d.fits from product
Segment #0 from file ./lede36g2q_x1d.fits has scaled median = -54.95403548652712
Removing file ./lede36g2q_x1d.fits from product
Segment #0 from file ./lede36g6q_x1d.fits has scaled median = -55.54222700721069
Removing file ./lede36g6q_x1d.fits from product
Segment #0 from file ./lede38tuq_x1d.fits has scaled median = -52.92545571582117
Removing file ./lede38tuq_x1d.fits from product
Segment #0 from file ./lede38twq_x1d.fits has scaled median = -52.53303242806102
Removing file ./lede38twq_x1d.fits from product
Segment #0 from file ./lede38tyq_x1d.fits has scaled median = -54.03960982975813
Removing file ./lede38tyq_x1d.fits from product
Segment #0 from file ./lede3efcq_x1d.fits has scaled median = -53.13593073665705
Removing file ./lede3efcq_x1d.fits from product
Segment #0 from file ./lede3efeq_x1d.fits has scaled median = -54.054171250036966
Removing file ./lede3efeq_x1d.fits from product
Segment #0 from file ./lede3efgq_x1d.fits has scaled median = -53.77469919458595
Removing file ./lede3efgq_x1d.fits from product
Segment #0 from file ./lede3vijq_x1d.fits has scaled median = -54.9073961701626
Removing file ./lede3vijq_x1d.fits from product
Segment #0 from file ./lede3vimq_x1d.fits has scaled median = -54.93796606470532
Removing file ./lede3vimq_x1d.fits from product
Segment #0 from file ./lede3vioq_x1d.fits has scaled median = -53.60791275473795
Removing file ./lede3vioq_x1d.fits from product
Segment #0 from file ./lede3wduq_x1d.fits has scaled median = -51.509057248319785
Removing file ./lede3wduq_x1d.fits from product
Segment #0 from file ./lede3wdwq_x1d.fits has scaled median = -51.26075714049104
Removing file ./lede3wdwq_x1d.fits from product
Segment #0 from file ./lede3wdyq_x1d.fits has scaled median = -53.208241083107986
Removing file ./lede3wdyq_x1d.fits from product
Segment #0 from file ./lede3we0q_x1d.fits has scaled median = -50.95118879797797
Removing file ./lede3we0q_x1d.fits from product
Segment #0 from file ./lede3xjfq_x1d.fits has scaled median = -51.1435704740809
Removing file ./lede3xjfq_x1d.fits from product
Segment #0 from file ./lede3xjhq_x1d.fits has scaled median = -51.640511008042765
Removing file ./lede3xjhq_x1d.fits from product
Segment #0 from file ./lede3xjmq_x1d.fits has scaled median = -52.76498738731788
Removing file ./lede3xjmq_x1d.fits from product
Segment #0 from file ./lede3yq7q_x1d.fits has scaled median = -51.16853857383016
Removing file ./lede3yq7q_x1d.fits from product
Segment #0 from file ./lede3yq9q_x1d.fits has scaled median = -52.49178940763897
Removing file ./lede3yq9q_x1d.fits from product
Segment #0 from file ./lede3yqdq_x1d.fits has scaled median = -51.62151963498192
Removing file ./lede3yqdq_x1d.fits from product
Segment #0 from file ./lede4epnq_x1d.fits has scaled median = -52.023943041992965
Removing file ./lede4epnq_x1d.fits from product
Segment #0 from file ./lede4eppq_x1d.fits has scaled median = -51.21276777637888
Removing file ./lede4eppq_x1d.fits from product
Segment #0 from file ./lede94r5q_x1d.fits has scaled median = -53.90083939514197
Removing file ./lede94r5q_x1d.fits from product
Segment #0 from file ./lede94r7q_x1d.fits has scaled median = -53.217435833043076
Removing file ./lede94r7q_x1d.fits from product
Segment #0 from file ./lede94r9q_x1d.fits has scaled median = -53.569124317281265
Removing file ./lede94r9q_x1d.fits from product
Segment #0 from file ./lede94rbq_x1d.fits has scaled median = -51.892144221095805
Removing file ./lede94rbq_x1d.fits from product
Importing files ['./lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1cf2q_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2eyeq_x1d.fits', './lede2eygq_x1d.fits', './lede2eyiq_x1d.fits', './lede2eylq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede34lnq_x1d.fits', './lede35xrq_x1d.fits', './lede35xtq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits', './lede38tsq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede3xjdq_x1d.fits', './lede3yqbq_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede4eprq_x1d.fits', './lede4eptq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1cf2q_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2eyeq_x1d.fits
Processing file ./lede2eygq_x1d.fits
Processing file ./lede2eyiq_x1d.fits
Processing file ./lede2eylq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede34lnq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xtq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede38tsq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede3xjdq_x1d.fits
Processing file ./lede3yqbq_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede4eprq_x1d.fits
Processing file ./lede4eptq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./lede1cf2q_x1d.fits has scaled median = -53.56893490621059
Removing file ./lede1cf2q_x1d.fits from product
Segment #0 from file ./lede2eygq_x1d.fits has scaled median = -50.56423777895827
Removing file ./lede2eygq_x1d.fits from product
Segment #0 from file ./lede2eyiq_x1d.fits has scaled median = -51.57594306915071
Removing file ./lede2eyiq_x1d.fits from product
Segment #0 from file ./lede2eylq_x1d.fits has scaled median = -52.37575274130818
Removing file ./lede2eylq_x1d.fits from product
Segment #0 from file ./lede34lnq_x1d.fits has scaled median = -52.2053220313327
Removing file ./lede34lnq_x1d.fits from product
Segment #0 from file ./lede38tsq_x1d.fits has scaled median = -53.27146004635854
Removing file ./lede38tsq_x1d.fits from product
Segment #0 from file ./lede3xjdq_x1d.fits has scaled median = -51.97257105128055
Removing file ./lede3xjdq_x1d.fits from product
Segment #0 from file ./lede3yqbq_x1d.fits has scaled median = -53.37483244840422
Removing file ./lede3yqbq_x1d.fits from product
Segment #0 from file ./lede4eprq_x1d.fits has scaled median = -55.572353743907975
Removing file ./lede4eprq_x1d.fits from product
Segment #0 from file ./lede4eptq_x1d.fits has scaled median = -54.03239168412385
Removing file ./lede4eptq_x1d.fits from product
Importing files ['./lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2eyeq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede35xrq_x1d.fits', './lede35xtq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2eyeq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xtq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./lede2eyeq_x1d.fits has scaled median = -50.09524429180251
Removing file ./lede2eyeq_x1d.fits from product
Segment #0 from file ./lede35xtq_x1d.fits has scaled median = -50.57542257364149
Removing file ./lede35xtq_x1d.fits from product
Importing files ['./lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede35xrq_x1d.fits', './lede35xvq_x1d.fits', './lede35xxq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xvq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./lede35xvq_x1d.fits has scaled median = -50.019109151573225
Removing file ./lede35xvq_x1d.fits from product
Importing files ['./lede02vbq_x1d.fits', './lede02vdq_x1d.fits', './lede02vfq_x1d.fits', './lede02vhq_x1d.fits', './lede03g0q_x1d.fits', './lede03g2q_x1d.fits', './lede03g4q_x1d.fits', './lede03g6q_x1d.fits', './lede04maq_x1d.fits', './lede04mcq_x1d.fits', './lede04meq_x1d.fits', './lede04mgq_x1d.fits', './lede05qcq_x1d.fits', './lede05qeq_x1d.fits', './lede05qgq_x1d.fits', './lede05qiq_x1d.fits', './lede06yyq_x1d.fits', './lede06z0q_x1d.fits', './lede06z2q_x1d.fits', './lede06z4q_x1d.fits', './lede07jyq_x1d.fits', './lede07k0q_x1d.fits', './lede07k2q_x1d.fits', './lede07k4q_x1d.fits', './lede08f3q_x1d.fits', './lede08f5q_x1d.fits', './lede08f7q_x1d.fits', './lede08fcq_x1d.fits', './lede09a1q_x1d.fits', './lede09a3q_x1d.fits', './lede09a5q_x1d.fits', './lede09a7q_x1d.fits', './lede0cvpq_x1d.fits', './lede0cvrq_x1d.fits', './lede0cvtq_x1d.fits', './lede0cvvq_x1d.fits', './lede0df6q_x1d.fits', './lede0df8q_x1d.fits', './lede0dfaq_x1d.fits', './lede0dfcq_x1d.fits', './lede10iyq_x1d.fits', './lede10j0q_x1d.fits', './lede10j2q_x1d.fits', './lede10j4q_x1d.fits', './lede11a4q_x1d.fits', './lede11a6q_x1d.fits', './lede11a8q_x1d.fits', './lede11aaq_x1d.fits', './lede12lzq_x1d.fits', './lede12m1q_x1d.fits', './lede12m3q_x1d.fits', './lede12m5q_x1d.fits', './lede14jzq_x1d.fits', './lede14k1q_x1d.fits', './lede14k3q_x1d.fits', './lede14k5q_x1d.fits', './lede15ngq_x1d.fits', './lede15niq_x1d.fits', './lede15nkq_x1d.fits', './lede15nmq_x1d.fits', './lede16vzq_x1d.fits', './lede16w2q_x1d.fits', './lede16w4q_x1d.fits', './lede16w6q_x1d.fits', './lede17hqq_x1d.fits', './lede17hsq_x1d.fits', './lede17huq_x1d.fits', './lede17hwq_x1d.fits', './lede18s8q_x1d.fits', './lede18saq_x1d.fits', './lede18scq_x1d.fits', './lede18seq_x1d.fits', './lede19msq_x1d.fits', './lede19muq_x1d.fits', './lede19mwq_x1d.fits', './lede19myq_x1d.fits', './lede1ejlq_x1d.fits', './lede1ejnq_x1d.fits', './lede1ejpq_x1d.fits', './lede1ejrq_x1d.fits', './lede1rmeq_x1d.fits', './lede1rmgq_x1d.fits', './lede1rmiq_x1d.fits', './lede1rmkq_x1d.fits', './lede1suaq_x1d.fits', './lede1sucq_x1d.fits', './lede1sueq_x1d.fits', './lede1sugq_x1d.fits', './lede1ucsq_x1d.fits', './lede1ucuq_x1d.fits', './lede1ucwq_x1d.fits', './lede1ucyq_x1d.fits', './lede1wsvq_x1d.fits', './lede1wsxq_x1d.fits', './lede1wszq_x1d.fits', './lede1wt1q_x1d.fits', './lede20alq_x1d.fits', './lede20anq_x1d.fits', './lede20apq_x1d.fits', './lede20arq_x1d.fits', './lede21keq_x1d.fits', './lede21kgq_x1d.fits', './lede21kiq_x1d.fits', './lede21kkq_x1d.fits', './lede22loq_x1d.fits', './lede22lqq_x1d.fits', './lede22lsq_x1d.fits', './lede22luq_x1d.fits', './lede23upq_x1d.fits', './lede23urq_x1d.fits', './lede23utq_x1d.fits', './lede23uvq_x1d.fits', './lede24jsq_x1d.fits', './lede24juq_x1d.fits', './lede24jwq_x1d.fits', './lede24jyq_x1d.fits', './lede25rzq_x1d.fits', './lede25s1q_x1d.fits', './lede25s3q_x1d.fits', './lede25s5q_x1d.fits', './lede26k2q_x1d.fits', './lede26k4q_x1d.fits', './lede26k6q_x1d.fits', './lede26k8q_x1d.fits', './lede27qjq_x1d.fits', './lede27qlq_x1d.fits', './lede27qnq_x1d.fits', './lede27qpq_x1d.fits', './lede28a5q_x1d.fits', './lede28a7q_x1d.fits', './lede28a9q_x1d.fits', './lede28abq_x1d.fits', './lede29hzq_x1d.fits', './lede29i1q_x1d.fits', './lede29i3q_x1d.fits', './lede29i5q_x1d.fits', './lede2ataq_x1d.fits', './lede2atcq_x1d.fits', './lede2ateq_x1d.fits', './lede2atgq_x1d.fits', './lede2bb4q_x1d.fits', './lede2bb6q_x1d.fits', './lede2bb8q_x1d.fits', './lede2bbaq_x1d.fits', './lede2cisq_x1d.fits', './lede2ciuq_x1d.fits', './lede2ciwq_x1d.fits', './lede2ciyq_x1d.fits', './lede2dokq_x1d.fits', './lede2domq_x1d.fits', './lede2dorq_x1d.fits', './lede2dotq_x1d.fits', './lede2fhvq_x1d.fits', './lede2fhxq_x1d.fits', './lede2fhzq_x1d.fits', './lede2fi1q_x1d.fits', './lede2gf0q_x1d.fits', './lede2gf2q_x1d.fits', './lede2gf4q_x1d.fits', './lede2gf6q_x1d.fits', './lede2hqxq_x1d.fits', './lede2hqzq_x1d.fits', './lede2hr1q_x1d.fits', './lede2hr3q_x1d.fits', './lede2ib3q_x1d.fits', './lede2ib5q_x1d.fits', './lede2ib7q_x1d.fits', './lede2ib9q_x1d.fits', './lede2jjoq_x1d.fits', './lede2jjqq_x1d.fits', './lede2jjsq_x1d.fits', './lede2jjuq_x1d.fits', './lede2kkaq_x1d.fits', './lede2kkcq_x1d.fits', './lede2kkhq_x1d.fits', './lede2kkjq_x1d.fits', './lede2ls0q_x1d.fits', './lede2ls2q_x1d.fits', './lede2ls4q_x1d.fits', './lede2ls6q_x1d.fits', './lede2mauq_x1d.fits', './lede2mawq_x1d.fits', './lede2mayq_x1d.fits', './lede2mb0q_x1d.fits', './lede2ua2q_x1d.fits', './lede2uzvq_x1d.fits', './lede2uzxq_x1d.fits', './lede2uzzq_x1d.fits', './lede2yd3q_x1d.fits', './lede2yd5q_x1d.fits', './lede2yd7q_x1d.fits', './lede2yd9q_x1d.fits', './lede2zo6q_x1d.fits', './lede2zo8q_x1d.fits', './lede2zoaq_x1d.fits', './lede2zocq_x1d.fits', './lede30sbq_x1d.fits', './lede30sdq_x1d.fits', './lede30sfq_x1d.fits', './lede30shq_x1d.fits', './lede31d6q_x1d.fits', './lede31d8q_x1d.fits', './lede31daq_x1d.fits', './lede31dcq_x1d.fits', './lede35xrq_x1d.fits', './lede35xxq_x1d.fits', './lede39clq_x1d.fits', './lede39cnq_x1d.fits', './lede39cpq_x1d.fits', './lede39crq_x1d.fits', './lede3axcq_x1d.fits', './lede3axeq_x1d.fits', './lede3axgq_x1d.fits', './lede3axiq_x1d.fits', './lede3bk0q_x1d.fits', './lede3bk2q_x1d.fits', './lede3bk4q_x1d.fits', './lede3bk6q_x1d.fits', './lede3ck6q_x1d.fits', './lede3ck8q_x1d.fits', './lede3ckaq_x1d.fits', './lede3ckcq_x1d.fits', './lede3dt1q_x1d.fits', './lede3dt3q_x1d.fits', './lede3dt5q_x1d.fits', './lede3dt7q_x1d.fits', './lede3nc4q_x1d.fits', './lede3nc6q_x1d.fits', './lede3nc8q_x1d.fits', './lede3ncaq_x1d.fits', './lede3ncqq_x1d.fits', './lede3nctq_x1d.fits', './lede3ncwq_x1d.fits', './lede3nd5q_x1d.fits', './lede40mcq_x1d.fits', './lede40meq_x1d.fits', './lede40mgq_x1d.fits', './lede40miq_x1d.fits', './lede41u9q_x1d.fits', './lede41ubq_x1d.fits', './lede41udq_x1d.fits', './lede41ufq_x1d.fits', './lede42hfq_x1d.fits', './lede42hhq_x1d.fits', './lede42hjq_x1d.fits', './lede42hlq_x1d.fits', './lede43p8q_x1d.fits', './lede43paq_x1d.fits', './lede43pcq_x1d.fits', './lede43peq_x1d.fits', './lede44grq_x1d.fits', './lede44gtq_x1d.fits', './lede44gvq_x1d.fits', './lede44gxq_x1d.fits', './lede45q3q_x1d.fits', './lede45q5q_x1d.fits', './lede45q7q_x1d.fits', './lede45q9q_x1d.fits', './lede46ynq_x1d.fits', './lede46ypq_x1d.fits', './lede46yrq_x1d.fits', './lede46ytq_x1d.fits', './lede47b4q_x1d.fits', './lede47b6q_x1d.fits', './lede47b8q_x1d.fits', './lede47baq_x1d.fits', './lede48t2q_x1d.fits', './lede48t4q_x1d.fits', './lede48t6q_x1d.fits', './lede48t8q_x1d.fits', './lede49h4q_x1d.fits', './lede49h6q_x1d.fits', './lede49h8q_x1d.fits', './lede49haq_x1d.fits', './lede50wsq_x1d.fits', './lede50wuq_x1d.fits', './lede50wwq_x1d.fits', './lede50wyq_x1d.fits', './lede51h1q_x1d.fits', './lede51h3q_x1d.fits', './lede51h5q_x1d.fits', './lede51h7q_x1d.fits', './lede52mkq_x1d.fits', './lede52mmq_x1d.fits', './lede52moq_x1d.fits', './lede52mqq_x1d.fits', './lede56a3q_x1d.fits', './lede56a5q_x1d.fits', './lede56a7q_x1d.fits', './lede56ahq_x1d.fits', './lede59npq_x1d.fits', './lede59nrq_x1d.fits', './lede59ntq_x1d.fits', './lede59nvq_x1d.fits', './lede60waq_x1d.fits', './lede60weq_x1d.fits', './lede60wgq_x1d.fits', './lede60wiq_x1d.fits', './lede61dtq_x1d.fits', './lede61dvq_x1d.fits', './lede61dxq_x1d.fits', './lede61dzq_x1d.fits', './lede62maq_x1d.fits', './lede62mcq_x1d.fits', './lede62meq_x1d.fits', './lede62mgq_x1d.fits', './lede63x0q_x1d.fits', './lede63x2q_x1d.fits', './lede63x4q_x1d.fits', './lede63x6q_x1d.fits', './lede64imq_x1d.fits', './lede64ioq_x1d.fits', './lede64iqq_x1d.fits', './lede64isq_x1d.fits', './lede65dxq_x1d.fits', './lede65dzq_x1d.fits', './lede65e1q_x1d.fits', './lede65e3q_x1d.fits', './lede66lbq_x1d.fits', './lede66ldq_x1d.fits', './lede66lfq_x1d.fits', './lede66lhq_x1d.fits', './lede67x1q_x1d.fits', './lede67x3q_x1d.fits', './lede67x5q_x1d.fits', './lede67x7q_x1d.fits', './lede68fvq_x1d.fits', './lede68fxq_x1d.fits', './lede68fzq_x1d.fits', './lede68g1q_x1d.fits', './lede69h8q_x1d.fits', './lede69hbq_x1d.fits', './lede69hdq_x1d.fits', './lede69hfq_x1d.fits', './lede70t5q_x1d.fits', './lede70t7q_x1d.fits', './lede70t9q_x1d.fits', './lede70tbq_x1d.fits', './lede71bfq_x1d.fits', './lede71bhq_x1d.fits', './lede71bjq_x1d.fits', './lede71blq_x1d.fits', './lede72c8q_x1d.fits', './lede72caq_x1d.fits', './lede72ccq_x1d.fits', './lede72chq_x1d.fits', './lede73o7q_x1d.fits', './lede73o9q_x1d.fits', './lede73obq_x1d.fits', './lede73odq_x1d.fits', './lede74ubq_x1d.fits', './lede74udq_x1d.fits', './lede74ufq_x1d.fits', './lede74uhq_x1d.fits', './lede75c8q_x1d.fits', './lede75cbq_x1d.fits', './lede75cdq_x1d.fits', './lede75cfq_x1d.fits', './lede75cqq_x1d.fits', './lede75csq_x1d.fits', './lede75cuq_x1d.fits', './lede75cwq_x1d.fits', './lede77v8q_x1d.fits', './lede77vaq_x1d.fits', './lede77vcq_x1d.fits', './lede77veq_x1d.fits', './lede80n4q_x1d.fits', './lede80n6q_x1d.fits', './lede80n8q_x1d.fits', './lede80naq_x1d.fits', './lede82i5q_x1d.fits', './lede82i7q_x1d.fits', './lede82i9q_x1d.fits', './lede82ibq_x1d.fits', './lede83ijq_x1d.fits', './lede83ilq_x1d.fits', './lede83inq_x1d.fits', './lede83ipq_x1d.fits', './lede84qmq_x1d.fits', './lede84qoq_x1d.fits', './lede84qqq_x1d.fits', './lede84qsq_x1d.fits', './lede85bqq_x1d.fits', './lede85bsq_x1d.fits', './lede85buq_x1d.fits', './lede85bwq_x1d.fits', './lede86j0q_x1d.fits', './lede86j2q_x1d.fits', './lede86j4q_x1d.fits', './lede86j6q_x1d.fits', './lede87jcq_x1d.fits', './lede87jeq_x1d.fits', './lede87jgq_x1d.fits', './lede87jiq_x1d.fits', './lede88tdq_x1d.fits', './lede88tfq_x1d.fits', './lede88thq_x1d.fits', './lede88tjq_x1d.fits', './lede89bcq_x1d.fits', './lede89beq_x1d.fits', './lede89bgq_x1d.fits', './lede89biq_x1d.fits', './lede90dnq_x1d.fits', './lede90dpq_x1d.fits', './lede90drq_x1d.fits', './lede90dtq_x1d.fits', './lede91p8q_x1d.fits', './lede91paq_x1d.fits', './lede91pcq_x1d.fits', './lede91peq_x1d.fits', './lede92k3q_x1d.fits', './lede92k5q_x1d.fits', './lede92k7q_x1d.fits', './lede92k9q_x1d.fits', './lede93stq_x1d.fits', './lede93svq_x1d.fits', './lede93sxq_x1d.fits', './lede93szq_x1d.fits', './lede96e9q_x1d.fits', './lede96ebq_x1d.fits', './lede96edq_x1d.fits', './lede96efq_x1d.fits']
Processing file ./lede02vbq_x1d.fits
Processing file ./lede02vdq_x1d.fits
Processing file ./lede02vfq_x1d.fits
Processing file ./lede02vhq_x1d.fits
Processing file ./lede03g0q_x1d.fits
Processing file ./lede03g2q_x1d.fits
Processing file ./lede03g4q_x1d.fits
Processing file ./lede03g6q_x1d.fits
Processing file ./lede04maq_x1d.fits
Processing file ./lede04mcq_x1d.fits
Processing file ./lede04meq_x1d.fits
Processing file ./lede04mgq_x1d.fits
Processing file ./lede05qcq_x1d.fits
Processing file ./lede05qeq_x1d.fits
Processing file ./lede05qgq_x1d.fits
Processing file ./lede05qiq_x1d.fits
Processing file ./lede06yyq_x1d.fits
Processing file ./lede06z0q_x1d.fits
Processing file ./lede06z2q_x1d.fits
Processing file ./lede06z4q_x1d.fits
Processing file ./lede07jyq_x1d.fits
Processing file ./lede07k0q_x1d.fits
Processing file ./lede07k2q_x1d.fits
Processing file ./lede07k4q_x1d.fits
Processing file ./lede08f3q_x1d.fits
Processing file ./lede08f5q_x1d.fits
Processing file ./lede08f7q_x1d.fits
Processing file ./lede08fcq_x1d.fits
Processing file ./lede09a1q_x1d.fits
Processing file ./lede09a3q_x1d.fits
Processing file ./lede09a5q_x1d.fits
Processing file ./lede09a7q_x1d.fits
Processing file ./lede0cvpq_x1d.fits
Processing file ./lede0cvrq_x1d.fits
Processing file ./lede0cvtq_x1d.fits
Processing file ./lede0cvvq_x1d.fits
Processing file ./lede0df6q_x1d.fits
Processing file ./lede0df8q_x1d.fits
Processing file ./lede0dfaq_x1d.fits
Processing file ./lede0dfcq_x1d.fits
Processing file ./lede10iyq_x1d.fits
Processing file ./lede10j0q_x1d.fits
Processing file ./lede10j2q_x1d.fits
Processing file ./lede10j4q_x1d.fits
Processing file ./lede11a4q_x1d.fits
Processing file ./lede11a6q_x1d.fits
Processing file ./lede11a8q_x1d.fits
Processing file ./lede11aaq_x1d.fits
Processing file ./lede12lzq_x1d.fits
Processing file ./lede12m1q_x1d.fits
Processing file ./lede12m3q_x1d.fits
Processing file ./lede12m5q_x1d.fits
Processing file ./lede14jzq_x1d.fits
Processing file ./lede14k1q_x1d.fits
Processing file ./lede14k3q_x1d.fits
Processing file ./lede14k5q_x1d.fits
Processing file ./lede15ngq_x1d.fits
Processing file ./lede15niq_x1d.fits
Processing file ./lede15nkq_x1d.fits
Processing file ./lede15nmq_x1d.fits
Processing file ./lede16vzq_x1d.fits
Processing file ./lede16w2q_x1d.fits
Processing file ./lede16w4q_x1d.fits
Processing file ./lede16w6q_x1d.fits
Processing file ./lede17hqq_x1d.fits
Processing file ./lede17hsq_x1d.fits
Processing file ./lede17huq_x1d.fits
Processing file ./lede17hwq_x1d.fits
Processing file ./lede18s8q_x1d.fits
Processing file ./lede18saq_x1d.fits
Processing file ./lede18scq_x1d.fits
Processing file ./lede18seq_x1d.fits
Processing file ./lede19msq_x1d.fits
Processing file ./lede19muq_x1d.fits
Processing file ./lede19mwq_x1d.fits
Processing file ./lede19myq_x1d.fits
Processing file ./lede1ejlq_x1d.fits
Processing file ./lede1ejnq_x1d.fits
Processing file ./lede1ejpq_x1d.fits
Processing file ./lede1ejrq_x1d.fits
Processing file ./lede1rmeq_x1d.fits
Processing file ./lede1rmgq_x1d.fits
Processing file ./lede1rmiq_x1d.fits
Processing file ./lede1rmkq_x1d.fits
Processing file ./lede1suaq_x1d.fits
Processing file ./lede1sucq_x1d.fits
Processing file ./lede1sueq_x1d.fits
Processing file ./lede1sugq_x1d.fits
Processing file ./lede1ucsq_x1d.fits
Processing file ./lede1ucuq_x1d.fits
Processing file ./lede1ucwq_x1d.fits
Processing file ./lede1ucyq_x1d.fits
Processing file ./lede1wsvq_x1d.fits
Processing file ./lede1wsxq_x1d.fits
Processing file ./lede1wszq_x1d.fits
Processing file ./lede1wt1q_x1d.fits
Processing file ./lede20alq_x1d.fits
Processing file ./lede20anq_x1d.fits
Processing file ./lede20apq_x1d.fits
Processing file ./lede20arq_x1d.fits
Processing file ./lede21keq_x1d.fits
Processing file ./lede21kgq_x1d.fits
Processing file ./lede21kiq_x1d.fits
Processing file ./lede21kkq_x1d.fits
Processing file ./lede22loq_x1d.fits
Processing file ./lede22lqq_x1d.fits
Processing file ./lede22lsq_x1d.fits
Processing file ./lede22luq_x1d.fits
Processing file ./lede23upq_x1d.fits
Processing file ./lede23urq_x1d.fits
Processing file ./lede23utq_x1d.fits
Processing file ./lede23uvq_x1d.fits
Processing file ./lede24jsq_x1d.fits
Processing file ./lede24juq_x1d.fits
Processing file ./lede24jwq_x1d.fits
Processing file ./lede24jyq_x1d.fits
Processing file ./lede25rzq_x1d.fits
Processing file ./lede25s1q_x1d.fits
Processing file ./lede25s3q_x1d.fits
Processing file ./lede25s5q_x1d.fits
Processing file ./lede26k2q_x1d.fits
Processing file ./lede26k4q_x1d.fits
Processing file ./lede26k6q_x1d.fits
Processing file ./lede26k8q_x1d.fits
Processing file ./lede27qjq_x1d.fits
Processing file ./lede27qlq_x1d.fits
Processing file ./lede27qnq_x1d.fits
Processing file ./lede27qpq_x1d.fits
Processing file ./lede28a5q_x1d.fits
Processing file ./lede28a7q_x1d.fits
Processing file ./lede28a9q_x1d.fits
Processing file ./lede28abq_x1d.fits
Processing file ./lede29hzq_x1d.fits
Processing file ./lede29i1q_x1d.fits
Processing file ./lede29i3q_x1d.fits
Processing file ./lede29i5q_x1d.fits
Processing file ./lede2ataq_x1d.fits
Processing file ./lede2atcq_x1d.fits
Processing file ./lede2ateq_x1d.fits
Processing file ./lede2atgq_x1d.fits
Processing file ./lede2bb4q_x1d.fits
Processing file ./lede2bb6q_x1d.fits
Processing file ./lede2bb8q_x1d.fits
Processing file ./lede2bbaq_x1d.fits
Processing file ./lede2cisq_x1d.fits
Processing file ./lede2ciuq_x1d.fits
Processing file ./lede2ciwq_x1d.fits
Processing file ./lede2ciyq_x1d.fits
Processing file ./lede2dokq_x1d.fits
Processing file ./lede2domq_x1d.fits
Processing file ./lede2dorq_x1d.fits
Processing file ./lede2dotq_x1d.fits
Processing file ./lede2fhvq_x1d.fits
Processing file ./lede2fhxq_x1d.fits
Processing file ./lede2fhzq_x1d.fits
Processing file ./lede2fi1q_x1d.fits
Processing file ./lede2gf0q_x1d.fits
Processing file ./lede2gf2q_x1d.fits
Processing file ./lede2gf4q_x1d.fits
Processing file ./lede2gf6q_x1d.fits
Processing file ./lede2hqxq_x1d.fits
Processing file ./lede2hqzq_x1d.fits
Processing file ./lede2hr1q_x1d.fits
Processing file ./lede2hr3q_x1d.fits
Processing file ./lede2ib3q_x1d.fits
Processing file ./lede2ib5q_x1d.fits
Processing file ./lede2ib7q_x1d.fits
Processing file ./lede2ib9q_x1d.fits
Processing file ./lede2jjoq_x1d.fits
Processing file ./lede2jjqq_x1d.fits
Processing file ./lede2jjsq_x1d.fits
Processing file ./lede2jjuq_x1d.fits
Processing file ./lede2kkaq_x1d.fits
Processing file ./lede2kkcq_x1d.fits
Processing file ./lede2kkhq_x1d.fits
Processing file ./lede2kkjq_x1d.fits
Processing file ./lede2ls0q_x1d.fits
Processing file ./lede2ls2q_x1d.fits
Processing file ./lede2ls4q_x1d.fits
Processing file ./lede2ls6q_x1d.fits
Processing file ./lede2mauq_x1d.fits
Processing file ./lede2mawq_x1d.fits
Processing file ./lede2mayq_x1d.fits
Processing file ./lede2mb0q_x1d.fits
Processing file ./lede2ua2q_x1d.fits
Processing file ./lede2uzvq_x1d.fits
Processing file ./lede2uzxq_x1d.fits
Processing file ./lede2uzzq_x1d.fits
Processing file ./lede2yd3q_x1d.fits
Processing file ./lede2yd5q_x1d.fits
Processing file ./lede2yd7q_x1d.fits
Processing file ./lede2yd9q_x1d.fits
Processing file ./lede2zo6q_x1d.fits
Processing file ./lede2zo8q_x1d.fits
Processing file ./lede2zoaq_x1d.fits
Processing file ./lede2zocq_x1d.fits
Processing file ./lede30sbq_x1d.fits
Processing file ./lede30sdq_x1d.fits
Processing file ./lede30sfq_x1d.fits
Processing file ./lede30shq_x1d.fits
Processing file ./lede31d6q_x1d.fits
Processing file ./lede31d8q_x1d.fits
Processing file ./lede31daq_x1d.fits
Processing file ./lede31dcq_x1d.fits
Processing file ./lede35xrq_x1d.fits
Processing file ./lede35xxq_x1d.fits
Processing file ./lede39clq_x1d.fits
Processing file ./lede39cnq_x1d.fits
Processing file ./lede39cpq_x1d.fits
Processing file ./lede39crq_x1d.fits
Processing file ./lede3axcq_x1d.fits
Processing file ./lede3axeq_x1d.fits
Processing file ./lede3axgq_x1d.fits
Processing file ./lede3axiq_x1d.fits
Processing file ./lede3bk0q_x1d.fits
Processing file ./lede3bk2q_x1d.fits
Processing file ./lede3bk4q_x1d.fits
Processing file ./lede3bk6q_x1d.fits
Processing file ./lede3ck6q_x1d.fits
Processing file ./lede3ck8q_x1d.fits
Processing file ./lede3ckaq_x1d.fits
Processing file ./lede3ckcq_x1d.fits
Processing file ./lede3dt1q_x1d.fits
Processing file ./lede3dt3q_x1d.fits
Processing file ./lede3dt5q_x1d.fits
Processing file ./lede3dt7q_x1d.fits
Processing file ./lede3nc4q_x1d.fits
Processing file ./lede3nc6q_x1d.fits
Processing file ./lede3nc8q_x1d.fits
Processing file ./lede3ncaq_x1d.fits
Processing file ./lede3ncqq_x1d.fits
Processing file ./lede3nctq_x1d.fits
Processing file ./lede3ncwq_x1d.fits
Processing file ./lede3nd5q_x1d.fits
Processing file ./lede40mcq_x1d.fits
Processing file ./lede40meq_x1d.fits
Processing file ./lede40mgq_x1d.fits
Processing file ./lede40miq_x1d.fits
Processing file ./lede41u9q_x1d.fits
Processing file ./lede41ubq_x1d.fits
Processing file ./lede41udq_x1d.fits
Processing file ./lede41ufq_x1d.fits
Processing file ./lede42hfq_x1d.fits
Processing file ./lede42hhq_x1d.fits
Processing file ./lede42hjq_x1d.fits
Processing file ./lede42hlq_x1d.fits
Processing file ./lede43p8q_x1d.fits
Processing file ./lede43paq_x1d.fits
Processing file ./lede43pcq_x1d.fits
Processing file ./lede43peq_x1d.fits
Processing file ./lede44grq_x1d.fits
Processing file ./lede44gtq_x1d.fits
Processing file ./lede44gvq_x1d.fits
Processing file ./lede44gxq_x1d.fits
Processing file ./lede45q3q_x1d.fits
Processing file ./lede45q5q_x1d.fits
Processing file ./lede45q7q_x1d.fits
Processing file ./lede45q9q_x1d.fits
Processing file ./lede46ynq_x1d.fits
Processing file ./lede46ypq_x1d.fits
Processing file ./lede46yrq_x1d.fits
Processing file ./lede46ytq_x1d.fits
Processing file ./lede47b4q_x1d.fits
Processing file ./lede47b6q_x1d.fits
Processing file ./lede47b8q_x1d.fits
Processing file ./lede47baq_x1d.fits
Processing file ./lede48t2q_x1d.fits
Processing file ./lede48t4q_x1d.fits
Processing file ./lede48t6q_x1d.fits
Processing file ./lede48t8q_x1d.fits
Processing file ./lede49h4q_x1d.fits
Processing file ./lede49h6q_x1d.fits
Processing file ./lede49h8q_x1d.fits
Processing file ./lede49haq_x1d.fits
Processing file ./lede50wsq_x1d.fits
Processing file ./lede50wuq_x1d.fits
Processing file ./lede50wwq_x1d.fits
Processing file ./lede50wyq_x1d.fits
Processing file ./lede51h1q_x1d.fits
Processing file ./lede51h3q_x1d.fits
Processing file ./lede51h5q_x1d.fits
Processing file ./lede51h7q_x1d.fits
Processing file ./lede52mkq_x1d.fits
Processing file ./lede52mmq_x1d.fits
Processing file ./lede52moq_x1d.fits
Processing file ./lede52mqq_x1d.fits
Processing file ./lede56a3q_x1d.fits
Processing file ./lede56a5q_x1d.fits
Processing file ./lede56a7q_x1d.fits
Processing file ./lede56ahq_x1d.fits
Processing file ./lede59npq_x1d.fits
Processing file ./lede59nrq_x1d.fits
Processing file ./lede59ntq_x1d.fits
Processing file ./lede59nvq_x1d.fits
Processing file ./lede60waq_x1d.fits
Processing file ./lede60weq_x1d.fits
Processing file ./lede60wgq_x1d.fits
Processing file ./lede60wiq_x1d.fits
Processing file ./lede61dtq_x1d.fits
Processing file ./lede61dvq_x1d.fits
Processing file ./lede61dxq_x1d.fits
Processing file ./lede61dzq_x1d.fits
Processing file ./lede62maq_x1d.fits
Processing file ./lede62mcq_x1d.fits
Processing file ./lede62meq_x1d.fits
Processing file ./lede62mgq_x1d.fits
Processing file ./lede63x0q_x1d.fits
Processing file ./lede63x2q_x1d.fits
Processing file ./lede63x4q_x1d.fits
Processing file ./lede63x6q_x1d.fits
Processing file ./lede64imq_x1d.fits
Processing file ./lede64ioq_x1d.fits
Processing file ./lede64iqq_x1d.fits
Processing file ./lede64isq_x1d.fits
Processing file ./lede65dxq_x1d.fits
Processing file ./lede65dzq_x1d.fits
Processing file ./lede65e1q_x1d.fits
Processing file ./lede65e3q_x1d.fits
Processing file ./lede66lbq_x1d.fits
Processing file ./lede66ldq_x1d.fits
Processing file ./lede66lfq_x1d.fits
Processing file ./lede66lhq_x1d.fits
Processing file ./lede67x1q_x1d.fits
Processing file ./lede67x3q_x1d.fits
Processing file ./lede67x5q_x1d.fits
Processing file ./lede67x7q_x1d.fits
Processing file ./lede68fvq_x1d.fits
Processing file ./lede68fxq_x1d.fits
Processing file ./lede68fzq_x1d.fits
Processing file ./lede68g1q_x1d.fits
Processing file ./lede69h8q_x1d.fits
Processing file ./lede69hbq_x1d.fits
Processing file ./lede69hdq_x1d.fits
Processing file ./lede69hfq_x1d.fits
Processing file ./lede70t5q_x1d.fits
Processing file ./lede70t7q_x1d.fits
Processing file ./lede70t9q_x1d.fits
Processing file ./lede70tbq_x1d.fits
Processing file ./lede71bfq_x1d.fits
Processing file ./lede71bhq_x1d.fits
Processing file ./lede71bjq_x1d.fits
Processing file ./lede71blq_x1d.fits
Processing file ./lede72c8q_x1d.fits
Processing file ./lede72caq_x1d.fits
Processing file ./lede72ccq_x1d.fits
Processing file ./lede72chq_x1d.fits
Processing file ./lede73o7q_x1d.fits
Processing file ./lede73o9q_x1d.fits
Processing file ./lede73obq_x1d.fits
Processing file ./lede73odq_x1d.fits
Processing file ./lede74ubq_x1d.fits
Processing file ./lede74udq_x1d.fits
Processing file ./lede74ufq_x1d.fits
Processing file ./lede74uhq_x1d.fits
Processing file ./lede75c8q_x1d.fits
Processing file ./lede75cbq_x1d.fits
Processing file ./lede75cdq_x1d.fits
Processing file ./lede75cfq_x1d.fits
Processing file ./lede75cqq_x1d.fits
Processing file ./lede75csq_x1d.fits
Processing file ./lede75cuq_x1d.fits
Processing file ./lede75cwq_x1d.fits
Processing file ./lede77v8q_x1d.fits
Processing file ./lede77vaq_x1d.fits
Processing file ./lede77vcq_x1d.fits
Processing file ./lede77veq_x1d.fits
Processing file ./lede80n4q_x1d.fits
Processing file ./lede80n6q_x1d.fits
Processing file ./lede80n8q_x1d.fits
Processing file ./lede80naq_x1d.fits
Processing file ./lede82i5q_x1d.fits
Processing file ./lede82i7q_x1d.fits
Processing file ./lede82i9q_x1d.fits
Processing file ./lede82ibq_x1d.fits
Processing file ./lede83ijq_x1d.fits
Processing file ./lede83ilq_x1d.fits
Processing file ./lede83inq_x1d.fits
Processing file ./lede83ipq_x1d.fits
Processing file ./lede84qmq_x1d.fits
Processing file ./lede84qoq_x1d.fits
Processing file ./lede84qqq_x1d.fits
Processing file ./lede84qsq_x1d.fits
Processing file ./lede85bqq_x1d.fits
Processing file ./lede85bsq_x1d.fits
Processing file ./lede85buq_x1d.fits
Processing file ./lede85bwq_x1d.fits
Processing file ./lede86j0q_x1d.fits
Processing file ./lede86j2q_x1d.fits
Processing file ./lede86j4q_x1d.fits
Processing file ./lede86j6q_x1d.fits
Processing file ./lede87jcq_x1d.fits
Processing file ./lede87jeq_x1d.fits
Processing file ./lede87jgq_x1d.fits
Processing file ./lede87jiq_x1d.fits
Processing file ./lede88tdq_x1d.fits
Processing file ./lede88tfq_x1d.fits
Processing file ./lede88thq_x1d.fits
Processing file ./lede88tjq_x1d.fits
Processing file ./lede89bcq_x1d.fits
Processing file ./lede89beq_x1d.fits
Processing file ./lede89bgq_x1d.fits
Processing file ./lede89biq_x1d.fits
Processing file ./lede90dnq_x1d.fits
Processing file ./lede90dpq_x1d.fits
Processing file ./lede90drq_x1d.fits
Processing file ./lede90dtq_x1d.fits
Processing file ./lede91p8q_x1d.fits
Processing file ./lede91paq_x1d.fits
Processing file ./lede91pcq_x1d.fits
Processing file ./lede91peq_x1d.fits
Processing file ./lede92k3q_x1d.fits
Processing file ./lede92k5q_x1d.fits
Processing file ./lede92k7q_x1d.fits
Processing file ./lede92k9q_x1d.fits
Processing file ./lede93stq_x1d.fits
Processing file ./lede93svq_x1d.fits
Processing file ./lede93sxq_x1d.fits
Processing file ./lede93szq_x1d.fits
Processing file ./lede96e9q_x1d.fits
Processing file ./lede96ebq_x1d.fits
Processing file ./lede96edq_x1d.fits
Processing file ./lede96efq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g130m_lede_cspec.fits
Processing grating COS/G160M
Importing files ['./lede01iqq_x1d.fits', './lede01isq_x1d.fits', './lede01iuq_x1d.fits', './lede01iwq_x1d.fits', './lede02vjq_x1d.fits', './lede02vlq_x1d.fits', './lede02vnq_x1d.fits', './lede02vpq_x1d.fits', './lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0af2q_x1d.fits', './lede0af5q_x1d.fits', './lede0af7q_x1d.fits', './lede0af9q_x1d.fits', './lede0bj9q_x1d.fits', './lede0bjbq_x1d.fits', './lede0bjdq_x1d.fits', './lede0bjyq_x1d.fits', './lede0cvxq_x1d.fits', './lede0cvzq_x1d.fits', './lede0cw1q_x1d.fits', './lede0cw3q_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede0ikvq_x1d.fits', './lede0ikxq_x1d.fits', './lede0ikzq_x1d.fits', './lede0il1q_x1d.fits', './lede0jw9q_x1d.fits', './lede0jwbq_x1d.fits', './lede0jwdq_x1d.fits', './lede0jwfq_x1d.fits', './lede0kfeq_x1d.fits', './lede0kfgq_x1d.fits', './lede0kfiq_x1d.fits', './lede0kfkq_x1d.fits', './lede0lp5q_x1d.fits', './lede0lp7q_x1d.fits', './lede0lp9q_x1d.fits', './lede0lpbq_x1d.fits', './lede0ma1q_x1d.fits', './lede0ma4q_x1d.fits', './lede0ma6q_x1d.fits', './lede0mzxq_x1d.fits', './lede0njkq_x1d.fits', './lede0njmq_x1d.fits', './lede0njoq_x1d.fits', './lede0nk9q_x1d.fits', './lede0ogtq_x1d.fits', './lede0ogvq_x1d.fits', './lede0ogxq_x1d.fits', './lede0ogzq_x1d.fits', './lede0psqq_x1d.fits', './lede0pssq_x1d.fits', './lede0psuq_x1d.fits', './lede0pswq_x1d.fits', './lede0qcaq_x1d.fits', './lede0qccq_x1d.fits', './lede0qceq_x1d.fits', './lede0qcgq_x1d.fits', './lede0raiq_x1d.fits', './lede0ranq_x1d.fits', './lede0rapq_x1d.fits', './lede0rarq_x1d.fits', './lede0togq_x1d.fits', './lede0toiq_x1d.fits', './lede0tokq_x1d.fits', './lede0tomq_x1d.fits', './lede0uztq_x1d.fits', './lede0uzvq_x1d.fits', './lede0uzxq_x1d.fits', './lede0uzzq_x1d.fits', './lede0yh2q_x1d.fits', './lede0yh4q_x1d.fits', './lede0zzaq_x1d.fits', './lede0zzcq_x1d.fits', './lede0zzeq_x1d.fits', './lede0zzgq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede16w8q_x1d.fits', './lede16waq_x1d.fits', './lede16wcq_x1d.fits', './lede16weq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1bvoq_x1d.fits', './lede1bvqq_x1d.fits', './lede1bvsq_x1d.fits', './lede1bvuq_x1d.fits', './lede1cfaq_x1d.fits', './lede1cfcq_x1d.fits', './lede1cfeq_x1d.fits', './lede1cfgq_x1d.fits', './lede1ejtq_x1d.fits', './lede1ejvq_x1d.fits', './lede1ejxq_x1d.fits', './lede1ejzq_x1d.fits', './lede1gaoq_x1d.fits', './lede1gaqq_x1d.fits', './lede1gbiq_x1d.fits', './lede1gbkq_x1d.fits', './lede1hhkq_x1d.fits', './lede1hhmq_x1d.fits', './lede1hhoq_x1d.fits', './lede1irjq_x1d.fits', './lede1irlq_x1d.fits', './lede1irnq_x1d.fits', './lede1irpq_x1d.fits', './lede1mu3q_x1d.fits', './lede1mu5q_x1d.fits', './lede1mu7q_x1d.fits', './lede1mu9q_x1d.fits', './lede1noqq_x1d.fits', './lede1nosq_x1d.fits', './lede1nouq_x1d.fits', './lede1nowq_x1d.fits', './lede1ocmq_x1d.fits', './lede1ocoq_x1d.fits', './lede1ocqq_x1d.fits', './lede1ocsq_x1d.fits', './lede1pkrq_x1d.fits', './lede1pktq_x1d.fits', './lede1pkvq_x1d.fits', './lede1pkxq_x1d.fits', './lede1qsxq_x1d.fits', './lede1qszq_x1d.fits', './lede1qt1q_x1d.fits', './lede1qt3q_x1d.fits', './lede1tukq_x1d.fits', './lede1tumq_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits', './lede2atiq_x1d.fits', './lede2atkq_x1d.fits', './lede2atmq_x1d.fits', './lede2atoq_x1d.fits', './lede2bbcq_x1d.fits', './lede2bbhq_x1d.fits', './lede2bbjq_x1d.fits', './lede2bblq_x1d.fits', './lede2cj0q_x1d.fits', './lede2cj2q_x1d.fits', './lede2cj4q_x1d.fits', './lede2cj6q_x1d.fits', './lede2dowq_x1d.fits', './lede2doyq_x1d.fits', './lede2dp0q_x1d.fits', './lede2dp3q_x1d.fits', './lede2eynq_x1d.fits', './lede2eyqq_x1d.fits', './lede2eysq_x1d.fits', './lede2eyuq_x1d.fits', './lede2fi3q_x1d.fits', './lede2fi5q_x1d.fits', './lede2fi7q_x1d.fits', './lede2fi9q_x1d.fits', './lede2gf8q_x1d.fits', './lede2gfaq_x1d.fits', './lede2gfcq_x1d.fits', './lede2gfxq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2nkyq_x1d.fits', './lede2nl3q_x1d.fits', './lede2nl5q_x1d.fits', './lede2nl7q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede30sjq_x1d.fits', './lede30slq_x1d.fits', './lede30snq_x1d.fits', './lede30spq_x1d.fits', './lede31deq_x1d.fits', './lede31dgq_x1d.fits', './lede31diq_x1d.fits', './lede31dkq_x1d.fits', './lede32s9q_x1d.fits', './lede32sbq_x1d.fits', './lede32sdq_x1d.fits', './lede32sfq_x1d.fits', './lede33s9q_x1d.fits', './lede33syq_x1d.fits', './lede33t0q_x1d.fits', './lede33t2q_x1d.fits', './lede34lwq_x1d.fits', './lede34lyq_x1d.fits', './lede34m0q_x1d.fits', './lede34m3q_x1d.fits', './lede35xzq_x1d.fits', './lede35y1q_x1d.fits', './lede35y3q_x1d.fits', './lede35y5q_x1d.fits', './lede36g8q_x1d.fits', './lede36gaq_x1d.fits', './lede36gcq_x1d.fits', './lede36geq_x1d.fits', './lede37ldq_x1d.fits', './lede37lfq_x1d.fits', './lede37lhq_x1d.fits', './lede37ljq_x1d.fits', './lede38u0q_x1d.fits', './lede38u2q_x1d.fits', './lede38u4q_x1d.fits', './lede38u6q_x1d.fits', './lede39ctq_x1d.fits', './lede39cvq_x1d.fits', './lede39cxq_x1d.fits', './lede39czq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ckeq_x1d.fits', './lede3ckgq_x1d.fits', './lede3ckiq_x1d.fits', './lede3ckkq_x1d.fits', './lede3dt9q_x1d.fits', './lede3dtbq_x1d.fits', './lede3dtdq_x1d.fits', './lede3dtfq_x1d.fits', './lede3efkq_x1d.fits', './lede3efmq_x1d.fits', './lede3efoq_x1d.fits', './lede3efqq_x1d.fits', './lede3fdpq_x1d.fits', './lede3fdrq_x1d.fits', './lede3fdtq_x1d.fits', './lede3fe0q_x1d.fits', './lede3gmrq_x1d.fits', './lede3gmtq_x1d.fits', './lede3gmvq_x1d.fits', './lede3gmxq_x1d.fits', './lede3hbnq_x1d.fits', './lede3hbpq_x1d.fits', './lede3hbrq_x1d.fits', './lede3hbtq_x1d.fits', './lede3irzq_x1d.fits', './lede3is1q_x1d.fits', './lede3is3q_x1d.fits', './lede3is6q_x1d.fits', './lede3lpxq_x1d.fits', './lede3lpzq_x1d.fits', './lede3lq1q_x1d.fits', './lede3lq3q_x1d.fits', './lede3medq_x1d.fits', './lede3mefq_x1d.fits', './lede3mehq_x1d.fits', './lede3mejq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede3pr9q_x1d.fits', './lede3prbq_x1d.fits', './lede3prdq_x1d.fits', './lede3prfq_x1d.fits', './lede3qa2q_x1d.fits', './lede3qa4q_x1d.fits', './lede3qzxq_x1d.fits', './lede3qzzq_x1d.fits', './lede3rh8q_x1d.fits', './lede3rhaq_x1d.fits', './lede3rhcq_x1d.fits', './lede3rheq_x1d.fits', './lede3stjq_x1d.fits', './lede3stpq_x1d.fits', './lede3strq_x1d.fits', './lede3sttq_x1d.fits', './lede3ua5q_x1d.fits', './lede3ua7q_x1d.fits', './lede3ua9q_x1d.fits', './lede3uabq_x1d.fits', './lede3visq_x1d.fits', './lede3viuq_x1d.fits', './lede3viwq_x1d.fits', './lede3viyq_x1d.fits', './lede3we2q_x1d.fits', './lede3we4q_x1d.fits', './lede3we6q_x1d.fits', './lede3we8q_x1d.fits', './lede3xjoq_x1d.fits', './lede3xk9q_x1d.fits', './lede3xkhq_x1d.fits', './lede3xkjq_x1d.fits', './lede3yqfq_x1d.fits', './lede3yqhq_x1d.fits', './lede3yqjq_x1d.fits', './lede3yqlq_x1d.fits', './lede3za3q_x1d.fits', './lede3za5q_x1d.fits', './lede3za7q_x1d.fits', './lede3za9q_x1d.fits', './lede40mkq_x1d.fits', './lede40mmq_x1d.fits', './lede40moq_x1d.fits', './lede40mqq_x1d.fits', './lede41uiq_x1d.fits', './lede41ukq_x1d.fits', './lede41umq_x1d.fits', './lede41uoq_x1d.fits', './lede42hnq_x1d.fits', './lede42hpq_x1d.fits', './lede42hrq_x1d.fits', './lede42htq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede82idq_x1d.fits', './lede82ifq_x1d.fits', './lede83irq_x1d.fits', './lede83itq_x1d.fits', './lede84quq_x1d.fits', './lede84qwq_x1d.fits', './lede84qyq_x1d.fits', './lede84r0q_x1d.fits', './lede85byq_x1d.fits', './lede85c0q_x1d.fits', './lede85c2q_x1d.fits', './lede85c4q_x1d.fits', './lede86j8q_x1d.fits', './lede86jaq_x1d.fits', './lede86jcq_x1d.fits', './lede86jeq_x1d.fits', './lede87jkq_x1d.fits', './lede87jmq_x1d.fits', './lede87joq_x1d.fits', './lede87jqq_x1d.fits', './lede88tlq_x1d.fits', './lede88tnq_x1d.fits', './lede88tpq_x1d.fits', './lede88trq_x1d.fits', './lede89bkq_x1d.fits', './lede89bmq_x1d.fits', './lede89boq_x1d.fits', './lede89bqq_x1d.fits', './lede90dvq_x1d.fits', './lede90dxq_x1d.fits', './lede90dzq_x1d.fits', './lede90e1q_x1d.fits', './lede91pgq_x1d.fits', './lede91piq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits', './lede92kbq_x1d.fits', './lede92kdq_x1d.fits', './lede92kfq_x1d.fits', './lede92khq_x1d.fits', './lede93t1q_x1d.fits', './lede93t3q_x1d.fits', './lede93t5q_x1d.fits', './lede93t7q_x1d.fits', './lede95roq_x1d.fits', './lede95rwq_x1d.fits', './lede97ejq_x1d.fits', './lede97elq_x1d.fits']
Processing file ./lede01iqq_x1d.fits
Processing file ./lede01isq_x1d.fits
Processing file ./lede01iuq_x1d.fits
Processing file ./lede01iwq_x1d.fits
Processing file ./lede02vjq_x1d.fits
Processing file ./lede02vlq_x1d.fits
Processing file ./lede02vnq_x1d.fits
Processing file ./lede02vpq_x1d.fits
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0af2q_x1d.fits
Processing file ./lede0af5q_x1d.fits
Processing file ./lede0af7q_x1d.fits
Processing file ./lede0af9q_x1d.fits
Processing file ./lede0bj9q_x1d.fits
Processing file ./lede0bjbq_x1d.fits
Processing file ./lede0bjdq_x1d.fits
Processing file ./lede0bjyq_x1d.fits
Processing file ./lede0cvxq_x1d.fits
Processing file ./lede0cvzq_x1d.fits
Processing file ./lede0cw1q_x1d.fits
Processing file ./lede0cw3q_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede0ikvq_x1d.fits
Processing file ./lede0ikxq_x1d.fits
Processing file ./lede0ikzq_x1d.fits
Processing file ./lede0il1q_x1d.fits
Processing file ./lede0jw9q_x1d.fits
Processing file ./lede0jwbq_x1d.fits
Processing file ./lede0jwdq_x1d.fits
Processing file ./lede0jwfq_x1d.fits
Processing file ./lede0kfeq_x1d.fits
Processing file ./lede0kfgq_x1d.fits
Processing file ./lede0kfiq_x1d.fits
Processing file ./lede0kfkq_x1d.fits
Processing file ./lede0lp5q_x1d.fits
Processing file ./lede0lp7q_x1d.fits
Processing file ./lede0lp9q_x1d.fits
Processing file ./lede0lpbq_x1d.fits
Processing file ./lede0ma1q_x1d.fits
Processing file ./lede0ma4q_x1d.fits
Processing file ./lede0ma6q_x1d.fits
Processing file ./lede0mzxq_x1d.fits
Processing file ./lede0njkq_x1d.fits
Processing file ./lede0njmq_x1d.fits
Processing file ./lede0njoq_x1d.fits
Processing file ./lede0nk9q_x1d.fits
Processing file ./lede0ogtq_x1d.fits
Processing file ./lede0ogvq_x1d.fits
Processing file ./lede0ogxq_x1d.fits
Processing file ./lede0ogzq_x1d.fits
Processing file ./lede0psqq_x1d.fits
Processing file ./lede0pssq_x1d.fits
Processing file ./lede0psuq_x1d.fits
Processing file ./lede0pswq_x1d.fits
Processing file ./lede0qcaq_x1d.fits
Processing file ./lede0qccq_x1d.fits
Processing file ./lede0qceq_x1d.fits
Processing file ./lede0qcgq_x1d.fits
Processing file ./lede0raiq_x1d.fits
Processing file ./lede0ranq_x1d.fits
Processing file ./lede0rapq_x1d.fits
Processing file ./lede0rarq_x1d.fits
Processing file ./lede0togq_x1d.fits
Processing file ./lede0toiq_x1d.fits
Processing file ./lede0tokq_x1d.fits
Processing file ./lede0tomq_x1d.fits
Processing file ./lede0uztq_x1d.fits
Processing file ./lede0uzvq_x1d.fits
Processing file ./lede0uzxq_x1d.fits
Processing file ./lede0uzzq_x1d.fits
Processing file ./lede0yh2q_x1d.fits
Processing file ./lede0yh4q_x1d.fits
Processing file ./lede0zzaq_x1d.fits
Processing file ./lede0zzcq_x1d.fits
Processing file ./lede0zzeq_x1d.fits
Processing file ./lede0zzgq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede16w8q_x1d.fits
Processing file ./lede16waq_x1d.fits
Processing file ./lede16wcq_x1d.fits
Processing file ./lede16weq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1bvoq_x1d.fits
Processing file ./lede1bvqq_x1d.fits
Processing file ./lede1bvsq_x1d.fits
Processing file ./lede1bvuq_x1d.fits
Processing file ./lede1cfaq_x1d.fits
Processing file ./lede1cfcq_x1d.fits
Processing file ./lede1cfeq_x1d.fits
Processing file ./lede1cfgq_x1d.fits
Processing file ./lede1ejtq_x1d.fits
Processing file ./lede1ejvq_x1d.fits
Processing file ./lede1ejxq_x1d.fits
Processing file ./lede1ejzq_x1d.fits
Processing file ./lede1gaoq_x1d.fits
Processing file ./lede1gaqq_x1d.fits
Processing file ./lede1gbiq_x1d.fits
Processing file ./lede1gbkq_x1d.fits
Processing file ./lede1hhkq_x1d.fits
Processing file ./lede1hhmq_x1d.fits
Processing file ./lede1hhoq_x1d.fits
Processing file ./lede1irjq_x1d.fits
Processing file ./lede1irlq_x1d.fits
Processing file ./lede1irnq_x1d.fits
Processing file ./lede1irpq_x1d.fits
Processing file ./lede1mu3q_x1d.fits
Processing file ./lede1mu5q_x1d.fits
Processing file ./lede1mu7q_x1d.fits
Processing file ./lede1mu9q_x1d.fits
Processing file ./lede1noqq_x1d.fits
Processing file ./lede1nosq_x1d.fits
Processing file ./lede1nouq_x1d.fits
Processing file ./lede1nowq_x1d.fits
Processing file ./lede1ocmq_x1d.fits
Processing file ./lede1ocoq_x1d.fits
Processing file ./lede1ocqq_x1d.fits
Processing file ./lede1ocsq_x1d.fits
Processing file ./lede1pkrq_x1d.fits
Processing file ./lede1pktq_x1d.fits
Processing file ./lede1pkvq_x1d.fits
Processing file ./lede1pkxq_x1d.fits
Processing file ./lede1qsxq_x1d.fits
Processing file ./lede1qszq_x1d.fits
Processing file ./lede1qt1q_x1d.fits
Processing file ./lede1qt3q_x1d.fits
Processing file ./lede1tukq_x1d.fits
Processing file ./lede1tumq_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2atiq_x1d.fits
Processing file ./lede2atkq_x1d.fits
Processing file ./lede2atmq_x1d.fits
Processing file ./lede2atoq_x1d.fits
Processing file ./lede2bbcq_x1d.fits
Processing file ./lede2bbhq_x1d.fits
Processing file ./lede2bbjq_x1d.fits
Processing file ./lede2bblq_x1d.fits
Processing file ./lede2cj0q_x1d.fits
Processing file ./lede2cj2q_x1d.fits
Processing file ./lede2cj4q_x1d.fits
Processing file ./lede2cj6q_x1d.fits
Processing file ./lede2dowq_x1d.fits
Processing file ./lede2doyq_x1d.fits
Processing file ./lede2dp0q_x1d.fits
Processing file ./lede2dp3q_x1d.fits
Processing file ./lede2eynq_x1d.fits
Processing file ./lede2eyqq_x1d.fits
Processing file ./lede2eysq_x1d.fits
Processing file ./lede2eyuq_x1d.fits
Processing file ./lede2fi3q_x1d.fits
Processing file ./lede2fi5q_x1d.fits
Processing file ./lede2fi7q_x1d.fits
Processing file ./lede2fi9q_x1d.fits
Processing file ./lede2gf8q_x1d.fits
Processing file ./lede2gfaq_x1d.fits
Processing file ./lede2gfcq_x1d.fits
Processing file ./lede2gfxq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2nkyq_x1d.fits
Processing file ./lede2nl3q_x1d.fits
Processing file ./lede2nl5q_x1d.fits
Processing file ./lede2nl7q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede30sjq_x1d.fits
Processing file ./lede30slq_x1d.fits
Processing file ./lede30snq_x1d.fits
Processing file ./lede30spq_x1d.fits
Processing file ./lede31deq_x1d.fits
Processing file ./lede31dgq_x1d.fits
Processing file ./lede31diq_x1d.fits
Processing file ./lede31dkq_x1d.fits
Processing file ./lede32s9q_x1d.fits
Processing file ./lede32sbq_x1d.fits
Processing file ./lede32sdq_x1d.fits
Processing file ./lede32sfq_x1d.fits
Processing file ./lede33s9q_x1d.fits
Processing file ./lede33syq_x1d.fits
Processing file ./lede33t0q_x1d.fits
Processing file ./lede33t2q_x1d.fits
Processing file ./lede34lwq_x1d.fits
Processing file ./lede34lyq_x1d.fits
Processing file ./lede34m0q_x1d.fits
Processing file ./lede34m3q_x1d.fits
Processing file ./lede35xzq_x1d.fits
Processing file ./lede35y1q_x1d.fits
Processing file ./lede35y3q_x1d.fits
Processing file ./lede35y5q_x1d.fits
Processing file ./lede36g8q_x1d.fits
Processing file ./lede36gaq_x1d.fits
Processing file ./lede36gcq_x1d.fits
Processing file ./lede36geq_x1d.fits
Processing file ./lede37ldq_x1d.fits
Processing file ./lede37lfq_x1d.fits
Processing file ./lede37lhq_x1d.fits
Processing file ./lede37ljq_x1d.fits
Processing file ./lede38u0q_x1d.fits
Processing file ./lede38u2q_x1d.fits
Processing file ./lede38u4q_x1d.fits
Processing file ./lede38u6q_x1d.fits
Processing file ./lede39ctq_x1d.fits
Processing file ./lede39cvq_x1d.fits
Processing file ./lede39cxq_x1d.fits
Processing file ./lede39czq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ckeq_x1d.fits
Processing file ./lede3ckgq_x1d.fits
Processing file ./lede3ckiq_x1d.fits
Processing file ./lede3ckkq_x1d.fits
Processing file ./lede3dt9q_x1d.fits
Processing file ./lede3dtbq_x1d.fits
Processing file ./lede3dtdq_x1d.fits
Processing file ./lede3dtfq_x1d.fits
Processing file ./lede3efkq_x1d.fits
Processing file ./lede3efmq_x1d.fits
Processing file ./lede3efoq_x1d.fits
Processing file ./lede3efqq_x1d.fits
Processing file ./lede3fdpq_x1d.fits
Processing file ./lede3fdrq_x1d.fits
Processing file ./lede3fdtq_x1d.fits
Processing file ./lede3fe0q_x1d.fits
Processing file ./lede3gmrq_x1d.fits
Processing file ./lede3gmtq_x1d.fits
Processing file ./lede3gmvq_x1d.fits
Processing file ./lede3gmxq_x1d.fits
Processing file ./lede3hbnq_x1d.fits
Processing file ./lede3hbpq_x1d.fits
Processing file ./lede3hbrq_x1d.fits
Processing file ./lede3hbtq_x1d.fits
Processing file ./lede3irzq_x1d.fits
Processing file ./lede3is1q_x1d.fits
Processing file ./lede3is3q_x1d.fits
Processing file ./lede3is6q_x1d.fits
Processing file ./lede3lpxq_x1d.fits
Processing file ./lede3lpzq_x1d.fits
Processing file ./lede3lq1q_x1d.fits
Processing file ./lede3lq3q_x1d.fits
Processing file ./lede3medq_x1d.fits
Processing file ./lede3mefq_x1d.fits
Processing file ./lede3mehq_x1d.fits
Processing file ./lede3mejq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede3pr9q_x1d.fits
Processing file ./lede3prbq_x1d.fits
Processing file ./lede3prdq_x1d.fits
Processing file ./lede3prfq_x1d.fits
Processing file ./lede3qa2q_x1d.fits
Processing file ./lede3qa4q_x1d.fits
Processing file ./lede3qzxq_x1d.fits
Processing file ./lede3qzzq_x1d.fits
Processing file ./lede3rh8q_x1d.fits
Processing file ./lede3rhaq_x1d.fits
Processing file ./lede3rhcq_x1d.fits
Processing file ./lede3rheq_x1d.fits
Processing file ./lede3stjq_x1d.fits
Processing file ./lede3stpq_x1d.fits
Processing file ./lede3strq_x1d.fits
Processing file ./lede3sttq_x1d.fits
Processing file ./lede3ua5q_x1d.fits
Processing file ./lede3ua7q_x1d.fits
Processing file ./lede3ua9q_x1d.fits
Processing file ./lede3uabq_x1d.fits
Processing file ./lede3visq_x1d.fits
Processing file ./lede3viuq_x1d.fits
Processing file ./lede3viwq_x1d.fits
Processing file ./lede3viyq_x1d.fits
Processing file ./lede3we2q_x1d.fits
Processing file ./lede3we4q_x1d.fits
Processing file ./lede3we6q_x1d.fits
Processing file ./lede3we8q_x1d.fits
Processing file ./lede3xjoq_x1d.fits
Processing file ./lede3xk9q_x1d.fits
Processing file ./lede3xkhq_x1d.fits
Processing file ./lede3xkjq_x1d.fits
Processing file ./lede3yqfq_x1d.fits
Processing file ./lede3yqhq_x1d.fits
Processing file ./lede3yqjq_x1d.fits
Processing file ./lede3yqlq_x1d.fits
Processing file ./lede3za3q_x1d.fits
Processing file ./lede3za5q_x1d.fits
Processing file ./lede3za7q_x1d.fits
Processing file ./lede3za9q_x1d.fits
Processing file ./lede40mkq_x1d.fits
Processing file ./lede40mmq_x1d.fits
Processing file ./lede40moq_x1d.fits
Processing file ./lede40mqq_x1d.fits
Processing file ./lede41uiq_x1d.fits
Processing file ./lede41ukq_x1d.fits
Processing file ./lede41umq_x1d.fits
Processing file ./lede41uoq_x1d.fits
Processing file ./lede42hnq_x1d.fits
Processing file ./lede42hpq_x1d.fits
Processing file ./lede42hrq_x1d.fits
Processing file ./lede42htq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede82idq_x1d.fits
Processing file ./lede82ifq_x1d.fits
Processing file ./lede83irq_x1d.fits
Processing file ./lede83itq_x1d.fits
Processing file ./lede84quq_x1d.fits
Processing file ./lede84qwq_x1d.fits
Processing file ./lede84qyq_x1d.fits
Processing file ./lede84r0q_x1d.fits
Processing file ./lede85byq_x1d.fits
Processing file ./lede85c0q_x1d.fits
Processing file ./lede85c2q_x1d.fits
Processing file ./lede85c4q_x1d.fits
Processing file ./lede86j8q_x1d.fits
Processing file ./lede86jaq_x1d.fits
Processing file ./lede86jcq_x1d.fits
Processing file ./lede86jeq_x1d.fits
Processing file ./lede87jkq_x1d.fits
Processing file ./lede87jmq_x1d.fits
Processing file ./lede87joq_x1d.fits
Processing file ./lede87jqq_x1d.fits
Processing file ./lede88tlq_x1d.fits
Processing file ./lede88tnq_x1d.fits
Processing file ./lede88tpq_x1d.fits
Processing file ./lede88trq_x1d.fits
Processing file ./lede89bkq_x1d.fits
Processing file ./lede89bmq_x1d.fits
Processing file ./lede89boq_x1d.fits
Processing file ./lede89bqq_x1d.fits
Processing file ./lede90dvq_x1d.fits
Processing file ./lede90dxq_x1d.fits
Processing file ./lede90dzq_x1d.fits
Processing file ./lede90e1q_x1d.fits
Processing file ./lede91pgq_x1d.fits
Processing file ./lede91piq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Processing file ./lede92kbq_x1d.fits
Processing file ./lede92kdq_x1d.fits
Processing file ./lede92kfq_x1d.fits
Processing file ./lede92khq_x1d.fits
Processing file ./lede93t1q_x1d.fits
Processing file ./lede93t3q_x1d.fits
Processing file ./lede93t5q_x1d.fits
Processing file ./lede93t7q_x1d.fits
Processing file ./lede95roq_x1d.fits
Processing file ./lede95rwq_x1d.fits
Processing file ./lede97ejq_x1d.fits
Processing file ./lede97elq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede01iqq_x1d.fits has scaled median = -60.770789895860354
Removing file ./lede01iqq_x1d.fits from product
Segment #1 from file ./lede01isq_x1d.fits has scaled median = -59.28734321571494
Removing file ./lede01isq_x1d.fits from product
Segment #1 from file ./lede01iuq_x1d.fits has scaled median = -61.82447649418713
Removing file ./lede01iuq_x1d.fits from product
Segment #1 from file ./lede01iwq_x1d.fits has scaled median = -61.16283066746675
Removing file ./lede01iwq_x1d.fits from product
Segment #1 from file ./lede0af2q_x1d.fits has scaled median = -114.03225620390593
Removing file ./lede0af2q_x1d.fits from product
Segment #1 from file ./lede0af5q_x1d.fits has scaled median = -115.36839012456873
Removing file ./lede0af5q_x1d.fits from product
Segment #1 from file ./lede0af7q_x1d.fits has scaled median = -102.37878040803173
Removing file ./lede0af7q_x1d.fits from product
Segment #1 from file ./lede0af9q_x1d.fits has scaled median = -106.7471637761629
Removing file ./lede0af9q_x1d.fits from product
Segment #1 from file ./lede0bj9q_x1d.fits has scaled median = -84.02384446861377
Removing file ./lede0bj9q_x1d.fits from product
Segment #1 from file ./lede0bjbq_x1d.fits has scaled median = -87.00087462734366
Removing file ./lede0bjbq_x1d.fits from product
Segment #1 from file ./lede0bjdq_x1d.fits has scaled median = -78.3970343651682
Removing file ./lede0bjdq_x1d.fits from product
Segment #1 from file ./lede0bjyq_x1d.fits has scaled median = -82.2334456464355
Removing file ./lede0bjyq_x1d.fits from product
Segment #0 from file ./lede0ikvq_x1d.fits has scaled median = -73.79807705401362
Removing file ./lede0ikvq_x1d.fits from product
Segment #1 from file ./lede0ikvq_x1d.fits has scaled median = -140.92148846257408
File ./lede0ikvq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ikxq_x1d.fits has scaled median = -74.58954207496984
Removing file ./lede0ikxq_x1d.fits from product
Segment #1 from file ./lede0ikxq_x1d.fits has scaled median = -142.15586088459872
File ./lede0ikxq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ikzq_x1d.fits has scaled median = -60.39085962402227
Removing file ./lede0ikzq_x1d.fits from product
Segment #1 from file ./lede0ikzq_x1d.fits has scaled median = -137.25428154212682
File ./lede0ikzq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0il1q_x1d.fits has scaled median = -63.1944684714486
Removing file ./lede0il1q_x1d.fits from product
Segment #1 from file ./lede0il1q_x1d.fits has scaled median = -139.04573327372316
File ./lede0il1q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0jw9q_x1d.fits has scaled median = -77.59691112804018
Removing file ./lede0jw9q_x1d.fits from product
Segment #1 from file ./lede0jw9q_x1d.fits has scaled median = -148.5184970701647
File ./lede0jw9q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0jwbq_x1d.fits has scaled median = -78.72087850218767
Removing file ./lede0jwbq_x1d.fits from product
Segment #1 from file ./lede0jwbq_x1d.fits has scaled median = -150.0952335636471
File ./lede0jwbq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0jwdq_x1d.fits has scaled median = -64.69321285656868
Removing file ./lede0jwdq_x1d.fits from product
Segment #1 from file ./lede0jwdq_x1d.fits has scaled median = -144.5679870422435
File ./lede0jwdq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0jwfq_x1d.fits has scaled median = -66.21784162453321
Removing file ./lede0jwfq_x1d.fits from product
Segment #1 from file ./lede0jwfq_x1d.fits has scaled median = -144.83693845853273
File ./lede0jwfq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0kfeq_x1d.fits has scaled median = -82.95134717097567
Removing file ./lede0kfeq_x1d.fits from product
Segment #1 from file ./lede0kfeq_x1d.fits has scaled median = -156.00933631449487
File ./lede0kfeq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0kfgq_x1d.fits has scaled median = -84.23521235044204
Removing file ./lede0kfgq_x1d.fits from product
Segment #1 from file ./lede0kfgq_x1d.fits has scaled median = -161.94337336847147
File ./lede0kfgq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0kfiq_x1d.fits has scaled median = -69.9645422871095
Removing file ./lede0kfiq_x1d.fits from product
Segment #1 from file ./lede0kfiq_x1d.fits has scaled median = -150.1295211236796
File ./lede0kfiq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0kfkq_x1d.fits has scaled median = -71.7894499449674
Removing file ./lede0kfkq_x1d.fits from product
Segment #1 from file ./lede0kfkq_x1d.fits has scaled median = -152.66498904875107
File ./lede0kfkq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0lp5q_x1d.fits has scaled median = -79.78760375118998
Removing file ./lede0lp5q_x1d.fits from product
Segment #1 from file ./lede0lp5q_x1d.fits has scaled median = -142.0667820255663
File ./lede0lp5q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0lp7q_x1d.fits has scaled median = -79.73739761727808
Removing file ./lede0lp7q_x1d.fits from product
Segment #1 from file ./lede0lp7q_x1d.fits has scaled median = -143.7145811640235
File ./lede0lp7q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0lp9q_x1d.fits has scaled median = -65.07380661099145
Removing file ./lede0lp9q_x1d.fits from product
Segment #1 from file ./lede0lp9q_x1d.fits has scaled median = -139.1794722429214
File ./lede0lp9q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0lpbq_x1d.fits has scaled median = -66.08523330800233
Removing file ./lede0lpbq_x1d.fits from product
Segment #1 from file ./lede0lpbq_x1d.fits has scaled median = -141.46706200043388
File ./lede0lpbq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ma1q_x1d.fits has scaled median = -74.05000925296956
Removing file ./lede0ma1q_x1d.fits from product
Segment #1 from file ./lede0ma1q_x1d.fits has scaled median = -136.01785394258562
File ./lede0ma1q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ma4q_x1d.fits has scaled median = -60.18194412814764
Removing file ./lede0ma4q_x1d.fits from product
Segment #1 from file ./lede0ma4q_x1d.fits has scaled median = -128.5175441217989
File ./lede0ma4q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ma6q_x1d.fits has scaled median = -62.97123981157338
Removing file ./lede0ma6q_x1d.fits from product
Segment #1 from file ./lede0ma6q_x1d.fits has scaled median = -130.5133259613667
File ./lede0ma6q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0mzxq_x1d.fits has scaled median = -75.3409537644368
Removing file ./lede0mzxq_x1d.fits from product
Segment #1 from file ./lede0mzxq_x1d.fits has scaled median = -131.92512688793246
File ./lede0mzxq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0njkq_x1d.fits has scaled median = -74.72255516727861
Removing file ./lede0njkq_x1d.fits from product
Segment #1 from file ./lede0njkq_x1d.fits has scaled median = -134.3883713159965
File ./lede0njkq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0njmq_x1d.fits has scaled median = -76.25453543581041
Removing file ./lede0njmq_x1d.fits from product
Segment #1 from file ./lede0njmq_x1d.fits has scaled median = -135.94078571638548
File ./lede0njmq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0njoq_x1d.fits has scaled median = -61.22726476682716
Removing file ./lede0njoq_x1d.fits from product
Segment #1 from file ./lede0njoq_x1d.fits has scaled median = -132.63414860314717
File ./lede0njoq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0nk9q_x1d.fits has scaled median = -62.87222039592788
Removing file ./lede0nk9q_x1d.fits from product
Segment #1 from file ./lede0nk9q_x1d.fits has scaled median = -130.00507848011662
File ./lede0nk9q_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ogtq_x1d.fits has scaled median = -79.52180912574192
Removing file ./lede0ogtq_x1d.fits from product
Segment #1 from file ./lede0ogtq_x1d.fits has scaled median = -140.4417781150428
File ./lede0ogtq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ogvq_x1d.fits has scaled median = -80.17457353801272
Removing file ./lede0ogvq_x1d.fits from product
Segment #1 from file ./lede0ogvq_x1d.fits has scaled median = -141.65548465446741
File ./lede0ogvq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ogxq_x1d.fits has scaled median = -67.42242063672408
Removing file ./lede0ogxq_x1d.fits from product
Segment #1 from file ./lede0ogxq_x1d.fits has scaled median = -137.47393899545642
File ./lede0ogxq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ogzq_x1d.fits has scaled median = -65.84601856869726
Removing file ./lede0ogzq_x1d.fits from product
Segment #1 from file ./lede0ogzq_x1d.fits has scaled median = -138.08316046862313
File ./lede0ogzq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0psqq_x1d.fits has scaled median = -80.85175246258142
Removing file ./lede0psqq_x1d.fits from product
Segment #1 from file ./lede0psqq_x1d.fits has scaled median = -146.28777172829504
File ./lede0psqq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0pssq_x1d.fits has scaled median = -84.42624610513474
Removing file ./lede0pssq_x1d.fits from product
Segment #1 from file ./lede0pssq_x1d.fits has scaled median = -151.07045117098903
File ./lede0pssq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0psuq_x1d.fits has scaled median = -67.75855568782598
Removing file ./lede0psuq_x1d.fits from product
Segment #1 from file ./lede0psuq_x1d.fits has scaled median = -145.07560247031415
File ./lede0psuq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0pswq_x1d.fits has scaled median = -68.65523229435826
Removing file ./lede0pswq_x1d.fits from product
Segment #1 from file ./lede0pswq_x1d.fits has scaled median = -144.89091884354423
File ./lede0pswq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0qcaq_x1d.fits has scaled median = -74.44483913927654
Removing file ./lede0qcaq_x1d.fits from product
Segment #1 from file ./lede0qcaq_x1d.fits has scaled median = -130.86955420188022
File ./lede0qcaq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0qccq_x1d.fits has scaled median = -78.29083558415267
Removing file ./lede0qccq_x1d.fits from product
Segment #1 from file ./lede0qccq_x1d.fits has scaled median = -132.395640120299
File ./lede0qccq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0qceq_x1d.fits has scaled median = -61.82560009046839
Removing file ./lede0qceq_x1d.fits from product
Segment #1 from file ./lede0qceq_x1d.fits has scaled median = -127.92750058390804
File ./lede0qceq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0qcgq_x1d.fits has scaled median = -63.073771936020044
Removing file ./lede0qcgq_x1d.fits from product
Segment #1 from file ./lede0qcgq_x1d.fits has scaled median = -129.47641615789885
File ./lede0qcgq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0raiq_x1d.fits has scaled median = -83.06218867790939
Removing file ./lede0raiq_x1d.fits from product
Segment #1 from file ./lede0raiq_x1d.fits has scaled median = -150.86567797192527
File ./lede0raiq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0ranq_x1d.fits has scaled median = -83.65370940410905
Removing file ./lede0ranq_x1d.fits from product
Segment #1 from file ./lede0ranq_x1d.fits has scaled median = -150.5434819399553
File ./lede0ranq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0rapq_x1d.fits has scaled median = -66.40009859984289
Removing file ./lede0rapq_x1d.fits from product
Segment #1 from file ./lede0rapq_x1d.fits has scaled median = -145.35645413294444
File ./lede0rapq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0rarq_x1d.fits has scaled median = -69.20582870599522
Removing file ./lede0rarq_x1d.fits from product
Segment #1 from file ./lede0rarq_x1d.fits has scaled median = -145.69010028016672
File ./lede0rarq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0togq_x1d.fits has scaled median = -79.57246358565935
Removing file ./lede0togq_x1d.fits from product
Segment #1 from file ./lede0togq_x1d.fits has scaled median = -139.5103290418251
File ./lede0togq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0toiq_x1d.fits has scaled median = -83.33572883252147
Removing file ./lede0toiq_x1d.fits from product
Segment #1 from file ./lede0toiq_x1d.fits has scaled median = -142.77089247186188
File ./lede0toiq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0tokq_x1d.fits has scaled median = -64.41770569809569
Removing file ./lede0tokq_x1d.fits from product
Segment #1 from file ./lede0tokq_x1d.fits has scaled median = -136.88672290324394
File ./lede0tokq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0tomq_x1d.fits has scaled median = -66.2245091091318
Removing file ./lede0tomq_x1d.fits from product
Segment #1 from file ./lede0tomq_x1d.fits has scaled median = -138.07175221802717
File ./lede0tomq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0uztq_x1d.fits has scaled median = -63.99199077201489
Removing file ./lede0uztq_x1d.fits from product
Segment #1 from file ./lede0uztq_x1d.fits has scaled median = -102.36590286954005
File ./lede0uztq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0uzvq_x1d.fits has scaled median = -65.37911814619656
Removing file ./lede0uzvq_x1d.fits from product
Segment #1 from file ./lede0uzvq_x1d.fits has scaled median = -103.84893832375845
File ./lede0uzvq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0uzxq_x1d.fits has scaled median = -53.79172251481495
Removing file ./lede0uzxq_x1d.fits from product
Segment #1 from file ./lede0uzxq_x1d.fits has scaled median = -102.91138991413236
File ./lede0uzxq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0uzzq_x1d.fits has scaled median = -53.577659133995915
Removing file ./lede0uzzq_x1d.fits from product
Segment #1 from file ./lede0uzzq_x1d.fits has scaled median = -102.91759649295848
File ./lede0uzzq_x1d.fits already selected for removal from product
Segment #1 from file ./lede0yh2q_x1d.fits has scaled median = -75.17564753063368
Removing file ./lede0yh2q_x1d.fits from product
Segment #1 from file ./lede0yh4q_x1d.fits has scaled median = -63.6071844584542
Removing file ./lede0yh4q_x1d.fits from product
Segment #0 from file ./lede0zzaq_x1d.fits has scaled median = -66.24802293370024
Removing file ./lede0zzaq_x1d.fits from product
Segment #1 from file ./lede0zzaq_x1d.fits has scaled median = -148.51584746301987
File ./lede0zzaq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0zzcq_x1d.fits has scaled median = -69.46569284081893
Removing file ./lede0zzcq_x1d.fits from product
Segment #1 from file ./lede0zzcq_x1d.fits has scaled median = -150.81803562130895
File ./lede0zzcq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0zzeq_x1d.fits has scaled median = -64.00420746067412
Removing file ./lede0zzeq_x1d.fits from product
Segment #1 from file ./lede0zzeq_x1d.fits has scaled median = -136.01571226362162
File ./lede0zzeq_x1d.fits already selected for removal from product
Segment #0 from file ./lede0zzgq_x1d.fits has scaled median = -63.32669552678837
Removing file ./lede0zzgq_x1d.fits from product
Segment #1 from file ./lede0zzgq_x1d.fits has scaled median = -141.45221461915952
File ./lede0zzgq_x1d.fits already selected for removal from product
Segment #1 from file ./lede1bvoq_x1d.fits has scaled median = -87.94577229942448
Removing file ./lede1bvoq_x1d.fits from product
Segment #1 from file ./lede1bvqq_x1d.fits has scaled median = -91.79070576207525
Removing file ./lede1bvqq_x1d.fits from product
Segment #1 from file ./lede1bvsq_x1d.fits has scaled median = -81.95685486524994
Removing file ./lede1bvsq_x1d.fits from product
Segment #1 from file ./lede1bvuq_x1d.fits has scaled median = -83.71446340808764
Removing file ./lede1bvuq_x1d.fits from product
Segment #1 from file ./lede1gaoq_x1d.fits has scaled median = -85.84066685383385
Removing file ./lede1gaoq_x1d.fits from product
Segment #1 from file ./lede1gaqq_x1d.fits has scaled median = -92.34041266168633
Removing file ./lede1gaqq_x1d.fits from product
Segment #1 from file ./lede1gbiq_x1d.fits has scaled median = -80.43549616122313
Removing file ./lede1gbiq_x1d.fits from product
Segment #1 from file ./lede1gbkq_x1d.fits has scaled median = -83.83756447582394
Removing file ./lede1gbkq_x1d.fits from product
Segment #1 from file ./lede1hhkq_x1d.fits has scaled median = -92.43229893728545
Removing file ./lede1hhkq_x1d.fits from product
Segment #1 from file ./lede1hhmq_x1d.fits has scaled median = -95.3652436482904
Removing file ./lede1hhmq_x1d.fits from product
Segment #1 from file ./lede1hhoq_x1d.fits has scaled median = -87.4107980405179
Removing file ./lede1hhoq_x1d.fits from product
Segment #0 from file ./lede1irjq_x1d.fits has scaled median = -53.79761934231295
Removing file ./lede1irjq_x1d.fits from product
Segment #1 from file ./lede1irjq_x1d.fits has scaled median = -113.05794677356485
File ./lede1irjq_x1d.fits already selected for removal from product
Segment #0 from file ./lede1irlq_x1d.fits has scaled median = -54.945798727227384
Removing file ./lede1irlq_x1d.fits from product
Segment #1 from file ./lede1irlq_x1d.fits has scaled median = -114.40783928606658
File ./lede1irlq_x1d.fits already selected for removal from product
Segment #0 from file ./lede1irnq_x1d.fits has scaled median = -51.488512688961336
Removing file ./lede1irnq_x1d.fits from product
Segment #1 from file ./lede1irnq_x1d.fits has scaled median = -104.347230653824
File ./lede1irnq_x1d.fits already selected for removal from product
Segment #0 from file ./lede1irpq_x1d.fits has scaled median = -51.71450363936186
Removing file ./lede1irpq_x1d.fits from product
Segment #1 from file ./lede1irpq_x1d.fits has scaled median = -106.0599456066171
File ./lede1irpq_x1d.fits already selected for removal from product
Segment #1 from file ./lede1mu3q_x1d.fits has scaled median = -76.27831778473848
Removing file ./lede1mu3q_x1d.fits from product
Segment #1 from file ./lede1mu5q_x1d.fits has scaled median = -78.15752512950544
Removing file ./lede1mu5q_x1d.fits from product
Segment #1 from file ./lede1mu7q_x1d.fits has scaled median = -75.23553105121964
Removing file ./lede1mu7q_x1d.fits from product
Segment #1 from file ./lede1mu9q_x1d.fits has scaled median = -78.96493925003706
Removing file ./lede1mu9q_x1d.fits from product
Segment #1 from file ./lede1noqq_x1d.fits has scaled median = -60.10071182035099
Removing file ./lede1noqq_x1d.fits from product
Segment #1 from file ./lede1nosq_x1d.fits has scaled median = -58.3615993629277
Removing file ./lede1nosq_x1d.fits from product
Segment #1 from file ./lede1nouq_x1d.fits has scaled median = -60.03178615598345
Removing file ./lede1nouq_x1d.fits from product
Segment #1 from file ./lede1nowq_x1d.fits has scaled median = -62.47106831783215
Removing file ./lede1nowq_x1d.fits from product
Segment #1 from file ./lede1ocmq_x1d.fits has scaled median = -59.044903329101025
Removing file ./lede1ocmq_x1d.fits from product
Segment #1 from file ./lede1ocoq_x1d.fits has scaled median = -58.50304897942315
Removing file ./lede1ocoq_x1d.fits from product
Segment #1 from file ./lede1ocqq_x1d.fits has scaled median = -57.92612801083649
Removing file ./lede1ocqq_x1d.fits from product
Segment #1 from file ./lede1ocsq_x1d.fits has scaled median = -60.791600256421596
Removing file ./lede1ocsq_x1d.fits from product
Segment #1 from file ./lede1pkrq_x1d.fits has scaled median = -56.33844510115583
Removing file ./lede1pkrq_x1d.fits from product
Segment #1 from file ./lede1pktq_x1d.fits has scaled median = -58.44118210595615
Removing file ./lede1pktq_x1d.fits from product
Segment #1 from file ./lede1pkvq_x1d.fits has scaled median = -55.321338029765904
Removing file ./lede1pkvq_x1d.fits from product
Segment #1 from file ./lede1pkxq_x1d.fits has scaled median = -56.3093415132101
Removing file ./lede1pkxq_x1d.fits from product
Segment #1 from file ./lede1qsxq_x1d.fits has scaled median = -52.19533419527462
Removing file ./lede1qsxq_x1d.fits from product
Segment #1 from file ./lede1qszq_x1d.fits has scaled median = -53.48629543107781
Removing file ./lede1qszq_x1d.fits from product
Segment #1 from file ./lede1qt3q_x1d.fits has scaled median = -50.30484779392858
Removing file ./lede1qt3q_x1d.fits from product
Segment #0 from file ./lede2nkyq_x1d.fits has scaled median = -52.56694487355377
Removing file ./lede2nkyq_x1d.fits from product
Segment #1 from file ./lede2nkyq_x1d.fits has scaled median = -75.1120340560222
File ./lede2nkyq_x1d.fits already selected for removal from product
Segment #0 from file ./lede2nl3q_x1d.fits has scaled median = -55.321898292402686
Removing file ./lede2nl3q_x1d.fits from product
Segment #1 from file ./lede2nl3q_x1d.fits has scaled median = -80.98449144947715
File ./lede2nl3q_x1d.fits already selected for removal from product
Segment #1 from file ./lede2nl5q_x1d.fits has scaled median = -76.13388650214885
Removing file ./lede2nl5q_x1d.fits from product
Segment #1 from file ./lede2nl7q_x1d.fits has scaled median = -77.78122333625083
Removing file ./lede2nl7q_x1d.fits from product
Segment #1 from file ./lede32s9q_x1d.fits has scaled median = -74.39518791061738
Removing file ./lede32s9q_x1d.fits from product
Segment #1 from file ./lede32sbq_x1d.fits has scaled median = -76.14007526675185
Removing file ./lede32sbq_x1d.fits from product
Segment #1 from file ./lede32sdq_x1d.fits has scaled median = -73.01020184544484
Removing file ./lede32sdq_x1d.fits from product
Segment #1 from file ./lede32sfq_x1d.fits has scaled median = -73.32866931487757
Removing file ./lede32sfq_x1d.fits from product
Segment #1 from file ./lede33s9q_x1d.fits has scaled median = -74.24169485351433
Removing file ./lede33s9q_x1d.fits from product
Segment #1 from file ./lede33syq_x1d.fits has scaled median = -74.5591398484261
Removing file ./lede33syq_x1d.fits from product
Segment #1 from file ./lede33t0q_x1d.fits has scaled median = -73.98657038751134
Removing file ./lede33t0q_x1d.fits from product
Segment #1 from file ./lede33t2q_x1d.fits has scaled median = -75.0285219031284
Removing file ./lede33t2q_x1d.fits from product
Segment #1 from file ./lede34lwq_x1d.fits has scaled median = -57.68995035931434
Removing file ./lede34lwq_x1d.fits from product
Segment #1 from file ./lede34lyq_x1d.fits has scaled median = -58.65720536803189
Removing file ./lede34lyq_x1d.fits from product
Segment #1 from file ./lede34m0q_x1d.fits has scaled median = -60.12583204768154
Removing file ./lede34m0q_x1d.fits from product
Segment #1 from file ./lede34m3q_x1d.fits has scaled median = -58.410511748616685
Removing file ./lede34m3q_x1d.fits from product
Segment #1 from file ./lede35y5q_x1d.fits has scaled median = -51.06667041848677
Removing file ./lede35y5q_x1d.fits from product
Segment #1 from file ./lede36g8q_x1d.fits has scaled median = -66.28970695493487
Removing file ./lede36g8q_x1d.fits from product
Segment #1 from file ./lede36gaq_x1d.fits has scaled median = -66.772858372203
Removing file ./lede36gaq_x1d.fits from product
Segment #1 from file ./lede36gcq_x1d.fits has scaled median = -65.95331259737772
Removing file ./lede36gcq_x1d.fits from product
Segment #1 from file ./lede36geq_x1d.fits has scaled median = -66.30303198667592
Removing file ./lede36geq_x1d.fits from product
Segment #1 from file ./lede37ldq_x1d.fits has scaled median = -75.87848064262475
Removing file ./lede37ldq_x1d.fits from product
Segment #1 from file ./lede37lfq_x1d.fits has scaled median = -77.18272802208801
Removing file ./lede37lfq_x1d.fits from product
Segment #1 from file ./lede37lhq_x1d.fits has scaled median = -75.34648370480244
Removing file ./lede37lhq_x1d.fits from product
Segment #1 from file ./lede37ljq_x1d.fits has scaled median = -72.58620723015643
Removing file ./lede37ljq_x1d.fits from product
Segment #1 from file ./lede38u0q_x1d.fits has scaled median = -62.72717373086454
Removing file ./lede38u0q_x1d.fits from product
Segment #1 from file ./lede38u2q_x1d.fits has scaled median = -63.46108561400893
Removing file ./lede38u2q_x1d.fits from product
Segment #1 from file ./lede38u4q_x1d.fits has scaled median = -64.37356243848875
Removing file ./lede38u4q_x1d.fits from product
Segment #1 from file ./lede38u6q_x1d.fits has scaled median = -64.20854394148627
Removing file ./lede38u6q_x1d.fits from product
Segment #1 from file ./lede3fdpq_x1d.fits has scaled median = -61.61553425909361
Removing file ./lede3fdpq_x1d.fits from product
Segment #1 from file ./lede3fdrq_x1d.fits has scaled median = -65.89117503762303
Removing file ./lede3fdrq_x1d.fits from product
Segment #1 from file ./lede3fdtq_x1d.fits has scaled median = -58.04147097176072
Removing file ./lede3fdtq_x1d.fits from product
Segment #1 from file ./lede3fe0q_x1d.fits has scaled median = -58.989136558759995
Removing file ./lede3fe0q_x1d.fits from product
Segment #1 from file ./lede3gmrq_x1d.fits has scaled median = -75.49406432120146
Removing file ./lede3gmrq_x1d.fits from product
Segment #1 from file ./lede3gmtq_x1d.fits has scaled median = -76.324450970616
Removing file ./lede3gmtq_x1d.fits from product
Segment #1 from file ./lede3gmvq_x1d.fits has scaled median = -69.45266521236073
Removing file ./lede3gmvq_x1d.fits from product
Segment #1 from file ./lede3gmxq_x1d.fits has scaled median = -72.59209049252631
Removing file ./lede3gmxq_x1d.fits from product
Segment #0 from file ./lede3hbnq_x1d.fits has scaled median = -53.33269432665099
Removing file ./lede3hbnq_x1d.fits from product
Segment #1 from file ./lede3hbnq_x1d.fits has scaled median = -104.25495722903861
File ./lede3hbnq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3hbpq_x1d.fits has scaled median = -54.62312870522338
Removing file ./lede3hbpq_x1d.fits from product
Segment #1 from file ./lede3hbpq_x1d.fits has scaled median = -106.61030240483953
File ./lede3hbpq_x1d.fits already selected for removal from product
Segment #1 from file ./lede3hbrq_x1d.fits has scaled median = -99.79708094567431
Removing file ./lede3hbrq_x1d.fits from product
Segment #1 from file ./lede3hbtq_x1d.fits has scaled median = -101.29205662510084
Removing file ./lede3hbtq_x1d.fits from product
Segment #1 from file ./lede3irzq_x1d.fits has scaled median = -82.78049649523409
Removing file ./lede3irzq_x1d.fits from product
Segment #1 from file ./lede3is1q_x1d.fits has scaled median = -88.12911441722805
Removing file ./lede3is1q_x1d.fits from product
Segment #1 from file ./lede3is3q_x1d.fits has scaled median = -80.65986683395244
Removing file ./lede3is3q_x1d.fits from product
Segment #1 from file ./lede3is6q_x1d.fits has scaled median = -81.14907589852704
Removing file ./lede3is6q_x1d.fits from product
Segment #0 from file ./lede3lpxq_x1d.fits has scaled median = -50.027162196999036
Removing file ./lede3lpxq_x1d.fits from product
Segment #1 from file ./lede3lpxq_x1d.fits has scaled median = -91.29460381195538
File ./lede3lpxq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3lpzq_x1d.fits has scaled median = -51.10045329661875
Removing file ./lede3lpzq_x1d.fits from product
Segment #1 from file ./lede3lpzq_x1d.fits has scaled median = -94.73892347491679
File ./lede3lpzq_x1d.fits already selected for removal from product
Segment #1 from file ./lede3lq1q_x1d.fits has scaled median = -85.39285526271794
Removing file ./lede3lq1q_x1d.fits from product
Segment #1 from file ./lede3lq3q_x1d.fits has scaled median = -86.22274483035142
Removing file ./lede3lq3q_x1d.fits from product
Segment #0 from file ./lede3medq_x1d.fits has scaled median = -75.23611515204006
Removing file ./lede3medq_x1d.fits from product
Segment #1 from file ./lede3medq_x1d.fits has scaled median = -136.8567259610402
File ./lede3medq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3mefq_x1d.fits has scaled median = -73.58702020532263
Removing file ./lede3mefq_x1d.fits from product
Segment #1 from file ./lede3mefq_x1d.fits has scaled median = -138.98157249966323
File ./lede3mefq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3mehq_x1d.fits has scaled median = -64.57282241117892
Removing file ./lede3mehq_x1d.fits from product
Segment #1 from file ./lede3mehq_x1d.fits has scaled median = -131.7160037670513
File ./lede3mehq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3mejq_x1d.fits has scaled median = -64.19269670955579
Removing file ./lede3mejq_x1d.fits from product
Segment #1 from file ./lede3mejq_x1d.fits has scaled median = -135.58058147944965
File ./lede3mejq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3pr9q_x1d.fits has scaled median = -64.48041945626862
Removing file ./lede3pr9q_x1d.fits from product
Segment #1 from file ./lede3pr9q_x1d.fits has scaled median = -117.66710957708135
File ./lede3pr9q_x1d.fits already selected for removal from product
Segment #0 from file ./lede3prbq_x1d.fits has scaled median = -66.17853928157876
Removing file ./lede3prbq_x1d.fits from product
Segment #1 from file ./lede3prbq_x1d.fits has scaled median = -121.42620414030353
File ./lede3prbq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3prdq_x1d.fits has scaled median = -56.44589065660398
Removing file ./lede3prdq_x1d.fits from product
Segment #1 from file ./lede3prdq_x1d.fits has scaled median = -111.49453789997592
File ./lede3prdq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3prfq_x1d.fits has scaled median = -58.23688127866143
Removing file ./lede3prfq_x1d.fits from product
Segment #1 from file ./lede3prfq_x1d.fits has scaled median = -111.74752110323153
File ./lede3prfq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3qa2q_x1d.fits has scaled median = -57.003204581516194
Removing file ./lede3qa2q_x1d.fits from product
Segment #1 from file ./lede3qa2q_x1d.fits has scaled median = -115.91237828433397
File ./lede3qa2q_x1d.fits already selected for removal from product
Segment #0 from file ./lede3qa4q_x1d.fits has scaled median = -57.235476836409795
Removing file ./lede3qa4q_x1d.fits from product
Segment #1 from file ./lede3qa4q_x1d.fits has scaled median = -116.44177438373883
File ./lede3qa4q_x1d.fits already selected for removal from product
Segment #0 from file ./lede3qzxq_x1d.fits has scaled median = -61.76719557851238
Removing file ./lede3qzxq_x1d.fits from product
Segment #1 from file ./lede3qzxq_x1d.fits has scaled median = -120.01070342107792
File ./lede3qzxq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3qzzq_x1d.fits has scaled median = -66.18570542834334
Removing file ./lede3qzzq_x1d.fits from product
Segment #1 from file ./lede3qzzq_x1d.fits has scaled median = -124.39354681755542
File ./lede3qzzq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3rh8q_x1d.fits has scaled median = -55.78305708733191
Removing file ./lede3rh8q_x1d.fits from product
Segment #1 from file ./lede3rh8q_x1d.fits has scaled median = -101.58416834156974
File ./lede3rh8q_x1d.fits already selected for removal from product
Segment #0 from file ./lede3rhaq_x1d.fits has scaled median = -57.82801545294924
Removing file ./lede3rhaq_x1d.fits from product
Segment #1 from file ./lede3rhaq_x1d.fits has scaled median = -102.57896093984412
File ./lede3rhaq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3rhcq_x1d.fits has scaled median = -51.77154191189029
Removing file ./lede3rhcq_x1d.fits from product
Segment #1 from file ./lede3rhcq_x1d.fits has scaled median = -101.86043454028075
File ./lede3rhcq_x1d.fits already selected for removal from product
Segment #1 from file ./lede3rheq_x1d.fits has scaled median = -100.52719324908804
Removing file ./lede3rheq_x1d.fits from product
Segment #0 from file ./lede3stjq_x1d.fits has scaled median = -71.46452467599464
Removing file ./lede3stjq_x1d.fits from product
Segment #1 from file ./lede3stjq_x1d.fits has scaled median = -134.91694995412712
File ./lede3stjq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3stpq_x1d.fits has scaled median = -72.51077403688477
Removing file ./lede3stpq_x1d.fits from product
Segment #1 from file ./lede3stpq_x1d.fits has scaled median = -139.0876590653477
File ./lede3stpq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3strq_x1d.fits has scaled median = -60.63071346374786
Removing file ./lede3strq_x1d.fits from product
Segment #1 from file ./lede3strq_x1d.fits has scaled median = -131.61086451366347
File ./lede3strq_x1d.fits already selected for removal from product
Segment #0 from file ./lede3sttq_x1d.fits has scaled median = -61.163390972205505
Removing file ./lede3sttq_x1d.fits from product
Segment #1 from file ./lede3sttq_x1d.fits has scaled median = -133.40463163029312
File ./lede3sttq_x1d.fits already selected for removal from product
Segment #1 from file ./lede3ua5q_x1d.fits has scaled median = -62.52103245317323
Removing file ./lede3ua5q_x1d.fits from product
Segment #1 from file ./lede3ua7q_x1d.fits has scaled median = -63.71629673749055
Removing file ./lede3ua7q_x1d.fits from product
Segment #1 from file ./lede3ua9q_x1d.fits has scaled median = -62.191544679454736
Removing file ./lede3ua9q_x1d.fits from product
Segment #1 from file ./lede3uabq_x1d.fits has scaled median = -60.61701341963803
Removing file ./lede3uabq_x1d.fits from product
Segment #1 from file ./lede3visq_x1d.fits has scaled median = -59.22715047536695
Removing file ./lede3visq_x1d.fits from product
Segment #1 from file ./lede3viuq_x1d.fits has scaled median = -62.068786068714765
Removing file ./lede3viuq_x1d.fits from product
Segment #1 from file ./lede3viwq_x1d.fits has scaled median = -56.303611550392596
Removing file ./lede3viwq_x1d.fits from product
Segment #1 from file ./lede3viyq_x1d.fits has scaled median = -54.50196218725238
Removing file ./lede3viyq_x1d.fits from product
Segment #1 from file ./lede3we4q_x1d.fits has scaled median = -50.75805717948421
Removing file ./lede3we4q_x1d.fits from product
Segment #1 from file ./lede3za3q_x1d.fits has scaled median = -58.09141291597577
Removing file ./lede3za3q_x1d.fits from product
Segment #1 from file ./lede3za5q_x1d.fits has scaled median = -58.10829822728069
Removing file ./lede3za5q_x1d.fits from product
Segment #1 from file ./lede3za7q_x1d.fits has scaled median = -55.74290978471886
Removing file ./lede3za7q_x1d.fits from product
Segment #1 from file ./lede3za9q_x1d.fits has scaled median = -55.23385581175823
Removing file ./lede3za9q_x1d.fits from product
Segment #1 from file ./lede87jkq_x1d.fits has scaled median = -50.346809508706336
Removing file ./lede87jkq_x1d.fits from product
Segment #1 from file ./lede87jmq_x1d.fits has scaled median = -53.97484125643844
Removing file ./lede87jmq_x1d.fits from product
Segment #1 from file ./lede88tnq_x1d.fits has scaled median = -52.493374453360865
Removing file ./lede88tnq_x1d.fits from product
Importing files ['./lede02vjq_x1d.fits', './lede02vlq_x1d.fits', './lede02vnq_x1d.fits', './lede02vpq_x1d.fits', './lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0cvxq_x1d.fits', './lede0cvzq_x1d.fits', './lede0cw1q_x1d.fits', './lede0cw3q_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede16w8q_x1d.fits', './lede16waq_x1d.fits', './lede16wcq_x1d.fits', './lede16weq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1cfaq_x1d.fits', './lede1cfcq_x1d.fits', './lede1cfeq_x1d.fits', './lede1cfgq_x1d.fits', './lede1ejtq_x1d.fits', './lede1ejvq_x1d.fits', './lede1ejxq_x1d.fits', './lede1ejzq_x1d.fits', './lede1qt1q_x1d.fits', './lede1tukq_x1d.fits', './lede1tumq_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits', './lede2atiq_x1d.fits', './lede2atkq_x1d.fits', './lede2atmq_x1d.fits', './lede2atoq_x1d.fits', './lede2bbcq_x1d.fits', './lede2bbhq_x1d.fits', './lede2bbjq_x1d.fits', './lede2bblq_x1d.fits', './lede2cj0q_x1d.fits', './lede2cj2q_x1d.fits', './lede2cj4q_x1d.fits', './lede2cj6q_x1d.fits', './lede2dowq_x1d.fits', './lede2doyq_x1d.fits', './lede2dp0q_x1d.fits', './lede2dp3q_x1d.fits', './lede2eynq_x1d.fits', './lede2eyqq_x1d.fits', './lede2eysq_x1d.fits', './lede2eyuq_x1d.fits', './lede2fi3q_x1d.fits', './lede2fi5q_x1d.fits', './lede2fi7q_x1d.fits', './lede2fi9q_x1d.fits', './lede2gf8q_x1d.fits', './lede2gfaq_x1d.fits', './lede2gfcq_x1d.fits', './lede2gfxq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede30sjq_x1d.fits', './lede30slq_x1d.fits', './lede30snq_x1d.fits', './lede30spq_x1d.fits', './lede31deq_x1d.fits', './lede31dgq_x1d.fits', './lede31diq_x1d.fits', './lede31dkq_x1d.fits', './lede35xzq_x1d.fits', './lede35y1q_x1d.fits', './lede35y3q_x1d.fits', './lede39ctq_x1d.fits', './lede39cvq_x1d.fits', './lede39cxq_x1d.fits', './lede39czq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ckeq_x1d.fits', './lede3ckgq_x1d.fits', './lede3ckiq_x1d.fits', './lede3ckkq_x1d.fits', './lede3dt9q_x1d.fits', './lede3dtbq_x1d.fits', './lede3dtdq_x1d.fits', './lede3dtfq_x1d.fits', './lede3efkq_x1d.fits', './lede3efmq_x1d.fits', './lede3efoq_x1d.fits', './lede3efqq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede3we2q_x1d.fits', './lede3we6q_x1d.fits', './lede3we8q_x1d.fits', './lede3xjoq_x1d.fits', './lede3xk9q_x1d.fits', './lede3xkhq_x1d.fits', './lede3xkjq_x1d.fits', './lede3yqfq_x1d.fits', './lede3yqhq_x1d.fits', './lede3yqjq_x1d.fits', './lede3yqlq_x1d.fits', './lede40mkq_x1d.fits', './lede40mmq_x1d.fits', './lede40moq_x1d.fits', './lede40mqq_x1d.fits', './lede41uiq_x1d.fits', './lede41ukq_x1d.fits', './lede41umq_x1d.fits', './lede41uoq_x1d.fits', './lede42hnq_x1d.fits', './lede42hpq_x1d.fits', './lede42hrq_x1d.fits', './lede42htq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede82idq_x1d.fits', './lede82ifq_x1d.fits', './lede83irq_x1d.fits', './lede83itq_x1d.fits', './lede84quq_x1d.fits', './lede84qwq_x1d.fits', './lede84qyq_x1d.fits', './lede84r0q_x1d.fits', './lede85byq_x1d.fits', './lede85c0q_x1d.fits', './lede85c2q_x1d.fits', './lede85c4q_x1d.fits', './lede86j8q_x1d.fits', './lede86jaq_x1d.fits', './lede86jcq_x1d.fits', './lede86jeq_x1d.fits', './lede87joq_x1d.fits', './lede87jqq_x1d.fits', './lede88tlq_x1d.fits', './lede88tpq_x1d.fits', './lede88trq_x1d.fits', './lede89bkq_x1d.fits', './lede89bmq_x1d.fits', './lede89boq_x1d.fits', './lede89bqq_x1d.fits', './lede90dvq_x1d.fits', './lede90dxq_x1d.fits', './lede90dzq_x1d.fits', './lede90e1q_x1d.fits', './lede91pgq_x1d.fits', './lede91piq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits', './lede92kbq_x1d.fits', './lede92kdq_x1d.fits', './lede92kfq_x1d.fits', './lede92khq_x1d.fits', './lede93t1q_x1d.fits', './lede93t3q_x1d.fits', './lede93t5q_x1d.fits', './lede93t7q_x1d.fits', './lede95roq_x1d.fits', './lede95rwq_x1d.fits', './lede97ejq_x1d.fits', './lede97elq_x1d.fits']
Processing file ./lede02vjq_x1d.fits
Processing file ./lede02vlq_x1d.fits
Processing file ./lede02vnq_x1d.fits
Processing file ./lede02vpq_x1d.fits
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0cvxq_x1d.fits
Processing file ./lede0cvzq_x1d.fits
Processing file ./lede0cw1q_x1d.fits
Processing file ./lede0cw3q_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede16w8q_x1d.fits
Processing file ./lede16waq_x1d.fits
Processing file ./lede16wcq_x1d.fits
Processing file ./lede16weq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1cfaq_x1d.fits
Processing file ./lede1cfcq_x1d.fits
Processing file ./lede1cfeq_x1d.fits
Processing file ./lede1cfgq_x1d.fits
Processing file ./lede1ejtq_x1d.fits
Processing file ./lede1ejvq_x1d.fits
Processing file ./lede1ejxq_x1d.fits
Processing file ./lede1ejzq_x1d.fits
Processing file ./lede1qt1q_x1d.fits
Processing file ./lede1tukq_x1d.fits
Processing file ./lede1tumq_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2atiq_x1d.fits
Processing file ./lede2atkq_x1d.fits
Processing file ./lede2atmq_x1d.fits
Processing file ./lede2atoq_x1d.fits
Processing file ./lede2bbcq_x1d.fits
Processing file ./lede2bbhq_x1d.fits
Processing file ./lede2bbjq_x1d.fits
Processing file ./lede2bblq_x1d.fits
Processing file ./lede2cj0q_x1d.fits
Processing file ./lede2cj2q_x1d.fits
Processing file ./lede2cj4q_x1d.fits
Processing file ./lede2cj6q_x1d.fits
Processing file ./lede2dowq_x1d.fits
Processing file ./lede2doyq_x1d.fits
Processing file ./lede2dp0q_x1d.fits
Processing file ./lede2dp3q_x1d.fits
Processing file ./lede2eynq_x1d.fits
Processing file ./lede2eyqq_x1d.fits
Processing file ./lede2eysq_x1d.fits
Processing file ./lede2eyuq_x1d.fits
Processing file ./lede2fi3q_x1d.fits
Processing file ./lede2fi5q_x1d.fits
Processing file ./lede2fi7q_x1d.fits
Processing file ./lede2fi9q_x1d.fits
Processing file ./lede2gf8q_x1d.fits
Processing file ./lede2gfaq_x1d.fits
Processing file ./lede2gfcq_x1d.fits
Processing file ./lede2gfxq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede30sjq_x1d.fits
Processing file ./lede30slq_x1d.fits
Processing file ./lede30snq_x1d.fits
Processing file ./lede30spq_x1d.fits
Processing file ./lede31deq_x1d.fits
Processing file ./lede31dgq_x1d.fits
Processing file ./lede31diq_x1d.fits
Processing file ./lede31dkq_x1d.fits
Processing file ./lede35xzq_x1d.fits
Processing file ./lede35y1q_x1d.fits
Processing file ./lede35y3q_x1d.fits
Processing file ./lede39ctq_x1d.fits
Processing file ./lede39cvq_x1d.fits
Processing file ./lede39cxq_x1d.fits
Processing file ./lede39czq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ckeq_x1d.fits
Processing file ./lede3ckgq_x1d.fits
Processing file ./lede3ckiq_x1d.fits
Processing file ./lede3ckkq_x1d.fits
Processing file ./lede3dt9q_x1d.fits
Processing file ./lede3dtbq_x1d.fits
Processing file ./lede3dtdq_x1d.fits
Processing file ./lede3dtfq_x1d.fits
Processing file ./lede3efkq_x1d.fits
Processing file ./lede3efmq_x1d.fits
Processing file ./lede3efoq_x1d.fits
Processing file ./lede3efqq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede3we2q_x1d.fits
Processing file ./lede3we6q_x1d.fits
Processing file ./lede3we8q_x1d.fits
Processing file ./lede3xjoq_x1d.fits
Processing file ./lede3xk9q_x1d.fits
Processing file ./lede3xkhq_x1d.fits
Processing file ./lede3xkjq_x1d.fits
Processing file ./lede3yqfq_x1d.fits
Processing file ./lede3yqhq_x1d.fits
Processing file ./lede3yqjq_x1d.fits
Processing file ./lede3yqlq_x1d.fits
Processing file ./lede40mkq_x1d.fits
Processing file ./lede40mmq_x1d.fits
Processing file ./lede40moq_x1d.fits
Processing file ./lede40mqq_x1d.fits
Processing file ./lede41uiq_x1d.fits
Processing file ./lede41ukq_x1d.fits
Processing file ./lede41umq_x1d.fits
Processing file ./lede41uoq_x1d.fits
Processing file ./lede42hnq_x1d.fits
Processing file ./lede42hpq_x1d.fits
Processing file ./lede42hrq_x1d.fits
Processing file ./lede42htq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede82idq_x1d.fits
Processing file ./lede82ifq_x1d.fits
Processing file ./lede83irq_x1d.fits
Processing file ./lede83itq_x1d.fits
Processing file ./lede84quq_x1d.fits
Processing file ./lede84qwq_x1d.fits
Processing file ./lede84qyq_x1d.fits
Processing file ./lede84r0q_x1d.fits
Processing file ./lede85byq_x1d.fits
Processing file ./lede85c0q_x1d.fits
Processing file ./lede85c2q_x1d.fits
Processing file ./lede85c4q_x1d.fits
Processing file ./lede86j8q_x1d.fits
Processing file ./lede86jaq_x1d.fits
Processing file ./lede86jcq_x1d.fits
Processing file ./lede86jeq_x1d.fits
Processing file ./lede87joq_x1d.fits
Processing file ./lede87jqq_x1d.fits
Processing file ./lede88tlq_x1d.fits
Processing file ./lede88tpq_x1d.fits
Processing file ./lede88trq_x1d.fits
Processing file ./lede89bkq_x1d.fits
Processing file ./lede89bmq_x1d.fits
Processing file ./lede89boq_x1d.fits
Processing file ./lede89bqq_x1d.fits
Processing file ./lede90dvq_x1d.fits
Processing file ./lede90dxq_x1d.fits
Processing file ./lede90dzq_x1d.fits
Processing file ./lede90e1q_x1d.fits
Processing file ./lede91pgq_x1d.fits
Processing file ./lede91piq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Processing file ./lede92kbq_x1d.fits
Processing file ./lede92kdq_x1d.fits
Processing file ./lede92kfq_x1d.fits
Processing file ./lede92khq_x1d.fits
Processing file ./lede93t1q_x1d.fits
Processing file ./lede93t3q_x1d.fits
Processing file ./lede93t5q_x1d.fits
Processing file ./lede93t7q_x1d.fits
Processing file ./lede95roq_x1d.fits
Processing file ./lede95rwq_x1d.fits
Processing file ./lede97ejq_x1d.fits
Processing file ./lede97elq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede02vjq_x1d.fits has scaled median = -51.7129230066466
Removing file ./lede02vjq_x1d.fits from product
Segment #1 from file ./lede02vlq_x1d.fits has scaled median = -52.24976325722747
Removing file ./lede02vlq_x1d.fits from product
Segment #1 from file ./lede02vnq_x1d.fits has scaled median = -54.924698913353325
Removing file ./lede02vnq_x1d.fits from product
Segment #1 from file ./lede02vpq_x1d.fits has scaled median = -54.56758571913224
Removing file ./lede02vpq_x1d.fits from product
Segment #1 from file ./lede0cvxq_x1d.fits has scaled median = -52.56152612731343
Removing file ./lede0cvxq_x1d.fits from product
Segment #1 from file ./lede0cvzq_x1d.fits has scaled median = -54.7920473355492
Removing file ./lede0cvzq_x1d.fits from product
Segment #1 from file ./lede0cw1q_x1d.fits has scaled median = -51.664030158918386
Removing file ./lede0cw1q_x1d.fits from product
Segment #1 from file ./lede0cw3q_x1d.fits has scaled median = -51.72133804084158
Removing file ./lede0cw3q_x1d.fits from product
Segment #1 from file ./lede1cfaq_x1d.fits has scaled median = -78.80424392808258
Removing file ./lede1cfaq_x1d.fits from product
Segment #0 from file ./lede1cfcq_x1d.fits has scaled median = -50.786125410012836
Removing file ./lede1cfcq_x1d.fits from product
Segment #1 from file ./lede1cfcq_x1d.fits has scaled median = -83.12323705213194
File ./lede1cfcq_x1d.fits already selected for removal from product
Segment #1 from file ./lede1cfeq_x1d.fits has scaled median = -76.85290158607863
Removing file ./lede1cfeq_x1d.fits from product
Segment #1 from file ./lede1cfgq_x1d.fits has scaled median = -76.34062853820495
Removing file ./lede1cfgq_x1d.fits from product
Segment #1 from file ./lede1ejtq_x1d.fits has scaled median = -65.31938021984853
Removing file ./lede1ejtq_x1d.fits from product
Segment #1 from file ./lede1ejvq_x1d.fits has scaled median = -66.11635599071941
Removing file ./lede1ejvq_x1d.fits from product
Segment #1 from file ./lede1ejxq_x1d.fits has scaled median = -60.563987674707654
Removing file ./lede1ejxq_x1d.fits from product
Segment #1 from file ./lede1ejzq_x1d.fits has scaled median = -62.234221837239254
Removing file ./lede1ejzq_x1d.fits from product
Segment #1 from file ./lede1qt1q_x1d.fits has scaled median = -85.9141702204439
Removing file ./lede1qt1q_x1d.fits from product
Segment #1 from file ./lede2atiq_x1d.fits has scaled median = -55.22952627727856
Removing file ./lede2atiq_x1d.fits from product
Segment #1 from file ./lede2atkq_x1d.fits has scaled median = -57.51817053311252
Removing file ./lede2atkq_x1d.fits from product
Segment #1 from file ./lede2atmq_x1d.fits has scaled median = -55.235109214568304
Removing file ./lede2atmq_x1d.fits from product
Segment #1 from file ./lede2atoq_x1d.fits has scaled median = -56.31363301568373
Removing file ./lede2atoq_x1d.fits from product
Segment #1 from file ./lede2dowq_x1d.fits has scaled median = -62.231003612637586
Removing file ./lede2dowq_x1d.fits from product
Segment #1 from file ./lede2doyq_x1d.fits has scaled median = -65.09935536128057
Removing file ./lede2doyq_x1d.fits from product
Segment #1 from file ./lede2dp0q_x1d.fits has scaled median = -60.466751620627846
Removing file ./lede2dp0q_x1d.fits from product
Segment #1 from file ./lede2dp3q_x1d.fits has scaled median = -61.178443689565995
Removing file ./lede2dp3q_x1d.fits from product
Segment #1 from file ./lede2eynq_x1d.fits has scaled median = -77.93664509725265
Removing file ./lede2eynq_x1d.fits from product
Segment #1 from file ./lede2eyqq_x1d.fits has scaled median = -83.84155221116423
Removing file ./lede2eyqq_x1d.fits from product
Segment #1 from file ./lede2eysq_x1d.fits has scaled median = -75.02314665698103
Removing file ./lede2eysq_x1d.fits from product
Segment #1 from file ./lede2eyuq_x1d.fits has scaled median = -77.3667190657829
Removing file ./lede2eyuq_x1d.fits from product
Segment #1 from file ./lede2fi3q_x1d.fits has scaled median = -63.34782703280532
Removing file ./lede2fi3q_x1d.fits from product
Segment #1 from file ./lede2fi5q_x1d.fits has scaled median = -63.917693747486815
Removing file ./lede2fi5q_x1d.fits from product
Segment #1 from file ./lede2fi7q_x1d.fits has scaled median = -61.45153770614196
Removing file ./lede2fi7q_x1d.fits from product
Segment #1 from file ./lede2fi9q_x1d.fits has scaled median = -60.84248331445913
Removing file ./lede2fi9q_x1d.fits from product
Segment #1 from file ./lede31deq_x1d.fits has scaled median = -59.5492472068127
Removing file ./lede31deq_x1d.fits from product
Segment #1 from file ./lede31dgq_x1d.fits has scaled median = -60.56522074577478
Removing file ./lede31dgq_x1d.fits from product
Segment #1 from file ./lede31diq_x1d.fits has scaled median = -59.31756246263695
Removing file ./lede31diq_x1d.fits from product
Segment #1 from file ./lede31dkq_x1d.fits has scaled median = -60.87521502205544
Removing file ./lede31dkq_x1d.fits from product
Segment #1 from file ./lede35xzq_x1d.fits has scaled median = -85.13271931640993
Removing file ./lede35xzq_x1d.fits from product
Segment #0 from file ./lede35y1q_x1d.fits has scaled median = -51.02449577399481
Removing file ./lede35y1q_x1d.fits from product
Segment #1 from file ./lede35y1q_x1d.fits has scaled median = -87.22741216802045
File ./lede35y1q_x1d.fits already selected for removal from product
Segment #1 from file ./lede35y3q_x1d.fits has scaled median = -83.86096009196581
Removing file ./lede35y3q_x1d.fits from product
Segment #1 from file ./lede39ctq_x1d.fits has scaled median = -80.28964980405136
Removing file ./lede39ctq_x1d.fits from product
Segment #1 from file ./lede39cvq_x1d.fits has scaled median = -83.6344501919971
Removing file ./lede39cvq_x1d.fits from product
Segment #1 from file ./lede39cxq_x1d.fits has scaled median = -82.44847469154351
Removing file ./lede39cxq_x1d.fits from product
Segment #1 from file ./lede39czq_x1d.fits has scaled median = -80.30440173832696
Removing file ./lede39czq_x1d.fits from product
Segment #1 from file ./lede3dt9q_x1d.fits has scaled median = -63.15902948981962
Removing file ./lede3dt9q_x1d.fits from product
Segment #1 from file ./lede3dtbq_x1d.fits has scaled median = -62.2816221845702
Removing file ./lede3dtbq_x1d.fits from product
Segment #1 from file ./lede3dtdq_x1d.fits has scaled median = -55.934408836250434
Removing file ./lede3dtdq_x1d.fits from product
Segment #1 from file ./lede3dtfq_x1d.fits has scaled median = -56.39986926585024
Removing file ./lede3dtfq_x1d.fits from product
Segment #1 from file ./lede3efkq_x1d.fits has scaled median = -83.01540068829621
Removing file ./lede3efkq_x1d.fits from product
Segment #1 from file ./lede3efmq_x1d.fits has scaled median = -84.70206660935372
Removing file ./lede3efmq_x1d.fits from product
Segment #1 from file ./lede3efoq_x1d.fits has scaled median = -78.27737895350074
Removing file ./lede3efoq_x1d.fits from product
Segment #1 from file ./lede3efqq_x1d.fits has scaled median = -80.23666251097154
Removing file ./lede3efqq_x1d.fits from product
Segment #1 from file ./lede3we2q_x1d.fits has scaled median = -86.29555588158178
Removing file ./lede3we2q_x1d.fits from product
Segment #1 from file ./lede3we6q_x1d.fits has scaled median = -77.1891782473001
Removing file ./lede3we6q_x1d.fits from product
Segment #1 from file ./lede3we8q_x1d.fits has scaled median = -81.36071631343846
Removing file ./lede3we8q_x1d.fits from product
Segment #1 from file ./lede3xjoq_x1d.fits has scaled median = -83.21510549148917
Removing file ./lede3xjoq_x1d.fits from product
Segment #1 from file ./lede3xk9q_x1d.fits has scaled median = -85.67305441768107
Removing file ./lede3xk9q_x1d.fits from product
Segment #1 from file ./lede3xkhq_x1d.fits has scaled median = -78.27271143184733
Removing file ./lede3xkhq_x1d.fits from product
Segment #1 from file ./lede3xkjq_x1d.fits has scaled median = -81.8496327218398
Removing file ./lede3xkjq_x1d.fits from product
Segment #1 from file ./lede3yqfq_x1d.fits has scaled median = -79.4197979610768
Removing file ./lede3yqfq_x1d.fits from product
Segment #1 from file ./lede3yqhq_x1d.fits has scaled median = -80.78456932325638
Removing file ./lede3yqhq_x1d.fits from product
Segment #1 from file ./lede3yqjq_x1d.fits has scaled median = -74.28212888157641
Removing file ./lede3yqjq_x1d.fits from product
Segment #1 from file ./lede3yqlq_x1d.fits has scaled median = -73.7679967822492
Removing file ./lede3yqlq_x1d.fits from product
Segment #1 from file ./lede40mkq_x1d.fits has scaled median = -51.457343350976515
Removing file ./lede40mkq_x1d.fits from product
Segment #1 from file ./lede40mmq_x1d.fits has scaled median = -53.32544309528594
Removing file ./lede40mmq_x1d.fits from product
Segment #1 from file ./lede40moq_x1d.fits has scaled median = -54.59249365699444
Removing file ./lede40moq_x1d.fits from product
Segment #1 from file ./lede40mqq_x1d.fits has scaled median = -54.751854808788835
Removing file ./lede40mqq_x1d.fits from product
Segment #1 from file ./lede85byq_x1d.fits has scaled median = -64.28920593265934
Removing file ./lede85byq_x1d.fits from product
Segment #1 from file ./lede85c0q_x1d.fits has scaled median = -63.68583727217325
Removing file ./lede85c0q_x1d.fits from product
Segment #1 from file ./lede85c2q_x1d.fits has scaled median = -57.39594837560128
Removing file ./lede85c2q_x1d.fits from product
Segment #1 from file ./lede85c4q_x1d.fits has scaled median = -58.854131828999705
Removing file ./lede85c4q_x1d.fits from product
Segment #1 from file ./lede86j8q_x1d.fits has scaled median = -78.86728854348429
Removing file ./lede86j8q_x1d.fits from product
Segment #1 from file ./lede86jaq_x1d.fits has scaled median = -81.99309135842229
Removing file ./lede86jaq_x1d.fits from product
Segment #1 from file ./lede86jcq_x1d.fits has scaled median = -71.47242980456194
Removing file ./lede86jcq_x1d.fits from product
Segment #1 from file ./lede86jeq_x1d.fits has scaled median = -73.4987200537847
Removing file ./lede86jeq_x1d.fits from product
Segment #1 from file ./lede87joq_x1d.fits has scaled median = -81.15267993442691
Removing file ./lede87joq_x1d.fits from product
Segment #1 from file ./lede87jqq_x1d.fits has scaled median = -82.44670161585026
Removing file ./lede87jqq_x1d.fits from product
Segment #1 from file ./lede88tlq_x1d.fits has scaled median = -86.1290783609449
Removing file ./lede88tlq_x1d.fits from product
Segment #1 from file ./lede88tpq_x1d.fits has scaled median = -80.78438998041989
Removing file ./lede88tpq_x1d.fits from product
Segment #1 from file ./lede88trq_x1d.fits has scaled median = -84.3430621073117
Removing file ./lede88trq_x1d.fits from product
Segment #1 from file ./lede89bkq_x1d.fits has scaled median = -74.54910674857116
Removing file ./lede89bkq_x1d.fits from product
Segment #1 from file ./lede89bmq_x1d.fits has scaled median = -76.7272514927567
Removing file ./lede89bmq_x1d.fits from product
Segment #1 from file ./lede89boq_x1d.fits has scaled median = -68.2319444941118
Removing file ./lede89boq_x1d.fits from product
Segment #1 from file ./lede89bqq_x1d.fits has scaled median = -70.32733177639466
Removing file ./lede89bqq_x1d.fits from product
Segment #1 from file ./lede95roq_x1d.fits has scaled median = -100.8906229994844
Removing file ./lede95roq_x1d.fits from product
Segment #1 from file ./lede95rwq_x1d.fits has scaled median = -84.27855770041103
Removing file ./lede95rwq_x1d.fits from product
Segment #1 from file ./lede97ejq_x1d.fits has scaled median = -77.94899648937702
Removing file ./lede97ejq_x1d.fits from product
Segment #1 from file ./lede97elq_x1d.fits has scaled median = -68.44246851049668
Removing file ./lede97elq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede16w8q_x1d.fits', './lede16waq_x1d.fits', './lede16wcq_x1d.fits', './lede16weq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1tukq_x1d.fits', './lede1tumq_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits', './lede2bbcq_x1d.fits', './lede2bbhq_x1d.fits', './lede2bbjq_x1d.fits', './lede2bblq_x1d.fits', './lede2cj0q_x1d.fits', './lede2cj2q_x1d.fits', './lede2cj4q_x1d.fits', './lede2cj6q_x1d.fits', './lede2gf8q_x1d.fits', './lede2gfaq_x1d.fits', './lede2gfcq_x1d.fits', './lede2gfxq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede30sjq_x1d.fits', './lede30slq_x1d.fits', './lede30snq_x1d.fits', './lede30spq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ckeq_x1d.fits', './lede3ckgq_x1d.fits', './lede3ckiq_x1d.fits', './lede3ckkq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede41uiq_x1d.fits', './lede41ukq_x1d.fits', './lede41umq_x1d.fits', './lede41uoq_x1d.fits', './lede42hnq_x1d.fits', './lede42hpq_x1d.fits', './lede42hrq_x1d.fits', './lede42htq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede82idq_x1d.fits', './lede82ifq_x1d.fits', './lede83irq_x1d.fits', './lede83itq_x1d.fits', './lede84quq_x1d.fits', './lede84qwq_x1d.fits', './lede84qyq_x1d.fits', './lede84r0q_x1d.fits', './lede90dvq_x1d.fits', './lede90dxq_x1d.fits', './lede90dzq_x1d.fits', './lede90e1q_x1d.fits', './lede91pgq_x1d.fits', './lede91piq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits', './lede92kbq_x1d.fits', './lede92kdq_x1d.fits', './lede92kfq_x1d.fits', './lede92khq_x1d.fits', './lede93t1q_x1d.fits', './lede93t3q_x1d.fits', './lede93t5q_x1d.fits', './lede93t7q_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede16w8q_x1d.fits
Processing file ./lede16waq_x1d.fits
Processing file ./lede16wcq_x1d.fits
Processing file ./lede16weq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1tukq_x1d.fits
Processing file ./lede1tumq_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2bbcq_x1d.fits
Processing file ./lede2bbhq_x1d.fits
Processing file ./lede2bbjq_x1d.fits
Processing file ./lede2bblq_x1d.fits
Processing file ./lede2cj0q_x1d.fits
Processing file ./lede2cj2q_x1d.fits
Processing file ./lede2cj4q_x1d.fits
Processing file ./lede2cj6q_x1d.fits
Processing file ./lede2gf8q_x1d.fits
Processing file ./lede2gfaq_x1d.fits
Processing file ./lede2gfcq_x1d.fits
Processing file ./lede2gfxq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede30sjq_x1d.fits
Processing file ./lede30slq_x1d.fits
Processing file ./lede30snq_x1d.fits
Processing file ./lede30spq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ckeq_x1d.fits
Processing file ./lede3ckgq_x1d.fits
Processing file ./lede3ckiq_x1d.fits
Processing file ./lede3ckkq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede41uiq_x1d.fits
Processing file ./lede41ukq_x1d.fits
Processing file ./lede41umq_x1d.fits
Processing file ./lede41uoq_x1d.fits
Processing file ./lede42hnq_x1d.fits
Processing file ./lede42hpq_x1d.fits
Processing file ./lede42hrq_x1d.fits
Processing file ./lede42htq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede82idq_x1d.fits
Processing file ./lede82ifq_x1d.fits
Processing file ./lede83irq_x1d.fits
Processing file ./lede83itq_x1d.fits
Processing file ./lede84quq_x1d.fits
Processing file ./lede84qwq_x1d.fits
Processing file ./lede84qyq_x1d.fits
Processing file ./lede84r0q_x1d.fits
Processing file ./lede90dvq_x1d.fits
Processing file ./lede90dxq_x1d.fits
Processing file ./lede90dzq_x1d.fits
Processing file ./lede90e1q_x1d.fits
Processing file ./lede91pgq_x1d.fits
Processing file ./lede91piq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Processing file ./lede92kbq_x1d.fits
Processing file ./lede92kdq_x1d.fits
Processing file ./lede92kfq_x1d.fits
Processing file ./lede92khq_x1d.fits
Processing file ./lede93t1q_x1d.fits
Processing file ./lede93t3q_x1d.fits
Processing file ./lede93t5q_x1d.fits
Processing file ./lede93t7q_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede16w8q_x1d.fits has scaled median = -54.04932196288165
Removing file ./lede16w8q_x1d.fits from product
Segment #1 from file ./lede16waq_x1d.fits has scaled median = -51.76867971442613
Removing file ./lede16waq_x1d.fits from product
Segment #1 from file ./lede16wcq_x1d.fits has scaled median = -51.707547513748466
Removing file ./lede16wcq_x1d.fits from product
Segment #1 from file ./lede16weq_x1d.fits has scaled median = -53.93093811521289
Removing file ./lede16weq_x1d.fits from product
Segment #1 from file ./lede2cj0q_x1d.fits has scaled median = -58.951091481363775
Removing file ./lede2cj0q_x1d.fits from product
Segment #1 from file ./lede2cj2q_x1d.fits has scaled median = -60.62347197651814
Removing file ./lede2cj2q_x1d.fits from product
Segment #1 from file ./lede2cj4q_x1d.fits has scaled median = -57.563266804417694
Removing file ./lede2cj4q_x1d.fits from product
Segment #1 from file ./lede2cj6q_x1d.fits has scaled median = -58.640327011290516
Removing file ./lede2cj6q_x1d.fits from product
Segment #1 from file ./lede2gf8q_x1d.fits has scaled median = -52.601437215467925
Removing file ./lede2gf8q_x1d.fits from product
Segment #1 from file ./lede2gfaq_x1d.fits has scaled median = -51.70762314752834
Removing file ./lede2gfaq_x1d.fits from product
Segment #1 from file ./lede2gfxq_x1d.fits has scaled median = -50.56435556305065
Removing file ./lede2gfxq_x1d.fits from product
Segment #1 from file ./lede41uiq_x1d.fits has scaled median = -55.23555080973549
Removing file ./lede41uiq_x1d.fits from product
Segment #1 from file ./lede41ukq_x1d.fits has scaled median = -58.97929696443953
Removing file ./lede41ukq_x1d.fits from product
Segment #1 from file ./lede41umq_x1d.fits has scaled median = -57.69846998300599
Removing file ./lede41umq_x1d.fits from product
Segment #1 from file ./lede41uoq_x1d.fits has scaled median = -58.21632682274089
Removing file ./lede41uoq_x1d.fits from product
Segment #1 from file ./lede82idq_x1d.fits has scaled median = -61.1027249237892
Removing file ./lede82idq_x1d.fits from product
Segment #1 from file ./lede82ifq_x1d.fits has scaled median = -52.79929088281092
Removing file ./lede82ifq_x1d.fits from product
Segment #1 from file ./lede83irq_x1d.fits has scaled median = -66.59345354002173
Removing file ./lede83irq_x1d.fits from product
Segment #1 from file ./lede83itq_x1d.fits has scaled median = -56.33744178562623
Removing file ./lede83itq_x1d.fits from product
Segment #1 from file ./lede84quq_x1d.fits has scaled median = -61.16491021878023
Removing file ./lede84quq_x1d.fits from product
Segment #1 from file ./lede84qwq_x1d.fits has scaled median = -65.20614312688055
Removing file ./lede84qwq_x1d.fits from product
Segment #1 from file ./lede84qyq_x1d.fits has scaled median = -54.818985354035206
Removing file ./lede84qyq_x1d.fits from product
Segment #1 from file ./lede84r0q_x1d.fits has scaled median = -58.8526005909144
Removing file ./lede84r0q_x1d.fits from product
Segment #1 from file ./lede90dvq_x1d.fits has scaled median = -61.90840696514999
Removing file ./lede90dvq_x1d.fits from product
Segment #1 from file ./lede90dxq_x1d.fits has scaled median = -65.8487127228666
Removing file ./lede90dxq_x1d.fits from product
Segment #1 from file ./lede90dzq_x1d.fits has scaled median = -58.22396607986501
Removing file ./lede90dzq_x1d.fits from product
Segment #1 from file ./lede90e1q_x1d.fits has scaled median = -60.13674430146376
Removing file ./lede90e1q_x1d.fits from product
Segment #1 from file ./lede92kbq_x1d.fits has scaled median = -51.66533838679305
Removing file ./lede92kbq_x1d.fits from product
Segment #1 from file ./lede92kdq_x1d.fits has scaled median = -50.75121654693759
Removing file ./lede92kdq_x1d.fits from product
Segment #1 from file ./lede93t1q_x1d.fits has scaled median = -59.299348199379224
Removing file ./lede93t1q_x1d.fits from product
Segment #1 from file ./lede93t3q_x1d.fits has scaled median = -61.35115158457671
Removing file ./lede93t3q_x1d.fits from product
Segment #1 from file ./lede93t5q_x1d.fits has scaled median = -53.2545981748604
Removing file ./lede93t5q_x1d.fits from product
Segment #1 from file ./lede93t7q_x1d.fits has scaled median = -53.13347001909255
Removing file ./lede93t7q_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1tukq_x1d.fits', './lede1tumq_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits', './lede2bbcq_x1d.fits', './lede2bbhq_x1d.fits', './lede2bbjq_x1d.fits', './lede2bblq_x1d.fits', './lede2gfcq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede30sjq_x1d.fits', './lede30slq_x1d.fits', './lede30snq_x1d.fits', './lede30spq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ckeq_x1d.fits', './lede3ckgq_x1d.fits', './lede3ckiq_x1d.fits', './lede3ckkq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede42hnq_x1d.fits', './lede42hpq_x1d.fits', './lede42hrq_x1d.fits', './lede42htq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pgq_x1d.fits', './lede91piq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits', './lede92kfq_x1d.fits', './lede92khq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1tukq_x1d.fits
Processing file ./lede1tumq_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2bbcq_x1d.fits
Processing file ./lede2bbhq_x1d.fits
Processing file ./lede2bbjq_x1d.fits
Processing file ./lede2bblq_x1d.fits
Processing file ./lede2gfcq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede30sjq_x1d.fits
Processing file ./lede30slq_x1d.fits
Processing file ./lede30snq_x1d.fits
Processing file ./lede30spq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ckeq_x1d.fits
Processing file ./lede3ckgq_x1d.fits
Processing file ./lede3ckiq_x1d.fits
Processing file ./lede3ckkq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede42hnq_x1d.fits
Processing file ./lede42hpq_x1d.fits
Processing file ./lede42hrq_x1d.fits
Processing file ./lede42htq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pgq_x1d.fits
Processing file ./lede91piq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Processing file ./lede92kfq_x1d.fits
Processing file ./lede92khq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede1tukq_x1d.fits has scaled median = -52.991030273040614
Removing file ./lede1tukq_x1d.fits from product
Segment #1 from file ./lede1tumq_x1d.fits has scaled median = -52.20226548869244
Removing file ./lede1tumq_x1d.fits from product
Segment #1 from file ./lede2bbcq_x1d.fits has scaled median = -54.48992704716012
Removing file ./lede2bbcq_x1d.fits from product
Segment #1 from file ./lede2bbhq_x1d.fits has scaled median = -56.25165486227202
Removing file ./lede2bbhq_x1d.fits from product
Segment #1 from file ./lede2bbjq_x1d.fits has scaled median = -50.601473313968285
Removing file ./lede2bbjq_x1d.fits from product
Segment #1 from file ./lede2bblq_x1d.fits has scaled median = -50.459942635967145
Removing file ./lede2bblq_x1d.fits from product
Segment #1 from file ./lede2gfcq_x1d.fits has scaled median = -54.41718027835529
Removing file ./lede2gfcq_x1d.fits from product
Segment #1 from file ./lede30sjq_x1d.fits has scaled median = -51.78419720162809
Removing file ./lede30sjq_x1d.fits from product
Segment #1 from file ./lede30slq_x1d.fits has scaled median = -52.182744482798576
Removing file ./lede30slq_x1d.fits from product
Segment #1 from file ./lede30snq_x1d.fits has scaled median = -50.42046405114234
Removing file ./lede30snq_x1d.fits from product
Segment #1 from file ./lede30spq_x1d.fits has scaled median = -50.662027290719095
Removing file ./lede30spq_x1d.fits from product
Segment #1 from file ./lede3ckeq_x1d.fits has scaled median = -51.883028708415395
Removing file ./lede3ckeq_x1d.fits from product
Segment #1 from file ./lede3ckgq_x1d.fits has scaled median = -52.9400664433809
Removing file ./lede3ckgq_x1d.fits from product
Segment #1 from file ./lede3ckiq_x1d.fits has scaled median = -50.076380727126015
Removing file ./lede3ckiq_x1d.fits from product
Segment #1 from file ./lede42hnq_x1d.fits has scaled median = -55.54127626286261
Removing file ./lede42hnq_x1d.fits from product
Segment #1 from file ./lede42hpq_x1d.fits has scaled median = -56.09546555069568
Removing file ./lede42hpq_x1d.fits from product
Segment #1 from file ./lede42hrq_x1d.fits has scaled median = -53.52967152231658
Removing file ./lede42hrq_x1d.fits from product
Segment #1 from file ./lede42htq_x1d.fits has scaled median = -53.57412573744062
Removing file ./lede42htq_x1d.fits from product
Segment #1 from file ./lede92kfq_x1d.fits has scaled median = -51.03494023253269
Removing file ./lede92kfq_x1d.fits from product
Segment #1 from file ./lede92khq_x1d.fits has scaled median = -52.67441131986509
Removing file ./lede92khq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ckkq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pgq_x1d.fits', './lede91piq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ckkq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pgq_x1d.fits
Processing file ./lede91piq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede3ckkq_x1d.fits has scaled median = -50.47492415482874
Removing file ./lede3ckkq_x1d.fits from product
Segment #1 from file ./lede91pgq_x1d.fits has scaled median = -50.55158049208764
Removing file ./lede91pgq_x1d.fits from product
Segment #1 from file ./lede91piq_x1d.fits has scaled median = -51.0025759174734
Removing file ./lede91piq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29iaq_x1d.fits', './lede29icq_x1d.fits', './lede29ieq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29iaq_x1d.fits
Processing file ./lede29icq_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede29iaq_x1d.fits has scaled median = -50.353446504492524
Removing file ./lede29iaq_x1d.fits from product
Segment #1 from file ./lede29icq_x1d.fits has scaled median = -50.076073571897055
Removing file ./lede29icq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede15nuq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29ieq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede15nuq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede15nuq_x1d.fits has scaled median = -50.15939705147245
Removing file ./lede15nuq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede29ieq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede29ieq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede29ieq_x1d.fits has scaled median = -50.10173244146663
Removing file ./lede29ieq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede29i8q_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits', './lede91pmq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede29i8q_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Processing file ./lede91pmq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede29i8q_x1d.fits has scaled median = -50.13625412357092
Removing file ./lede29i8q_x1d.fits from product
Segment #1 from file ./lede91pmq_x1d.fits has scaled median = -50.01240175876079
Removing file ./lede91pmq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede15nsq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede15nsq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede15nsq_x1d.fits has scaled median = -50.13073231414511
Removing file ./lede15nsq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04miq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04miq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede04miq_x1d.fits has scaled median = -50.10165381326314
Removing file ./lede04miq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15noq_x1d.fits', './lede15nqq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15noq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #1 from file ./lede15noq_x1d.fits has scaled median = -50.18880464155433
Removing file ./lede15noq_x1d.fits from product
Importing files ['./lede03g8q_x1d.fits', './lede03gaq_x1d.fits', './lede03gcq_x1d.fits', './lede03geq_x1d.fits', './lede04mkq_x1d.fits', './lede04mmq_x1d.fits', './lede04moq_x1d.fits', './lede05qlq_x1d.fits', './lede05r6q_x1d.fits', './lede05r8q_x1d.fits', './lede05raq_x1d.fits', './lede06z7q_x1d.fits', './lede06z9q_x1d.fits', './lede06zbq_x1d.fits', './lede06zdq_x1d.fits', './lede07k6q_x1d.fits', './lede07k8q_x1d.fits', './lede07kaq_x1d.fits', './lede07kcq_x1d.fits', './lede08feq_x1d.fits', './lede08fgq_x1d.fits', './lede08fiq_x1d.fits', './lede08fkq_x1d.fits', './lede09a9q_x1d.fits', './lede09abq_x1d.fits', './lede09adq_x1d.fits', './lede09afq_x1d.fits', './lede0dfeq_x1d.fits', './lede0dfgq_x1d.fits', './lede0dfiq_x1d.fits', './lede0dfoq_x1d.fits', './lede10j6q_x1d.fits', './lede10j8q_x1d.fits', './lede10jaq_x1d.fits', './lede10jcq_x1d.fits', './lede11adq_x1d.fits', './lede11afq_x1d.fits', './lede11ahq_x1d.fits', './lede11ajq_x1d.fits', './lede12m7q_x1d.fits', './lede12m9q_x1d.fits', './lede12mbq_x1d.fits', './lede12mdq_x1d.fits', './lede14k7q_x1d.fits', './lede14k9q_x1d.fits', './lede14kbq_x1d.fits', './lede14kdq_x1d.fits', './lede15nqq_x1d.fits', './lede17hyq_x1d.fits', './lede17i0q_x1d.fits', './lede17i2q_x1d.fits', './lede17i4q_x1d.fits', './lede18sgq_x1d.fits', './lede18siq_x1d.fits', './lede18skq_x1d.fits', './lede18smq_x1d.fits', './lede19n1q_x1d.fits', './lede19n3q_x1d.fits', './lede19n5q_x1d.fits', './lede19n7q_x1d.fits', './lede1vd2q_x1d.fits', './lede1vd4q_x1d.fits', './lede1wt3q_x1d.fits', './lede1wt5q_x1d.fits', './lede1wt7q_x1d.fits', './lede1wt9q_x1d.fits', './lede20atq_x1d.fits', './lede20avq_x1d.fits', './lede20axq_x1d.fits', './lede20azq_x1d.fits', './lede21kmq_x1d.fits', './lede21koq_x1d.fits', './lede21kqq_x1d.fits', './lede21ksq_x1d.fits', './lede22lwq_x1d.fits', './lede22lyq_x1d.fits', './lede22m0q_x1d.fits', './lede22m2q_x1d.fits', './lede23uxq_x1d.fits', './lede23uzq_x1d.fits', './lede23v1q_x1d.fits', './lede23v3q_x1d.fits', './lede24k0q_x1d.fits', './lede24k2q_x1d.fits', './lede24k4q_x1d.fits', './lede24k6q_x1d.fits', './lede25s7q_x1d.fits', './lede25s9q_x1d.fits', './lede25sbq_x1d.fits', './lede25sdq_x1d.fits', './lede26kaq_x1d.fits', './lede26kcq_x1d.fits', './lede26keq_x1d.fits', './lede26kgq_x1d.fits', './lede27qrq_x1d.fits', './lede27qtq_x1d.fits', './lede27qvq_x1d.fits', './lede27qxq_x1d.fits', './lede28adq_x1d.fits', './lede28afq_x1d.fits', './lede28ahq_x1d.fits', './lede28ajq_x1d.fits', './lede2hr5q_x1d.fits', './lede2hr7q_x1d.fits', './lede2hr9q_x1d.fits', './lede2hrbq_x1d.fits', './lede2ibbq_x1d.fits', './lede2ibdq_x1d.fits', './lede2ibfq_x1d.fits', './lede2ibhq_x1d.fits', './lede2jjwq_x1d.fits', './lede2jjyq_x1d.fits', './lede2jk0q_x1d.fits', './lede2jk2q_x1d.fits', './lede2kkmq_x1d.fits', './lede2kkoq_x1d.fits', './lede2kkqq_x1d.fits', './lede2kktq_x1d.fits', './lede2ls8q_x1d.fits', './lede2lsaq_x1d.fits', './lede2lscq_x1d.fits', './lede2lseq_x1d.fits', './lede2mb2q_x1d.fits', './lede2mb4q_x1d.fits', './lede2mb6q_x1d.fits', './lede2mb8q_x1d.fits', './lede2ua4q_x1d.fits', './lede2ua6q_x1d.fits', './lede2ua8q_x1d.fits', './lede2uaaq_x1d.fits', './lede2ydbq_x1d.fits', './lede2yddq_x1d.fits', './lede2ydfq_x1d.fits', './lede2ydhq_x1d.fits', './lede2zoeq_x1d.fits', './lede2zogq_x1d.fits', './lede2zoiq_x1d.fits', './lede2zokq_x1d.fits', './lede3axkq_x1d.fits', './lede3axmq_x1d.fits', './lede3axoq_x1d.fits', './lede3axqq_x1d.fits', './lede3bk8q_x1d.fits', './lede3bkaq_x1d.fits', './lede3bkcq_x1d.fits', './lede3bkeq_x1d.fits', './lede3ncdq_x1d.fits', './lede3ncgq_x1d.fits', './lede3ncjq_x1d.fits', './lede3nclq_x1d.fits', './lede43pgq_x1d.fits', './lede43piq_x1d.fits', './lede43pkq_x1d.fits', './lede43pmq_x1d.fits', './lede44gzq_x1d.fits', './lede44h1q_x1d.fits', './lede44h3q_x1d.fits', './lede44h5q_x1d.fits', './lede45qbq_x1d.fits', './lede45qdq_x1d.fits', './lede45qfq_x1d.fits', './lede45qhq_x1d.fits', './lede46yvq_x1d.fits', './lede46yxq_x1d.fits', './lede46yzq_x1d.fits', './lede46z1q_x1d.fits', './lede47bcq_x1d.fits', './lede47beq_x1d.fits', './lede47bgq_x1d.fits', './lede47biq_x1d.fits', './lede48taq_x1d.fits', './lede48tcq_x1d.fits', './lede48teq_x1d.fits', './lede48tgq_x1d.fits', './lede49hcq_x1d.fits', './lede49heq_x1d.fits', './lede49hgq_x1d.fits', './lede49hiq_x1d.fits', './lede50x0q_x1d.fits', './lede50x2q_x1d.fits', './lede50x4q_x1d.fits', './lede50x6q_x1d.fits', './lede51h9q_x1d.fits', './lede51hbq_x1d.fits', './lede51hdq_x1d.fits', './lede51hfq_x1d.fits', './lede53mvq_x1d.fits', './lede53mxq_x1d.fits', './lede57azq_x1d.fits', './lede57b2q_x1d.fits', './lede59nxq_x1d.fits', './lede59nzq_x1d.fits', './lede59o1q_x1d.fits', './lede59o3q_x1d.fits', './lede60wkq_x1d.fits', './lede60x5q_x1d.fits', './lede60x7q_x1d.fits', './lede60xbq_x1d.fits', './lede61e1q_x1d.fits', './lede61e3q_x1d.fits', './lede61e5q_x1d.fits', './lede61e7q_x1d.fits', './lede62miq_x1d.fits', './lede62mkq_x1d.fits', './lede62mmq_x1d.fits', './lede62moq_x1d.fits', './lede63x8q_x1d.fits', './lede63xaq_x1d.fits', './lede63xcq_x1d.fits', './lede63xmq_x1d.fits', './lede64iuq_x1d.fits', './lede64iwq_x1d.fits', './lede64iyq_x1d.fits', './lede64j0q_x1d.fits', './lede65e5q_x1d.fits', './lede65e7q_x1d.fits', './lede65e9q_x1d.fits', './lede65ebq_x1d.fits', './lede66ljq_x1d.fits', './lede66llq_x1d.fits', './lede66lnq_x1d.fits', './lede66lpq_x1d.fits', './lede67x9q_x1d.fits', './lede67xbq_x1d.fits', './lede67xdq_x1d.fits', './lede67xfq_x1d.fits', './lede68g3q_x1d.fits', './lede68g5q_x1d.fits', './lede68g7q_x1d.fits', './lede68g9q_x1d.fits', './lede69hhq_x1d.fits', './lede69hjq_x1d.fits', './lede69hmq_x1d.fits', './lede69hoq_x1d.fits', './lede70tdq_x1d.fits', './lede70tfq_x1d.fits', './lede70thq_x1d.fits', './lede70tjq_x1d.fits', './lede71bnq_x1d.fits', './lede71bpq_x1d.fits', './lede71brq_x1d.fits', './lede71btq_x1d.fits', './lede72cjq_x1d.fits', './lede72clq_x1d.fits', './lede72cnq_x1d.fits', './lede72cpq_x1d.fits', './lede73ogq_x1d.fits', './lede73ojq_x1d.fits', './lede73olq_x1d.fits', './lede73onq_x1d.fits', './lede74ukq_x1d.fits', './lede74umq_x1d.fits', './lede74uoq_x1d.fits', './lede74v9q_x1d.fits', './lede75chq_x1d.fits', './lede75cjq_x1d.fits', './lede75clq_x1d.fits', './lede75cnq_x1d.fits', './lede78vjq_x1d.fits', './lede78vlq_x1d.fits', './lede81neq_x1d.fits', './lede81ngq_x1d.fits', './lede91pkq_x1d.fits']
Processing file ./lede03g8q_x1d.fits
Processing file ./lede03gaq_x1d.fits
Processing file ./lede03gcq_x1d.fits
Processing file ./lede03geq_x1d.fits
Processing file ./lede04mkq_x1d.fits
Processing file ./lede04mmq_x1d.fits
Processing file ./lede04moq_x1d.fits
Processing file ./lede05qlq_x1d.fits
Processing file ./lede05r6q_x1d.fits
Processing file ./lede05r8q_x1d.fits
Processing file ./lede05raq_x1d.fits
Processing file ./lede06z7q_x1d.fits
Processing file ./lede06z9q_x1d.fits
Processing file ./lede06zbq_x1d.fits
Processing file ./lede06zdq_x1d.fits
Processing file ./lede07k6q_x1d.fits
Processing file ./lede07k8q_x1d.fits
Processing file ./lede07kaq_x1d.fits
Processing file ./lede07kcq_x1d.fits
Processing file ./lede08feq_x1d.fits
Processing file ./lede08fgq_x1d.fits
Processing file ./lede08fiq_x1d.fits
Processing file ./lede08fkq_x1d.fits
Processing file ./lede09a9q_x1d.fits
Processing file ./lede09abq_x1d.fits
Processing file ./lede09adq_x1d.fits
Processing file ./lede09afq_x1d.fits
Processing file ./lede0dfeq_x1d.fits
Processing file ./lede0dfgq_x1d.fits
Processing file ./lede0dfiq_x1d.fits
Processing file ./lede0dfoq_x1d.fits
Processing file ./lede10j6q_x1d.fits
Processing file ./lede10j8q_x1d.fits
Processing file ./lede10jaq_x1d.fits
Processing file ./lede10jcq_x1d.fits
Processing file ./lede11adq_x1d.fits
Processing file ./lede11afq_x1d.fits
Processing file ./lede11ahq_x1d.fits
Processing file ./lede11ajq_x1d.fits
Processing file ./lede12m7q_x1d.fits
Processing file ./lede12m9q_x1d.fits
Processing file ./lede12mbq_x1d.fits
Processing file ./lede12mdq_x1d.fits
Processing file ./lede14k7q_x1d.fits
Processing file ./lede14k9q_x1d.fits
Processing file ./lede14kbq_x1d.fits
Processing file ./lede14kdq_x1d.fits
Processing file ./lede15nqq_x1d.fits
Processing file ./lede17hyq_x1d.fits
Processing file ./lede17i0q_x1d.fits
Processing file ./lede17i2q_x1d.fits
Processing file ./lede17i4q_x1d.fits
Processing file ./lede18sgq_x1d.fits
Processing file ./lede18siq_x1d.fits
Processing file ./lede18skq_x1d.fits
Processing file ./lede18smq_x1d.fits
Processing file ./lede19n1q_x1d.fits
Processing file ./lede19n3q_x1d.fits
Processing file ./lede19n5q_x1d.fits
Processing file ./lede19n7q_x1d.fits
Processing file ./lede1vd2q_x1d.fits
Processing file ./lede1vd4q_x1d.fits
Processing file ./lede1wt3q_x1d.fits
Processing file ./lede1wt5q_x1d.fits
Processing file ./lede1wt7q_x1d.fits
Processing file ./lede1wt9q_x1d.fits
Processing file ./lede20atq_x1d.fits
Processing file ./lede20avq_x1d.fits
Processing file ./lede20axq_x1d.fits
Processing file ./lede20azq_x1d.fits
Processing file ./lede21kmq_x1d.fits
Processing file ./lede21koq_x1d.fits
Processing file ./lede21kqq_x1d.fits
Processing file ./lede21ksq_x1d.fits
Processing file ./lede22lwq_x1d.fits
Processing file ./lede22lyq_x1d.fits
Processing file ./lede22m0q_x1d.fits
Processing file ./lede22m2q_x1d.fits
Processing file ./lede23uxq_x1d.fits
Processing file ./lede23uzq_x1d.fits
Processing file ./lede23v1q_x1d.fits
Processing file ./lede23v3q_x1d.fits
Processing file ./lede24k0q_x1d.fits
Processing file ./lede24k2q_x1d.fits
Processing file ./lede24k4q_x1d.fits
Processing file ./lede24k6q_x1d.fits
Processing file ./lede25s7q_x1d.fits
Processing file ./lede25s9q_x1d.fits
Processing file ./lede25sbq_x1d.fits
Processing file ./lede25sdq_x1d.fits
Processing file ./lede26kaq_x1d.fits
Processing file ./lede26kcq_x1d.fits
Processing file ./lede26keq_x1d.fits
Processing file ./lede26kgq_x1d.fits
Processing file ./lede27qrq_x1d.fits
Processing file ./lede27qtq_x1d.fits
Processing file ./lede27qvq_x1d.fits
Processing file ./lede27qxq_x1d.fits
Processing file ./lede28adq_x1d.fits
Processing file ./lede28afq_x1d.fits
Processing file ./lede28ahq_x1d.fits
Processing file ./lede28ajq_x1d.fits
Processing file ./lede2hr5q_x1d.fits
Processing file ./lede2hr7q_x1d.fits
Processing file ./lede2hr9q_x1d.fits
Processing file ./lede2hrbq_x1d.fits
Processing file ./lede2ibbq_x1d.fits
Processing file ./lede2ibdq_x1d.fits
Processing file ./lede2ibfq_x1d.fits
Processing file ./lede2ibhq_x1d.fits
Processing file ./lede2jjwq_x1d.fits
Processing file ./lede2jjyq_x1d.fits
Processing file ./lede2jk0q_x1d.fits
Processing file ./lede2jk2q_x1d.fits
Processing file ./lede2kkmq_x1d.fits
Processing file ./lede2kkoq_x1d.fits
Processing file ./lede2kkqq_x1d.fits
Processing file ./lede2kktq_x1d.fits
Processing file ./lede2ls8q_x1d.fits
Processing file ./lede2lsaq_x1d.fits
Processing file ./lede2lscq_x1d.fits
Processing file ./lede2lseq_x1d.fits
Processing file ./lede2mb2q_x1d.fits
Processing file ./lede2mb4q_x1d.fits
Processing file ./lede2mb6q_x1d.fits
Processing file ./lede2mb8q_x1d.fits
Processing file ./lede2ua4q_x1d.fits
Processing file ./lede2ua6q_x1d.fits
Processing file ./lede2ua8q_x1d.fits
Processing file ./lede2uaaq_x1d.fits
Processing file ./lede2ydbq_x1d.fits
Processing file ./lede2yddq_x1d.fits
Processing file ./lede2ydfq_x1d.fits
Processing file ./lede2ydhq_x1d.fits
Processing file ./lede2zoeq_x1d.fits
Processing file ./lede2zogq_x1d.fits
Processing file ./lede2zoiq_x1d.fits
Processing file ./lede2zokq_x1d.fits
Processing file ./lede3axkq_x1d.fits
Processing file ./lede3axmq_x1d.fits
Processing file ./lede3axoq_x1d.fits
Processing file ./lede3axqq_x1d.fits
Processing file ./lede3bk8q_x1d.fits
Processing file ./lede3bkaq_x1d.fits
Processing file ./lede3bkcq_x1d.fits
Processing file ./lede3bkeq_x1d.fits
Processing file ./lede3ncdq_x1d.fits
Processing file ./lede3ncgq_x1d.fits
Processing file ./lede3ncjq_x1d.fits
Processing file ./lede3nclq_x1d.fits
Processing file ./lede43pgq_x1d.fits
Processing file ./lede43piq_x1d.fits
Processing file ./lede43pkq_x1d.fits
Processing file ./lede43pmq_x1d.fits
Processing file ./lede44gzq_x1d.fits
Processing file ./lede44h1q_x1d.fits
Processing file ./lede44h3q_x1d.fits
Processing file ./lede44h5q_x1d.fits
Processing file ./lede45qbq_x1d.fits
Processing file ./lede45qdq_x1d.fits
Processing file ./lede45qfq_x1d.fits
Processing file ./lede45qhq_x1d.fits
Processing file ./lede46yvq_x1d.fits
Processing file ./lede46yxq_x1d.fits
Processing file ./lede46yzq_x1d.fits
Processing file ./lede46z1q_x1d.fits
Processing file ./lede47bcq_x1d.fits
Processing file ./lede47beq_x1d.fits
Processing file ./lede47bgq_x1d.fits
Processing file ./lede47biq_x1d.fits
Processing file ./lede48taq_x1d.fits
Processing file ./lede48tcq_x1d.fits
Processing file ./lede48teq_x1d.fits
Processing file ./lede48tgq_x1d.fits
Processing file ./lede49hcq_x1d.fits
Processing file ./lede49heq_x1d.fits
Processing file ./lede49hgq_x1d.fits
Processing file ./lede49hiq_x1d.fits
Processing file ./lede50x0q_x1d.fits
Processing file ./lede50x2q_x1d.fits
Processing file ./lede50x4q_x1d.fits
Processing file ./lede50x6q_x1d.fits
Processing file ./lede51h9q_x1d.fits
Processing file ./lede51hbq_x1d.fits
Processing file ./lede51hdq_x1d.fits
Processing file ./lede51hfq_x1d.fits
Processing file ./lede53mvq_x1d.fits
Processing file ./lede53mxq_x1d.fits
Processing file ./lede57azq_x1d.fits
Processing file ./lede57b2q_x1d.fits
Processing file ./lede59nxq_x1d.fits
Processing file ./lede59nzq_x1d.fits
Processing file ./lede59o1q_x1d.fits
Processing file ./lede59o3q_x1d.fits
Processing file ./lede60wkq_x1d.fits
Processing file ./lede60x5q_x1d.fits
Processing file ./lede60x7q_x1d.fits
Processing file ./lede60xbq_x1d.fits
Processing file ./lede61e1q_x1d.fits
Processing file ./lede61e3q_x1d.fits
Processing file ./lede61e5q_x1d.fits
Processing file ./lede61e7q_x1d.fits
Processing file ./lede62miq_x1d.fits
Processing file ./lede62mkq_x1d.fits
Processing file ./lede62mmq_x1d.fits
Processing file ./lede62moq_x1d.fits
Processing file ./lede63x8q_x1d.fits
Processing file ./lede63xaq_x1d.fits
Processing file ./lede63xcq_x1d.fits
Processing file ./lede63xmq_x1d.fits
Processing file ./lede64iuq_x1d.fits
Processing file ./lede64iwq_x1d.fits
Processing file ./lede64iyq_x1d.fits
Processing file ./lede64j0q_x1d.fits
Processing file ./lede65e5q_x1d.fits
Processing file ./lede65e7q_x1d.fits
Processing file ./lede65e9q_x1d.fits
Processing file ./lede65ebq_x1d.fits
Processing file ./lede66ljq_x1d.fits
Processing file ./lede66llq_x1d.fits
Processing file ./lede66lnq_x1d.fits
Processing file ./lede66lpq_x1d.fits
Processing file ./lede67x9q_x1d.fits
Processing file ./lede67xbq_x1d.fits
Processing file ./lede67xdq_x1d.fits
Processing file ./lede67xfq_x1d.fits
Processing file ./lede68g3q_x1d.fits
Processing file ./lede68g5q_x1d.fits
Processing file ./lede68g7q_x1d.fits
Processing file ./lede68g9q_x1d.fits
Processing file ./lede69hhq_x1d.fits
Processing file ./lede69hjq_x1d.fits
Processing file ./lede69hmq_x1d.fits
Processing file ./lede69hoq_x1d.fits
Processing file ./lede70tdq_x1d.fits
Processing file ./lede70tfq_x1d.fits
Processing file ./lede70thq_x1d.fits
Processing file ./lede70tjq_x1d.fits
Processing file ./lede71bnq_x1d.fits
Processing file ./lede71bpq_x1d.fits
Processing file ./lede71brq_x1d.fits
Processing file ./lede71btq_x1d.fits
Processing file ./lede72cjq_x1d.fits
Processing file ./lede72clq_x1d.fits
Processing file ./lede72cnq_x1d.fits
Processing file ./lede72cpq_x1d.fits
Processing file ./lede73ogq_x1d.fits
Processing file ./lede73ojq_x1d.fits
Processing file ./lede73olq_x1d.fits
Processing file ./lede73onq_x1d.fits
Processing file ./lede74ukq_x1d.fits
Processing file ./lede74umq_x1d.fits
Processing file ./lede74uoq_x1d.fits
Processing file ./lede74v9q_x1d.fits
Processing file ./lede75chq_x1d.fits
Processing file ./lede75cjq_x1d.fits
Processing file ./lede75clq_x1d.fits
Processing file ./lede75cnq_x1d.fits
Processing file ./lede78vjq_x1d.fits
Processing file ./lede78vlq_x1d.fits
Processing file ./lede81neq_x1d.fits
Processing file ./lede81ngq_x1d.fits
Processing file ./lede91pkq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_mrk-817_g160m_lede_cspec.fits
Processing grating STIS/G750L
Importing files ['./oede3o020_sx1.fits', './oede3o030_sx1.fits', './oede3o040_sx1.fits', './oede4b020_sx1.fits', './oede4b030_sx1.fits', './oede4b040_sx1.fits', './oede4f020_sx1.fits', './oede4f030_sx1.fits', './oede4f040_sx1.fits', './oedea5020_sx1.fits', './oedea5030_sx1.fits', './oedea5040_sx1.fits', './oedea6020_sx1.fits', './oedea6030_sx1.fits', './oedea6040_sx1.fits', './oedean020_sx1.fits', './oedean030_sx1.fits', './oedean040_sx1.fits']
Processing file ./oede3o020_sx1.fits
Processing file ./oede3o030_sx1.fits
Processing file ./oede3o040_sx1.fits
Processing file ./oede4b020_sx1.fits
Processing file ./oede4b030_sx1.fits
Processing file ./oede4b040_sx1.fits
Processing file ./oede4f020_sx1.fits
Processing file ./oede4f030_sx1.fits
Processing file ./oede4f040_sx1.fits
Processing file ./oedea5020_sx1.fits
Processing file ./oedea5030_sx1.fits
Processing file ./oedea5040_sx1.fits
Processing file ./oedea6020_sx1.fits
Processing file ./oedea6030_sx1.fits
Processing file ./oedea6040_sx1.fits
Processing file ./oedean020_sx1.fits
Processing file ./oedean030_sx1.fits
Processing file ./oedean040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede3o020_sx1.fits has scaled median = -55.3285564341385
Removing file ./oede3o020_sx1.fits from product
Segment #0 from file ./oede3o030_sx1.fits has scaled median = -50.15857397732257
Removing file ./oede3o030_sx1.fits from product
Importing files ['./oede3o040_sx1.fits', './oede4b020_sx1.fits', './oede4b030_sx1.fits', './oede4b040_sx1.fits', './oede4f020_sx1.fits', './oede4f030_sx1.fits', './oede4f040_sx1.fits', './oedea5020_sx1.fits', './oedea5030_sx1.fits', './oedea5040_sx1.fits', './oedea6020_sx1.fits', './oedea6030_sx1.fits', './oedea6040_sx1.fits', './oedean020_sx1.fits', './oedean030_sx1.fits', './oedean040_sx1.fits']
Processing file ./oede3o040_sx1.fits
Processing file ./oede4b020_sx1.fits
Processing file ./oede4b030_sx1.fits
Processing file ./oede4b040_sx1.fits
Processing file ./oede4f020_sx1.fits
Processing file ./oede4f030_sx1.fits
Processing file ./oede4f040_sx1.fits
Processing file ./oedea5020_sx1.fits
Processing file ./oedea5030_sx1.fits
Processing file ./oedea5040_sx1.fits
Processing file ./oedea6020_sx1.fits
Processing file ./oedea6030_sx1.fits
Processing file ./oedea6040_sx1.fits
Processing file ./oedean020_sx1.fits
Processing file ./oedean030_sx1.fits
Processing file ./oedean040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede3o040_sx1.fits has scaled median = -58.70760369725958
Removing file ./oede3o040_sx1.fits from product
Importing files ['./oede4b020_sx1.fits', './oede4b030_sx1.fits', './oede4b040_sx1.fits', './oede4f020_sx1.fits', './oede4f030_sx1.fits', './oede4f040_sx1.fits', './oedea5020_sx1.fits', './oedea5030_sx1.fits', './oedea5040_sx1.fits', './oedea6020_sx1.fits', './oedea6030_sx1.fits', './oedea6040_sx1.fits', './oedean020_sx1.fits', './oedean030_sx1.fits', './oedean040_sx1.fits']
Processing file ./oede4b020_sx1.fits
Processing file ./oede4b030_sx1.fits
Processing file ./oede4b040_sx1.fits
Processing file ./oede4f020_sx1.fits
Processing file ./oede4f030_sx1.fits
Processing file ./oede4f040_sx1.fits
Processing file ./oedea5020_sx1.fits
Processing file ./oedea5030_sx1.fits
Processing file ./oedea5040_sx1.fits
Processing file ./oedea6020_sx1.fits
Processing file ./oedea6030_sx1.fits
Processing file ./oedea6040_sx1.fits
Processing file ./oedean020_sx1.fits
Processing file ./oedean030_sx1.fits
Processing file ./oedean040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede4b020_sx1.fits has scaled median = -56.31667812927442
Removing file ./oede4b020_sx1.fits from product
Segment #0 from file ./oede4b030_sx1.fits has scaled median = -50.59960213862057
Removing file ./oede4b030_sx1.fits from product
Importing files ['./oede4b040_sx1.fits', './oede4f020_sx1.fits', './oede4f030_sx1.fits', './oede4f040_sx1.fits', './oedea5020_sx1.fits', './oedea5030_sx1.fits', './oedea5040_sx1.fits', './oedea6020_sx1.fits', './oedea6030_sx1.fits', './oedea6040_sx1.fits', './oedean020_sx1.fits', './oedean030_sx1.fits', './oedean040_sx1.fits']
Processing file ./oede4b040_sx1.fits
Processing file ./oede4f020_sx1.fits
Processing file ./oede4f030_sx1.fits
Processing file ./oede4f040_sx1.fits
Processing file ./oedea5020_sx1.fits
Processing file ./oedea5030_sx1.fits
Processing file ./oedea5040_sx1.fits
Processing file ./oedea6020_sx1.fits
Processing file ./oedea6030_sx1.fits
Processing file ./oedea6040_sx1.fits
Processing file ./oedean020_sx1.fits
Processing file ./oedean030_sx1.fits
Processing file ./oedean040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede4b040_sx1.fits has scaled median = -66.23987845266078
Removing file ./oede4b040_sx1.fits from product
Importing files ['./oede4f020_sx1.fits', './oede4f030_sx1.fits', './oede4f040_sx1.fits', './oedea5020_sx1.fits', './oedea5030_sx1.fits', './oedea5040_sx1.fits', './oedea6020_sx1.fits', './oedea6030_sx1.fits', './oedea6040_sx1.fits', './oedean020_sx1.fits', './oedean030_sx1.fits', './oedean040_sx1.fits']
Processing file ./oede4f020_sx1.fits
Processing file ./oede4f030_sx1.fits
Processing file ./oede4f040_sx1.fits
Processing file ./oedea5020_sx1.fits
Processing file ./oedea5030_sx1.fits
Processing file ./oedea5040_sx1.fits
Processing file ./oedea6020_sx1.fits
Processing file ./oedea6030_sx1.fits
Processing file ./oedea6040_sx1.fits
Processing file ./oedean020_sx1.fits
Processing file ./oedean030_sx1.fits
Processing file ./oedean040_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g750l_oede_cspec.fits
Processing grating STIS/G430L
Importing files ['./oede3o050_sx1.fits', './oede3o060_sx1.fits', './oede3o070_sx1.fits', './oede4b050_sx1.fits', './oede4b060_sx1.fits', './oede4b070_sx1.fits', './oede4f050_sx1.fits', './oede4f060_sx1.fits', './oede4f070_sx1.fits', './oedea5050_sx1.fits', './oedea5060_sx1.fits', './oedea5070_sx1.fits', './oedea6050_sx1.fits', './oedea6060_sx1.fits', './oedea6070_sx1.fits', './oedean050_sx1.fits', './oedean060_sx1.fits', './oedean070_sx1.fits']
Processing file ./oede3o050_sx1.fits
Processing file ./oede3o060_sx1.fits
Processing file ./oede3o070_sx1.fits
Processing file ./oede4b050_sx1.fits
Processing file ./oede4b060_sx1.fits
Processing file ./oede4b070_sx1.fits
Processing file ./oede4f050_sx1.fits
Processing file ./oede4f060_sx1.fits
Processing file ./oede4f070_sx1.fits
Processing file ./oedea5050_sx1.fits
Processing file ./oedea5060_sx1.fits
Processing file ./oedea5070_sx1.fits
Processing file ./oedea6050_sx1.fits
Processing file ./oedea6060_sx1.fits
Processing file ./oedea6070_sx1.fits
Processing file ./oedean050_sx1.fits
Processing file ./oedean060_sx1.fits
Processing file ./oedean070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede3o050_sx1.fits has scaled median = -74.7364784513003
Removing file ./oede3o050_sx1.fits from product
Segment #0 from file ./oede3o060_sx1.fits has scaled median = -72.10440782065552
Removing file ./oede3o060_sx1.fits from product
Segment #0 from file ./oede3o070_sx1.fits has scaled median = -72.92282067321396
Removing file ./oede3o070_sx1.fits from product
Importing files ['./oede4b050_sx1.fits', './oede4b060_sx1.fits', './oede4b070_sx1.fits', './oede4f050_sx1.fits', './oede4f060_sx1.fits', './oede4f070_sx1.fits', './oedea5050_sx1.fits', './oedea5060_sx1.fits', './oedea5070_sx1.fits', './oedea6050_sx1.fits', './oedea6060_sx1.fits', './oedea6070_sx1.fits', './oedean050_sx1.fits', './oedean060_sx1.fits', './oedean070_sx1.fits']
Processing file ./oede4b050_sx1.fits
Processing file ./oede4b060_sx1.fits
Processing file ./oede4b070_sx1.fits
Processing file ./oede4f050_sx1.fits
Processing file ./oede4f060_sx1.fits
Processing file ./oede4f070_sx1.fits
Processing file ./oedea5050_sx1.fits
Processing file ./oedea5060_sx1.fits
Processing file ./oedea5070_sx1.fits
Processing file ./oedea6050_sx1.fits
Processing file ./oedea6060_sx1.fits
Processing file ./oedea6070_sx1.fits
Processing file ./oedean050_sx1.fits
Processing file ./oedean060_sx1.fits
Processing file ./oedean070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede4b050_sx1.fits has scaled median = -62.67470144735768
Removing file ./oede4b050_sx1.fits from product
Segment #0 from file ./oede4b060_sx1.fits has scaled median = -58.97967841679118
Removing file ./oede4b060_sx1.fits from product
Segment #0 from file ./oede4b070_sx1.fits has scaled median = -58.427513375802896
Removing file ./oede4b070_sx1.fits from product
Importing files ['./oede4f050_sx1.fits', './oede4f060_sx1.fits', './oede4f070_sx1.fits', './oedea5050_sx1.fits', './oedea5060_sx1.fits', './oedea5070_sx1.fits', './oedea6050_sx1.fits', './oedea6060_sx1.fits', './oedea6070_sx1.fits', './oedean050_sx1.fits', './oedean060_sx1.fits', './oedean070_sx1.fits']
Processing file ./oede4f050_sx1.fits
Processing file ./oede4f060_sx1.fits
Processing file ./oede4f070_sx1.fits
Processing file ./oedea5050_sx1.fits
Processing file ./oedea5060_sx1.fits
Processing file ./oedea5070_sx1.fits
Processing file ./oedea6050_sx1.fits
Processing file ./oedea6060_sx1.fits
Processing file ./oedea6070_sx1.fits
Processing file ./oedean050_sx1.fits
Processing file ./oedean060_sx1.fits
Processing file ./oedean070_sx1.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_g430l_oede_cspec.fits
Processing grating STIS/G140L
Importing files ['./oede3o080_x1d.fits', './oede4b080_x1d.fits', './oede4f080_x1d.fits']
Processing file ./oede3o080_x1d.fits
Processing file ./oede4b080_x1d.fits
Processing file ./oede4f080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede3o080_x1d.fits has scaled median = -151.7819771977401
Removing file ./oede3o080_x1d.fits from product
Importing files ['./oede4b080_x1d.fits', './oede4f080_x1d.fits']
Processing file ./oede4b080_x1d.fits
Processing file ./oede4f080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede4b080_x1d.fits has scaled median = -54.94359782914343
Removing file ./oede4b080_x1d.fits from product
Importing files ['./oede4f080_x1d.fits']
Processing file ./oede4f080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg140l_oede_cspec.fits
Processing grating STIS/G230L
Importing files ['./oede3o090_x1d.fits', './oede4b090_x1d.fits', './oede4f090_x1d.fits', './oedea5080_x1d.fits', './oedea6080_x1d.fits', './oedean080_x1d.fits']
Processing file ./oede3o090_x1d.fits
Processing file ./oede4b090_x1d.fits
Processing file ./oede4f090_x1d.fits
Processing file ./oedea5080_x1d.fits
Processing file ./oedea6080_x1d.fits
Processing file ./oedean080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede3o090_x1d.fits has scaled median = -161.62338544473883
Removing file ./oede3o090_x1d.fits from product
Segment #0 from file ./oede4b090_x1d.fits has scaled median = -65.76124409754549
Removing file ./oede4b090_x1d.fits from product
Importing files ['./oede4f090_x1d.fits', './oedea5080_x1d.fits', './oedea6080_x1d.fits', './oedean080_x1d.fits']
Processing file ./oede4f090_x1d.fits
Processing file ./oedea5080_x1d.fits
Processing file ./oedea6080_x1d.fits
Processing file ./oedean080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Segment #0 from file ./oede4f090_x1d.fits has scaled median = -55.32655897074825
Removing file ./oede4f090_x1d.fits from product
Importing files ['./oedea5080_x1d.fits', './oedea6080_x1d.fits', './oedean080_x1d.fits']
Processing file ./oedea5080_x1d.fits
Processing file ./oedea6080_x1d.fits
Processing file ./oedean080_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_stis_mrk-817_sg230l_oede_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 940.2-1367.4)
COS/G160M 1342-1800 (Actual: 1343.1-1748.0)
STIS/G140L 1138.4-1716.4 (Actual: 1138.3-1712.2)
STIS/G230L 1582.0-3158.7 (Actual: 1579.4-3157.2)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5703.2)
STIS/G750L 5261.3-10252.3 (Actual: 5303.8-10247.4)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.41812608673
Abutting STIS/G230L product to current result
With a transition wavelength of 1747.9729682539157
Abutting STIS/G430L product to current result
With a transition wavelength of 3157.1921254838817
Abutting STIS/G750L product to current result
With a transition wavelength of 5703.244724755774
Truncating current grating at 10247.421572156081
Wrote products/hst_16196_cos-stis_mrk-817_g130m-g160m-sg230l-g430l-g750l_lede_cspec.fits
Processing target WD0308-565 in proposal 16196
Processing grating COS/G130M
Importing files ['./ledes1vuq_x1d.fits', './ledes1vwq_x1d.fits', './ledes1vyq_x1d.fits', './ledes1w0q_x1d.fits', './ledes2epq_x1d.fits', './ledes2erq_x1d.fits', './ledes2etq_x1d.fits', './ledes2evq_x1d.fits', './ledes3fhq_x1d.fits', './ledes3fjq_x1d.fits', './ledes3flq_x1d.fits', './ledes3fnq_x1d.fits', './ledes4egq_x1d.fits', './ledes4eiq_x1d.fits', './ledes4ekq_x1d.fits', './ledes4emq_x1d.fits', './ledes6f7q_x1d.fits', './ledes6f9q_x1d.fits', './ledes6fbq_x1d.fits', './ledes6fdq_x1d.fits', './ledes9hdq_x1d.fits', './ledes9hgq_x1d.fits', './ledes9hiq_x1d.fits', './ledes9hkq_x1d.fits', './ledesapwq_x1d.fits', './ledesapyq_x1d.fits', './ledesaq0q_x1d.fits', './ledesaq6q_x1d.fits', './ledesdniq_x1d.fits', './ledesdnkq_x1d.fits', './ledesdnmq_x1d.fits', './ledesdnoq_x1d.fits', './ledesex9q_x1d.fits', './ledesexbq_x1d.fits', './ledesexdq_x1d.fits', './ledesexfq_x1d.fits']
Processing file ./ledes1vuq_x1d.fits
Processing file ./ledes1vwq_x1d.fits
Processing file ./ledes1vyq_x1d.fits
Processing file ./ledes1w0q_x1d.fits
Processing file ./ledes2epq_x1d.fits
Processing file ./ledes2erq_x1d.fits
Processing file ./ledes2etq_x1d.fits
Processing file ./ledes2evq_x1d.fits
Processing file ./ledes3fhq_x1d.fits
Processing file ./ledes3fjq_x1d.fits
Processing file ./ledes3flq_x1d.fits
Processing file ./ledes3fnq_x1d.fits
Processing file ./ledes4egq_x1d.fits
Processing file ./ledes4eiq_x1d.fits
Processing file ./ledes4ekq_x1d.fits
Processing file ./ledes4emq_x1d.fits
Processing file ./ledes6f7q_x1d.fits
Processing file ./ledes6f9q_x1d.fits
Processing file ./ledes6fbq_x1d.fits
Processing file ./ledes6fdq_x1d.fits
Processing file ./ledes9hdq_x1d.fits
Processing file ./ledes9hgq_x1d.fits
Processing file ./ledes9hiq_x1d.fits
Processing file ./ledes9hkq_x1d.fits
Processing file ./ledesapwq_x1d.fits
Processing file ./ledesapyq_x1d.fits
Processing file ./ledesaq0q_x1d.fits
Processing file ./ledesaq6q_x1d.fits
Processing file ./ledesdniq_x1d.fits
Processing file ./ledesdnkq_x1d.fits
Processing file ./ledesdnmq_x1d.fits
Processing file ./ledesdnoq_x1d.fits
Processing file ./ledesex9q_x1d.fits
Processing file ./ledesexbq_x1d.fits
Processing file ./ledesexdq_x1d.fits
Processing file ./ledesexfq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g130m_lede_cspec.fits
Processing grating COS/G160M
Importing files ['./ledes1w2q_x1d.fits', './ledes1w4q_x1d.fits', './ledes1w6q_x1d.fits', './ledes1w8q_x1d.fits', './ledes2f5q_x1d.fits', './ledes2f7q_x1d.fits', './ledes2f9q_x1d.fits', './ledes2fbq_x1d.fits', './ledes3fpq_x1d.fits', './ledes3fsq_x1d.fits', './ledes3fuq_x1d.fits', './ledes3fwq_x1d.fits', './ledes4eoq_x1d.fits', './ledes4eqq_x1d.fits', './ledes4esq_x1d.fits', './ledes4euq_x1d.fits', './ledes6ffq_x1d.fits', './ledes6fhq_x1d.fits', './ledes6fjq_x1d.fits', './ledes6flq_x1d.fits', './ledes9htq_x1d.fits', './ledes9hwq_x1d.fits', './ledes9hyq_x1d.fits', './ledes9i0q_x1d.fits', './ledesaq8q_x1d.fits', './ledesaqtq_x1d.fits', './ledesaqvq_x1d.fits', './ledesaqxq_x1d.fits', './ledesdnqq_x1d.fits', './ledesdnsq_x1d.fits', './ledesdnuq_x1d.fits', './ledesdnwq_x1d.fits', './ledesexhq_x1d.fits', './ledesexjq_x1d.fits', './ledesexwq_x1d.fits', './ledesexyq_x1d.fits']
Processing file ./ledes1w2q_x1d.fits
Processing file ./ledes1w4q_x1d.fits
Processing file ./ledes1w6q_x1d.fits
Processing file ./ledes1w8q_x1d.fits
Processing file ./ledes2f5q_x1d.fits
Processing file ./ledes2f7q_x1d.fits
Processing file ./ledes2f9q_x1d.fits
Processing file ./ledes2fbq_x1d.fits
Processing file ./ledes3fpq_x1d.fits
Processing file ./ledes3fsq_x1d.fits
Processing file ./ledes3fuq_x1d.fits
Processing file ./ledes3fwq_x1d.fits
Processing file ./ledes4eoq_x1d.fits
Processing file ./ledes4eqq_x1d.fits
Processing file ./ledes4esq_x1d.fits
Processing file ./ledes4euq_x1d.fits
Processing file ./ledes6ffq_x1d.fits
Processing file ./ledes6fhq_x1d.fits
Processing file ./ledes6fjq_x1d.fits
Processing file ./ledes6flq_x1d.fits
Processing file ./ledes9htq_x1d.fits
Processing file ./ledes9hwq_x1d.fits
Processing file ./ledes9hyq_x1d.fits
Processing file ./ledes9i0q_x1d.fits
Processing file ./ledesaq8q_x1d.fits
Processing file ./ledesaqtq_x1d.fits
Processing file ./ledesaqvq_x1d.fits
Processing file ./ledesaqxq_x1d.fits
Processing file ./ledesdnqq_x1d.fits
Processing file ./ledesdnsq_x1d.fits
Processing file ./ledesdnuq_x1d.fits
Processing file ./ledesdnwq_x1d.fits
Processing file ./ledesexhq_x1d.fits
Processing file ./ledesexjq_x1d.fits
Processing file ./ledesexwq_x1d.fits
Processing file ./ledesexyq_x1d.fits
Using a maximum SNR of 20 in flux-based filtering
Wrote products/hst_16196_cos_wd0308-565_g160m_lede_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.5-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.27607441689
Truncating current grating at 1747.9703790380238
Wrote products/hst_16196_cos_wd0308-565_g130m-g160m_lede_cspec.fits
# Use find_rejects function from first example to make a list of rejected files
listofprerejects, listoffluxrejects = find_rejects(logfile, '16196', allfiles)
print('Files removed before co-addition:')
[print(f"{file}") for file in sorted(listofprerejects)]
print(f'Files removed by flux checker: {sorted(listoffluxrejects)}')
print(f'Number of files removed before co-addition = {len(listofprerejects)}')
print(f'Number of files removed by flux checker = {len(listoffluxrejects)}')
Files removed before co-addition:
lede0zziq_x1d.fits
lede0zzkq_x1d.fits
lede0zzmq_x1d.fits
lede0zzoq_x1d.fits
lede1ajaq_x1d.fits
lede1ajcq_x1d.fits
lede1ajeq_x1d.fits
lede1ajgq_x1d.fits
lede1ajiq_x1d.fits
lede1ajkq_x1d.fits
lede1ajmq_x1d.fits
lede1ajoq_x1d.fits
lede1dkfq_x1d.fits
lede1dkhq_x1d.fits
lede1dkjq_x1d.fits
lede1dklq_x1d.fits
lede1dknq_x1d.fits
lede1dkpq_x1d.fits
lede1dkrq_x1d.fits
lede1dktq_x1d.fits
lede1ftfq_x1d.fits
lede1fthq_x1d.fits
lede1ftjq_x1d.fits
lede1ftlq_x1d.fits
lede1ftoq_x1d.fits
lede1ftqq_x1d.fits
lede1fumq_x1d.fits
lede1fuoq_x1d.fits
lede1hhqq_x1d.fits
lede1jayq_x1d.fits
lede1jb0q_x1d.fits
lede1jb2q_x1d.fits
lede1jb4q_x1d.fits
lede1jb6q_x1d.fits
lede1jb8q_x1d.fits
lede1jbaq_x1d.fits
lede1jbcq_x1d.fits
lede1kmqq_x1d.fits
lede1kmsq_x1d.fits
lede1kmuq_x1d.fits
lede1kmwq_x1d.fits
lede1kmyq_x1d.fits
lede1kn0q_x1d.fits
lede1kn2q_x1d.fits
lede1kn4q_x1d.fits
lede1ljoq_x1d.fits
lede1ljqq_x1d.fits
lede1ljsq_x1d.fits
lede1ljuq_x1d.fits
lede1ljwq_x1d.fits
lede1ljzq_x1d.fits
lede1lk4q_x1d.fits
lede1lk6q_x1d.fits
lede1rmmq_x1d.fits
lede1rmoq_x1d.fits
lede1rmqq_x1d.fits
lede1rmsq_x1d.fits
lede1xz3q_x1d.fits
lede1xz5q_x1d.fits
lede1xz7q_x1d.fits
lede1xzcq_x1d.fits
lede1xzeq_x1d.fits
lede1xzgq_x1d.fits
lede1xziq_x1d.fits
lede1xzkq_x1d.fits
lede1ykxq_x1d.fits
lede1ykzq_x1d.fits
lede1yl1q_x1d.fits
lede1yl3q_x1d.fits
lede1yl5q_x1d.fits
lede1yl7q_x1d.fits
lede1yl9q_x1d.fits
lede1ylbq_x1d.fits
lede1zlsq_x1d.fits
lede1zluq_x1d.fits
lede1zlwq_x1d.fits
lede1zlyq_x1d.fits
lede1zm0q_x1d.fits
lede1zm2q_x1d.fits
lede1zm4q_x1d.fits
lede1zm6q_x1d.fits
lede2ogxq_x1d.fits
lede2ogzq_x1d.fits
lede2oh1q_x1d.fits
lede2oh7q_x1d.fits
lede2oh9q_x1d.fits
lede2ohbq_x1d.fits
lede2ohdq_x1d.fits
lede2ohhq_x1d.fits
lede2pu8q_x1d.fits
lede2puaq_x1d.fits
lede2pucq_x1d.fits
lede2pueq_x1d.fits
lede2pugq_x1d.fits
lede2puiq_x1d.fits
lede2pukq_x1d.fits
lede2pumq_x1d.fits
lede2qcuq_x1d.fits
lede2qcwq_x1d.fits
lede2qcyq_x1d.fits
lede2qd0q_x1d.fits
lede2qd2q_x1d.fits
lede2qd4q_x1d.fits
lede2qd6q_x1d.fits
lede2qd8q_x1d.fits
lede2rl6q_x1d.fits
lede2rl8q_x1d.fits
lede2rlaq_x1d.fits
lede2rlcq_x1d.fits
lede2rleq_x1d.fits
lede2rlgq_x1d.fits
lede2rliq_x1d.fits
lede2rlkq_x1d.fits
lede2sk1q_x1d.fits
lede2sk4q_x1d.fits
lede2sk6q_x1d.fits
lede2sk8q_x1d.fits
lede2skaq_x1d.fits
lede2skcq_x1d.fits
lede2skeq_x1d.fits
lede2skgq_x1d.fits
lede2tr7q_x1d.fits
lede2tr9q_x1d.fits
lede2trbq_x1d.fits
lede2trdq_x1d.fits
lede2trfq_x1d.fits
lede2trhq_x1d.fits
lede2trjq_x1d.fits
lede2trlq_x1d.fits
lede4cehq_x1d.fits
lede4cejq_x1d.fits
lede4celq_x1d.fits
lede4cenq_x1d.fits
lede4cepq_x1d.fits
lede4cerq_x1d.fits
lede4cetq_x1d.fits
lede4cevq_x1d.fits
lede4dp5q_x1d.fits
lede4dp7q_x1d.fits
lede4dp9q_x1d.fits
lede4dpbq_x1d.fits
lede4dpdq_x1d.fits
lede4dpfq_x1d.fits
lede4dphq_x1d.fits
lede4dpjq_x1d.fits
lede99w7q_x1d.fits
lede99w9q_x1d.fits
lede99wbq_x1d.fits
lede99wdq_x1d.fits
lede99wfq_x1d.fits
lede99whq_x1d.fits
lede99wjq_x1d.fits
lede99wlq_x1d.fits
Files removed by flux checker: ['lede01icq_x1d.fits', 'lede01ieq_x1d.fits', 'lede01igq_x1d.fits', 'lede01iiq_x1d.fits', 'lede01iqq_x1d.fits', 'lede01isq_x1d.fits', 'lede01iuq_x1d.fits', 'lede01iwq_x1d.fits', 'lede02vjq_x1d.fits', 'lede02vlq_x1d.fits', 'lede02vnq_x1d.fits', 'lede02vpq_x1d.fits', 'lede04miq_x1d.fits', 'lede0aetq_x1d.fits', 'lede0aevq_x1d.fits', 'lede0aexq_x1d.fits', 'lede0aezq_x1d.fits', 'lede0af2q_x1d.fits', 'lede0af5q_x1d.fits', 'lede0af7q_x1d.fits', 'lede0af9q_x1d.fits', 'lede0bj1q_x1d.fits', 'lede0bj3q_x1d.fits', 'lede0bj5q_x1d.fits', 'lede0bj7q_x1d.fits', 'lede0bj9q_x1d.fits', 'lede0bjbq_x1d.fits', 'lede0bjdq_x1d.fits', 'lede0bjyq_x1d.fits', 'lede0cvxq_x1d.fits', 'lede0cvzq_x1d.fits', 'lede0cw1q_x1d.fits', 'lede0cw3q_x1d.fits', 'lede0iknq_x1d.fits', 'lede0ikpq_x1d.fits', 'lede0ikrq_x1d.fits', 'lede0iktq_x1d.fits', 'lede0ikvq_x1d.fits', 'lede0ikxq_x1d.fits', 'lede0ikzq_x1d.fits', 'lede0il1q_x1d.fits', 'lede0jw1q_x1d.fits', 'lede0jw3q_x1d.fits', 'lede0jw5q_x1d.fits', 'lede0jw7q_x1d.fits', 'lede0jw9q_x1d.fits', 'lede0jwbq_x1d.fits', 'lede0jwdq_x1d.fits', 'lede0jwfq_x1d.fits', 'lede0kf5q_x1d.fits', 'lede0kf7q_x1d.fits', 'lede0kf9q_x1d.fits', 'lede0kfbq_x1d.fits', 'lede0kfeq_x1d.fits', 'lede0kfgq_x1d.fits', 'lede0kfiq_x1d.fits', 'lede0kfkq_x1d.fits', 'lede0loxq_x1d.fits', 'lede0lozq_x1d.fits', 'lede0lp1q_x1d.fits', 'lede0lp3q_x1d.fits', 'lede0lp5q_x1d.fits', 'lede0lp7q_x1d.fits', 'lede0lp9q_x1d.fits', 'lede0lpbq_x1d.fits', 'lede0ma1q_x1d.fits', 'lede0ma4q_x1d.fits', 'lede0ma6q_x1d.fits', 'lede0mz6q_x1d.fits', 'lede0mz8q_x1d.fits', 'lede0mzaq_x1d.fits', 'lede0mzvq_x1d.fits', 'lede0mzxq_x1d.fits', 'lede0njbq_x1d.fits', 'lede0njeq_x1d.fits', 'lede0njgq_x1d.fits', 'lede0njiq_x1d.fits', 'lede0njkq_x1d.fits', 'lede0njmq_x1d.fits', 'lede0njoq_x1d.fits', 'lede0nk9q_x1d.fits', 'lede0oglq_x1d.fits', 'lede0ognq_x1d.fits', 'lede0ogpq_x1d.fits', 'lede0ogrq_x1d.fits', 'lede0ogtq_x1d.fits', 'lede0ogvq_x1d.fits', 'lede0ogxq_x1d.fits', 'lede0ogzq_x1d.fits', 'lede0psiq_x1d.fits', 'lede0pskq_x1d.fits', 'lede0psmq_x1d.fits', 'lede0psoq_x1d.fits', 'lede0psqq_x1d.fits', 'lede0pssq_x1d.fits', 'lede0psuq_x1d.fits', 'lede0pswq_x1d.fits', 'lede0qc2q_x1d.fits', 'lede0qc4q_x1d.fits', 'lede0qc6q_x1d.fits', 'lede0qc8q_x1d.fits', 'lede0qcaq_x1d.fits', 'lede0qccq_x1d.fits', 'lede0qceq_x1d.fits', 'lede0qcgq_x1d.fits', 'lede0ra6q_x1d.fits', 'lede0ra8q_x1d.fits', 'lede0rabq_x1d.fits', 'lede0ragq_x1d.fits', 'lede0raiq_x1d.fits', 'lede0ranq_x1d.fits', 'lede0rapq_x1d.fits', 'lede0rarq_x1d.fits', 'lede0to1q_x1d.fits', 'lede0to4q_x1d.fits', 'lede0to6q_x1d.fits', 'lede0tobq_x1d.fits', 'lede0togq_x1d.fits', 'lede0toiq_x1d.fits', 'lede0tokq_x1d.fits', 'lede0tomq_x1d.fits', 'lede0uzeq_x1d.fits', 'lede0uzhq_x1d.fits', 'lede0uzjq_x1d.fits', 'lede0uzoq_x1d.fits', 'lede0uztq_x1d.fits', 'lede0uzvq_x1d.fits', 'lede0uzxq_x1d.fits', 'lede0uzzq_x1d.fits', 'lede0xgrq_x1d.fits', 'lede0xgtq_x1d.fits', 'lede0xgvq_x1d.fits', 'lede0xgyq_x1d.fits', 'lede0yh2q_x1d.fits', 'lede0yh4q_x1d.fits', 'lede0zz2q_x1d.fits', 'lede0zz4q_x1d.fits', 'lede0zz6q_x1d.fits', 'lede0zz8q_x1d.fits', 'lede0zzaq_x1d.fits', 'lede0zzcq_x1d.fits', 'lede0zzeq_x1d.fits', 'lede0zzgq_x1d.fits', 'lede15noq_x1d.fits', 'lede15nsq_x1d.fits', 'lede15nuq_x1d.fits', 'lede16w8q_x1d.fits', 'lede16waq_x1d.fits', 'lede16wcq_x1d.fits', 'lede16weq_x1d.fits', 'lede1bvgq_x1d.fits', 'lede1bviq_x1d.fits', 'lede1bvkq_x1d.fits', 'lede1bvmq_x1d.fits', 'lede1bvoq_x1d.fits', 'lede1bvqq_x1d.fits', 'lede1bvsq_x1d.fits', 'lede1bvuq_x1d.fits', 'lede1cf2q_x1d.fits', 'lede1cf4q_x1d.fits', 'lede1cf6q_x1d.fits', 'lede1cf8q_x1d.fits', 'lede1cfaq_x1d.fits', 'lede1cfcq_x1d.fits', 'lede1cfeq_x1d.fits', 'lede1cfgq_x1d.fits', 'lede1ejtq_x1d.fits', 'lede1ejvq_x1d.fits', 'lede1ejxq_x1d.fits', 'lede1ejzq_x1d.fits', 'lede1gaeq_x1d.fits', 'lede1gahq_x1d.fits', 'lede1gajq_x1d.fits', 'lede1gamq_x1d.fits', 'lede1gaoq_x1d.fits', 'lede1gaqq_x1d.fits', 'lede1gbiq_x1d.fits', 'lede1gbkq_x1d.fits', 'lede1hhcq_x1d.fits', 'lede1hheq_x1d.fits', 'lede1hhgq_x1d.fits', 'lede1hhiq_x1d.fits', 'lede1hhkq_x1d.fits', 'lede1hhmq_x1d.fits', 'lede1hhoq_x1d.fits', 'lede1irbq_x1d.fits', 'lede1irdq_x1d.fits', 'lede1irfq_x1d.fits', 'lede1irhq_x1d.fits', 'lede1irjq_x1d.fits', 'lede1irlq_x1d.fits', 'lede1irnq_x1d.fits', 'lede1irpq_x1d.fits', 'lede1mtsq_x1d.fits', 'lede1mtuq_x1d.fits', 'lede1mtwq_x1d.fits', 'lede1mu1q_x1d.fits', 'lede1mu3q_x1d.fits', 'lede1mu5q_x1d.fits', 'lede1mu7q_x1d.fits', 'lede1mu9q_x1d.fits', 'lede1noiq_x1d.fits', 'lede1nokq_x1d.fits', 'lede1nomq_x1d.fits', 'lede1nooq_x1d.fits', 'lede1noqq_x1d.fits', 'lede1nosq_x1d.fits', 'lede1nouq_x1d.fits', 'lede1nowq_x1d.fits', 'lede1oceq_x1d.fits', 'lede1ocgq_x1d.fits', 'lede1ociq_x1d.fits', 'lede1ockq_x1d.fits', 'lede1ocmq_x1d.fits', 'lede1ocoq_x1d.fits', 'lede1ocqq_x1d.fits', 'lede1ocsq_x1d.fits', 'lede1pkjq_x1d.fits', 'lede1pklq_x1d.fits', 'lede1pknq_x1d.fits', 'lede1pkpq_x1d.fits', 'lede1pkrq_x1d.fits', 'lede1pktq_x1d.fits', 'lede1pkvq_x1d.fits', 'lede1pkxq_x1d.fits', 'lede1qspq_x1d.fits', 'lede1qsrq_x1d.fits', 'lede1qstq_x1d.fits', 'lede1qsvq_x1d.fits', 'lede1qsxq_x1d.fits', 'lede1qszq_x1d.fits', 'lede1qt1q_x1d.fits', 'lede1qt3q_x1d.fits', 'lede1tukq_x1d.fits', 'lede1tumq_x1d.fits', 'lede29i8q_x1d.fits', 'lede29iaq_x1d.fits', 'lede29icq_x1d.fits', 'lede29ieq_x1d.fits', 'lede2atiq_x1d.fits', 'lede2atkq_x1d.fits', 'lede2atmq_x1d.fits', 'lede2atoq_x1d.fits', 'lede2bbcq_x1d.fits', 'lede2bbhq_x1d.fits', 'lede2bbjq_x1d.fits', 'lede2bblq_x1d.fits', 'lede2cj0q_x1d.fits', 'lede2cj2q_x1d.fits', 'lede2cj4q_x1d.fits', 'lede2cj6q_x1d.fits', 'lede2dowq_x1d.fits', 'lede2doyq_x1d.fits', 'lede2dp0q_x1d.fits', 'lede2dp3q_x1d.fits', 'lede2eyeq_x1d.fits', 'lede2eygq_x1d.fits', 'lede2eyiq_x1d.fits', 'lede2eylq_x1d.fits', 'lede2eynq_x1d.fits', 'lede2eyqq_x1d.fits', 'lede2eysq_x1d.fits', 'lede2eyuq_x1d.fits', 'lede2fi3q_x1d.fits', 'lede2fi5q_x1d.fits', 'lede2fi7q_x1d.fits', 'lede2fi9q_x1d.fits', 'lede2gf8q_x1d.fits', 'lede2gfaq_x1d.fits', 'lede2gfcq_x1d.fits', 'lede2gfxq_x1d.fits', 'lede2nknq_x1d.fits', 'lede2nkqq_x1d.fits', 'lede2nkuq_x1d.fits', 'lede2nkwq_x1d.fits', 'lede2nkyq_x1d.fits', 'lede2nl3q_x1d.fits', 'lede2nl5q_x1d.fits', 'lede2nl7q_x1d.fits', 'lede30sjq_x1d.fits', 'lede30slq_x1d.fits', 'lede30snq_x1d.fits', 'lede30spq_x1d.fits', 'lede31deq_x1d.fits', 'lede31dgq_x1d.fits', 'lede31diq_x1d.fits', 'lede31dkq_x1d.fits', 'lede32s0q_x1d.fits', 'lede32s2q_x1d.fits', 'lede32s5q_x1d.fits', 'lede32s7q_x1d.fits', 'lede32s9q_x1d.fits', 'lede32sbq_x1d.fits', 'lede32sdq_x1d.fits', 'lede32sfq_x1d.fits', 'lede33rzq_x1d.fits', 'lede33s2q_x1d.fits', 'lede33s4q_x1d.fits', 'lede33s7q_x1d.fits', 'lede33s9q_x1d.fits', 'lede33syq_x1d.fits', 'lede33t0q_x1d.fits', 'lede33t2q_x1d.fits', 'lede34lnq_x1d.fits', 'lede34lpq_x1d.fits', 'lede34lrq_x1d.fits', 'lede34luq_x1d.fits', 'lede34lwq_x1d.fits', 'lede34lyq_x1d.fits', 'lede34m0q_x1d.fits', 'lede34m3q_x1d.fits', 'lede35xtq_x1d.fits', 'lede35xvq_x1d.fits', 'lede35xzq_x1d.fits', 'lede35y1q_x1d.fits', 'lede35y3q_x1d.fits', 'lede35y5q_x1d.fits', 'lede36g0q_x1d.fits', 'lede36g2q_x1d.fits', 'lede36g4q_x1d.fits', 'lede36g6q_x1d.fits', 'lede36g8q_x1d.fits', 'lede36gaq_x1d.fits', 'lede36gcq_x1d.fits', 'lede36geq_x1d.fits', 'lede37l5q_x1d.fits', 'lede37l7q_x1d.fits', 'lede37l9q_x1d.fits', 'lede37lbq_x1d.fits', 'lede37ldq_x1d.fits', 'lede37lfq_x1d.fits', 'lede37lhq_x1d.fits', 'lede37ljq_x1d.fits', 'lede38tsq_x1d.fits', 'lede38tuq_x1d.fits', 'lede38twq_x1d.fits', 'lede38tyq_x1d.fits', 'lede38u0q_x1d.fits', 'lede38u2q_x1d.fits', 'lede38u4q_x1d.fits', 'lede38u6q_x1d.fits', 'lede39ctq_x1d.fits', 'lede39cvq_x1d.fits', 'lede39cxq_x1d.fits', 'lede39czq_x1d.fits', 'lede3ckeq_x1d.fits', 'lede3ckgq_x1d.fits', 'lede3ckiq_x1d.fits', 'lede3ckkq_x1d.fits', 'lede3dt9q_x1d.fits', 'lede3dtbq_x1d.fits', 'lede3dtdq_x1d.fits', 'lede3dtfq_x1d.fits', 'lede3efcq_x1d.fits', 'lede3efeq_x1d.fits', 'lede3efgq_x1d.fits', 'lede3efiq_x1d.fits', 'lede3efkq_x1d.fits', 'lede3efmq_x1d.fits', 'lede3efoq_x1d.fits', 'lede3efqq_x1d.fits', 'lede3fdhq_x1d.fits', 'lede3fdjq_x1d.fits', 'lede3fdlq_x1d.fits', 'lede3fdnq_x1d.fits', 'lede3fdpq_x1d.fits', 'lede3fdrq_x1d.fits', 'lede3fdtq_x1d.fits', 'lede3fe0q_x1d.fits', 'lede3gmjq_x1d.fits', 'lede3gmlq_x1d.fits', 'lede3gmnq_x1d.fits', 'lede3gmpq_x1d.fits', 'lede3gmrq_x1d.fits', 'lede3gmtq_x1d.fits', 'lede3gmvq_x1d.fits', 'lede3gmxq_x1d.fits', 'lede3hbeq_x1d.fits', 'lede3hbhq_x1d.fits', 'lede3hbjq_x1d.fits', 'lede3hblq_x1d.fits', 'lede3hbnq_x1d.fits', 'lede3hbpq_x1d.fits', 'lede3hbrq_x1d.fits', 'lede3hbtq_x1d.fits', 'lede3irrq_x1d.fits', 'lede3irtq_x1d.fits', 'lede3irvq_x1d.fits', 'lede3irxq_x1d.fits', 'lede3irzq_x1d.fits', 'lede3is1q_x1d.fits', 'lede3is3q_x1d.fits', 'lede3is6q_x1d.fits', 'lede3lppq_x1d.fits', 'lede3lprq_x1d.fits', 'lede3lptq_x1d.fits', 'lede3lpvq_x1d.fits', 'lede3lpxq_x1d.fits', 'lede3lpzq_x1d.fits', 'lede3lq1q_x1d.fits', 'lede3lq3q_x1d.fits', 'lede3me4q_x1d.fits', 'lede3me6q_x1d.fits', 'lede3me8q_x1d.fits', 'lede3meaq_x1d.fits', 'lede3medq_x1d.fits', 'lede3mefq_x1d.fits', 'lede3mehq_x1d.fits', 'lede3mejq_x1d.fits', 'lede3pr0q_x1d.fits', 'lede3pr2q_x1d.fits', 'lede3pr4q_x1d.fits', 'lede3pr6q_x1d.fits', 'lede3pr9q_x1d.fits', 'lede3prbq_x1d.fits', 'lede3prdq_x1d.fits', 'lede3prfq_x1d.fits', 'lede3qa2q_x1d.fits', 'lede3qa4q_x1d.fits', 'lede3qzpq_x1d.fits', 'lede3qzrq_x1d.fits', 'lede3qztq_x1d.fits', 'lede3qzvq_x1d.fits', 'lede3qzxq_x1d.fits', 'lede3qzzq_x1d.fits', 'lede3rh0q_x1d.fits', 'lede3rh2q_x1d.fits', 'lede3rh4q_x1d.fits', 'lede3rh6q_x1d.fits', 'lede3rh8q_x1d.fits', 'lede3rhaq_x1d.fits', 'lede3rhcq_x1d.fits', 'lede3rheq_x1d.fits', 'lede3staq_x1d.fits', 'lede3stcq_x1d.fits', 'lede3steq_x1d.fits', 'lede3stgq_x1d.fits', 'lede3stjq_x1d.fits', 'lede3stpq_x1d.fits', 'lede3strq_x1d.fits', 'lede3sttq_x1d.fits', 'lede3ua1q_x1d.fits', 'lede3ua3q_x1d.fits', 'lede3ua5q_x1d.fits', 'lede3ua7q_x1d.fits', 'lede3ua9q_x1d.fits', 'lede3uabq_x1d.fits', 'lede3uzvq_x1d.fits', 'lede3uzyq_x1d.fits', 'lede3vijq_x1d.fits', 'lede3vimq_x1d.fits', 'lede3vioq_x1d.fits', 'lede3viqq_x1d.fits', 'lede3visq_x1d.fits', 'lede3viuq_x1d.fits', 'lede3viwq_x1d.fits', 'lede3viyq_x1d.fits', 'lede3wduq_x1d.fits', 'lede3wdwq_x1d.fits', 'lede3wdyq_x1d.fits', 'lede3we0q_x1d.fits', 'lede3we2q_x1d.fits', 'lede3we4q_x1d.fits', 'lede3we6q_x1d.fits', 'lede3we8q_x1d.fits', 'lede3xjdq_x1d.fits', 'lede3xjfq_x1d.fits', 'lede3xjhq_x1d.fits', 'lede3xjmq_x1d.fits', 'lede3xjoq_x1d.fits', 'lede3xk9q_x1d.fits', 'lede3xkhq_x1d.fits', 'lede3xkjq_x1d.fits', 'lede3yq7q_x1d.fits', 'lede3yq9q_x1d.fits', 'lede3yqbq_x1d.fits', 'lede3yqdq_x1d.fits', 'lede3yqfq_x1d.fits', 'lede3yqhq_x1d.fits', 'lede3yqjq_x1d.fits', 'lede3yqlq_x1d.fits', 'lede3za1q_x1d.fits', 'lede3za3q_x1d.fits', 'lede3za5q_x1d.fits', 'lede3za7q_x1d.fits', 'lede3za9q_x1d.fits', 'lede3zzuq_x1d.fits', 'lede3zzwq_x1d.fits', 'lede3zzyq_x1d.fits', 'lede40mkq_x1d.fits', 'lede40mmq_x1d.fits', 'lede40moq_x1d.fits', 'lede40mqq_x1d.fits', 'lede41uiq_x1d.fits', 'lede41ukq_x1d.fits', 'lede41umq_x1d.fits', 'lede41uoq_x1d.fits', 'lede42hnq_x1d.fits', 'lede42hpq_x1d.fits', 'lede42hrq_x1d.fits', 'lede42htq_x1d.fits', 'lede4ak6q_x1d.fits', 'lede4ak8q_x1d.fits', 'lede4akaq_x1d.fits', 'lede4akcq_x1d.fits', 'lede4epnq_x1d.fits', 'lede4eppq_x1d.fits', 'lede4eprq_x1d.fits', 'lede4eptq_x1d.fits', 'lede82idq_x1d.fits', 'lede82ifq_x1d.fits', 'lede83irq_x1d.fits', 'lede83itq_x1d.fits', 'lede84quq_x1d.fits', 'lede84qwq_x1d.fits', 'lede84qyq_x1d.fits', 'lede84r0q_x1d.fits', 'lede85byq_x1d.fits', 'lede85c0q_x1d.fits', 'lede85c2q_x1d.fits', 'lede85c4q_x1d.fits', 'lede86j8q_x1d.fits', 'lede86jaq_x1d.fits', 'lede86jcq_x1d.fits', 'lede86jeq_x1d.fits', 'lede87jkq_x1d.fits', 'lede87jmq_x1d.fits', 'lede87joq_x1d.fits', 'lede87jqq_x1d.fits', 'lede88tlq_x1d.fits', 'lede88tnq_x1d.fits', 'lede88tpq_x1d.fits', 'lede88trq_x1d.fits', 'lede89bkq_x1d.fits', 'lede89bmq_x1d.fits', 'lede89boq_x1d.fits', 'lede89bqq_x1d.fits', 'lede90dvq_x1d.fits', 'lede90dxq_x1d.fits', 'lede90dzq_x1d.fits', 'lede90e1q_x1d.fits', 'lede91pgq_x1d.fits', 'lede91piq_x1d.fits', 'lede91pmq_x1d.fits', 'lede92kbq_x1d.fits', 'lede92kdq_x1d.fits', 'lede92kfq_x1d.fits', 'lede92khq_x1d.fits', 'lede93t1q_x1d.fits', 'lede93t3q_x1d.fits', 'lede93t5q_x1d.fits', 'lede93t7q_x1d.fits', 'lede94r5q_x1d.fits', 'lede94r7q_x1d.fits', 'lede94r9q_x1d.fits', 'lede94rbq_x1d.fits', 'lede95roq_x1d.fits', 'lede95rwq_x1d.fits', 'lede97ejq_x1d.fits', 'lede97elq_x1d.fits', 'oede3o020_sx1.fits', 'oede3o030_sx1.fits', 'oede3o040_sx1.fits', 'oede3o050_sx1.fits', 'oede3o060_sx1.fits', 'oede3o070_sx1.fits', 'oede3o080_x1d.fits', 'oede3o090_x1d.fits', 'oede4b020_sx1.fits', 'oede4b030_sx1.fits', 'oede4b040_sx1.fits', 'oede4b050_sx1.fits', 'oede4b060_sx1.fits', 'oede4b070_sx1.fits', 'oede4b080_x1d.fits', 'oede4b090_x1d.fits', 'oede4f090_x1d.fits']
Number of files removed before co-addition = 153
Number of files removed by flux checker = 577

As you can see, many files were removed before the co-add began, and many more were removed by the flux checker! If you’re curious, we can also look through the headers for the rejected files too.

# Check out the headers of the files for quality
readheaders(listofprerejects, datadir_ex3)
16196/lede0zziq_x1d.fits
Exposure time = 0.0
Planned exposure time = 522.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede0z040_x1dsum.fits
    COM1 = Guide star acquisition delayed.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede0zzkq_x1d.fits
Exposure time = 0.0
Planned exposure time = 522.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede0z040_x1dsum.fits
    COM1 = Guide star acquisition delayed.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede0zzmq_x1d.fits
Exposure time = 0.0
Planned exposure time = 522.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede0z040_x1dsum.fits
    COM1 = Guide star acquisition delayed.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede0zzoq_x1d.fits
Exposure time = 0.0
Planned exposure time = 522.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede0z040_x1dsum.fits
    COM1 = Guide star acquisition delayed.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajaq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajcq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajeq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajgq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajiq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajkq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajmq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ajoq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1a030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dkfq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dkhq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dkjq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dklq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dknq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dkpq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dkrq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1dktq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1d030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ftfq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1fthq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ftjq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ftlq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ftoq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ftqq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1fumq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1fuoq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1f030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1hhqq_x1d.fits
Exposure time = 45.088
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = INTERRUPTED
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1h030_x1dsum.fits
    COM1 = Take Data Flag NOT on throughout observation.
    COM2 = COS light path blocked during exposure.
    COM3 = Actual exposure time may be significantly less than planned.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jayq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jb0q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jb2q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jb4q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jb6q_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jb8q_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jbaq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1jbcq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1j030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kmqq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kmsq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kmuq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kmwq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kmyq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kn0q_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kn2q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1kn4q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1k030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ljoq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ljqq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ljsq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ljuq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ljwq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ljzq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1lk4q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1lk6q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1l030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1rmmq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1r020_x1dsum.fits
    COM1 = Guide star reacquisition failed.
    COM2 = COS internal shutter closed throughout exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1rmoq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1r020_x1dsum.fits
    COM1 = Guide star reacquisition failed.
    COM2 = COS internal shutter closed throughout exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1rmqq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1r030_x1dsum.fits
    COM1 = Guide star reacquisition failed.
    COM2 = COS internal shutter closed throughout exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1rmsq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1r030_x1dsum.fits
    COM1 = Guide star reacquisition failed.
    COM2 = COS internal shutter closed throughout exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xz3q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xz5q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xz7q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xzcq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xzeq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xzgq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xziq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1xzkq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1x030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ykxq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ykzq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1yl1q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1yl3q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1yl5q_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1yl7q_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1yl9q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1ylbq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1y030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zlsq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zluq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zlwq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zlyq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zm0q_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zm2q_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zm4q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede1zm6q_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede1z030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2ogxq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2ogzq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2oh1q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2oh7q_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2oh9q_x1d.fits
Exposure time = 175.008
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2ohbq_x1d.fits
Exposure time = 180.0
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2ohdq_x1d.fits
Exposure time = 195.00799999999998
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2ohhq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2o030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2pu8q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2puaq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2pucq_x1d.fits
Exposure time = 60.00000000000001
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2pueq_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2pugq_x1d.fits
Exposure time = 175.04
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2puiq_x1d.fits
Exposure time = 180.0
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2pukq_x1d.fits
Exposure time = 195.04
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2pumq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2p030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qcuq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qcwq_x1d.fits
Exposure time = 60.00000000000001
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qcyq_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qd0q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qd2q_x1d.fits
Exposure time = 175.008
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qd4q_x1d.fits
Exposure time = 180.0
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qd6q_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2qd8q_x1d.fits
Exposure time = 195.04
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2q030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rl6q_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rl8q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rlaq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rlcq_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rleq_x1d.fits
Exposure time = 175.04
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rlgq_x1d.fits
Exposure time = 180.0
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rliq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2rlkq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2r030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2sk1q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2sk4q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2sk6q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2sk8q_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2skaq_x1d.fits
Exposure time = 175.04
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2skcq_x1d.fits
Exposure time = 180.0
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2skeq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2skgq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2s030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2tr7q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2tr9q_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2trbq_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2trdq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2trfq_x1d.fits
Exposure time = 175.008
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2trhq_x1d.fits
Exposure time = 180.032
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2trjq_x1d.fits
Exposure time = 195.04
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede2trlq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede2t030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cehq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cejq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4celq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cenq_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cepq_x1d.fits
Exposure time = 175.04
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cerq_x1d.fits
Exposure time = 180.0
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cetq_x1d.fits
Exposure time = 195.00799999999998
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4cevq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4c030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dp5q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dp7q_x1d.fits
Exposure time = 60.0
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dp9q_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dpbq_x1d.fits
Exposure time = 60.032000000000004
Planned exposure time = 60.0
Shutter = Open
Aperture used = PSA
Grating used = G130M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d010_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dpdq_x1d.fits
Exposure time = 175.008
Planned exposure time = 175.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dpfq_x1d.fits
Exposure time = 180.032
Planned exposure time = 180.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d020_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dphq_x1d.fits
Exposure time = 195.008
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede4dpjq_x1d.fits
Exposure time = 195.04
Planned exposure time = 195.0
Shutter = Open
Aperture used = PSA
Grating used = G160M
Exposure flag = NORMAL
Fine guiding lock = FINE/GYRO
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede4d030_x1dsum.fits
    COM1 = 
    COM2 = 
    COM3 = 
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99w7q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99w9q_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99wbq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99wdq_x1d.fits
Exposure time = 0.0
Planned exposure time = 60.0
Shutter = Closed
Aperture used = PSA
Grating used = G130M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99010_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99wfq_x1d.fits
Exposure time = 0.0
Planned exposure time = 175.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99whq_x1d.fits
Exposure time = 0.0
Planned exposure time = 180.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99020_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99wjq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4


16196/lede99wlq_x1d.fits
Exposure time = 0.0
Planned exposure time = 195.0
Shutter = Closed
Aperture used = PSA
Grating used = G160M
Exposure flag = NO DATA
Fine guiding lock = FINE
POSTARG1 / POSTARG2 = 0.0 / 0.0
Quality comments from 16196/lede99030_x1dsum.fits
    COM1 = Guide star acquisition failed. Actual guide mode is gyro.
    COM2 = COS internal shutter closed. No counts in exposure.
    COM3 = Actual exposure time significantly less than planned exposure.
Moving target? No
Date file was written = 2024-03-26
Version of calibration software = HSTDP 2023_4

Taking a glance at the output in the cell above, we can see that many files have data quality issues. We can create a co-add with the data quality filtering left on, but the flux checker turned off. These types of data products can be useful in cases where the science doesn’t depend on the accuracy of the data’s absolute flux.

3.3 Running coadd#

Since we want to co-add everything again, just without the flux filtering, we don’t need to make a new data sub-directory. We should change the output directory name so that the original co-adds are not overwritten. We run coadd similarly to Section 1.4, but this time with just the -t -999 flag.

# Set up the path to your data directory
finaldatadir = os.path.join(datadir_ex3, 'products_nofluxfilter')

# Make on output directory
os.makedirs(finaldatadir, exist_ok=True)

And now we run coadd:

!swrapper -i ./16196/ -o ./16196/products_nofluxfilter -t -999
HASP version 0.9.6
Ullyses version 4.0.0
File ./16196/lede0zziq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede0zzkq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede0zzmq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede0zzoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajaq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajcq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajeq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajgq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajiq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajkq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajmq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ajoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dkfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dkhq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dkjq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dklq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dknq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dkpq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dkrq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1dktq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ftfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1fthq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ftjq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ftlq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ftoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ftqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1fumq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1fuoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1hhqq_x1d.fits removed from products because EXPFLAG = INTERRUPTED
File ./16196/lede1jayq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jb0q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jb2q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jb4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jb6q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jb8q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jbaq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1jbcq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kmqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kmsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kmuq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kmwq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kmyq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kn0q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kn2q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1kn4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ljoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ljqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ljsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ljuq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ljwq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ljzq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1lk4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1lk6q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1rmmq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1rmoq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1rmqq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1rmsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xz3q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xz5q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xz7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xzcq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xzeq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xzgq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xziq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1xzkq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ykxq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ykzq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1yl1q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1yl3q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1yl5q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1yl7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1yl9q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1ylbq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zlsq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zluq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zlwq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zlyq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zm0q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zm2q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zm4q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede1zm6q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99w7q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99w9q_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99wbq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99wdq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99wfq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99whq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99wjq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede99wlq_x1d.fits removed from products because EXPFLAG = NO DATA
File ./16196/lede2ogxq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2ogzq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2oh1q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2oh7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2oh9q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2ohbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2ohdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2ohhq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2pu8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2puaq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2pucq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2pueq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2pugq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2puiq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2pukq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2pumq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qcuq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qcwq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qcyq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qd0q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qd2q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qd4q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qd6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2qd8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rl6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rl8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rlaq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rlcq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rleq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rlgq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rliq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2rlkq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2sk1q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2sk4q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2sk6q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2sk8q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2skaq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2skcq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2skeq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2skgq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2tr7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2tr9q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2trbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2trdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2trfq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2trhq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2trjq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede2trlq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cehq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cejq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4celq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cenq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cepq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cerq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cetq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4cevq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dp5q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dp7q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dp9q_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dpbq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dpdq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dpfq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dphq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
File ./16196/lede4dpjq_x1d.fits removed from products because FGSLOCK = FINE/GYRO
Creating list of unique modes from these files:
./16196/lede01icq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./16196/lede01ieq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./16196/lede01igq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./16196/lede01iiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '01')
./16196/lede01iqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./16196/lede01isq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./16196/lede01iuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./16196/lede01iwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '01')
./16196/lede02vbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./16196/lede02vdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./16196/lede02vfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./16196/lede02vhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '02')
./16196/lede02vjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./16196/lede02vlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./16196/lede02vnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./16196/lede02vpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '02')
./16196/lede03g0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./16196/lede03g2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./16196/lede03g4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./16196/lede03g6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '03')
./16196/lede03g8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./16196/lede03gaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./16196/lede03gcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./16196/lede03geq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '03')
./16196/lede04maq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./16196/lede04mcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./16196/lede04meq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./16196/lede04mgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '04')
./16196/lede04miq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./16196/lede04mkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./16196/lede04mmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./16196/lede04moq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '04')
./16196/lede05qcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./16196/lede05qeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./16196/lede05qgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./16196/lede05qiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '05')
./16196/lede05qlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./16196/lede05r6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./16196/lede05r8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./16196/lede05raq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '05')
./16196/lede06yyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./16196/lede06z0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./16196/lede06z2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./16196/lede06z4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '06')
./16196/lede06z7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./16196/lede06z9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./16196/lede06zbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./16196/lede06zdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '06')
./16196/lede07jyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./16196/lede07k0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./16196/lede07k2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./16196/lede07k4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '07')
./16196/lede07k6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./16196/lede07k8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./16196/lede07kaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./16196/lede07kcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '07')
./16196/lede08f3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./16196/lede08f5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./16196/lede08f7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./16196/lede08fcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '08')
./16196/lede08feq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./16196/lede08fgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./16196/lede08fiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./16196/lede08fkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '08')
./16196/lede09a1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./16196/lede09a3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./16196/lede09a5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./16196/lede09a7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '09')
./16196/lede09a9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./16196/lede09abq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./16196/lede09adq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./16196/lede09afq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '09')
./16196/lede0aetq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./16196/lede0aevq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./16196/lede0aexq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./16196/lede0aezq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0a')
./16196/lede0af2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./16196/lede0af5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./16196/lede0af7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./16196/lede0af9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0a')
./16196/lede0bj1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./16196/lede0bj3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./16196/lede0bj5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./16196/lede0bj7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0b')
./16196/lede0bj9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./16196/lede0bjbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./16196/lede0bjdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./16196/lede0bjyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0b')
./16196/lede0cvpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./16196/lede0cvrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./16196/lede0cvtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./16196/lede0cvvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0c')
./16196/lede0cvxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./16196/lede0cvzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./16196/lede0cw1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./16196/lede0cw3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0c')
./16196/lede0df6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./16196/lede0df8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./16196/lede0dfaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./16196/lede0dfcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0d')
./16196/lede0dfeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./16196/lede0dfgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./16196/lede0dfiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./16196/lede0dfoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0d')
./16196/lede0iknq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./16196/lede0ikpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./16196/lede0ikrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./16196/lede0iktq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0i')
./16196/lede0ikvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./16196/lede0ikxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./16196/lede0ikzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./16196/lede0il1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0i')
./16196/lede0jw1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./16196/lede0jw3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./16196/lede0jw5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./16196/lede0jw7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0j')
./16196/lede0jw9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./16196/lede0jwbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./16196/lede0jwdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./16196/lede0jwfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0j')
./16196/lede0kf5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./16196/lede0kf7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./16196/lede0kf9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./16196/lede0kfbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0k')
./16196/lede0kfeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./16196/lede0kfgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./16196/lede0kfiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./16196/lede0kfkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0k')
./16196/lede0loxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./16196/lede0lozq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./16196/lede0lp1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./16196/lede0lp3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0l')
./16196/lede0lp5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./16196/lede0lp7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./16196/lede0lp9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./16196/lede0lpbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0l')
./16196/lede0ma1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./16196/lede0ma4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./16196/lede0ma6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./16196/lede0mz6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./16196/lede0mz8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./16196/lede0mzaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./16196/lede0mzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0m')
./16196/lede0mzxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0m')
./16196/lede0njbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./16196/lede0njeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./16196/lede0njgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./16196/lede0njiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0n')
./16196/lede0njkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./16196/lede0njmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./16196/lede0njoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./16196/lede0nk9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0n')
./16196/lede0oglq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./16196/lede0ognq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./16196/lede0ogpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./16196/lede0ogrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0o')
./16196/lede0ogtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./16196/lede0ogvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./16196/lede0ogxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./16196/lede0ogzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0o')
./16196/lede0psiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./16196/lede0pskq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./16196/lede0psmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./16196/lede0psoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0p')
./16196/lede0psqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./16196/lede0pssq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./16196/lede0psuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./16196/lede0pswq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0p')
./16196/lede0qc2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./16196/lede0qc4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./16196/lede0qc6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./16196/lede0qc8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0q')
./16196/lede0qcaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./16196/lede0qccq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./16196/lede0qceq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./16196/lede0qcgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0q')
./16196/lede0ra6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./16196/lede0ra8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./16196/lede0rabq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./16196/lede0ragq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0r')
./16196/lede0raiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./16196/lede0ranq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./16196/lede0rapq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./16196/lede0rarq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0r')
./16196/lede0to1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./16196/lede0to4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./16196/lede0to6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./16196/lede0tobq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0t')
./16196/lede0togq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./16196/lede0toiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./16196/lede0tokq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./16196/lede0tomq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0t')
./16196/lede0uzeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./16196/lede0uzhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./16196/lede0uzjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./16196/lede0uzoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0u')
./16196/lede0uztq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./16196/lede0uzvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./16196/lede0uzxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./16196/lede0uzzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0u')
./16196/lede0xgrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./16196/lede0xgtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./16196/lede0xgvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./16196/lede0xgyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0x')
./16196/lede0yh2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0y')
./16196/lede0yh4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0y')
./16196/lede0zz2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./16196/lede0zz4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./16196/lede0zz6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./16196/lede0zz8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '0z')
./16196/lede0zzaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./16196/lede0zzcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./16196/lede0zzeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./16196/lede0zzgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '0z')
./16196/lede10iyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./16196/lede10j0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./16196/lede10j2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./16196/lede10j4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '10')
./16196/lede10j6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./16196/lede10j8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./16196/lede10jaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./16196/lede10jcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '10')
./16196/lede11a4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./16196/lede11a6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./16196/lede11a8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./16196/lede11aaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '11')
./16196/lede11adq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./16196/lede11afq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./16196/lede11ahq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./16196/lede11ajq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '11')
./16196/lede12lzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./16196/lede12m1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./16196/lede12m3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./16196/lede12m5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '12')
./16196/lede12m7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./16196/lede12m9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./16196/lede12mbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./16196/lede12mdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '12')
./16196/lede14jzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./16196/lede14k1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./16196/lede14k3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./16196/lede14k5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '14')
./16196/lede14k7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./16196/lede14k9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./16196/lede14kbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./16196/lede14kdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '14')
./16196/lede15ngq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./16196/lede15niq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./16196/lede15nkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./16196/lede15nmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '15')
./16196/lede15noq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./16196/lede15nqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./16196/lede15nsq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./16196/lede15nuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '15')
./16196/lede16vzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./16196/lede16w2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./16196/lede16w4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./16196/lede16w6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '16')
./16196/lede16w8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./16196/lede16waq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./16196/lede16wcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./16196/lede16weq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '16')
./16196/lede17hqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./16196/lede17hsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./16196/lede17huq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./16196/lede17hwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '17')
./16196/lede17hyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./16196/lede17i0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./16196/lede17i2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./16196/lede17i4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '17')
./16196/lede18s8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./16196/lede18saq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./16196/lede18scq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./16196/lede18seq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '18')
./16196/lede18sgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./16196/lede18siq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./16196/lede18skq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./16196/lede18smq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '18')
./16196/lede19msq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./16196/lede19muq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./16196/lede19mwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./16196/lede19myq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '19')
./16196/lede19n1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./16196/lede19n3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./16196/lede19n5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./16196/lede19n7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '19')
./16196/lede1bvgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./16196/lede1bviq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./16196/lede1bvkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./16196/lede1bvmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1b')
./16196/lede1bvoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./16196/lede1bvqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./16196/lede1bvsq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./16196/lede1bvuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1b')
./16196/lede1cf2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./16196/lede1cf4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./16196/lede1cf6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./16196/lede1cf8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1c')
./16196/lede1cfaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./16196/lede1cfcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./16196/lede1cfeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./16196/lede1cfgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1c')
./16196/lede1ejlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./16196/lede1ejnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./16196/lede1ejpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./16196/lede1ejrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1e')
./16196/lede1ejtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./16196/lede1ejvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./16196/lede1ejxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./16196/lede1ejzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1e')
./16196/lede1gaeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./16196/lede1gahq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./16196/lede1gajq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./16196/lede1gamq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1g')
./16196/lede1gaoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./16196/lede1gaqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./16196/lede1gbiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./16196/lede1gbkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1g')
./16196/lede1hhcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./16196/lede1hheq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./16196/lede1hhgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./16196/lede1hhiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1h')
./16196/lede1hhkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1h')
./16196/lede1hhmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1h')
./16196/lede1hhoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1h')
./16196/lede1irbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./16196/lede1irdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./16196/lede1irfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./16196/lede1irhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1i')
./16196/lede1irjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./16196/lede1irlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./16196/lede1irnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./16196/lede1irpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1i')
./16196/lede1mtsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./16196/lede1mtuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./16196/lede1mtwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./16196/lede1mu1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1m')
./16196/lede1mu3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./16196/lede1mu5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./16196/lede1mu7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./16196/lede1mu9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1m')
./16196/lede1noiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./16196/lede1nokq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./16196/lede1nomq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./16196/lede1nooq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1n')
./16196/lede1noqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./16196/lede1nosq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./16196/lede1nouq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./16196/lede1nowq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1n')
./16196/lede1oceq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./16196/lede1ocgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./16196/lede1ociq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./16196/lede1ockq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1o')
./16196/lede1ocmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./16196/lede1ocoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./16196/lede1ocqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./16196/lede1ocsq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1o')
./16196/lede1pkjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./16196/lede1pklq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./16196/lede1pknq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./16196/lede1pkpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1p')
./16196/lede1pkrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./16196/lede1pktq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./16196/lede1pkvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./16196/lede1pkxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1p')
./16196/lede1qspq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./16196/lede1qsrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./16196/lede1qstq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./16196/lede1qsvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1q')
./16196/lede1qsxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./16196/lede1qszq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./16196/lede1qt1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./16196/lede1qt3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1q')
./16196/lede1rmeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./16196/lede1rmgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./16196/lede1rmiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./16196/lede1rmkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1r')
./16196/lede1suaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./16196/lede1sucq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./16196/lede1sueq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./16196/lede1sugq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1s')
./16196/lede1tukq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1t')
./16196/lede1tumq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1t')
./16196/lede1ucsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./16196/lede1ucuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./16196/lede1ucwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./16196/lede1ucyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1u')
./16196/lede1vd2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1v')
./16196/lede1vd4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1v')
./16196/lede1wsvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./16196/lede1wsxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./16196/lede1wszq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./16196/lede1wt1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '1w')
./16196/lede1wt3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./16196/lede1wt5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./16196/lede1wt7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./16196/lede1wt9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '1w')
./16196/lede20alq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./16196/lede20anq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./16196/lede20apq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./16196/lede20arq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '20')
./16196/lede20atq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./16196/lede20avq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./16196/lede20axq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./16196/lede20azq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '20')
./16196/lede21keq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./16196/lede21kgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./16196/lede21kiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./16196/lede21kkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '21')
./16196/lede21kmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./16196/lede21koq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./16196/lede21kqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./16196/lede21ksq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '21')
./16196/lede22loq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./16196/lede22lqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./16196/lede22lsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./16196/lede22luq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '22')
./16196/lede22lwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./16196/lede22lyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./16196/lede22m0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./16196/lede22m2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '22')
./16196/lede23upq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./16196/lede23urq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./16196/lede23utq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./16196/lede23uvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '23')
./16196/lede23uxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./16196/lede23uzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./16196/lede23v1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./16196/lede23v3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '23')
./16196/lede24jsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./16196/lede24juq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./16196/lede24jwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./16196/lede24jyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '24')
./16196/lede24k0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./16196/lede24k2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./16196/lede24k4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./16196/lede24k6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '24')
./16196/lede25rzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./16196/lede25s1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./16196/lede25s3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./16196/lede25s5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '25')
./16196/lede25s7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./16196/lede25s9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./16196/lede25sbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./16196/lede25sdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '25')
./16196/lede26k2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./16196/lede26k4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./16196/lede26k6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./16196/lede26k8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '26')
./16196/lede26kaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./16196/lede26kcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./16196/lede26keq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./16196/lede26kgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '26')
./16196/lede27qjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./16196/lede27qlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./16196/lede27qnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./16196/lede27qpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '27')
./16196/lede27qrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./16196/lede27qtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./16196/lede27qvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./16196/lede27qxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '27')
./16196/lede28a5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./16196/lede28a7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./16196/lede28a9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./16196/lede28abq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '28')
./16196/lede28adq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./16196/lede28afq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./16196/lede28ahq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./16196/lede28ajq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '28')
./16196/lede29hzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./16196/lede29i1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./16196/lede29i3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./16196/lede29i5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '29')
./16196/lede29i8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./16196/lede29iaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./16196/lede29icq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./16196/lede29ieq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '29')
./16196/lede2ataq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./16196/lede2atcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./16196/lede2ateq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./16196/lede2atgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2a')
./16196/lede2atiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./16196/lede2atkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./16196/lede2atmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./16196/lede2atoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2a')
./16196/lede2bb4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./16196/lede2bb6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./16196/lede2bb8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./16196/lede2bbaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2b')
./16196/lede2bbcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./16196/lede2bbhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./16196/lede2bbjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./16196/lede2bblq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2b')
./16196/lede2cisq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./16196/lede2ciuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./16196/lede2ciwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./16196/lede2ciyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2c')
./16196/lede2cj0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./16196/lede2cj2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./16196/lede2cj4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./16196/lede2cj6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2c')
./16196/lede2dokq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./16196/lede2domq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./16196/lede2dorq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./16196/lede2dotq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2d')
./16196/lede2dowq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./16196/lede2doyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./16196/lede2dp0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./16196/lede2dp3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2d')
./16196/lede2eyeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./16196/lede2eygq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./16196/lede2eyiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./16196/lede2eylq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2e')
./16196/lede2eynq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./16196/lede2eyqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./16196/lede2eysq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./16196/lede2eyuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2e')
./16196/lede2fhvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./16196/lede2fhxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./16196/lede2fhzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./16196/lede2fi1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2f')
./16196/lede2fi3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./16196/lede2fi5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./16196/lede2fi7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./16196/lede2fi9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2f')
./16196/lede2gf0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./16196/lede2gf2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./16196/lede2gf4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./16196/lede2gf6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2g')
./16196/lede2gf8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./16196/lede2gfaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./16196/lede2gfcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./16196/lede2gfxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2g')
./16196/lede2hqxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./16196/lede2hqzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./16196/lede2hr1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./16196/lede2hr3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2h')
./16196/lede2hr5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./16196/lede2hr7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./16196/lede2hr9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./16196/lede2hrbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2h')
./16196/lede2ib3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./16196/lede2ib5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./16196/lede2ib7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./16196/lede2ib9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2i')
./16196/lede2ibbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./16196/lede2ibdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./16196/lede2ibfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./16196/lede2ibhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2i')
./16196/lede2jjoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./16196/lede2jjqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./16196/lede2jjsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./16196/lede2jjuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2j')
./16196/lede2jjwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./16196/lede2jjyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./16196/lede2jk0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./16196/lede2jk2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2j')
./16196/lede2kkaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./16196/lede2kkcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./16196/lede2kkhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./16196/lede2kkjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2k')
./16196/lede2kkmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./16196/lede2kkoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./16196/lede2kkqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./16196/lede2kktq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2k')
./16196/lede2ls0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./16196/lede2ls2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./16196/lede2ls4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./16196/lede2ls6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2l')
./16196/lede2ls8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./16196/lede2lsaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./16196/lede2lscq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./16196/lede2lseq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2l')
./16196/lede2mauq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./16196/lede2mawq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./16196/lede2mayq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./16196/lede2mb0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2m')
./16196/lede2mb2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./16196/lede2mb4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./16196/lede2mb6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./16196/lede2mb8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2m')
./16196/lede2nknq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./16196/lede2nkqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./16196/lede2nkuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./16196/lede2nkwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2n')
./16196/lede2nkyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./16196/lede2nl3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./16196/lede2nl5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./16196/lede2nl7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2n')
./16196/lede2ua2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./16196/lede2ua4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./16196/lede2ua6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./16196/lede2ua8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./16196/lede2uaaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2u')
./16196/lede2uzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./16196/lede2uzxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./16196/lede2uzzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2u')
./16196/lede2yd3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./16196/lede2yd5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./16196/lede2yd7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./16196/lede2yd9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2y')
./16196/lede2ydbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./16196/lede2yddq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./16196/lede2ydfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./16196/lede2ydhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2y')
./16196/lede2zo6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./16196/lede2zo8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./16196/lede2zoaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./16196/lede2zocq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '2z')
./16196/lede2zoeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./16196/lede2zogq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./16196/lede2zoiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./16196/lede2zokq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '2z')
./16196/lede30sbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./16196/lede30sdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./16196/lede30sfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./16196/lede30shq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '30')
./16196/lede30sjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./16196/lede30slq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./16196/lede30snq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./16196/lede30spq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '30')
./16196/lede31d6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./16196/lede31d8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./16196/lede31daq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./16196/lede31dcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '31')
./16196/lede31deq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./16196/lede31dgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./16196/lede31diq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./16196/lede31dkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '31')
./16196/lede32s0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./16196/lede32s2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./16196/lede32s5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./16196/lede32s7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '32')
./16196/lede32s9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./16196/lede32sbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./16196/lede32sdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./16196/lede32sfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '32')
./16196/lede33rzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./16196/lede33s2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./16196/lede33s4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./16196/lede33s7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '33')
./16196/lede33s9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./16196/lede33syq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./16196/lede33t0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./16196/lede33t2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '33')
./16196/lede34lnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./16196/lede34lpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./16196/lede34lrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./16196/lede34luq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '34')
./16196/lede34lwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./16196/lede34lyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./16196/lede34m0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./16196/lede34m3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '34')
./16196/lede35xrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./16196/lede35xtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./16196/lede35xvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./16196/lede35xxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '35')
./16196/lede35xzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./16196/lede35y1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./16196/lede35y3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./16196/lede35y5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '35')
./16196/lede36g0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./16196/lede36g2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./16196/lede36g4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./16196/lede36g6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '36')
./16196/lede36g8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./16196/lede36gaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./16196/lede36gcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./16196/lede36geq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '36')
./16196/lede37l5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./16196/lede37l7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./16196/lede37l9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./16196/lede37lbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '37')
./16196/lede37ldq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./16196/lede37lfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./16196/lede37lhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./16196/lede37ljq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '37')
./16196/lede38tsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./16196/lede38tuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./16196/lede38twq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./16196/lede38tyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '38')
./16196/lede38u0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./16196/lede38u2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./16196/lede38u4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./16196/lede38u6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '38')
./16196/lede39clq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./16196/lede39cnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./16196/lede39cpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./16196/lede39crq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '39')
./16196/lede39ctq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./16196/lede39cvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./16196/lede39cxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./16196/lede39czq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '39')
./16196/lede3axcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./16196/lede3axeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./16196/lede3axgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./16196/lede3axiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3a')
./16196/lede3axkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./16196/lede3axmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./16196/lede3axoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./16196/lede3axqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3a')
./16196/lede3bk0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./16196/lede3bk2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./16196/lede3bk4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./16196/lede3bk6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3b')
./16196/lede3bk8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./16196/lede3bkaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./16196/lede3bkcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./16196/lede3bkeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3b')
./16196/lede3ck6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./16196/lede3ck8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./16196/lede3ckaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./16196/lede3ckcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3c')
./16196/lede3ckeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./16196/lede3ckgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./16196/lede3ckiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./16196/lede3ckkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3c')
./16196/lede3dt1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./16196/lede3dt3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./16196/lede3dt5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./16196/lede3dt7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3d')
./16196/lede3dt9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./16196/lede3dtbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./16196/lede3dtdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./16196/lede3dtfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3d')
./16196/lede3efcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./16196/lede3efeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./16196/lede3efgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./16196/lede3efiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3e')
./16196/lede3efkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./16196/lede3efmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./16196/lede3efoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./16196/lede3efqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3e')
./16196/lede3fdhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./16196/lede3fdjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./16196/lede3fdlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./16196/lede3fdnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3f')
./16196/lede3fdpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./16196/lede3fdrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./16196/lede3fdtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./16196/lede3fe0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3f')
./16196/lede3gmjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./16196/lede3gmlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./16196/lede3gmnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./16196/lede3gmpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3g')
./16196/lede3gmrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./16196/lede3gmtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./16196/lede3gmvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./16196/lede3gmxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3g')
./16196/lede3hbeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./16196/lede3hbhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./16196/lede3hbjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./16196/lede3hblq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3h')
./16196/lede3hbnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./16196/lede3hbpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./16196/lede3hbrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./16196/lede3hbtq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3h')
./16196/lede3irrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./16196/lede3irtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./16196/lede3irvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./16196/lede3irxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3i')
./16196/lede3irzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./16196/lede3is1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./16196/lede3is3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./16196/lede3is6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3i')
./16196/lede3lppq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./16196/lede3lprq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./16196/lede3lptq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./16196/lede3lpvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3l')
./16196/lede3lpxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./16196/lede3lpzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./16196/lede3lq1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./16196/lede3lq3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3l')
./16196/lede3me4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./16196/lede3me6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./16196/lede3me8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./16196/lede3meaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3m')
./16196/lede3medq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./16196/lede3mefq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./16196/lede3mehq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./16196/lede3mejq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3m')
./16196/lede3nc4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3nc6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3nc8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3ncaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3ncdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./16196/lede3ncgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./16196/lede3ncjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./16196/lede3nclq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3n')
./16196/lede3ncqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3nctq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3ncwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3nd5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3n')
./16196/lede3pr0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./16196/lede3pr2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./16196/lede3pr4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./16196/lede3pr6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3p')
./16196/lede3pr9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./16196/lede3prbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./16196/lede3prdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./16196/lede3prfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3p')
./16196/lede3qa2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./16196/lede3qa4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./16196/lede3qzpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./16196/lede3qzrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./16196/lede3qztq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./16196/lede3qzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3q')
./16196/lede3qzxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./16196/lede3qzzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3q')
./16196/lede3rh0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./16196/lede3rh2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./16196/lede3rh4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./16196/lede3rh6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3r')
./16196/lede3rh8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./16196/lede3rhaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./16196/lede3rhcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./16196/lede3rheq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3r')
./16196/lede3staq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./16196/lede3stcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./16196/lede3steq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./16196/lede3stgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3s')
./16196/lede3stjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./16196/lede3stpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./16196/lede3strq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./16196/lede3sttq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3s')
./16196/lede3ua1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./16196/lede3ua3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./16196/lede3ua5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./16196/lede3ua7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./16196/lede3ua9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./16196/lede3uabq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3u')
./16196/lede3uzvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./16196/lede3uzyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3u')
./16196/lede3vijq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./16196/lede3vimq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./16196/lede3vioq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./16196/lede3viqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3v')
./16196/lede3visq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./16196/lede3viuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./16196/lede3viwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./16196/lede3viyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3v')
./16196/lede3wduq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./16196/lede3wdwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./16196/lede3wdyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./16196/lede3we0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3w')
./16196/lede3we2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./16196/lede3we4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./16196/lede3we6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./16196/lede3we8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3w')
./16196/lede3xjdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./16196/lede3xjfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./16196/lede3xjhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./16196/lede3xjmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3x')
./16196/lede3xjoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./16196/lede3xk9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./16196/lede3xkhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./16196/lede3xkjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3x')
./16196/lede3yq7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./16196/lede3yq9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./16196/lede3yqbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./16196/lede3yqdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3y')
./16196/lede3yqfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./16196/lede3yqhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./16196/lede3yqjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./16196/lede3yqlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3y')
./16196/lede3za1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./16196/lede3za3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./16196/lede3za5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./16196/lede3za7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./16196/lede3za9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '3z')
./16196/lede3zzuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./16196/lede3zzwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./16196/lede3zzyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '3z')
./16196/lede40mcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./16196/lede40meq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./16196/lede40mgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./16196/lede40miq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '40')
./16196/lede40mkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./16196/lede40mmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./16196/lede40moq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./16196/lede40mqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '40')
./16196/lede41u9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./16196/lede41ubq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./16196/lede41udq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./16196/lede41ufq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '41')
./16196/lede41uiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./16196/lede41ukq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./16196/lede41umq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./16196/lede41uoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '41')
./16196/lede42hfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./16196/lede42hhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./16196/lede42hjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./16196/lede42hlq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '42')
./16196/lede42hnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./16196/lede42hpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./16196/lede42hrq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./16196/lede42htq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '42')
./16196/lede43p8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./16196/lede43paq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./16196/lede43pcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./16196/lede43peq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '43')
./16196/lede43pgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./16196/lede43piq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./16196/lede43pkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./16196/lede43pmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '43')
./16196/lede44grq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./16196/lede44gtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./16196/lede44gvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./16196/lede44gxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '44')
./16196/lede44gzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./16196/lede44h1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./16196/lede44h3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./16196/lede44h5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '44')
./16196/lede45q3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./16196/lede45q5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./16196/lede45q7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./16196/lede45q9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '45')
./16196/lede45qbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./16196/lede45qdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./16196/lede45qfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./16196/lede45qhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '45')
./16196/lede46ynq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./16196/lede46ypq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./16196/lede46yrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./16196/lede46ytq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '46')
./16196/lede46yvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./16196/lede46yxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./16196/lede46yzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./16196/lede46z1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '46')
./16196/lede47b4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./16196/lede47b6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./16196/lede47b8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./16196/lede47baq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '47')
./16196/lede47bcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./16196/lede47beq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./16196/lede47bgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./16196/lede47biq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '47')
./16196/lede48t2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./16196/lede48t4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./16196/lede48t6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./16196/lede48t8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '48')
./16196/lede48taq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./16196/lede48tcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./16196/lede48teq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./16196/lede48tgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '48')
./16196/lede49h4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./16196/lede49h6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./16196/lede49h8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./16196/lede49haq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '49')
./16196/lede49hcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./16196/lede49heq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./16196/lede49hgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./16196/lede49hiq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '49')
./16196/lede4ak6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./16196/lede4ak8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./16196/lede4akaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./16196/lede4akcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4a')
./16196/lede4epnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./16196/lede4eppq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./16196/lede4eprq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./16196/lede4eptq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '4e')
./16196/lede50wsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./16196/lede50wuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./16196/lede50wwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./16196/lede50wyq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '50')
./16196/lede50x0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./16196/lede50x2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./16196/lede50x4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./16196/lede50x6q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '50')
./16196/lede51h1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./16196/lede51h3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./16196/lede51h5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./16196/lede51h7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '51')
./16196/lede51h9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./16196/lede51hbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./16196/lede51hdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./16196/lede51hfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '51')
./16196/lede52mkq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./16196/lede52mmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./16196/lede52moq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./16196/lede52mqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '52')
./16196/lede53mvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '53')
./16196/lede53mxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '53')
./16196/lede56a3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./16196/lede56a5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./16196/lede56a7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./16196/lede56ahq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '56')
./16196/lede57azq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '57')
./16196/lede57b2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '57')
./16196/lede59npq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./16196/lede59nrq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./16196/lede59ntq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./16196/lede59nvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '59')
./16196/lede59nxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./16196/lede59nzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./16196/lede59o1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./16196/lede59o3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '59')
./16196/lede60waq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./16196/lede60weq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./16196/lede60wgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./16196/lede60wiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '60')
./16196/lede60wkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./16196/lede60x5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./16196/lede60x7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./16196/lede60xbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '60')
./16196/lede61dtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./16196/lede61dvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./16196/lede61dxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./16196/lede61dzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '61')
./16196/lede61e1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./16196/lede61e3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./16196/lede61e5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./16196/lede61e7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '61')
./16196/lede62maq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./16196/lede62mcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./16196/lede62meq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./16196/lede62mgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '62')
./16196/lede62miq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./16196/lede62mkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./16196/lede62mmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./16196/lede62moq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '62')
./16196/lede63x0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./16196/lede63x2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./16196/lede63x4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./16196/lede63x6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '63')
./16196/lede63x8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./16196/lede63xaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./16196/lede63xcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./16196/lede63xmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '63')
./16196/lede64imq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./16196/lede64ioq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./16196/lede64iqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./16196/lede64isq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '64')
./16196/lede64iuq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./16196/lede64iwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./16196/lede64iyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./16196/lede64j0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '64')
./16196/lede65dxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./16196/lede65dzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./16196/lede65e1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./16196/lede65e3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '65')
./16196/lede65e5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./16196/lede65e7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./16196/lede65e9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./16196/lede65ebq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '65')
./16196/lede66lbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./16196/lede66ldq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./16196/lede66lfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./16196/lede66lhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '66')
./16196/lede66ljq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./16196/lede66llq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./16196/lede66lnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./16196/lede66lpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '66')
./16196/lede67x1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./16196/lede67x3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./16196/lede67x5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./16196/lede67x7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '67')
./16196/lede67x9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./16196/lede67xbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./16196/lede67xdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./16196/lede67xfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '67')
./16196/lede68fvq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./16196/lede68fxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./16196/lede68fzq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./16196/lede68g1q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '68')
./16196/lede68g3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./16196/lede68g5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./16196/lede68g7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./16196/lede68g9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '68')
./16196/lede69h8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./16196/lede69hbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./16196/lede69hdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./16196/lede69hfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '69')
./16196/lede69hhq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./16196/lede69hjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./16196/lede69hmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./16196/lede69hoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '69')
./16196/lede70t5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./16196/lede70t7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./16196/lede70t9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./16196/lede70tbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '70')
./16196/lede70tdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./16196/lede70tfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./16196/lede70thq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./16196/lede70tjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '70')
./16196/lede71bfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./16196/lede71bhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./16196/lede71bjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./16196/lede71blq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '71')
./16196/lede71bnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./16196/lede71bpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./16196/lede71brq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./16196/lede71btq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '71')
./16196/lede72c8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./16196/lede72caq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./16196/lede72ccq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./16196/lede72chq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '72')
./16196/lede72cjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./16196/lede72clq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./16196/lede72cnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./16196/lede72cpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '72')
./16196/lede73o7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./16196/lede73o9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./16196/lede73obq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./16196/lede73odq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '73')
./16196/lede73ogq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./16196/lede73ojq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./16196/lede73olq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./16196/lede73onq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '73')
./16196/lede74ubq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./16196/lede74udq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./16196/lede74ufq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./16196/lede74uhq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '74')
./16196/lede74ukq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./16196/lede74umq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./16196/lede74uoq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./16196/lede74v9q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '74')
./16196/lede75c8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75cbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75cdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75cfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75chq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./16196/lede75cjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./16196/lede75clq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./16196/lede75cnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '75')
./16196/lede75cqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75csq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75cuq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede75cwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '75')
./16196/lede77v8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./16196/lede77vaq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./16196/lede77vcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./16196/lede77veq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '77')
./16196/lede78vjq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '78')
./16196/lede78vlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '78')
./16196/lede80n4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./16196/lede80n6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./16196/lede80n8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./16196/lede80naq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '80')
./16196/lede81neq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '81')
./16196/lede81ngq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '81')
./16196/lede82i5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./16196/lede82i7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./16196/lede82i9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./16196/lede82ibq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '82')
./16196/lede82idq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '82')
./16196/lede82ifq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '82')
./16196/lede83ijq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./16196/lede83ilq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./16196/lede83inq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./16196/lede83ipq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '83')
./16196/lede83irq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '83')
./16196/lede83itq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '83')
./16196/lede84qmq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./16196/lede84qoq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./16196/lede84qqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./16196/lede84qsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '84')
./16196/lede84quq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./16196/lede84qwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./16196/lede84qyq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./16196/lede84r0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '84')
./16196/lede85bqq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./16196/lede85bsq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./16196/lede85buq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./16196/lede85bwq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '85')
./16196/lede85byq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./16196/lede85c0q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./16196/lede85c2q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./16196/lede85c4q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '85')
./16196/lede86j0q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./16196/lede86j2q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./16196/lede86j4q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./16196/lede86j6q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '86')
./16196/lede86j8q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./16196/lede86jaq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./16196/lede86jcq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./16196/lede86jeq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '86')
./16196/lede87jcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./16196/lede87jeq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./16196/lede87jgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./16196/lede87jiq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '87')
./16196/lede87jkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./16196/lede87jmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./16196/lede87joq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./16196/lede87jqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '87')
./16196/lede88tdq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./16196/lede88tfq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./16196/lede88thq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./16196/lede88tjq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '88')
./16196/lede88tlq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./16196/lede88tnq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./16196/lede88tpq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./16196/lede88trq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '88')
./16196/lede89bcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./16196/lede89beq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./16196/lede89bgq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./16196/lede89biq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '89')
./16196/lede89bkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./16196/lede89bmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./16196/lede89boq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./16196/lede89bqq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '89')
./16196/lede90dnq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./16196/lede90dpq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./16196/lede90drq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./16196/lede90dtq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '90')
./16196/lede90dvq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./16196/lede90dxq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./16196/lede90dzq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./16196/lede90e1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '90')
./16196/lede91p8q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./16196/lede91paq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./16196/lede91pcq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./16196/lede91peq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '91')
./16196/lede91pgq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./16196/lede91piq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./16196/lede91pkq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./16196/lede91pmq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '91')
./16196/lede92k3q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./16196/lede92k5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./16196/lede92k7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./16196/lede92k9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '92')
./16196/lede92kbq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./16196/lede92kdq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./16196/lede92kfq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./16196/lede92khq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '92')
./16196/lede93stq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./16196/lede93svq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./16196/lede93sxq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./16196/lede93szq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '93')
./16196/lede93t1q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./16196/lede93t3q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./16196/lede93t5q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./16196/lede93t7q_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '93')
./16196/lede94r5q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./16196/lede94r7q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./16196/lede94r9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./16196/lede94rbq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '94')
./16196/lede95roq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '95')
./16196/lede95rwq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '95')
./16196/lede96e9q_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./16196/lede96ebq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./16196/lede96edq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./16196/lede96efq_x1d.fits MRK-817 COS FUV G130M PSA 16196 (16196, '96')
./16196/lede97ejq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '97')
./16196/lede97elq_x1d.fits MRK-817 COS FUV G160M PSA 16196 (16196, '97')
./16196/oede3o020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '3o')
./16196/oede3o030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '3o')
./16196/oede3o040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '3o')
./16196/oede3o050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '3o')
./16196/oede3o060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '3o')
./16196/oede3o070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '3o')
./16196/oede3o080_x1d.fits MRK-817 STIS FUV-MAMA G140L 52X0.2 16196 (16196, '3o')
./16196/oede3o090_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, '3o')
./16196/oede4b020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4b')
./16196/oede4b030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4b')
./16196/oede4b040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4b')
./16196/oede4b050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4b')
./16196/oede4b060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4b')
./16196/oede4b070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4b')
./16196/oede4b080_x1d.fits MRK-817 STIS FUV-MAMA G140L 52X0.2 16196 (16196, '4b')
./16196/oede4b090_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, '4b')
./16196/oede4f020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4f')
./16196/oede4f030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4f')
./16196/oede4f040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, '4f')
./16196/oede4f050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4f')
./16196/oede4f060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4f')
./16196/oede4f070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, '4f')
./16196/oede4f080_x1d.fits MRK-817 STIS FUV-MAMA G140L 52X0.2 16196 (16196, '4f')
./16196/oede4f090_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, '4f')
./16196/oedea5020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a5')
./16196/oedea5030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a5')
./16196/oedea5040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a5')
./16196/oedea5050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a5')
./16196/oedea5060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a5')
./16196/oedea5070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a5')
./16196/oedea5080_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, 'a5')
./16196/oedea6020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a6')
./16196/oedea6030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a6')
./16196/oedea6040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'a6')
./16196/oedea6050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a6')
./16196/oedea6060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a6')
./16196/oedea6070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'a6')
./16196/oedea6080_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, 'a6')
./16196/oedean020_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'an')
./16196/oedean030_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'an')
./16196/oedean040_sx1.fits MRK-817 STIS CCD G750L 52X0.2 16196 (16196, 'an')
./16196/oedean050_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'an')
./16196/oedean060_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'an')
./16196/oedean070_sx1.fits MRK-817 STIS CCD G430L 52X0.2 16196 (16196, 'an')
./16196/oedean080_x1d.fits MRK-817 STIS NUV-MAMA G230L 52X0.2 16196 (16196, 'an')
Looping over visits
Processing product (16196, '01')
Targets in visit (16196, '01'): ['MRK-817']
Processing target MRK-817 in visit (16196, '01')
Processing grating COS/G130M
Importing files ['./16196/lede01icq_x1d.fits', './16196/lede01ieq_x1d.fits', './16196/lede01igq_x1d.fits', './16196/lede01iiq_x1d.fits']
Processing file ./16196/lede01icq_x1d.fits
Processing file ./16196/lede01ieq_x1d.fits
Processing file ./16196/lede01igq_x1d.fits
Processing file ./16196/lede01iiq_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:563: RuntimeWarning: invalid value encountered in divide
  thru_nans = segment.data['net'] / segment.data['flux']
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:238: RuntimeWarning: invalid value encountered in divide
  conversion = self.output_flux[nonzeros] / self.sumnetcounts[nonzeros]
Using a maximum SNR of 20.0 in flux-based filtering
WARNING: VerifyWarning: Card is too long, comment will be truncated. [astropy.io.fits.card]
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede01_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede01iqq_x1d.fits', './16196/lede01isq_x1d.fits', './16196/lede01iuq_x1d.fits', './16196/lede01iwq_x1d.fits']
Processing file ./16196/lede01iqq_x1d.fits
Processing file ./16196/lede01isq_x1d.fits
Processing file ./16196/lede01iuq_x1d.fits
Processing file ./16196/lede01iwq_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:563: RuntimeWarning: invalid value encountered in divide
  thru_nans = segment.data['net'] / segment.data['flux']
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede01_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.326905690119
Truncating current grating at 1747.893994864158
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede01_cspec.fits
Processing product (16196, '02')
Targets in visit (16196, '02'): ['MRK-817']
Processing target MRK-817 in visit (16196, '02')
Processing grating COS/G130M
Importing files ['./16196/lede02vbq_x1d.fits', './16196/lede02vdq_x1d.fits', './16196/lede02vfq_x1d.fits', './16196/lede02vhq_x1d.fits']
Processing file ./16196/lede02vbq_x1d.fits
Processing file ./16196/lede02vdq_x1d.fits
Processing file ./16196/lede02vfq_x1d.fits
Processing file ./16196/lede02vhq_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:238: RuntimeWarning: invalid value encountered in divide
  conversion = self.output_flux[nonzeros] / self.sumnetcounts[nonzeros]
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede02_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede02vjq_x1d.fits', './16196/lede02vlq_x1d.fits', './16196/lede02vnq_x1d.fits', './16196/lede02vpq_x1d.fits']
Processing file ./16196/lede02vjq_x1d.fits
Processing file ./16196/lede02vlq_x1d.fits
Processing file ./16196/lede02vnq_x1d.fits
Processing file ./16196/lede02vpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede02_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2274253744195
Truncating current grating at 1747.8819450777246
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede02_cspec.fits
Processing product (16196, '03')
Targets in visit (16196, '03'): ['MRK-817']
Processing target MRK-817 in visit (16196, '03')
Processing grating COS/G130M
Importing files ['./16196/lede03g0q_x1d.fits', './16196/lede03g2q_x1d.fits', './16196/lede03g4q_x1d.fits', './16196/lede03g6q_x1d.fits']
Processing file ./16196/lede03g0q_x1d.fits
Processing file ./16196/lede03g2q_x1d.fits
Processing file ./16196/lede03g4q_x1d.fits
Processing file ./16196/lede03g6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede03_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede03g8q_x1d.fits', './16196/lede03gaq_x1d.fits', './16196/lede03gcq_x1d.fits', './16196/lede03geq_x1d.fits']
Processing file ./16196/lede03g8q_x1d.fits
Processing file ./16196/lede03gaq_x1d.fits
Processing file ./16196/lede03gcq_x1d.fits
Processing file ./16196/lede03geq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede03_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2275769071362
Truncating current grating at 1747.9678824552072
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede03_cspec.fits
Processing product (16196, '04')
Targets in visit (16196, '04'): ['MRK-817']
Processing target MRK-817 in visit (16196, '04')
Processing grating COS/G130M
Importing files ['./16196/lede04maq_x1d.fits', './16196/lede04mcq_x1d.fits', './16196/lede04meq_x1d.fits', './16196/lede04mgq_x1d.fits']
Processing file ./16196/lede04maq_x1d.fits
Processing file ./16196/lede04mcq_x1d.fits
Processing file ./16196/lede04meq_x1d.fits
Processing file ./16196/lede04mgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede04_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede04miq_x1d.fits', './16196/lede04mkq_x1d.fits', './16196/lede04mmq_x1d.fits', './16196/lede04moq_x1d.fits']
Processing file ./16196/lede04miq_x1d.fits
Processing file ./16196/lede04mkq_x1d.fits
Processing file ./16196/lede04mmq_x1d.fits
Processing file ./16196/lede04moq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede04_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.4)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3771240606993
Truncating current grating at 1747.9190324722601
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede04_cspec.fits
Processing product (16196, '05')
Targets in visit (16196, '05'): ['MRK-817']
Processing target MRK-817 in visit (16196, '05')
Processing grating COS/G130M
Importing files ['./16196/lede05qcq_x1d.fits', './16196/lede05qeq_x1d.fits', './16196/lede05qgq_x1d.fits', './16196/lede05qiq_x1d.fits']
Processing file ./16196/lede05qcq_x1d.fits
Processing file ./16196/lede05qeq_x1d.fits
Processing file ./16196/lede05qgq_x1d.fits
Processing file ./16196/lede05qiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede05_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede05qlq_x1d.fits', './16196/lede05r6q_x1d.fits', './16196/lede05r8q_x1d.fits', './16196/lede05raq_x1d.fits']
Processing file ./16196/lede05qlq_x1d.fits
Processing file ./16196/lede05r6q_x1d.fits
Processing file ./16196/lede05r8q_x1d.fits
Processing file ./16196/lede05raq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede05_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.5-1367.4)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.417127026532
Truncating current grating at 1747.882496538914
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede05_cspec.fits
Processing product (16196, '06')
Targets in visit (16196, '06'): ['MRK-817']
Processing target MRK-817 in visit (16196, '06')
Processing grating COS/G130M
Importing files ['./16196/lede06yyq_x1d.fits', './16196/lede06z0q_x1d.fits', './16196/lede06z2q_x1d.fits', './16196/lede06z4q_x1d.fits']
Processing file ./16196/lede06yyq_x1d.fits
Processing file ./16196/lede06z0q_x1d.fits
Processing file ./16196/lede06z2q_x1d.fits
Processing file ./16196/lede06z4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede06_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede06z7q_x1d.fits', './16196/lede06z9q_x1d.fits', './16196/lede06zbq_x1d.fits', './16196/lede06zdq_x1d.fits']
Processing file ./16196/lede06z7q_x1d.fits
Processing file ./16196/lede06z9q_x1d.fits
Processing file ./16196/lede06zbq_x1d.fits
Processing file ./16196/lede06zdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede06_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2179271413936
Truncating current grating at 1747.931562721271
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede06_cspec.fits
Processing product (16196, '07')
Targets in visit (16196, '07'): ['MRK-817']
Processing target MRK-817 in visit (16196, '07')
Processing grating COS/G130M
Importing files ['./16196/lede07jyq_x1d.fits', './16196/lede07k0q_x1d.fits', './16196/lede07k2q_x1d.fits', './16196/lede07k4q_x1d.fits']
Processing file ./16196/lede07jyq_x1d.fits
Processing file ./16196/lede07k0q_x1d.fits
Processing file ./16196/lede07k2q_x1d.fits
Processing file ./16196/lede07k4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede07_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede07k6q_x1d.fits', './16196/lede07k8q_x1d.fits', './16196/lede07kaq_x1d.fits', './16196/lede07kcq_x1d.fits']
Processing file ./16196/lede07k6q_x1d.fits
Processing file ./16196/lede07k8q_x1d.fits
Processing file ./16196/lede07kaq_x1d.fits
Processing file ./16196/lede07kcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede07_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.4-1367.4)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3674529863483
Truncating current grating at 1747.8336941074513
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede07_cspec.fits
Processing product (16196, '08')
Targets in visit (16196, '08'): ['MRK-817']
Processing target MRK-817 in visit (16196, '08')
Processing grating COS/G130M
Importing files ['./16196/lede08f3q_x1d.fits', './16196/lede08f5q_x1d.fits', './16196/lede08f7q_x1d.fits', './16196/lede08fcq_x1d.fits']
Processing file ./16196/lede08f3q_x1d.fits
Processing file ./16196/lede08f5q_x1d.fits
Processing file ./16196/lede08f7q_x1d.fits
Processing file ./16196/lede08fcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede08_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede08feq_x1d.fits', './16196/lede08fgq_x1d.fits', './16196/lede08fiq_x1d.fits', './16196/lede08fkq_x1d.fits']
Processing file ./16196/lede08feq_x1d.fits
Processing file ./16196/lede08fgq_x1d.fits
Processing file ./16196/lede08fiq_x1d.fits
Processing file ./16196/lede08fkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede08_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2579327310818
Truncating current grating at 1747.8827802718752
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede08_cspec.fits
Processing product (16196, '09')
Targets in visit (16196, '09'): ['MRK-817']
Processing target MRK-817 in visit (16196, '09')
Processing grating COS/G130M
Importing files ['./16196/lede09a1q_x1d.fits', './16196/lede09a3q_x1d.fits', './16196/lede09a5q_x1d.fits', './16196/lede09a7q_x1d.fits']
Processing file ./16196/lede09a1q_x1d.fits
Processing file ./16196/lede09a3q_x1d.fits
Processing file ./16196/lede09a5q_x1d.fits
Processing file ./16196/lede09a7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede09_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede09a9q_x1d.fits', './16196/lede09abq_x1d.fits', './16196/lede09adq_x1d.fits', './16196/lede09afq_x1d.fits']
Processing file ./16196/lede09a9q_x1d.fits
Processing file ./16196/lede09abq_x1d.fits
Processing file ./16196/lede09adq_x1d.fits
Processing file ./16196/lede09afq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede09_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2579894554744
Truncating current grating at 1747.8828567578967
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede09_cspec.fits
Processing product (16196, '0a')
Targets in visit (16196, '0a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0a')
Processing grating COS/G130M
Importing files ['./16196/lede0aetq_x1d.fits', './16196/lede0aevq_x1d.fits', './16196/lede0aexq_x1d.fits', './16196/lede0aezq_x1d.fits']
Processing file ./16196/lede0aetq_x1d.fits
Processing file ./16196/lede0aevq_x1d.fits
Processing file ./16196/lede0aexq_x1d.fits
Processing file ./16196/lede0aezq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0a_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0af2q_x1d.fits', './16196/lede0af5q_x1d.fits', './16196/lede0af7q_x1d.fits', './16196/lede0af9q_x1d.fits']
Processing file ./16196/lede0af2q_x1d.fits
Processing file ./16196/lede0af5q_x1d.fits
Processing file ./16196/lede0af7q_x1d.fits
Processing file ./16196/lede0af9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0a_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3130430937558
Truncating current grating at 1747.6823166955037
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0a_cspec.fits
Processing product (16196, '0b')
Targets in visit (16196, '0b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0b')
Processing grating COS/G130M
Importing files ['./16196/lede0bj1q_x1d.fits', './16196/lede0bj3q_x1d.fits', './16196/lede0bj5q_x1d.fits', './16196/lede0bj7q_x1d.fits']
Processing file ./16196/lede0bj1q_x1d.fits
Processing file ./16196/lede0bj3q_x1d.fits
Processing file ./16196/lede0bj5q_x1d.fits
Processing file ./16196/lede0bj7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0b_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0bj9q_x1d.fits', './16196/lede0bjbq_x1d.fits', './16196/lede0bjdq_x1d.fits', './16196/lede0bjyq_x1d.fits']
Processing file ./16196/lede0bj9q_x1d.fits
Processing file ./16196/lede0bjbq_x1d.fits
Processing file ./16196/lede0bjdq_x1d.fits
Processing file ./16196/lede0bjyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.243265327722
Truncating current grating at 1747.7189978695003
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0b_cspec.fits
Processing product (16196, '0c')
Targets in visit (16196, '0c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0c')
Processing grating COS/G130M
Importing files ['./16196/lede0cvpq_x1d.fits', './16196/lede0cvrq_x1d.fits', './16196/lede0cvtq_x1d.fits', './16196/lede0cvvq_x1d.fits']
Processing file ./16196/lede0cvpq_x1d.fits
Processing file ./16196/lede0cvrq_x1d.fits
Processing file ./16196/lede0cvtq_x1d.fits
Processing file ./16196/lede0cvvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0c_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0cvxq_x1d.fits', './16196/lede0cvzq_x1d.fits', './16196/lede0cw1q_x1d.fits', './16196/lede0cw3q_x1d.fits']
Processing file ./16196/lede0cvxq_x1d.fits
Processing file ./16196/lede0cvzq_x1d.fits
Processing file ./16196/lede0cw1q_x1d.fits
Processing file ./16196/lede0cw3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2830621654111
Truncating current grating at 1747.7189283065552
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0c_cspec.fits
Processing product (16196, '0d')
Targets in visit (16196, '0d'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0d')
Processing grating COS/G130M
Importing files ['./16196/lede0df6q_x1d.fits', './16196/lede0df8q_x1d.fits', './16196/lede0dfaq_x1d.fits', './16196/lede0dfcq_x1d.fits']
Processing file ./16196/lede0df6q_x1d.fits
Processing file ./16196/lede0df8q_x1d.fits
Processing file ./16196/lede0dfaq_x1d.fits
Processing file ./16196/lede0dfcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0d_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0dfeq_x1d.fits', './16196/lede0dfgq_x1d.fits', './16196/lede0dfiq_x1d.fits', './16196/lede0dfoq_x1d.fits']
Processing file ./16196/lede0dfeq_x1d.fits
Processing file ./16196/lede0dfgq_x1d.fits
Processing file ./16196/lede0dfiq_x1d.fits
Processing file ./16196/lede0dfoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0d_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.153534716562
Truncating current grating at 1747.7189009804765
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0d_cspec.fits
Processing product (16196, '0i')
Targets in visit (16196, '0i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0i')
Processing grating COS/G130M
Importing files ['./16196/lede0iknq_x1d.fits', './16196/lede0ikpq_x1d.fits', './16196/lede0ikrq_x1d.fits', './16196/lede0iktq_x1d.fits']
Processing file ./16196/lede0iknq_x1d.fits
Processing file ./16196/lede0ikpq_x1d.fits
Processing file ./16196/lede0ikrq_x1d.fits
Processing file ./16196/lede0iktq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0i_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0ikvq_x1d.fits', './16196/lede0ikxq_x1d.fits', './16196/lede0ikzq_x1d.fits', './16196/lede0il1q_x1d.fits']
Processing file ./16196/lede0ikvq_x1d.fits
Processing file ./16196/lede0ikxq_x1d.fits
Processing file ./16196/lede0ikzq_x1d.fits
Processing file ./16196/lede0il1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.9)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.949131349409
Truncating current grating at 1747.9563298335283
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0i_cspec.fits
Processing product (16196, '0j')
Targets in visit (16196, '0j'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0j')
Processing grating COS/G130M
Importing files ['./16196/lede0jw1q_x1d.fits', './16196/lede0jw3q_x1d.fits', './16196/lede0jw5q_x1d.fits', './16196/lede0jw7q_x1d.fits']
Processing file ./16196/lede0jw1q_x1d.fits
Processing file ./16196/lede0jw3q_x1d.fits
Processing file ./16196/lede0jw5q_x1d.fits
Processing file ./16196/lede0jw7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0j_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0jw9q_x1d.fits', './16196/lede0jwbq_x1d.fits', './16196/lede0jwdq_x1d.fits', './16196/lede0jwfq_x1d.fits']
Processing file ./16196/lede0jw9q_x1d.fits
Processing file ./16196/lede0jwbq_x1d.fits
Processing file ./16196/lede0jwdq_x1d.fits
Processing file ./16196/lede0jwfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0j_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.7)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.7299868866985
Truncating current grating at 1747.944135095638
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0j_cspec.fits
Processing product (16196, '0k')
Targets in visit (16196, '0k'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0k')
Processing grating COS/G130M
Importing files ['./16196/lede0kf5q_x1d.fits', './16196/lede0kf7q_x1d.fits', './16196/lede0kf9q_x1d.fits', './16196/lede0kfbq_x1d.fits']
Processing file ./16196/lede0kf5q_x1d.fits
Processing file ./16196/lede0kf7q_x1d.fits
Processing file ./16196/lede0kf9q_x1d.fits
Processing file ./16196/lede0kfbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0k_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0kfeq_x1d.fits', './16196/lede0kfgq_x1d.fits', './16196/lede0kfiq_x1d.fits', './16196/lede0kfkq_x1d.fits']
Processing file ./16196/lede0kfeq_x1d.fits
Processing file ./16196/lede0kfgq_x1d.fits
Processing file ./16196/lede0kfiq_x1d.fits
Processing file ./16196/lede0kfkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0k_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1366.8)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8196776207672
Truncating current grating at 1747.9319209806872
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0k_cspec.fits
Processing product (16196, '0l')
Targets in visit (16196, '0l'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0l')
Processing grating COS/G130M
Importing files ['./16196/lede0loxq_x1d.fits', './16196/lede0lozq_x1d.fits', './16196/lede0lp1q_x1d.fits', './16196/lede0lp3q_x1d.fits']
Processing file ./16196/lede0loxq_x1d.fits
Processing file ./16196/lede0lozq_x1d.fits
Processing file ./16196/lede0lp1q_x1d.fits
Processing file ./16196/lede0lp3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0l_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0lp5q_x1d.fits', './16196/lede0lp7q_x1d.fits', './16196/lede0lp9q_x1d.fits', './16196/lede0lpbq_x1d.fits']
Processing file ./16196/lede0lp5q_x1d.fits
Processing file ./16196/lede0lp7q_x1d.fits
Processing file ./16196/lede0lp9q_x1d.fits
Processing file ./16196/lede0lpbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0l_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9392420144077
Truncating current grating at 1747.9074390952806
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0l_cspec.fits
Processing product (16196, '0m')
Targets in visit (16196, '0m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0m')
Processing grating COS/G160M
Importing files ['./16196/lede0ma1q_x1d.fits', './16196/lede0ma4q_x1d.fits', './16196/lede0ma6q_x1d.fits', './16196/lede0mzxq_x1d.fits']
Processing file ./16196/lede0ma1q_x1d.fits
Processing file ./16196/lede0ma4q_x1d.fits
Processing file ./16196/lede0ma6q_x1d.fits
Processing file ./16196/lede0mzxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0m_cspec.fits
Processing grating COS/G130M
Importing files ['./16196/lede0mz6q_x1d.fits', './16196/lede0mz8q_x1d.fits', './16196/lede0mzaq_x1d.fits', './16196/lede0mzvq_x1d.fits']
Processing file ./16196/lede0mz6q_x1d.fits
Processing file ./16196/lede0mz8q_x1d.fits
Processing file ./16196/lede0mzaq_x1d.fits
Processing file ./16196/lede0mzvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1345.9-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.839611497799
Truncating current grating at 1747.9564265073204
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0m_cspec.fits
Processing product (16196, '0n')
Targets in visit (16196, '0n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0n')
Processing grating COS/G130M
Importing files ['./16196/lede0njbq_x1d.fits', './16196/lede0njeq_x1d.fits', './16196/lede0njgq_x1d.fits', './16196/lede0njiq_x1d.fits']
Processing file ./16196/lede0njbq_x1d.fits
Processing file ./16196/lede0njeq_x1d.fits
Processing file ./16196/lede0njgq_x1d.fits
Processing file ./16196/lede0njiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0n_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0njkq_x1d.fits', './16196/lede0njmq_x1d.fits', './16196/lede0njoq_x1d.fits', './16196/lede0nk9q_x1d.fits']
Processing file ./16196/lede0njkq_x1d.fits
Processing file ./16196/lede0njmq_x1d.fits
Processing file ./16196/lede0njoq_x1d.fits
Processing file ./16196/lede0nk9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.94918619098
Truncating current grating at 1747.8339287513736
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0n_cspec.fits
Processing product (16196, '0o')
Targets in visit (16196, '0o'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0o')
Processing grating COS/G130M
Importing files ['./16196/lede0oglq_x1d.fits', './16196/lede0ognq_x1d.fits', './16196/lede0ogpq_x1d.fits', './16196/lede0ogrq_x1d.fits']
Processing file ./16196/lede0oglq_x1d.fits
Processing file ./16196/lede0ognq_x1d.fits
Processing file ./16196/lede0ogpq_x1d.fits
Processing file ./16196/lede0ogrq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0o_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0ogtq_x1d.fits', './16196/lede0ogvq_x1d.fits', './16196/lede0ogxq_x1d.fits', './16196/lede0ogzq_x1d.fits']
Processing file ./16196/lede0ogtq_x1d.fits
Processing file ./16196/lede0ogvq_x1d.fits
Processing file ./16196/lede0ogxq_x1d.fits
Processing file ./16196/lede0ogzq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0o_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1366.9)
COS/G160M 1342-1800 (Actual: 1346.2-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8694507172818
Truncating current grating at 1747.944111810499
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0o_cspec.fits
Processing product (16196, '0p')
Targets in visit (16196, '0p'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0p')
Processing grating COS/G130M
Importing files ['./16196/lede0psiq_x1d.fits', './16196/lede0pskq_x1d.fits', './16196/lede0psmq_x1d.fits', './16196/lede0psoq_x1d.fits']
Processing file ./16196/lede0psiq_x1d.fits
Processing file ./16196/lede0pskq_x1d.fits
Processing file ./16196/lede0psmq_x1d.fits
Processing file ./16196/lede0psoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0p_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0psqq_x1d.fits', './16196/lede0pssq_x1d.fits', './16196/lede0psuq_x1d.fits', './16196/lede0pswq_x1d.fits']
Processing file ./16196/lede0psqq_x1d.fits
Processing file ./16196/lede0pssq_x1d.fits
Processing file ./16196/lede0psuq_x1d.fits
Processing file ./16196/lede0pswq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0p_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1346.2-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8395162322117
Truncating current grating at 1747.9073072948245
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0p_cspec.fits
Processing product (16196, '0q')
Targets in visit (16196, '0q'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0q')
Processing grating COS/G130M
Importing files ['./16196/lede0qc2q_x1d.fits', './16196/lede0qc4q_x1d.fits', './16196/lede0qc6q_x1d.fits', './16196/lede0qc8q_x1d.fits']
Processing file ./16196/lede0qc2q_x1d.fits
Processing file ./16196/lede0qc4q_x1d.fits
Processing file ./16196/lede0qc6q_x1d.fits
Processing file ./16196/lede0qc8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0q_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0qcaq_x1d.fits', './16196/lede0qccq_x1d.fits', './16196/lede0qceq_x1d.fits', './16196/lede0qcgq_x1d.fits']
Processing file ./16196/lede0qcaq_x1d.fits
Processing file ./16196/lede0qccq_x1d.fits
Processing file ./16196/lede0qceq_x1d.fits
Processing file ./16196/lede0qcgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0q_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9590083120634
Truncating current grating at 1747.9072224950255
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0q_cspec.fits
Processing product (16196, '0r')
Targets in visit (16196, '0r'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0r')
Processing grating COS/G130M
Importing files ['./16196/lede0ra6q_x1d.fits', './16196/lede0ra8q_x1d.fits', './16196/lede0rabq_x1d.fits', './16196/lede0ragq_x1d.fits']
Processing file ./16196/lede0ra6q_x1d.fits
Processing file ./16196/lede0ra8q_x1d.fits
Processing file ./16196/lede0rabq_x1d.fits
Processing file ./16196/lede0ragq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0r_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0raiq_x1d.fits', './16196/lede0ranq_x1d.fits', './16196/lede0rapq_x1d.fits', './16196/lede0rarq_x1d.fits']
Processing file ./16196/lede0raiq_x1d.fits
Processing file ./16196/lede0ranq_x1d.fits
Processing file ./16196/lede0rapq_x1d.fits
Processing file ./16196/lede0rarq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0r_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9987820309273
Truncating current grating at 1747.9683542610364
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0r_cspec.fits
Processing product (16196, '0t')
Targets in visit (16196, '0t'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0t')
Processing grating COS/G130M
Importing files ['./16196/lede0to1q_x1d.fits', './16196/lede0to4q_x1d.fits', './16196/lede0to6q_x1d.fits', './16196/lede0tobq_x1d.fits']
Processing file ./16196/lede0to1q_x1d.fits
Processing file ./16196/lede0to4q_x1d.fits
Processing file ./16196/lede0to6q_x1d.fits
Processing file ./16196/lede0tobq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0t_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0togq_x1d.fits', './16196/lede0toiq_x1d.fits', './16196/lede0tokq_x1d.fits', './16196/lede0tomq_x1d.fits']
Processing file ./16196/lede0togq_x1d.fits
Processing file ./16196/lede0toiq_x1d.fits
Processing file ./16196/lede0tokq_x1d.fits
Processing file ./16196/lede0tomq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0t_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.8)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.809394449967
Truncating current grating at 1747.8824963992702
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0t_cspec.fits
Processing product (16196, '0u')
Targets in visit (16196, '0u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0u')
Processing grating COS/G130M
Importing files ['./16196/lede0uzeq_x1d.fits', './16196/lede0uzhq_x1d.fits', './16196/lede0uzjq_x1d.fits', './16196/lede0uzoq_x1d.fits']
Processing file ./16196/lede0uzeq_x1d.fits
Processing file ./16196/lede0uzhq_x1d.fits
Processing file ./16196/lede0uzjq_x1d.fits
Processing file ./16196/lede0uzoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0u_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0uztq_x1d.fits', './16196/lede0uzvq_x1d.fits', './16196/lede0uzxq_x1d.fits', './16196/lede0uzzq_x1d.fits']
Processing file ./16196/lede0uztq_x1d.fits
Processing file ./16196/lede0uzvq_x1d.fits
Processing file ./16196/lede0uzxq_x1d.fits
Processing file ./16196/lede0uzzq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0u_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0583583721166
Truncating current grating at 1747.8701026912433
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0u_cspec.fits
Processing product (16196, '0x')
Targets in visit (16196, '0x'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0x')
Processing grating COS/G130M
Importing files ['./16196/lede0xgrq_x1d.fits', './16196/lede0xgtq_x1d.fits', './16196/lede0xgvq_x1d.fits', './16196/lede0xgyq_x1d.fits']
Processing file ./16196/lede0xgrq_x1d.fits
Processing file ./16196/lede0xgtq_x1d.fits
Processing file ./16196/lede0xgvq_x1d.fits
Processing file ./16196/lede0xgyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0x_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '0y')
Targets in visit (16196, '0y'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0y')
Processing grating COS/G160M
Importing files ['./16196/lede0yh2q_x1d.fits', './16196/lede0yh4q_x1d.fits']
Processing file ./16196/lede0yh2q_x1d.fits
Processing file ./16196/lede0yh4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0y_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '0z')
Targets in visit (16196, '0z'): ['MRK-817']
Processing target MRK-817 in visit (16196, '0z')
Processing grating COS/G130M
Importing files ['./16196/lede0zz2q_x1d.fits', './16196/lede0zz4q_x1d.fits', './16196/lede0zz6q_x1d.fits', './16196/lede0zz8q_x1d.fits']
Processing file ./16196/lede0zz2q_x1d.fits
Processing file ./16196/lede0zz4q_x1d.fits
Processing file ./16196/lede0zz6q_x1d.fits
Processing file ./16196/lede0zz8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede0z_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede0zzaq_x1d.fits', './16196/lede0zzcq_x1d.fits', './16196/lede0zzeq_x1d.fits', './16196/lede0zzgq_x1d.fits']
Processing file ./16196/lede0zzaq_x1d.fits
Processing file ./16196/lede0zzcq_x1d.fits
Processing file ./16196/lede0zzeq_x1d.fits
Processing file ./16196/lede0zzgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede0z_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1861183868532
Truncating current grating at 1747.7348034867864
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede0z_cspec.fits
Processing product (16196, '10')
Targets in visit (16196, '10'): ['MRK-817']
Processing target MRK-817 in visit (16196, '10')
Processing grating COS/G130M
Importing files ['./16196/lede10iyq_x1d.fits', './16196/lede10j0q_x1d.fits', './16196/lede10j2q_x1d.fits', './16196/lede10j4q_x1d.fits']
Processing file ./16196/lede10iyq_x1d.fits
Processing file ./16196/lede10j0q_x1d.fits
Processing file ./16196/lede10j2q_x1d.fits
Processing file ./16196/lede10j4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede10_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede10j6q_x1d.fits', './16196/lede10j8q_x1d.fits', './16196/lede10jaq_x1d.fits', './16196/lede10jcq_x1d.fits']
Processing file ./16196/lede10j6q_x1d.fits
Processing file ./16196/lede10j8q_x1d.fits
Processing file ./16196/lede10jaq_x1d.fits
Processing file ./16196/lede10jcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede10_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2978793770124
Truncating current grating at 1747.9318982160767
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede10_cspec.fits
Processing product (16196, '11')
Targets in visit (16196, '11'): ['MRK-817']
Processing target MRK-817 in visit (16196, '11')
Processing grating COS/G130M
Importing files ['./16196/lede11a4q_x1d.fits', './16196/lede11a6q_x1d.fits', './16196/lede11a8q_x1d.fits', './16196/lede11aaq_x1d.fits']
Processing file ./16196/lede11a4q_x1d.fits
Processing file ./16196/lede11a6q_x1d.fits
Processing file ./16196/lede11a8q_x1d.fits
Processing file ./16196/lede11aaq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede11_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede11adq_x1d.fits', './16196/lede11afq_x1d.fits', './16196/lede11ahq_x1d.fits', './16196/lede11ajq_x1d.fits']
Processing file ./16196/lede11adq_x1d.fits
Processing file ./16196/lede11afq_x1d.fits
Processing file ./16196/lede11ahq_x1d.fits
Processing file ./16196/lede11ajq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede11_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.337752894577
Truncating current grating at 1747.9319277231707
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede11_cspec.fits
Processing product (16196, '12')
Targets in visit (16196, '12'): ['MRK-817']
Processing target MRK-817 in visit (16196, '12')
Processing grating COS/G130M
Importing files ['./16196/lede12lzq_x1d.fits', './16196/lede12m1q_x1d.fits', './16196/lede12m3q_x1d.fits', './16196/lede12m5q_x1d.fits']
Processing file ./16196/lede12lzq_x1d.fits
Processing file ./16196/lede12m1q_x1d.fits
Processing file ./16196/lede12m3q_x1d.fits
Processing file ./16196/lede12m5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede12_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede12m7q_x1d.fits', './16196/lede12m9q_x1d.fits', './16196/lede12mbq_x1d.fits', './16196/lede12mdq_x1d.fits']
Processing file ./16196/lede12m7q_x1d.fits
Processing file ./16196/lede12m9q_x1d.fits
Processing file ./16196/lede12mbq_x1d.fits
Processing file ./16196/lede12mdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede12_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.4-1367.3)
COS/G160M 1342-1800 (Actual: 1346.1-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3078698171475
Truncating current grating at 1747.8217080879983
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede12_cspec.fits
Processing product (16196, '14')
Targets in visit (16196, '14'): ['MRK-817']
Processing target MRK-817 in visit (16196, '14')
Processing grating COS/G130M
Importing files ['./16196/lede14jzq_x1d.fits', './16196/lede14k1q_x1d.fits', './16196/lede14k3q_x1d.fits', './16196/lede14k5q_x1d.fits']
Processing file ./16196/lede14jzq_x1d.fits
Processing file ./16196/lede14k1q_x1d.fits
Processing file ./16196/lede14k3q_x1d.fits
Processing file ./16196/lede14k5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede14_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede14k7q_x1d.fits', './16196/lede14k9q_x1d.fits', './16196/lede14kbq_x1d.fits', './16196/lede14kdq_x1d.fits']
Processing file ./16196/lede14k7q_x1d.fits
Processing file ./16196/lede14k9q_x1d.fits
Processing file ./16196/lede14kbq_x1d.fits
Processing file ./16196/lede14kdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede14_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2082080932832
Truncating current grating at 1747.882900606055
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede14_cspec.fits
Processing product (16196, '15')
Targets in visit (16196, '15'): ['MRK-817']
Processing target MRK-817 in visit (16196, '15')
Processing grating COS/G130M
Importing files ['./16196/lede15ngq_x1d.fits', './16196/lede15niq_x1d.fits', './16196/lede15nkq_x1d.fits', './16196/lede15nmq_x1d.fits']
Processing file ./16196/lede15ngq_x1d.fits
Processing file ./16196/lede15niq_x1d.fits
Processing file ./16196/lede15nkq_x1d.fits
Processing file ./16196/lede15nmq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede15_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede15noq_x1d.fits', './16196/lede15nqq_x1d.fits', './16196/lede15nsq_x1d.fits', './16196/lede15nuq_x1d.fits']
Processing file ./16196/lede15noq_x1d.fits
Processing file ./16196/lede15nqq_x1d.fits
Processing file ./16196/lede15nsq_x1d.fits
Processing file ./16196/lede15nuq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede15_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2480184516899
Truncating current grating at 1747.8705973106605
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede15_cspec.fits
Processing product (16196, '16')
Targets in visit (16196, '16'): ['MRK-817']
Processing target MRK-817 in visit (16196, '16')
Processing grating COS/G130M
Importing files ['./16196/lede16vzq_x1d.fits', './16196/lede16w2q_x1d.fits', './16196/lede16w4q_x1d.fits', './16196/lede16w6q_x1d.fits']
Processing file ./16196/lede16vzq_x1d.fits
Processing file ./16196/lede16w2q_x1d.fits
Processing file ./16196/lede16w4q_x1d.fits
Processing file ./16196/lede16w6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede16_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede16w8q_x1d.fits', './16196/lede16waq_x1d.fits', './16196/lede16wcq_x1d.fits', './16196/lede16weq_x1d.fits']
Processing file ./16196/lede16w8q_x1d.fits
Processing file ./16196/lede16waq_x1d.fits
Processing file ./16196/lede16wcq_x1d.fits
Processing file ./16196/lede16weq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede16_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1084907517666
Truncating current grating at 1747.8705332315428
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede16_cspec.fits
Processing product (16196, '17')
Targets in visit (16196, '17'): ['MRK-817']
Processing target MRK-817 in visit (16196, '17')
Processing grating COS/G130M
Importing files ['./16196/lede17hqq_x1d.fits', './16196/lede17hsq_x1d.fits', './16196/lede17huq_x1d.fits', './16196/lede17hwq_x1d.fits']
Processing file ./16196/lede17hqq_x1d.fits
Processing file ./16196/lede17hsq_x1d.fits
Processing file ./16196/lede17huq_x1d.fits
Processing file ./16196/lede17hwq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede17_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede17hyq_x1d.fits', './16196/lede17i0q_x1d.fits', './16196/lede17i2q_x1d.fits', './16196/lede17i4q_x1d.fits']
Processing file ./16196/lede17hyq_x1d.fits
Processing file ./16196/lede17i0q_x1d.fits
Processing file ./16196/lede17i2q_x1d.fits
Processing file ./16196/lede17i4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede17_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1681864577022
Truncating current grating at 1747.8826701627258
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede17_cspec.fits
Processing product (16196, '18')
Targets in visit (16196, '18'): ['MRK-817']
Processing target MRK-817 in visit (16196, '18')
Processing grating COS/G130M
Importing files ['./16196/lede18s8q_x1d.fits', './16196/lede18saq_x1d.fits', './16196/lede18scq_x1d.fits', './16196/lede18seq_x1d.fits']
Processing file ./16196/lede18s8q_x1d.fits
Processing file ./16196/lede18saq_x1d.fits
Processing file ./16196/lede18scq_x1d.fits
Processing file ./16196/lede18seq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede18_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede18sgq_x1d.fits', './16196/lede18siq_x1d.fits', './16196/lede18skq_x1d.fits', './16196/lede18smq_x1d.fits']
Processing file ./16196/lede18sgq_x1d.fits
Processing file ./16196/lede18siq_x1d.fits
Processing file ./16196/lede18skq_x1d.fits
Processing file ./16196/lede18smq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede18_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0883968896887
Truncating current grating at 1747.870305587762
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede18_cspec.fits
Processing product (16196, '19')
Targets in visit (16196, '19'): ['MRK-817']
Processing target MRK-817 in visit (16196, '19')
Processing grating COS/G130M
Importing files ['./16196/lede19msq_x1d.fits', './16196/lede19muq_x1d.fits', './16196/lede19mwq_x1d.fits', './16196/lede19myq_x1d.fits']
Processing file ./16196/lede19msq_x1d.fits
Processing file ./16196/lede19muq_x1d.fits
Processing file ./16196/lede19mwq_x1d.fits
Processing file ./16196/lede19myq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede19_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede19n1q_x1d.fits', './16196/lede19n3q_x1d.fits', './16196/lede19n5q_x1d.fits', './16196/lede19n7q_x1d.fits']
Processing file ./16196/lede19n1q_x1d.fits
Processing file ./16196/lede19n3q_x1d.fits
Processing file ./16196/lede19n5q_x1d.fits
Processing file ./16196/lede19n7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede19_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2078783727902
Truncating current grating at 1747.7967220944997
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede19_cspec.fits
Processing product (16196, '1b')
Targets in visit (16196, '1b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1b')
Processing grating COS/G130M
Importing files ['./16196/lede1bvgq_x1d.fits', './16196/lede1bviq_x1d.fits', './16196/lede1bvkq_x1d.fits', './16196/lede1bvmq_x1d.fits']
Processing file ./16196/lede1bvgq_x1d.fits
Processing file ./16196/lede1bviq_x1d.fits
Processing file ./16196/lede1bvkq_x1d.fits
Processing file ./16196/lede1bvmq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1b_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1bvoq_x1d.fits', './16196/lede1bvqq_x1d.fits', './16196/lede1bvsq_x1d.fits', './16196/lede1bvuq_x1d.fits']
Processing file ./16196/lede1bvoq_x1d.fits
Processing file ./16196/lede1bvqq_x1d.fits
Processing file ./16196/lede1bvsq_x1d.fits
Processing file ./16196/lede1bvuq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1069462489859
Truncating current grating at 1747.7600084548149
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1b_cspec.fits
Processing product (16196, '1c')
Targets in visit (16196, '1c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1c')
Processing grating COS/G130M
Importing files ['./16196/lede1cf2q_x1d.fits', './16196/lede1cf4q_x1d.fits', './16196/lede1cf6q_x1d.fits', './16196/lede1cf8q_x1d.fits']
Processing file ./16196/lede1cf2q_x1d.fits
Processing file ./16196/lede1cf4q_x1d.fits
Processing file ./16196/lede1cf6q_x1d.fits
Processing file ./16196/lede1cf8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1c_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1cfaq_x1d.fits', './16196/lede1cfcq_x1d.fits', './16196/lede1cfeq_x1d.fits', './16196/lede1cfgq_x1d.fits']
Processing file ./16196/lede1cfaq_x1d.fits
Processing file ./16196/lede1cfcq_x1d.fits
Processing file ./16196/lede1cfeq_x1d.fits
Processing file ./16196/lede1cfgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1869549950916
Truncating current grating at 1747.6747038209066
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1c_cspec.fits
Processing product (16196, '1e')
Targets in visit (16196, '1e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1e')
Processing grating COS/G130M
Importing files ['./16196/lede1ejlq_x1d.fits', './16196/lede1ejnq_x1d.fits', './16196/lede1ejpq_x1d.fits', './16196/lede1ejrq_x1d.fits']
Processing file ./16196/lede1ejlq_x1d.fits
Processing file ./16196/lede1ejnq_x1d.fits
Processing file ./16196/lede1ejpq_x1d.fits
Processing file ./16196/lede1ejrq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1e_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1ejtq_x1d.fits', './16196/lede1ejvq_x1d.fits', './16196/lede1ejxq_x1d.fits', './16196/lede1ejzq_x1d.fits']
Processing file ./16196/lede1ejtq_x1d.fits
Processing file ./16196/lede1ejvq_x1d.fits
Processing file ./16196/lede1ejxq_x1d.fits
Processing file ./16196/lede1ejzq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1e_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.287058967394
Truncating current grating at 1747.7120962336303
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1e_cspec.fits
Processing product (16196, '1g')
Targets in visit (16196, '1g'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1g')
Processing grating COS/G130M
Importing files ['./16196/lede1gaeq_x1d.fits', './16196/lede1gahq_x1d.fits', './16196/lede1gajq_x1d.fits', './16196/lede1gamq_x1d.fits']
Processing file ./16196/lede1gaeq_x1d.fits
Processing file ./16196/lede1gahq_x1d.fits
Processing file ./16196/lede1gajq_x1d.fits
Processing file ./16196/lede1gamq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1g_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1gaoq_x1d.fits', './16196/lede1gaqq_x1d.fits', './16196/lede1gbiq_x1d.fits', './16196/lede1gbkq_x1d.fits']
Processing file ./16196/lede1gaoq_x1d.fits
Processing file ./16196/lede1gaqq_x1d.fits
Processing file ./16196/lede1gbiq_x1d.fits
Processing file ./16196/lede1gbkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1g_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2677828249352
Truncating current grating at 1747.6884903471391
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1g_cspec.fits
Processing product (16196, '1h')
Targets in visit (16196, '1h'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1h')
Processing grating COS/G130M
Importing files ['./16196/lede1hhcq_x1d.fits', './16196/lede1hheq_x1d.fits', './16196/lede1hhgq_x1d.fits', './16196/lede1hhiq_x1d.fits']
Processing file ./16196/lede1hhcq_x1d.fits
Processing file ./16196/lede1hheq_x1d.fits
Processing file ./16196/lede1hhgq_x1d.fits
Processing file ./16196/lede1hhiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1h_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1hhkq_x1d.fits', './16196/lede1hhmq_x1d.fits', './16196/lede1hhoq_x1d.fits']
Processing file ./16196/lede1hhkq_x1d.fits
Processing file ./16196/lede1hhmq_x1d.fits
Processing file ./16196/lede1hhoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1h_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.3-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.31798721702
Truncating current grating at 1747.7012590313404
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1h_cspec.fits
Processing product (16196, '1i')
Targets in visit (16196, '1i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1i')
Processing grating COS/G130M
Importing files ['./16196/lede1irbq_x1d.fits', './16196/lede1irdq_x1d.fits', './16196/lede1irfq_x1d.fits', './16196/lede1irhq_x1d.fits']
Processing file ./16196/lede1irbq_x1d.fits
Processing file ./16196/lede1irdq_x1d.fits
Processing file ./16196/lede1irfq_x1d.fits
Processing file ./16196/lede1irhq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1i_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1irjq_x1d.fits', './16196/lede1irlq_x1d.fits', './16196/lede1irnq_x1d.fits', './16196/lede1irpq_x1d.fits']
Processing file ./16196/lede1irjq_x1d.fits
Processing file ./16196/lede1irlq_x1d.fits
Processing file ./16196/lede1irnq_x1d.fits
Processing file ./16196/lede1irpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2585164262593
Truncating current grating at 1747.7261631327144
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1i_cspec.fits
Processing product (16196, '1m')
Targets in visit (16196, '1m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1m')
Processing grating COS/G130M
Importing files ['./16196/lede1mtsq_x1d.fits', './16196/lede1mtuq_x1d.fits', './16196/lede1mtwq_x1d.fits', './16196/lede1mu1q_x1d.fits']
Processing file ./16196/lede1mtsq_x1d.fits
Processing file ./16196/lede1mtuq_x1d.fits
Processing file ./16196/lede1mtwq_x1d.fits
Processing file ./16196/lede1mu1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1m_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1mu3q_x1d.fits', './16196/lede1mu5q_x1d.fits', './16196/lede1mu7q_x1d.fits', './16196/lede1mu9q_x1d.fits']
Processing file ./16196/lede1mu3q_x1d.fits
Processing file ./16196/lede1mu5q_x1d.fits
Processing file ./16196/lede1mu7q_x1d.fits
Processing file ./16196/lede1mu9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2400241903026
Truncating current grating at 1747.8015832487984
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1m_cspec.fits
Processing product (16196, '1n')
Targets in visit (16196, '1n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1n')
Processing grating COS/G130M
Importing files ['./16196/lede1noiq_x1d.fits', './16196/lede1nokq_x1d.fits', './16196/lede1nomq_x1d.fits', './16196/lede1nooq_x1d.fits']
Processing file ./16196/lede1noiq_x1d.fits
Processing file ./16196/lede1nokq_x1d.fits
Processing file ./16196/lede1nomq_x1d.fits
Processing file ./16196/lede1nooq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1n_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1noqq_x1d.fits', './16196/lede1nosq_x1d.fits', './16196/lede1nouq_x1d.fits', './16196/lede1nowq_x1d.fits']
Processing file ./16196/lede1noqq_x1d.fits
Processing file ./16196/lede1nosq_x1d.fits
Processing file ./16196/lede1nouq_x1d.fits
Processing file ./16196/lede1nowq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.140760841836
Truncating current grating at 1747.814317404721
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1n_cspec.fits
Processing product (16196, '1o')
Targets in visit (16196, '1o'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1o')
Processing grating COS/G130M
Importing files ['./16196/lede1oceq_x1d.fits', './16196/lede1ocgq_x1d.fits', './16196/lede1ociq_x1d.fits', './16196/lede1ockq_x1d.fits']
Processing file ./16196/lede1oceq_x1d.fits
Processing file ./16196/lede1ocgq_x1d.fits
Processing file ./16196/lede1ociq_x1d.fits
Processing file ./16196/lede1ockq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1o_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1ocmq_x1d.fits', './16196/lede1ocoq_x1d.fits', './16196/lede1ocqq_x1d.fits', './16196/lede1ocsq_x1d.fits']
Processing file ./16196/lede1ocmq_x1d.fits
Processing file ./16196/lede1ocoq_x1d.fits
Processing file ./16196/lede1ocqq_x1d.fits
Processing file ./16196/lede1ocsq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1o_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2107947999061
Truncating current grating at 1747.9004499693488
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1o_cspec.fits
Processing product (16196, '1p')
Targets in visit (16196, '1p'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1p')
Processing grating COS/G130M
Importing files ['./16196/lede1pkjq_x1d.fits', './16196/lede1pklq_x1d.fits', './16196/lede1pknq_x1d.fits', './16196/lede1pkpq_x1d.fits']
Processing file ./16196/lede1pkjq_x1d.fits
Processing file ./16196/lede1pklq_x1d.fits
Processing file ./16196/lede1pknq_x1d.fits
Processing file ./16196/lede1pkpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1p_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1pkrq_x1d.fits', './16196/lede1pktq_x1d.fits', './16196/lede1pkvq_x1d.fits', './16196/lede1pkxq_x1d.fits']
Processing file ./16196/lede1pkrq_x1d.fits
Processing file ./16196/lede1pktq_x1d.fits
Processing file ./16196/lede1pkvq_x1d.fits
Processing file ./16196/lede1pkxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1p_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1414288409007
Truncating current grating at 1747.8397176049875
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1p_cspec.fits
Processing product (16196, '1q')
Targets in visit (16196, '1q'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1q')
Processing grating COS/G130M
Importing files ['./16196/lede1qspq_x1d.fits', './16196/lede1qsrq_x1d.fits', './16196/lede1qstq_x1d.fits', './16196/lede1qsvq_x1d.fits']
Processing file ./16196/lede1qspq_x1d.fits
Processing file ./16196/lede1qsrq_x1d.fits
Processing file ./16196/lede1qstq_x1d.fits
Processing file ./16196/lede1qsvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1q_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1qsxq_x1d.fits', './16196/lede1qszq_x1d.fits', './16196/lede1qt1q_x1d.fits', './16196/lede1qt3q_x1d.fits']
Processing file ./16196/lede1qsxq_x1d.fits
Processing file ./16196/lede1qszq_x1d.fits
Processing file ./16196/lede1qt1q_x1d.fits
Processing file ./16196/lede1qt3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1q_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1716697052416
Truncating current grating at 1747.8279486541135
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1q_cspec.fits
Processing product (16196, '1r')
Targets in visit (16196, '1r'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1r')
Processing grating COS/G130M
Importing files ['./16196/lede1rmeq_x1d.fits', './16196/lede1rmgq_x1d.fits', './16196/lede1rmiq_x1d.fits', './16196/lede1rmkq_x1d.fits']
Processing file ./16196/lede1rmeq_x1d.fits
Processing file ./16196/lede1rmgq_x1d.fits
Processing file ./16196/lede1rmiq_x1d.fits
Processing file ./16196/lede1rmkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1r_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '1s')
Targets in visit (16196, '1s'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1s')
Processing grating COS/G130M
Importing files ['./16196/lede1suaq_x1d.fits', './16196/lede1sucq_x1d.fits', './16196/lede1sueq_x1d.fits', './16196/lede1sugq_x1d.fits']
Processing file ./16196/lede1suaq_x1d.fits
Processing file ./16196/lede1sucq_x1d.fits
Processing file ./16196/lede1sueq_x1d.fits
Processing file ./16196/lede1sugq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1s_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '1t')
Targets in visit (16196, '1t'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1t')
Processing grating COS/G160M
Importing files ['./16196/lede1tukq_x1d.fits', './16196/lede1tumq_x1d.fits']
Processing file ./16196/lede1tukq_x1d.fits
Processing file ./16196/lede1tumq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1t_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '1u')
Targets in visit (16196, '1u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1u')
Processing grating COS/G130M
Importing files ['./16196/lede1ucsq_x1d.fits', './16196/lede1ucuq_x1d.fits', './16196/lede1ucwq_x1d.fits', './16196/lede1ucyq_x1d.fits']
Processing file ./16196/lede1ucsq_x1d.fits
Processing file ./16196/lede1ucuq_x1d.fits
Processing file ./16196/lede1ucwq_x1d.fits
Processing file ./16196/lede1ucyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1u_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '1v')
Targets in visit (16196, '1v'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1v')
Processing grating COS/G160M
Importing files ['./16196/lede1vd2q_x1d.fits', './16196/lede1vd4q_x1d.fits']
Processing file ./16196/lede1vd2q_x1d.fits
Processing file ./16196/lede1vd4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1v_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '1w')
Targets in visit (16196, '1w'): ['MRK-817']
Processing target MRK-817 in visit (16196, '1w')
Processing grating COS/G130M
Importing files ['./16196/lede1wsvq_x1d.fits', './16196/lede1wsxq_x1d.fits', './16196/lede1wszq_x1d.fits', './16196/lede1wt1q_x1d.fits']
Processing file ./16196/lede1wsvq_x1d.fits
Processing file ./16196/lede1wsxq_x1d.fits
Processing file ./16196/lede1wszq_x1d.fits
Processing file ./16196/lede1wt1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede1w_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede1wt3q_x1d.fits', './16196/lede1wt5q_x1d.fits', './16196/lede1wt7q_x1d.fits', './16196/lede1wt9q_x1d.fits']
Processing file ./16196/lede1wt3q_x1d.fits
Processing file ./16196/lede1wt5q_x1d.fits
Processing file ./16196/lede1wt7q_x1d.fits
Processing file ./16196/lede1wt9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede1w_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1742595491237
Truncating current grating at 1747.8517059566843
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede1w_cspec.fits
Processing product (16196, '20')
Targets in visit (16196, '20'): ['MRK-817']
Processing target MRK-817 in visit (16196, '20')
Processing grating COS/G130M
Importing files ['./16196/lede20alq_x1d.fits', './16196/lede20anq_x1d.fits', './16196/lede20apq_x1d.fits', './16196/lede20arq_x1d.fits']
Processing file ./16196/lede20alq_x1d.fits
Processing file ./16196/lede20anq_x1d.fits
Processing file ./16196/lede20apq_x1d.fits
Processing file ./16196/lede20arq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede20_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede20atq_x1d.fits', './16196/lede20avq_x1d.fits', './16196/lede20axq_x1d.fits', './16196/lede20azq_x1d.fits']
Processing file ./16196/lede20atq_x1d.fits
Processing file ./16196/lede20avq_x1d.fits
Processing file ./16196/lede20axq_x1d.fits
Processing file ./16196/lede20azq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede20_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2177245632445
Truncating current grating at 1747.7965642440402
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede20_cspec.fits
Processing product (16196, '21')
Targets in visit (16196, '21'): ['MRK-817']
Processing target MRK-817 in visit (16196, '21')
Processing grating COS/G130M
Importing files ['./16196/lede21keq_x1d.fits', './16196/lede21kgq_x1d.fits', './16196/lede21kiq_x1d.fits', './16196/lede21kkq_x1d.fits']
Processing file ./16196/lede21keq_x1d.fits
Processing file ./16196/lede21kgq_x1d.fits
Processing file ./16196/lede21kiq_x1d.fits
Processing file ./16196/lede21kkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede21_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede21kmq_x1d.fits', './16196/lede21koq_x1d.fits', './16196/lede21kqq_x1d.fits', './16196/lede21ksq_x1d.fits']
Processing file ./16196/lede21kmq_x1d.fits
Processing file ./16196/lede21koq_x1d.fits
Processing file ./16196/lede21kqq_x1d.fits
Processing file ./16196/lede21ksq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede21_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2076291135818
Truncating current grating at 1747.8453746288017
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede21_cspec.fits
Processing product (16196, '22')
Targets in visit (16196, '22'): ['MRK-817']
Processing target MRK-817 in visit (16196, '22')
Processing grating COS/G130M
Importing files ['./16196/lede22loq_x1d.fits', './16196/lede22lqq_x1d.fits', './16196/lede22lsq_x1d.fits', './16196/lede22luq_x1d.fits']
Processing file ./16196/lede22loq_x1d.fits
Processing file ./16196/lede22lqq_x1d.fits
Processing file ./16196/lede22lsq_x1d.fits
Processing file ./16196/lede22luq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede22_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede22lwq_x1d.fits', './16196/lede22lyq_x1d.fits', './16196/lede22m0q_x1d.fits', './16196/lede22m2q_x1d.fits']
Processing file ./16196/lede22lwq_x1d.fits
Processing file ./16196/lede22lyq_x1d.fits
Processing file ./16196/lede22m0q_x1d.fits
Processing file ./16196/lede22m2q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede22_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.277205709817
Truncating current grating at 1747.8574009633462
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede22_cspec.fits
Processing product (16196, '23')
Targets in visit (16196, '23'): ['MRK-817']
Processing target MRK-817 in visit (16196, '23')
Processing grating COS/G130M
Importing files ['./16196/lede23upq_x1d.fits', './16196/lede23urq_x1d.fits', './16196/lede23utq_x1d.fits', './16196/lede23uvq_x1d.fits']
Processing file ./16196/lede23upq_x1d.fits
Processing file ./16196/lede23urq_x1d.fits
Processing file ./16196/lede23utq_x1d.fits
Processing file ./16196/lede23uvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede23_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede23uxq_x1d.fits', './16196/lede23uzq_x1d.fits', './16196/lede23v1q_x1d.fits', './16196/lede23v3q_x1d.fits']
Processing file ./16196/lede23uxq_x1d.fits
Processing file ./16196/lede23uzq_x1d.fits
Processing file ./16196/lede23v1q_x1d.fits
Processing file ./16196/lede23v3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede23_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.207339045076
Truncating current grating at 1747.8817245568644
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede23_cspec.fits
Processing product (16196, '24')
Targets in visit (16196, '24'): ['MRK-817']
Processing target MRK-817 in visit (16196, '24')
Processing grating COS/G130M
Importing files ['./16196/lede24jsq_x1d.fits', './16196/lede24juq_x1d.fits', './16196/lede24jwq_x1d.fits', './16196/lede24jyq_x1d.fits']
Processing file ./16196/lede24jsq_x1d.fits
Processing file ./16196/lede24juq_x1d.fits
Processing file ./16196/lede24jwq_x1d.fits
Processing file ./16196/lede24jyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede24_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede24k0q_x1d.fits', './16196/lede24k2q_x1d.fits', './16196/lede24k4q_x1d.fits', './16196/lede24k6q_x1d.fits']
Processing file ./16196/lede24k0q_x1d.fits
Processing file ./16196/lede24k2q_x1d.fits
Processing file ./16196/lede24k4q_x1d.fits
Processing file ./16196/lede24k6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede24_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1473848124633
Truncating current grating at 1747.881485021171
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede24_cspec.fits
Processing product (16196, '25')
Targets in visit (16196, '25'): ['MRK-817']
Processing target MRK-817 in visit (16196, '25')
Processing grating COS/G130M
Importing files ['./16196/lede25rzq_x1d.fits', './16196/lede25s1q_x1d.fits', './16196/lede25s3q_x1d.fits', './16196/lede25s5q_x1d.fits']
Processing file ./16196/lede25rzq_x1d.fits
Processing file ./16196/lede25s1q_x1d.fits
Processing file ./16196/lede25s3q_x1d.fits
Processing file ./16196/lede25s5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede25_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede25s7q_x1d.fits', './16196/lede25s9q_x1d.fits', './16196/lede25sbq_x1d.fits', './16196/lede25sdq_x1d.fits']
Processing file ./16196/lede25s7q_x1d.fits
Processing file ./16196/lede25s9q_x1d.fits
Processing file ./16196/lede25sbq_x1d.fits
Processing file ./16196/lede25sdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede25_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1366.9)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9280420329596
Truncating current grating at 1747.8812684879176
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede25_cspec.fits
Processing product (16196, '26')
Targets in visit (16196, '26'): ['MRK-817']
Processing target MRK-817 in visit (16196, '26')
Processing grating COS/G130M
Importing files ['./16196/lede26k2q_x1d.fits', './16196/lede26k4q_x1d.fits', './16196/lede26k6q_x1d.fits', './16196/lede26k8q_x1d.fits']
Processing file ./16196/lede26k2q_x1d.fits
Processing file ./16196/lede26k4q_x1d.fits
Processing file ./16196/lede26k6q_x1d.fits
Processing file ./16196/lede26k8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede26_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede26kaq_x1d.fits', './16196/lede26kcq_x1d.fits', './16196/lede26keq_x1d.fits', './16196/lede26kgq_x1d.fits']
Processing file ./16196/lede26kaq_x1d.fits
Processing file ./16196/lede26kcq_x1d.fits
Processing file ./16196/lede26keq_x1d.fits
Processing file ./16196/lede26kgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede26_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1569138940433
Truncating current grating at 1747.8686509501283
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede26_cspec.fits
Processing product (16196, '27')
Targets in visit (16196, '27'): ['MRK-817']
Processing target MRK-817 in visit (16196, '27')
Processing grating COS/G130M
Importing files ['./16196/lede27qjq_x1d.fits', './16196/lede27qlq_x1d.fits', './16196/lede27qnq_x1d.fits', './16196/lede27qpq_x1d.fits']
Processing file ./16196/lede27qjq_x1d.fits
Processing file ./16196/lede27qlq_x1d.fits
Processing file ./16196/lede27qnq_x1d.fits
Processing file ./16196/lede27qpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede27_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede27qrq_x1d.fits', './16196/lede27qtq_x1d.fits', './16196/lede27qvq_x1d.fits', './16196/lede27qxq_x1d.fits']
Processing file ./16196/lede27qrq_x1d.fits
Processing file ./16196/lede27qtq_x1d.fits
Processing file ./16196/lede27qvq_x1d.fits
Processing file ./16196/lede27qxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede27_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.067098247392
Truncating current grating at 1747.8194583912114
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede27_cspec.fits
Processing product (16196, '28')
Targets in visit (16196, '28'): ['MRK-817']
Processing target MRK-817 in visit (16196, '28')
Processing grating COS/G130M
Importing files ['./16196/lede28a5q_x1d.fits', './16196/lede28a7q_x1d.fits', './16196/lede28a9q_x1d.fits', './16196/lede28abq_x1d.fits']
Processing file ./16196/lede28a5q_x1d.fits
Processing file ./16196/lede28a7q_x1d.fits
Processing file ./16196/lede28a9q_x1d.fits
Processing file ./16196/lede28abq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede28_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede28adq_x1d.fits', './16196/lede28afq_x1d.fits', './16196/lede28ahq_x1d.fits', './16196/lede28ajq_x1d.fits']
Processing file ./16196/lede28adq_x1d.fits
Processing file ./16196/lede28afq_x1d.fits
Processing file ./16196/lede28ahq_x1d.fits
Processing file ./16196/lede28ajq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede28_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2462034354685
Truncating current grating at 1747.7946583418768
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede28_cspec.fits
Processing product (16196, '29')
Targets in visit (16196, '29'): ['MRK-817']
Processing target MRK-817 in visit (16196, '29')
Processing grating COS/G130M
Importing files ['./16196/lede29hzq_x1d.fits', './16196/lede29i1q_x1d.fits', './16196/lede29i3q_x1d.fits', './16196/lede29i5q_x1d.fits']
Processing file ./16196/lede29hzq_x1d.fits
Processing file ./16196/lede29i1q_x1d.fits
Processing file ./16196/lede29i3q_x1d.fits
Processing file ./16196/lede29i5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede29_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede29i8q_x1d.fits', './16196/lede29iaq_x1d.fits', './16196/lede29icq_x1d.fits', './16196/lede29ieq_x1d.fits']
Processing file ./16196/lede29i8q_x1d.fits
Processing file ./16196/lede29iaq_x1d.fits
Processing file ./16196/lede29icq_x1d.fits
Processing file ./16196/lede29ieq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede29_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0865018709774
Truncating current grating at 1747.8554944405
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede29_cspec.fits
Processing product (16196, '2a')
Targets in visit (16196, '2a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2a')
Processing grating COS/G130M
Importing files ['./16196/lede2ataq_x1d.fits', './16196/lede2atcq_x1d.fits', './16196/lede2ateq_x1d.fits', './16196/lede2atgq_x1d.fits']
Processing file ./16196/lede2ataq_x1d.fits
Processing file ./16196/lede2atcq_x1d.fits
Processing file ./16196/lede2ateq_x1d.fits
Processing file ./16196/lede2atgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2a_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2atiq_x1d.fits', './16196/lede2atkq_x1d.fits', './16196/lede2atmq_x1d.fits', './16196/lede2atoq_x1d.fits']
Processing file ./16196/lede2atiq_x1d.fits
Processing file ./16196/lede2atkq_x1d.fits
Processing file ./16196/lede2atmq_x1d.fits
Processing file ./16196/lede2atoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2a_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1458461395873
Truncating current grating at 1747.8659451391923
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2a_cspec.fits
Processing product (16196, '2b')
Targets in visit (16196, '2b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2b')
Processing grating COS/G130M
Importing files ['./16196/lede2bb4q_x1d.fits', './16196/lede2bb6q_x1d.fits', './16196/lede2bb8q_x1d.fits', './16196/lede2bbaq_x1d.fits']
Processing file ./16196/lede2bb4q_x1d.fits
Processing file ./16196/lede2bb6q_x1d.fits
Processing file ./16196/lede2bb8q_x1d.fits
Processing file ./16196/lede2bbaq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2b_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2bbcq_x1d.fits', './16196/lede2bbhq_x1d.fits', './16196/lede2bbjq_x1d.fits', './16196/lede2bblq_x1d.fits']
Processing file ./16196/lede2bbcq_x1d.fits
Processing file ./16196/lede2bbhq_x1d.fits
Processing file ./16196/lede2bbjq_x1d.fits
Processing file ./16196/lede2bblq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.156200125195
Truncating current grating at 1747.8542273458413
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2b_cspec.fits
Processing product (16196, '2c')
Targets in visit (16196, '2c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2c')
Processing grating COS/G130M
Importing files ['./16196/lede2cisq_x1d.fits', './16196/lede2ciuq_x1d.fits', './16196/lede2ciwq_x1d.fits', './16196/lede2ciyq_x1d.fits']
Processing file ./16196/lede2cisq_x1d.fits
Processing file ./16196/lede2ciuq_x1d.fits
Processing file ./16196/lede2ciwq_x1d.fits
Processing file ./16196/lede2ciyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2c_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2cj0q_x1d.fits', './16196/lede2cj2q_x1d.fits', './16196/lede2cj4q_x1d.fits', './16196/lede2cj6q_x1d.fits']
Processing file ./16196/lede2cj0q_x1d.fits
Processing file ./16196/lede2cj2q_x1d.fits
Processing file ./16196/lede2cj4q_x1d.fits
Processing file ./16196/lede2cj6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2562311403804
Truncating current grating at 1747.8180350368111
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2c_cspec.fits
Processing product (16196, '2d')
Targets in visit (16196, '2d'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2d')
Processing grating COS/G130M
Importing files ['./16196/lede2dokq_x1d.fits', './16196/lede2domq_x1d.fits', './16196/lede2dorq_x1d.fits', './16196/lede2dotq_x1d.fits']
Processing file ./16196/lede2dokq_x1d.fits
Processing file ./16196/lede2domq_x1d.fits
Processing file ./16196/lede2dorq_x1d.fits
Processing file ./16196/lede2dotq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2d_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2dowq_x1d.fits', './16196/lede2doyq_x1d.fits', './16196/lede2dp0q_x1d.fits', './16196/lede2dp3q_x1d.fits']
Processing file ./16196/lede2dowq_x1d.fits
Processing file ./16196/lede2doyq_x1d.fits
Processing file ./16196/lede2dp0q_x1d.fits
Processing file ./16196/lede2dp3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2d_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.216828239596
Truncating current grating at 1747.8186392125253
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2d_cspec.fits
Processing product (16196, '2e')
Targets in visit (16196, '2e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2e')
Processing grating COS/G130M
Importing files ['./16196/lede2eyeq_x1d.fits', './16196/lede2eygq_x1d.fits', './16196/lede2eyiq_x1d.fits', './16196/lede2eylq_x1d.fits']
Processing file ./16196/lede2eyeq_x1d.fits
Processing file ./16196/lede2eygq_x1d.fits
Processing file ./16196/lede2eyiq_x1d.fits
Processing file ./16196/lede2eylq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2e_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2eynq_x1d.fits', './16196/lede2eyqq_x1d.fits', './16196/lede2eysq_x1d.fits', './16196/lede2eyuq_x1d.fits']
Processing file ./16196/lede2eynq_x1d.fits
Processing file ./16196/lede2eyqq_x1d.fits
Processing file ./16196/lede2eysq_x1d.fits
Processing file ./16196/lede2eyuq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2e_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2471344944581
Truncating current grating at 1747.8804399631226
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2e_cspec.fits
Processing product (16196, '2f')
Targets in visit (16196, '2f'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2f')
Processing grating COS/G130M
Importing files ['./16196/lede2fhvq_x1d.fits', './16196/lede2fhxq_x1d.fits', './16196/lede2fhzq_x1d.fits', './16196/lede2fi1q_x1d.fits']
Processing file ./16196/lede2fhvq_x1d.fits
Processing file ./16196/lede2fhxq_x1d.fits
Processing file ./16196/lede2fhzq_x1d.fits
Processing file ./16196/lede2fi1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2f_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2fi3q_x1d.fits', './16196/lede2fi5q_x1d.fits', './16196/lede2fi7q_x1d.fits', './16196/lede2fi9q_x1d.fits']
Processing file ./16196/lede2fi3q_x1d.fits
Processing file ./16196/lede2fi5q_x1d.fits
Processing file ./16196/lede2fi7q_x1d.fits
Processing file ./16196/lede2fi9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2f_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2675048043247
Truncating current grating at 1747.8687945014462
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2f_cspec.fits
Processing product (16196, '2g')
Targets in visit (16196, '2g'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2g')
Processing grating COS/G130M
Importing files ['./16196/lede2gf0q_x1d.fits', './16196/lede2gf2q_x1d.fits', './16196/lede2gf4q_x1d.fits', './16196/lede2gf6q_x1d.fits']
Processing file ./16196/lede2gf0q_x1d.fits
Processing file ./16196/lede2gf2q_x1d.fits
Processing file ./16196/lede2gf4q_x1d.fits
Processing file ./16196/lede2gf6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2g_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2gf8q_x1d.fits', './16196/lede2gfaq_x1d.fits', './16196/lede2gfcq_x1d.fits', './16196/lede2gfxq_x1d.fits']
Processing file ./16196/lede2gf8q_x1d.fits
Processing file ./16196/lede2gfaq_x1d.fits
Processing file ./16196/lede2gfcq_x1d.fits
Processing file ./16196/lede2gfxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2g_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2579578139598
Truncating current grating at 1747.8448618853731
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2g_cspec.fits
Processing product (16196, '2h')
Targets in visit (16196, '2h'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2h')
Processing grating COS/G130M
Importing files ['./16196/lede2hqxq_x1d.fits', './16196/lede2hqzq_x1d.fits', './16196/lede2hr1q_x1d.fits', './16196/lede2hr3q_x1d.fits']
Processing file ./16196/lede2hqxq_x1d.fits
Processing file ./16196/lede2hqzq_x1d.fits
Processing file ./16196/lede2hr1q_x1d.fits
Processing file ./16196/lede2hr3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2h_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2hr5q_x1d.fits', './16196/lede2hr7q_x1d.fits', './16196/lede2hr9q_x1d.fits', './16196/lede2hrbq_x1d.fits']
Processing file ./16196/lede2hr5q_x1d.fits
Processing file ./16196/lede2hr7q_x1d.fits
Processing file ./16196/lede2hr9q_x1d.fits
Processing file ./16196/lede2hrbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2h_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.308184004033
Truncating current grating at 1747.8454202727467
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2h_cspec.fits
Processing product (16196, '2i')
Targets in visit (16196, '2i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2i')
Processing grating COS/G130M
Importing files ['./16196/lede2ib3q_x1d.fits', './16196/lede2ib5q_x1d.fits', './16196/lede2ib7q_x1d.fits', './16196/lede2ib9q_x1d.fits']
Processing file ./16196/lede2ib3q_x1d.fits
Processing file ./16196/lede2ib5q_x1d.fits
Processing file ./16196/lede2ib7q_x1d.fits
Processing file ./16196/lede2ib9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2i_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2ibbq_x1d.fits', './16196/lede2ibdq_x1d.fits', './16196/lede2ibfq_x1d.fits', './16196/lede2ibhq_x1d.fits']
Processing file ./16196/lede2ibbq_x1d.fits
Processing file ./16196/lede2ibdq_x1d.fits
Processing file ./16196/lede2ibfq_x1d.fits
Processing file ./16196/lede2ibhq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2388564623252
Truncating current grating at 1747.7479982654177
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2i_cspec.fits
Processing product (16196, '2j')
Targets in visit (16196, '2j'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2j')
Processing grating COS/G130M
Importing files ['./16196/lede2jjoq_x1d.fits', './16196/lede2jjqq_x1d.fits', './16196/lede2jjsq_x1d.fits', './16196/lede2jjuq_x1d.fits']
Processing file ./16196/lede2jjoq_x1d.fits
Processing file ./16196/lede2jjqq_x1d.fits
Processing file ./16196/lede2jjsq_x1d.fits
Processing file ./16196/lede2jjuq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2j_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2jjwq_x1d.fits', './16196/lede2jjyq_x1d.fits', './16196/lede2jk0q_x1d.fits', './16196/lede2jk2q_x1d.fits']
Processing file ./16196/lede2jjwq_x1d.fits
Processing file ./16196/lede2jjyq_x1d.fits
Processing file ./16196/lede2jk0q_x1d.fits
Processing file ./16196/lede2jk2q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2j_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2391825623781
Truncating current grating at 1747.7606858548975
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2j_cspec.fits
Processing product (16196, '2k')
Targets in visit (16196, '2k'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2k')
Processing grating COS/G130M
Importing files ['./16196/lede2kkaq_x1d.fits', './16196/lede2kkcq_x1d.fits', './16196/lede2kkhq_x1d.fits', './16196/lede2kkjq_x1d.fits']
Processing file ./16196/lede2kkaq_x1d.fits
Processing file ./16196/lede2kkcq_x1d.fits
Processing file ./16196/lede2kkhq_x1d.fits
Processing file ./16196/lede2kkjq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2k_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2kkmq_x1d.fits', './16196/lede2kkoq_x1d.fits', './16196/lede2kkqq_x1d.fits', './16196/lede2kktq_x1d.fits']
Processing file ./16196/lede2kkmq_x1d.fits
Processing file ./16196/lede2kkoq_x1d.fits
Processing file ./16196/lede2kkqq_x1d.fits
Processing file ./16196/lede2kktq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2k_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0404150266204
Truncating current grating at 1747.8225763496657
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2k_cspec.fits
Processing product (16196, '2l')
Targets in visit (16196, '2l'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2l')
Processing grating COS/G130M
Importing files ['./16196/lede2ls0q_x1d.fits', './16196/lede2ls2q_x1d.fits', './16196/lede2ls4q_x1d.fits', './16196/lede2ls6q_x1d.fits']
Processing file ./16196/lede2ls0q_x1d.fits
Processing file ./16196/lede2ls2q_x1d.fits
Processing file ./16196/lede2ls4q_x1d.fits
Processing file ./16196/lede2ls6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2l_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2ls8q_x1d.fits', './16196/lede2lsaq_x1d.fits', './16196/lede2lscq_x1d.fits', './16196/lede2lseq_x1d.fits']
Processing file ./16196/lede2ls8q_x1d.fits
Processing file ./16196/lede2lsaq_x1d.fits
Processing file ./16196/lede2lscq_x1d.fits
Processing file ./16196/lede2lseq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2l_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.230010888438
Truncating current grating at 1747.8229899416738
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2l_cspec.fits
Processing product (16196, '2m')
Targets in visit (16196, '2m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2m')
Processing grating COS/G130M
Importing files ['./16196/lede2mauq_x1d.fits', './16196/lede2mawq_x1d.fits', './16196/lede2mayq_x1d.fits', './16196/lede2mb0q_x1d.fits']
Processing file ./16196/lede2mauq_x1d.fits
Processing file ./16196/lede2mawq_x1d.fits
Processing file ./16196/lede2mayq_x1d.fits
Processing file ./16196/lede2mb0q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2m_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2mb2q_x1d.fits', './16196/lede2mb4q_x1d.fits', './16196/lede2mb6q_x1d.fits', './16196/lede2mb8q_x1d.fits']
Processing file ./16196/lede2mb2q_x1d.fits
Processing file ./16196/lede2mb4q_x1d.fits
Processing file ./16196/lede2mb6q_x1d.fits
Processing file ./16196/lede2mb8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.8)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.8119756877566
Truncating current grating at 1747.8112774168255
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2m_cspec.fits
Processing product (16196, '2n')
Targets in visit (16196, '2n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2n')
Processing grating COS/G130M
Importing files ['./16196/lede2nknq_x1d.fits', './16196/lede2nkqq_x1d.fits', './16196/lede2nkuq_x1d.fits', './16196/lede2nkwq_x1d.fits']
Processing file ./16196/lede2nknq_x1d.fits
Processing file ./16196/lede2nkqq_x1d.fits
Processing file ./16196/lede2nkuq_x1d.fits
Processing file ./16196/lede2nkwq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2n_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2nkyq_x1d.fits', './16196/lede2nl3q_x1d.fits', './16196/lede2nl5q_x1d.fits', './16196/lede2nl7q_x1d.fits']
Processing file ./16196/lede2nkyq_x1d.fits
Processing file ./16196/lede2nl3q_x1d.fits
Processing file ./16196/lede2nl5q_x1d.fits
Processing file ./16196/lede2nl7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.098086882625
Truncating current grating at 1747.8699362406926
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2n_cspec.fits
Processing product (16196, '2u')
Targets in visit (16196, '2u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2u')
Processing grating COS/G130M
Importing files ['./16196/lede2ua2q_x1d.fits', './16196/lede2uzvq_x1d.fits', './16196/lede2uzxq_x1d.fits', './16196/lede2uzzq_x1d.fits']
Processing file ./16196/lede2ua2q_x1d.fits
Processing file ./16196/lede2uzvq_x1d.fits
Processing file ./16196/lede2uzxq_x1d.fits
Processing file ./16196/lede2uzzq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2u_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2ua4q_x1d.fits', './16196/lede2ua6q_x1d.fits', './16196/lede2ua8q_x1d.fits', './16196/lede2uaaq_x1d.fits']
Processing file ./16196/lede2ua4q_x1d.fits
Processing file ./16196/lede2ua6q_x1d.fits
Processing file ./16196/lede2ua8q_x1d.fits
Processing file ./16196/lede2uaaq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2u_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0470248264046
Truncating current grating at 1747.8070111746379
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2u_cspec.fits
Processing product (16196, '2y')
Targets in visit (16196, '2y'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2y')
Processing grating COS/G130M
Importing files ['./16196/lede2yd3q_x1d.fits', './16196/lede2yd5q_x1d.fits', './16196/lede2yd7q_x1d.fits', './16196/lede2yd9q_x1d.fits']
Processing file ./16196/lede2yd3q_x1d.fits
Processing file ./16196/lede2yd5q_x1d.fits
Processing file ./16196/lede2yd7q_x1d.fits
Processing file ./16196/lede2yd9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2y_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2ydbq_x1d.fits', './16196/lede2yddq_x1d.fits', './16196/lede2ydfq_x1d.fits', './16196/lede2ydhq_x1d.fits']
Processing file ./16196/lede2ydbq_x1d.fits
Processing file ./16196/lede2yddq_x1d.fits
Processing file ./16196/lede2ydfq_x1d.fits
Processing file ./16196/lede2ydhq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2y_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1367.1)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0966367790202
Truncating current grating at 1747.8802219195768
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2y_cspec.fits
Processing product (16196, '2z')
Targets in visit (16196, '2z'): ['MRK-817']
Processing target MRK-817 in visit (16196, '2z')
Processing grating COS/G130M
Importing files ['./16196/lede2zo6q_x1d.fits', './16196/lede2zo8q_x1d.fits', './16196/lede2zoaq_x1d.fits', './16196/lede2zocq_x1d.fits']
Processing file ./16196/lede2zo6q_x1d.fits
Processing file ./16196/lede2zo8q_x1d.fits
Processing file ./16196/lede2zoaq_x1d.fits
Processing file ./16196/lede2zocq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede2z_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede2zoeq_x1d.fits', './16196/lede2zogq_x1d.fits', './16196/lede2zoiq_x1d.fits', './16196/lede2zokq_x1d.fits']
Processing file ./16196/lede2zoeq_x1d.fits
Processing file ./16196/lede2zogq_x1d.fits
Processing file ./16196/lede2zoiq_x1d.fits
Processing file ./16196/lede2zokq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede2z_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1366.9)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9270235881559
Truncating current grating at 1747.9656143450768
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede2z_cspec.fits
Processing product (16196, '30')
Targets in visit (16196, '30'): ['MRK-817']
Processing target MRK-817 in visit (16196, '30')
Processing grating COS/G130M
Importing files ['./16196/lede30sbq_x1d.fits', './16196/lede30sdq_x1d.fits', './16196/lede30sfq_x1d.fits', './16196/lede30shq_x1d.fits']
Processing file ./16196/lede30sbq_x1d.fits
Processing file ./16196/lede30sdq_x1d.fits
Processing file ./16196/lede30sfq_x1d.fits
Processing file ./16196/lede30shq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede30_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede30sjq_x1d.fits', './16196/lede30slq_x1d.fits', './16196/lede30snq_x1d.fits', './16196/lede30spq_x1d.fits']
Processing file ./16196/lede30sjq_x1d.fits
Processing file ./16196/lede30slq_x1d.fits
Processing file ./16196/lede30snq_x1d.fits
Processing file ./16196/lede30spq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede30_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1361305920218
Truncating current grating at 1747.879738472684
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede30_cspec.fits
Processing product (16196, '31')
Targets in visit (16196, '31'): ['MRK-817']
Processing target MRK-817 in visit (16196, '31')
Processing grating COS/G130M
Importing files ['./16196/lede31d6q_x1d.fits', './16196/lede31d8q_x1d.fits', './16196/lede31daq_x1d.fits', './16196/lede31dcq_x1d.fits']
Processing file ./16196/lede31d6q_x1d.fits
Processing file ./16196/lede31d8q_x1d.fits
Processing file ./16196/lede31daq_x1d.fits
Processing file ./16196/lede31dcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede31_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede31deq_x1d.fits', './16196/lede31dgq_x1d.fits', './16196/lede31diq_x1d.fits', './16196/lede31dkq_x1d.fits']
Processing file ./16196/lede31deq_x1d.fits
Processing file ./16196/lede31dgq_x1d.fits
Processing file ./16196/lede31diq_x1d.fits
Processing file ./16196/lede31dkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede31_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1657913390045
Truncating current grating at 1747.867183251296
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede31_cspec.fits
Processing product (16196, '32')
Targets in visit (16196, '32'): ['MRK-817']
Processing target MRK-817 in visit (16196, '32')
Processing grating COS/G130M
Importing files ['./16196/lede32s0q_x1d.fits', './16196/lede32s2q_x1d.fits', './16196/lede32s5q_x1d.fits', './16196/lede32s7q_x1d.fits']
Processing file ./16196/lede32s0q_x1d.fits
Processing file ./16196/lede32s2q_x1d.fits
Processing file ./16196/lede32s5q_x1d.fits
Processing file ./16196/lede32s7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede32_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede32s9q_x1d.fits', './16196/lede32sbq_x1d.fits', './16196/lede32sdq_x1d.fits', './16196/lede32sfq_x1d.fits']
Processing file ./16196/lede32s9q_x1d.fits
Processing file ./16196/lede32sbq_x1d.fits
Processing file ./16196/lede32sdq_x1d.fits
Processing file ./16196/lede32sfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede32_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.205359063777
Truncating current grating at 1747.8545526369562
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede32_cspec.fits
Processing product (16196, '33')
Targets in visit (16196, '33'): ['MRK-817']
Processing target MRK-817 in visit (16196, '33')
Processing grating COS/G130M
Importing files ['./16196/lede33rzq_x1d.fits', './16196/lede33s2q_x1d.fits', './16196/lede33s4q_x1d.fits', './16196/lede33s7q_x1d.fits']
Processing file ./16196/lede33rzq_x1d.fits
Processing file ./16196/lede33s2q_x1d.fits
Processing file ./16196/lede33s4q_x1d.fits
Processing file ./16196/lede33s7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede33_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede33s9q_x1d.fits', './16196/lede33syq_x1d.fits', './16196/lede33t0q_x1d.fits', './16196/lede33t2q_x1d.fits']
Processing file ./16196/lede33s9q_x1d.fits
Processing file ./16196/lede33syq_x1d.fits
Processing file ./16196/lede33t0q_x1d.fits
Processing file ./16196/lede33t2q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede33_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1751413236816
Truncating current grating at 1747.9030966395549
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede33_cspec.fits
Processing product (16196, '34')
Targets in visit (16196, '34'): ['MRK-817']
Processing target MRK-817 in visit (16196, '34')
Processing grating COS/G130M
Importing files ['./16196/lede34lnq_x1d.fits', './16196/lede34lpq_x1d.fits', './16196/lede34lrq_x1d.fits', './16196/lede34luq_x1d.fits']
Processing file ./16196/lede34lnq_x1d.fits
Processing file ./16196/lede34lpq_x1d.fits
Processing file ./16196/lede34lrq_x1d.fits
Processing file ./16196/lede34luq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede34_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede34lwq_x1d.fits', './16196/lede34lyq_x1d.fits', './16196/lede34m0q_x1d.fits', './16196/lede34m3q_x1d.fits']
Processing file ./16196/lede34lwq_x1d.fits
Processing file ./16196/lede34lyq_x1d.fits
Processing file ./16196/lede34m0q_x1d.fits
Processing file ./16196/lede34m3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede34_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2446045465476
Truncating current grating at 1747.8904758532185
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede34_cspec.fits
Processing product (16196, '35')
Targets in visit (16196, '35'): ['MRK-817']
Processing target MRK-817 in visit (16196, '35')
Processing grating COS/G130M
Importing files ['./16196/lede35xrq_x1d.fits', './16196/lede35xtq_x1d.fits', './16196/lede35xvq_x1d.fits', './16196/lede35xxq_x1d.fits']
Processing file ./16196/lede35xrq_x1d.fits
Processing file ./16196/lede35xtq_x1d.fits
Processing file ./16196/lede35xvq_x1d.fits
Processing file ./16196/lede35xxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede35_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede35xzq_x1d.fits', './16196/lede35y1q_x1d.fits', './16196/lede35y3q_x1d.fits', './16196/lede35y5q_x1d.fits']
Processing file ./16196/lede35xzq_x1d.fits
Processing file ./16196/lede35y1q_x1d.fits
Processing file ./16196/lede35y3q_x1d.fits
Processing file ./16196/lede35y5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede35_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1944911949759
Truncating current grating at 1747.8165871998533
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede35_cspec.fits
Processing product (16196, '36')
Targets in visit (16196, '36'): ['MRK-817']
Processing target MRK-817 in visit (16196, '36')
Processing grating COS/G130M
Importing files ['./16196/lede36g0q_x1d.fits', './16196/lede36g2q_x1d.fits', './16196/lede36g4q_x1d.fits', './16196/lede36g6q_x1d.fits']
Processing file ./16196/lede36g0q_x1d.fits
Processing file ./16196/lede36g2q_x1d.fits
Processing file ./16196/lede36g4q_x1d.fits
Processing file ./16196/lede36g6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede36_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede36g8q_x1d.fits', './16196/lede36gaq_x1d.fits', './16196/lede36gcq_x1d.fits', './16196/lede36geq_x1d.fits']
Processing file ./16196/lede36g8q_x1d.fits
Processing file ./16196/lede36gaq_x1d.fits
Processing file ./16196/lede36gcq_x1d.fits
Processing file ./16196/lede36geq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede36_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1443902092465
Truncating current grating at 1747.840693582324
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede36_cspec.fits
Processing product (16196, '37')
Targets in visit (16196, '37'): ['MRK-817']
Processing target MRK-817 in visit (16196, '37')
Processing grating COS/G130M
Importing files ['./16196/lede37l5q_x1d.fits', './16196/lede37l7q_x1d.fits', './16196/lede37l9q_x1d.fits', './16196/lede37lbq_x1d.fits']
Processing file ./16196/lede37l5q_x1d.fits
Processing file ./16196/lede37l7q_x1d.fits
Processing file ./16196/lede37l9q_x1d.fits
Processing file ./16196/lede37lbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede37_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede37ldq_x1d.fits', './16196/lede37lfq_x1d.fits', './16196/lede37lhq_x1d.fits', './16196/lede37ljq_x1d.fits']
Processing file ./16196/lede37ldq_x1d.fits
Processing file ./16196/lede37lfq_x1d.fits
Processing file ./16196/lede37lhq_x1d.fits
Processing file ./16196/lede37ljq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede37_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1838792746948
Truncating current grating at 1747.8402042746272
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede37_cspec.fits
Processing product (16196, '38')
Targets in visit (16196, '38'): ['MRK-817']
Processing target MRK-817 in visit (16196, '38')
Processing grating COS/G130M
Importing files ['./16196/lede38tsq_x1d.fits', './16196/lede38tuq_x1d.fits', './16196/lede38twq_x1d.fits', './16196/lede38tyq_x1d.fits']
Processing file ./16196/lede38tsq_x1d.fits
Processing file ./16196/lede38tuq_x1d.fits
Processing file ./16196/lede38twq_x1d.fits
Processing file ./16196/lede38tyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede38_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede38u0q_x1d.fits', './16196/lede38u2q_x1d.fits', './16196/lede38u4q_x1d.fits', './16196/lede38u6q_x1d.fits']
Processing file ./16196/lede38u0q_x1d.fits
Processing file ./16196/lede38u2q_x1d.fits
Processing file ./16196/lede38u4q_x1d.fits
Processing file ./16196/lede38u6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede38_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0340990913444
Truncating current grating at 1747.8152513068835
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede38_cspec.fits
Processing product (16196, '39')
Targets in visit (16196, '39'): ['MRK-817']
Processing target MRK-817 in visit (16196, '39')
Processing grating COS/G130M
Importing files ['./16196/lede39clq_x1d.fits', './16196/lede39cnq_x1d.fits', './16196/lede39cpq_x1d.fits', './16196/lede39crq_x1d.fits']
Processing file ./16196/lede39clq_x1d.fits
Processing file ./16196/lede39cnq_x1d.fits
Processing file ./16196/lede39cpq_x1d.fits
Processing file ./16196/lede39crq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede39_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede39ctq_x1d.fits', './16196/lede39cvq_x1d.fits', './16196/lede39cxq_x1d.fits', './16196/lede39czq_x1d.fits']
Processing file ./16196/lede39ctq_x1d.fits
Processing file ./16196/lede39cvq_x1d.fits
Processing file ./16196/lede39cxq_x1d.fits
Processing file ./16196/lede39czq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede39_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2230896629117
Truncating current grating at 1747.8025967161402
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede39_cspec.fits
Processing product (16196, '3a')
Targets in visit (16196, '3a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3a')
Processing grating COS/G130M
Importing files ['./16196/lede3axcq_x1d.fits', './16196/lede3axeq_x1d.fits', './16196/lede3axgq_x1d.fits', './16196/lede3axiq_x1d.fits']
Processing file ./16196/lede3axcq_x1d.fits
Processing file ./16196/lede3axeq_x1d.fits
Processing file ./16196/lede3axgq_x1d.fits
Processing file ./16196/lede3axiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3a_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3axkq_x1d.fits', './16196/lede3axmq_x1d.fits', './16196/lede3axoq_x1d.fits', './16196/lede3axqq_x1d.fits']
Processing file ./16196/lede3axkq_x1d.fits
Processing file ./16196/lede3axmq_x1d.fits
Processing file ./16196/lede3axoq_x1d.fits
Processing file ./16196/lede3axqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3a_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.787251312674
Truncating current grating at 1747.8427516270822
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3a_cspec.fits
Processing product (16196, '3b')
Targets in visit (16196, '3b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3b')
Processing grating COS/G130M
Importing files ['./16196/lede3bk0q_x1d.fits', './16196/lede3bk2q_x1d.fits', './16196/lede3bk4q_x1d.fits', './16196/lede3bk6q_x1d.fits']
Processing file ./16196/lede3bk0q_x1d.fits
Processing file ./16196/lede3bk2q_x1d.fits
Processing file ./16196/lede3bk4q_x1d.fits
Processing file ./16196/lede3bk6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3b_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3bk8q_x1d.fits', './16196/lede3bkaq_x1d.fits', './16196/lede3bkcq_x1d.fits', './16196/lede3bkeq_x1d.fits']
Processing file ./16196/lede3bk8q_x1d.fits
Processing file ./16196/lede3bkaq_x1d.fits
Processing file ./16196/lede3bkcq_x1d.fits
Processing file ./16196/lede3bkeq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3b_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1366.8)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.7869892195263
Truncating current grating at 1747.9158808531713
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3b_cspec.fits
Processing product (16196, '3c')
Targets in visit (16196, '3c'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3c')
Processing grating COS/G130M
Importing files ['./16196/lede3ck6q_x1d.fits', './16196/lede3ck8q_x1d.fits', './16196/lede3ckaq_x1d.fits', './16196/lede3ckcq_x1d.fits']
Processing file ./16196/lede3ck6q_x1d.fits
Processing file ./16196/lede3ck8q_x1d.fits
Processing file ./16196/lede3ckaq_x1d.fits
Processing file ./16196/lede3ckcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3c_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3ckeq_x1d.fits', './16196/lede3ckgq_x1d.fits', './16196/lede3ckiq_x1d.fits', './16196/lede3ckkq_x1d.fits']
Processing file ./16196/lede3ckeq_x1d.fits
Processing file ./16196/lede3ckgq_x1d.fits
Processing file ./16196/lede3ckiq_x1d.fits
Processing file ./16196/lede3ckkq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3c_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.075617739116
Truncating current grating at 1747.9522269819631
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3c_cspec.fits
Processing product (16196, '3d')
Targets in visit (16196, '3d'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3d')
Processing grating COS/G130M
Importing files ['./16196/lede3dt1q_x1d.fits', './16196/lede3dt3q_x1d.fits', './16196/lede3dt5q_x1d.fits', './16196/lede3dt7q_x1d.fits']
Processing file ./16196/lede3dt1q_x1d.fits
Processing file ./16196/lede3dt3q_x1d.fits
Processing file ./16196/lede3dt5q_x1d.fits
Processing file ./16196/lede3dt7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3d_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3dt9q_x1d.fits', './16196/lede3dtbq_x1d.fits', './16196/lede3dtdq_x1d.fits', './16196/lede3dtfq_x1d.fits']
Processing file ./16196/lede3dt9q_x1d.fits
Processing file ./16196/lede3dtbq_x1d.fits
Processing file ./16196/lede3dtdq_x1d.fits
Processing file ./16196/lede3dtfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3d_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.1-1366.7)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.726625407703
Truncating current grating at 1747.853849385373
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3d_cspec.fits
Processing product (16196, '3e')
Targets in visit (16196, '3e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3e')
Processing grating COS/G130M
Importing files ['./16196/lede3efcq_x1d.fits', './16196/lede3efeq_x1d.fits', './16196/lede3efgq_x1d.fits', './16196/lede3efiq_x1d.fits']
Processing file ./16196/lede3efcq_x1d.fits
Processing file ./16196/lede3efeq_x1d.fits
Processing file ./16196/lede3efgq_x1d.fits
Processing file ./16196/lede3efiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3e_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3efkq_x1d.fits', './16196/lede3efmq_x1d.fits', './16196/lede3efoq_x1d.fits', './16196/lede3efqq_x1d.fits']
Processing file ./16196/lede3efkq_x1d.fits
Processing file ./16196/lede3efmq_x1d.fits
Processing file ./16196/lede3efoq_x1d.fits
Processing file ./16196/lede3efqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3e_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.2-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9654157837194
Truncating current grating at 1747.9024106223706
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3e_cspec.fits
Processing product (16196, '3f')
Targets in visit (16196, '3f'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3f')
Processing grating COS/G130M
Importing files ['./16196/lede3fdhq_x1d.fits', './16196/lede3fdjq_x1d.fits', './16196/lede3fdlq_x1d.fits', './16196/lede3fdnq_x1d.fits']
Processing file ./16196/lede3fdhq_x1d.fits
Processing file ./16196/lede3fdjq_x1d.fits
Processing file ./16196/lede3fdlq_x1d.fits
Processing file ./16196/lede3fdnq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3f_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3fdpq_x1d.fits', './16196/lede3fdrq_x1d.fits', './16196/lede3fdtq_x1d.fits', './16196/lede3fe0q_x1d.fits']
Processing file ./16196/lede3fdpq_x1d.fits
Processing file ./16196/lede3fdrq_x1d.fits
Processing file ./16196/lede3fdtq_x1d.fits
Processing file ./16196/lede3fe0q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3f_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1068.3-1367.2)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1942425647744
Truncating current grating at 1747.9264767239847
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3f_cspec.fits
Processing product (16196, '3g')
Targets in visit (16196, '3g'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3g')
Processing grating COS/G130M
Importing files ['./16196/lede3gmjq_x1d.fits', './16196/lede3gmlq_x1d.fits', './16196/lede3gmnq_x1d.fits', './16196/lede3gmpq_x1d.fits']
Processing file ./16196/lede3gmjq_x1d.fits
Processing file ./16196/lede3gmlq_x1d.fits
Processing file ./16196/lede3gmnq_x1d.fits
Processing file ./16196/lede3gmpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3g_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3gmrq_x1d.fits', './16196/lede3gmtq_x1d.fits', './16196/lede3gmvq_x1d.fits', './16196/lede3gmxq_x1d.fits']
Processing file ./16196/lede3gmrq_x1d.fits
Processing file ./16196/lede3gmtq_x1d.fits
Processing file ./16196/lede3gmvq_x1d.fits
Processing file ./16196/lede3gmxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3g_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1366.8)
COS/G160M 1342-1800 (Actual: 1346.0-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.795493457642
Truncating current grating at 1747.8771644337303
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3g_cspec.fits
Processing product (16196, '3h')
Targets in visit (16196, '3h'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3h')
Processing grating COS/G130M
Importing files ['./16196/lede3hbeq_x1d.fits', './16196/lede3hbhq_x1d.fits', './16196/lede3hbjq_x1d.fits', './16196/lede3hblq_x1d.fits']
Processing file ./16196/lede3hbeq_x1d.fits
Processing file ./16196/lede3hbhq_x1d.fits
Processing file ./16196/lede3hbjq_x1d.fits
Processing file ./16196/lede3hblq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3h_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3hbnq_x1d.fits', './16196/lede3hbpq_x1d.fits', './16196/lede3hbrq_x1d.fits', './16196/lede3hbtq_x1d.fits']
Processing file ./16196/lede3hbnq_x1d.fits
Processing file ./16196/lede3hbpq_x1d.fits
Processing file ./16196/lede3hbrq_x1d.fits
Processing file ./16196/lede3hbtq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3h_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0242113820054
Truncating current grating at 1747.9010836102557
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3h_cspec.fits
Processing product (16196, '3i')
Targets in visit (16196, '3i'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3i')
Processing grating COS/G130M
Importing files ['./16196/lede3irrq_x1d.fits', './16196/lede3irtq_x1d.fits', './16196/lede3irvq_x1d.fits', './16196/lede3irxq_x1d.fits']
Processing file ./16196/lede3irrq_x1d.fits
Processing file ./16196/lede3irtq_x1d.fits
Processing file ./16196/lede3irvq_x1d.fits
Processing file ./16196/lede3irxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3i_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3irzq_x1d.fits', './16196/lede3is1q_x1d.fits', './16196/lede3is3q_x1d.fits', './16196/lede3is6q_x1d.fits']
Processing file ./16196/lede3irzq_x1d.fits
Processing file ./16196/lede3is1q_x1d.fits
Processing file ./16196/lede3is3q_x1d.fits
Processing file ./16196/lede3is6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3i_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1366.7)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.675169771459
Truncating current grating at 1747.8883681240497
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3i_cspec.fits
Processing product (16196, '3l')
Targets in visit (16196, '3l'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3l')
Processing grating COS/G130M
Importing files ['./16196/lede3lppq_x1d.fits', './16196/lede3lprq_x1d.fits', './16196/lede3lptq_x1d.fits', './16196/lede3lpvq_x1d.fits']
Processing file ./16196/lede3lppq_x1d.fits
Processing file ./16196/lede3lprq_x1d.fits
Processing file ./16196/lede3lptq_x1d.fits
Processing file ./16196/lede3lpvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3l_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3lpxq_x1d.fits', './16196/lede3lpzq_x1d.fits', './16196/lede3lq1q_x1d.fits', './16196/lede3lq3q_x1d.fits']
Processing file ./16196/lede3lpxq_x1d.fits
Processing file ./16196/lede3lpzq_x1d.fits
Processing file ./16196/lede3lq1q_x1d.fits
Processing file ./16196/lede3lq3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3l_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.5-1366.9)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9040481681063
Truncating current grating at 1747.8880104702378
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3l_cspec.fits
Processing product (16196, '3m')
Targets in visit (16196, '3m'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3m')
Processing grating COS/G130M
Importing files ['./16196/lede3me4q_x1d.fits', './16196/lede3me6q_x1d.fits', './16196/lede3me8q_x1d.fits', './16196/lede3meaq_x1d.fits']
Processing file ./16196/lede3me4q_x1d.fits
Processing file ./16196/lede3me6q_x1d.fits
Processing file ./16196/lede3me8q_x1d.fits
Processing file ./16196/lede3meaq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3m_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3medq_x1d.fits', './16196/lede3mefq_x1d.fits', './16196/lede3mehq_x1d.fits', './16196/lede3mejq_x1d.fits']
Processing file ./16196/lede3medq_x1d.fits
Processing file ./16196/lede3mefq_x1d.fits
Processing file ./16196/lede3mehq_x1d.fits
Processing file ./16196/lede3mejq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3m_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.9)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9088569448104
Truncating current grating at 1747.8822739001225
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3m_cspec.fits
Processing product (16196, '3n')
Targets in visit (16196, '3n'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3n')
Processing grating COS/G130M
Importing files ['./16196/lede3nc4q_x1d.fits', './16196/lede3nc6q_x1d.fits', './16196/lede3nc8q_x1d.fits', './16196/lede3ncaq_x1d.fits', './16196/lede3ncqq_x1d.fits', './16196/lede3nctq_x1d.fits', './16196/lede3ncwq_x1d.fits', './16196/lede3nd5q_x1d.fits']
Processing file ./16196/lede3nc4q_x1d.fits
Processing file ./16196/lede3nc6q_x1d.fits
Processing file ./16196/lede3nc8q_x1d.fits
Processing file ./16196/lede3ncaq_x1d.fits
Processing file ./16196/lede3ncqq_x1d.fits
Processing file ./16196/lede3nctq_x1d.fits
Processing file ./16196/lede3ncwq_x1d.fits
Processing file ./16196/lede3nd5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3n_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3ncdq_x1d.fits', './16196/lede3ncgq_x1d.fits', './16196/lede3ncjq_x1d.fits', './16196/lede3nclq_x1d.fits']
Processing file ./16196/lede3ncdq_x1d.fits
Processing file ./16196/lede3ncgq_x1d.fits
Processing file ./16196/lede3ncjq_x1d.fits
Processing file ./16196/lede3nclq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3n_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 940.2-1367.2)
COS/G160M 1342-1800 (Actual: 1346.1-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2088811507729
Truncating current grating at 1747.9196641290177
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3n_cspec.fits
Processing product (16196, '3o')
Targets in visit (16196, '3o'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3o')
Processing grating STIS/G750L
Importing files ['./16196/oede3o020_sx1.fits', './16196/oede3o030_sx1.fits', './16196/oede3o040_sx1.fits']
Processing file ./16196/oede3o020_sx1.fits
Processing file ./16196/oede3o030_sx1.fits
Processing file ./16196/oede3o040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oede3o_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oede3o050_sx1.fits', './16196/oede3o060_sx1.fits', './16196/oede3o070_sx1.fits']
Processing file ./16196/oede3o050_sx1.fits
Processing file ./16196/oede3o060_sx1.fits
Processing file ./16196/oede3o070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oede3o_cspec.fits
Processing grating STIS/G140L
Importing files ['./16196/oede3o080_x1d.fits']
Processing file ./16196/oede3o080_x1d.fits
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/ullyses/coadd.py:550: RuntimeWarning: divide by zero encountered in divide
  weighted_gross = weight_function[self.weighting_method](gross, exptime, net/flux)
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l_oede3o_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oede3o090_x1d.fits']
Processing file ./16196/oede3o090_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oede3o_cspec.fits
Making a product from these gratings
STIS/G140L 1138.4-1716.4 (Actual: 1138.4-1710.9)
STIS/G230L 1582.0-3158.7 (Actual: 1579.6-3137.3)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5700.3)
STIS/G750L 5261.3-10252.3 (Actual: 5304.8-10243.2)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G140L
Abutting STIS/G230L product to current result
With a transition wavelength of 1710.9072984371069
Abutting STIS/G430L product to current result
With a transition wavelength of 3137.2752054262774
Abutting STIS/G750L product to current result
With a transition wavelength of 5700.294980962671
Truncating current grating at 10243.179270012915
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede3o_cspec.fits
Processing product (16196, '3p')
Targets in visit (16196, '3p'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3p')
Processing grating COS/G130M
Importing files ['./16196/lede3pr0q_x1d.fits', './16196/lede3pr2q_x1d.fits', './16196/lede3pr4q_x1d.fits', './16196/lede3pr6q_x1d.fits']
Processing file ./16196/lede3pr0q_x1d.fits
Processing file ./16196/lede3pr2q_x1d.fits
Processing file ./16196/lede3pr4q_x1d.fits
Processing file ./16196/lede3pr6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3p_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3pr9q_x1d.fits', './16196/lede3prbq_x1d.fits', './16196/lede3prdq_x1d.fits', './16196/lede3prfq_x1d.fits']
Processing file ./16196/lede3pr9q_x1d.fits
Processing file ./16196/lede3prbq_x1d.fits
Processing file ./16196/lede3prdq_x1d.fits
Processing file ./16196/lede3prfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3p_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9787081706947
Truncating current grating at 1747.870176599446
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3p_cspec.fits
Processing product (16196, '3q')
Targets in visit (16196, '3q'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3q')
Processing grating COS/G160M
Importing files ['./16196/lede3qa2q_x1d.fits', './16196/lede3qa4q_x1d.fits', './16196/lede3qzxq_x1d.fits', './16196/lede3qzzq_x1d.fits']
Processing file ./16196/lede3qa2q_x1d.fits
Processing file ./16196/lede3qa4q_x1d.fits
Processing file ./16196/lede3qzxq_x1d.fits
Processing file ./16196/lede3qzzq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3q_cspec.fits
Processing grating COS/G130M
Importing files ['./16196/lede3qzpq_x1d.fits', './16196/lede3qzrq_x1d.fits', './16196/lede3qztq_x1d.fits', './16196/lede3qzvq_x1d.fits']
Processing file ./16196/lede3qzpq_x1d.fits
Processing file ./16196/lede3qzrq_x1d.fits
Processing file ./16196/lede3qztq_x1d.fits
Processing file ./16196/lede3qzvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3q_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1748.0)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9887714931879
Truncating current grating at 1747.9560443436148
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3q_cspec.fits
Processing product (16196, '3r')
Targets in visit (16196, '3r'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3r')
Processing grating COS/G130M
Importing files ['./16196/lede3rh0q_x1d.fits', './16196/lede3rh2q_x1d.fits', './16196/lede3rh4q_x1d.fits', './16196/lede3rh6q_x1d.fits']
Processing file ./16196/lede3rh0q_x1d.fits
Processing file ./16196/lede3rh2q_x1d.fits
Processing file ./16196/lede3rh4q_x1d.fits
Processing file ./16196/lede3rh6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3r_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3rh8q_x1d.fits', './16196/lede3rhaq_x1d.fits', './16196/lede3rhcq_x1d.fits', './16196/lede3rheq_x1d.fits']
Processing file ./16196/lede3rh8q_x1d.fits
Processing file ./16196/lede3rhaq_x1d.fits
Processing file ./16196/lede3rhcq_x1d.fits
Processing file ./16196/lede3rheq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3r_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.9-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1382816451737
Truncating current grating at 1747.9438873001686
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3r_cspec.fits
Processing product (16196, '3s')
Targets in visit (16196, '3s'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3s')
Processing grating COS/G130M
Importing files ['./16196/lede3staq_x1d.fits', './16196/lede3stcq_x1d.fits', './16196/lede3steq_x1d.fits', './16196/lede3stgq_x1d.fits']
Processing file ./16196/lede3staq_x1d.fits
Processing file ./16196/lede3stcq_x1d.fits
Processing file ./16196/lede3steq_x1d.fits
Processing file ./16196/lede3stgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3s_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3stjq_x1d.fits', './16196/lede3stpq_x1d.fits', './16196/lede3strq_x1d.fits', './16196/lede3sttq_x1d.fits']
Processing file ./16196/lede3stjq_x1d.fits
Processing file ./16196/lede3stpq_x1d.fits
Processing file ./16196/lede3strq_x1d.fits
Processing file ./16196/lede3sttq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3s_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.7-1366.9)
COS/G160M 1342-1800 (Actual: 1346.2-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9490780590268
Truncating current grating at 1747.944010445268
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3s_cspec.fits
Processing product (16196, '3u')
Targets in visit (16196, '3u'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3u')
Processing grating COS/G130M
Importing files ['./16196/lede3ua1q_x1d.fits', './16196/lede3ua3q_x1d.fits', './16196/lede3uzvq_x1d.fits', './16196/lede3uzyq_x1d.fits']
Processing file ./16196/lede3ua1q_x1d.fits
Processing file ./16196/lede3ua3q_x1d.fits
Processing file ./16196/lede3uzvq_x1d.fits
Processing file ./16196/lede3uzyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3u_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3ua5q_x1d.fits', './16196/lede3ua7q_x1d.fits', './16196/lede3ua9q_x1d.fits', './16196/lede3uabq_x1d.fits']
Processing file ./16196/lede3ua5q_x1d.fits
Processing file ./16196/lede3ua7q_x1d.fits
Processing file ./16196/lede3ua9q_x1d.fits
Processing file ./16196/lede3uabq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3u_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1345.5-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9335883959939
Truncating current grating at 1747.8997869646928
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3u_cspec.fits
Processing product (16196, '3v')
Targets in visit (16196, '3v'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3v')
Processing grating COS/G130M
Importing files ['./16196/lede3vijq_x1d.fits', './16196/lede3vimq_x1d.fits', './16196/lede3vioq_x1d.fits', './16196/lede3viqq_x1d.fits']
Processing file ./16196/lede3vijq_x1d.fits
Processing file ./16196/lede3vimq_x1d.fits
Processing file ./16196/lede3vioq_x1d.fits
Processing file ./16196/lede3viqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3v_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3visq_x1d.fits', './16196/lede3viuq_x1d.fits', './16196/lede3viwq_x1d.fits', './16196/lede3viyq_x1d.fits']
Processing file ./16196/lede3visq_x1d.fits
Processing file ./16196/lede3viuq_x1d.fits
Processing file ./16196/lede3viwq_x1d.fits
Processing file ./16196/lede3viyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3v_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0726971146764
Truncating current grating at 1747.8992877010273
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3v_cspec.fits
Processing product (16196, '3w')
Targets in visit (16196, '3w'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3w')
Processing grating COS/G130M
Importing files ['./16196/lede3wduq_x1d.fits', './16196/lede3wdwq_x1d.fits', './16196/lede3wdyq_x1d.fits', './16196/lede3we0q_x1d.fits']
Processing file ./16196/lede3wduq_x1d.fits
Processing file ./16196/lede3wdwq_x1d.fits
Processing file ./16196/lede3wdyq_x1d.fits
Processing file ./16196/lede3we0q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3w_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3we2q_x1d.fits', './16196/lede3we4q_x1d.fits', './16196/lede3we6q_x1d.fits', './16196/lede3we8q_x1d.fits']
Processing file ./16196/lede3we2q_x1d.fits
Processing file ./16196/lede3we4q_x1d.fits
Processing file ./16196/lede3we6q_x1d.fits
Processing file ./16196/lede3we8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3w_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.0)
COS/G160M 1342-1800 (Actual: 1345.6-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9924807564626
Truncating current grating at 1747.8863441448354
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3w_cspec.fits
Processing product (16196, '3x')
Targets in visit (16196, '3x'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3x')
Processing grating COS/G130M
Importing files ['./16196/lede3xjdq_x1d.fits', './16196/lede3xjfq_x1d.fits', './16196/lede3xjhq_x1d.fits', './16196/lede3xjmq_x1d.fits']
Processing file ./16196/lede3xjdq_x1d.fits
Processing file ./16196/lede3xjfq_x1d.fits
Processing file ./16196/lede3xjhq_x1d.fits
Processing file ./16196/lede3xjmq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3x_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3xjoq_x1d.fits', './16196/lede3xk9q_x1d.fits', './16196/lede3xkhq_x1d.fits', './16196/lede3xkjq_x1d.fits']
Processing file ./16196/lede3xjoq_x1d.fits
Processing file ./16196/lede3xk9q_x1d.fits
Processing file ./16196/lede3xkhq_x1d.fits
Processing file ./16196/lede3xkjq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3x_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.2-1366.9)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9324459189104
Truncating current grating at 1747.8247462997979
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3x_cspec.fits
Processing product (16196, '3y')
Targets in visit (16196, '3y'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3y')
Processing grating COS/G130M
Importing files ['./16196/lede3yq7q_x1d.fits', './16196/lede3yq9q_x1d.fits', './16196/lede3yqbq_x1d.fits', './16196/lede3yqdq_x1d.fits']
Processing file ./16196/lede3yq7q_x1d.fits
Processing file ./16196/lede3yq9q_x1d.fits
Processing file ./16196/lede3yqbq_x1d.fits
Processing file ./16196/lede3yqdq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3y_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3yqfq_x1d.fits', './16196/lede3yqhq_x1d.fits', './16196/lede3yqjq_x1d.fits', './16196/lede3yqlq_x1d.fits']
Processing file ./16196/lede3yqfq_x1d.fits
Processing file ./16196/lede3yqhq_x1d.fits
Processing file ./16196/lede3yqjq_x1d.fits
Processing file ./16196/lede3yqlq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3y_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.3-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.071560717101
Truncating current grating at 1747.885503759234
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3y_cspec.fits
Processing product (16196, '3z')
Targets in visit (16196, '3z'): ['MRK-817']
Processing target MRK-817 in visit (16196, '3z')
Processing grating COS/G130M
Importing files ['./16196/lede3za1q_x1d.fits', './16196/lede3zzuq_x1d.fits', './16196/lede3zzwq_x1d.fits', './16196/lede3zzyq_x1d.fits']
Processing file ./16196/lede3za1q_x1d.fits
Processing file ./16196/lede3zzuq_x1d.fits
Processing file ./16196/lede3zzwq_x1d.fits
Processing file ./16196/lede3zzyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede3z_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede3za3q_x1d.fits', './16196/lede3za5q_x1d.fits', './16196/lede3za7q_x1d.fits', './16196/lede3za9q_x1d.fits']
Processing file ./16196/lede3za3q_x1d.fits
Processing file ./16196/lede3za5q_x1d.fits
Processing file ./16196/lede3za7q_x1d.fits
Processing file ./16196/lede3za9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede3z_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.4-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0114022189198
Truncating current grating at 1747.872739222039
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede3z_cspec.fits
Processing product (16196, '40')
Targets in visit (16196, '40'): ['MRK-817']
Processing target MRK-817 in visit (16196, '40')
Processing grating COS/G130M
Importing files ['./16196/lede40mcq_x1d.fits', './16196/lede40meq_x1d.fits', './16196/lede40mgq_x1d.fits', './16196/lede40miq_x1d.fits']
Processing file ./16196/lede40mcq_x1d.fits
Processing file ./16196/lede40meq_x1d.fits
Processing file ./16196/lede40mgq_x1d.fits
Processing file ./16196/lede40miq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede40_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede40mkq_x1d.fits', './16196/lede40mmq_x1d.fits', './16196/lede40moq_x1d.fits', './16196/lede40mqq_x1d.fits']
Processing file ./16196/lede40mkq_x1d.fits
Processing file ./16196/lede40mmq_x1d.fits
Processing file ./16196/lede40moq_x1d.fits
Processing file ./16196/lede40mqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede40_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.99356725021
Truncating current grating at 1747.8143304133027
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede40_cspec.fits
Processing product (16196, '41')
Targets in visit (16196, '41'): ['MRK-817']
Processing target MRK-817 in visit (16196, '41')
Processing grating COS/G130M
Importing files ['./16196/lede41u9q_x1d.fits', './16196/lede41ubq_x1d.fits', './16196/lede41udq_x1d.fits', './16196/lede41ufq_x1d.fits']
Processing file ./16196/lede41u9q_x1d.fits
Processing file ./16196/lede41ubq_x1d.fits
Processing file ./16196/lede41udq_x1d.fits
Processing file ./16196/lede41ufq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede41_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede41uiq_x1d.fits', './16196/lede41ukq_x1d.fits', './16196/lede41umq_x1d.fits', './16196/lede41uoq_x1d.fits']
Processing file ./16196/lede41uiq_x1d.fits
Processing file ./16196/lede41ukq_x1d.fits
Processing file ./16196/lede41umq_x1d.fits
Processing file ./16196/lede41uoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede41_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1526550084182
Truncating current grating at 1747.7894092847218
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede41_cspec.fits
Processing product (16196, '42')
Targets in visit (16196, '42'): ['MRK-817']
Processing target MRK-817 in visit (16196, '42')
Processing grating COS/G130M
Importing files ['./16196/lede42hfq_x1d.fits', './16196/lede42hhq_x1d.fits', './16196/lede42hjq_x1d.fits', './16196/lede42hlq_x1d.fits']
Processing file ./16196/lede42hfq_x1d.fits
Processing file ./16196/lede42hhq_x1d.fits
Processing file ./16196/lede42hjq_x1d.fits
Processing file ./16196/lede42hlq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede42_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede42hnq_x1d.fits', './16196/lede42hpq_x1d.fits', './16196/lede42hrq_x1d.fits', './16196/lede42htq_x1d.fits']
Processing file ./16196/lede42hnq_x1d.fits
Processing file ./16196/lede42hpq_x1d.fits
Processing file ./16196/lede42hrq_x1d.fits
Processing file ./16196/lede42htq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede42_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0226807043255
Truncating current grating at 1747.8255300053788
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede42_cspec.fits
Processing product (16196, '43')
Targets in visit (16196, '43'): ['MRK-817']
Processing target MRK-817 in visit (16196, '43')
Processing grating COS/G130M
Importing files ['./16196/lede43p8q_x1d.fits', './16196/lede43paq_x1d.fits', './16196/lede43pcq_x1d.fits', './16196/lede43peq_x1d.fits']
Processing file ./16196/lede43p8q_x1d.fits
Processing file ./16196/lede43paq_x1d.fits
Processing file ./16196/lede43pcq_x1d.fits
Processing file ./16196/lede43peq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede43_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede43pgq_x1d.fits', './16196/lede43piq_x1d.fits', './16196/lede43pkq_x1d.fits', './16196/lede43pmq_x1d.fits']
Processing file ./16196/lede43pgq_x1d.fits
Processing file ./16196/lede43piq_x1d.fits
Processing file ./16196/lede43pkq_x1d.fits
Processing file ./16196/lede43pmq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede43_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.972588971387
Truncating current grating at 1747.8006592274237
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede43_cspec.fits
Processing product (16196, '44')
Targets in visit (16196, '44'): ['MRK-817']
Processing target MRK-817 in visit (16196, '44')
Processing grating COS/G130M
Importing files ['./16196/lede44grq_x1d.fits', './16196/lede44gtq_x1d.fits', './16196/lede44gvq_x1d.fits', './16196/lede44gxq_x1d.fits']
Processing file ./16196/lede44grq_x1d.fits
Processing file ./16196/lede44gtq_x1d.fits
Processing file ./16196/lede44gvq_x1d.fits
Processing file ./16196/lede44gxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede44_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede44gzq_x1d.fits', './16196/lede44h1q_x1d.fits', './16196/lede44h3q_x1d.fits', './16196/lede44h5q_x1d.fits']
Processing file ./16196/lede44gzq_x1d.fits
Processing file ./16196/lede44h1q_x1d.fits
Processing file ./16196/lede44h3q_x1d.fits
Processing file ./16196/lede44h5q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede44_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.071752284569
Truncating current grating at 1747.8367741250431
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede44_cspec.fits
Processing product (16196, '45')
Targets in visit (16196, '45'): ['MRK-817']
Processing target MRK-817 in visit (16196, '45')
Processing grating COS/G130M
Importing files ['./16196/lede45q3q_x1d.fits', './16196/lede45q5q_x1d.fits', './16196/lede45q7q_x1d.fits', './16196/lede45q9q_x1d.fits']
Processing file ./16196/lede45q3q_x1d.fits
Processing file ./16196/lede45q5q_x1d.fits
Processing file ./16196/lede45q7q_x1d.fits
Processing file ./16196/lede45q9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede45_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede45qbq_x1d.fits', './16196/lede45qdq_x1d.fits', './16196/lede45qfq_x1d.fits', './16196/lede45qhq_x1d.fits']
Processing file ./16196/lede45qbq_x1d.fits
Processing file ./16196/lede45qdq_x1d.fits
Processing file ./16196/lede45qfq_x1d.fits
Processing file ./16196/lede45qhq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede45_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2207856133177
Truncating current grating at 1747.8239774102403
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede45_cspec.fits
Processing product (16196, '46')
Targets in visit (16196, '46'): ['MRK-817']
Processing target MRK-817 in visit (16196, '46')
Processing grating COS/G130M
Importing files ['./16196/lede46ynq_x1d.fits', './16196/lede46ypq_x1d.fits', './16196/lede46yrq_x1d.fits', './16196/lede46ytq_x1d.fits']
Processing file ./16196/lede46ynq_x1d.fits
Processing file ./16196/lede46ypq_x1d.fits
Processing file ./16196/lede46yrq_x1d.fits
Processing file ./16196/lede46ytq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede46_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede46yvq_x1d.fits', './16196/lede46yxq_x1d.fits', './16196/lede46yzq_x1d.fits', './16196/lede46z1q_x1d.fits']
Processing file ./16196/lede46yvq_x1d.fits
Processing file ./16196/lede46yxq_x1d.fits
Processing file ./16196/lede46yzq_x1d.fits
Processing file ./16196/lede46z1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede46_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1407920937286
Truncating current grating at 1747.8358294401132
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede46_cspec.fits
Processing product (16196, '47')
Targets in visit (16196, '47'): ['MRK-817']
Processing target MRK-817 in visit (16196, '47')
Processing grating COS/G130M
Importing files ['./16196/lede47b4q_x1d.fits', './16196/lede47b6q_x1d.fits', './16196/lede47b8q_x1d.fits', './16196/lede47baq_x1d.fits']
Processing file ./16196/lede47b4q_x1d.fits
Processing file ./16196/lede47b6q_x1d.fits
Processing file ./16196/lede47b8q_x1d.fits
Processing file ./16196/lede47baq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede47_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede47bcq_x1d.fits', './16196/lede47beq_x1d.fits', './16196/lede47bgq_x1d.fits', './16196/lede47biq_x1d.fits']
Processing file ./16196/lede47bcq_x1d.fits
Processing file ./16196/lede47beq_x1d.fits
Processing file ./16196/lede47bgq_x1d.fits
Processing file ./16196/lede47biq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede47_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1204500378353
Truncating current grating at 1747.8230188988546
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede47_cspec.fits
Processing product (16196, '48')
Targets in visit (16196, '48'): ['MRK-817']
Processing target MRK-817 in visit (16196, '48')
Processing grating COS/G130M
Importing files ['./16196/lede48t2q_x1d.fits', './16196/lede48t4q_x1d.fits', './16196/lede48t6q_x1d.fits', './16196/lede48t8q_x1d.fits']
Processing file ./16196/lede48t2q_x1d.fits
Processing file ./16196/lede48t4q_x1d.fits
Processing file ./16196/lede48t6q_x1d.fits
Processing file ./16196/lede48t8q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede48_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede48taq_x1d.fits', './16196/lede48tcq_x1d.fits', './16196/lede48teq_x1d.fits', './16196/lede48tgq_x1d.fits']
Processing file ./16196/lede48taq_x1d.fits
Processing file ./16196/lede48tcq_x1d.fits
Processing file ./16196/lede48teq_x1d.fits
Processing file ./16196/lede48tgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede48_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1199732431223
Truncating current grating at 1747.8346214876751
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede48_cspec.fits
Processing product (16196, '49')
Targets in visit (16196, '49'): ['MRK-817']
Processing target MRK-817 in visit (16196, '49')
Processing grating COS/G130M
Importing files ['./16196/lede49h4q_x1d.fits', './16196/lede49h6q_x1d.fits', './16196/lede49h8q_x1d.fits', './16196/lede49haq_x1d.fits']
Processing file ./16196/lede49h4q_x1d.fits
Processing file ./16196/lede49h6q_x1d.fits
Processing file ./16196/lede49h8q_x1d.fits
Processing file ./16196/lede49haq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede49_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede49hcq_x1d.fits', './16196/lede49heq_x1d.fits', './16196/lede49hgq_x1d.fits', './16196/lede49hiq_x1d.fits']
Processing file ./16196/lede49hcq_x1d.fits
Processing file ./16196/lede49heq_x1d.fits
Processing file ./16196/lede49hgq_x1d.fits
Processing file ./16196/lede49hiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede49_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0398312036677
Truncating current grating at 1747.8462721043988
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede49_cspec.fits
Processing product (16196, '4a')
Targets in visit (16196, '4a'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4a')
Processing grating COS/G130M
Importing files ['./16196/lede4ak6q_x1d.fits', './16196/lede4ak8q_x1d.fits', './16196/lede4akaq_x1d.fits', './16196/lede4akcq_x1d.fits']
Processing file ./16196/lede4ak6q_x1d.fits
Processing file ./16196/lede4ak8q_x1d.fits
Processing file ./16196/lede4akaq_x1d.fits
Processing file ./16196/lede4akcq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede4a_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '4b')
Targets in visit (16196, '4b'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4b')
Processing grating STIS/G750L
Importing files ['./16196/oede4b020_sx1.fits', './16196/oede4b030_sx1.fits', './16196/oede4b040_sx1.fits']
Processing file ./16196/oede4b020_sx1.fits
Processing file ./16196/oede4b030_sx1.fits
Processing file ./16196/oede4b040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oede4b_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oede4b050_sx1.fits', './16196/oede4b060_sx1.fits', './16196/oede4b070_sx1.fits']
Processing file ./16196/oede4b050_sx1.fits
Processing file ./16196/oede4b060_sx1.fits
Processing file ./16196/oede4b070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oede4b_cspec.fits
Processing grating STIS/G140L
Importing files ['./16196/oede4b080_x1d.fits']
Processing file ./16196/oede4b080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l_oede4b_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oede4b090_x1d.fits']
Processing file ./16196/oede4b090_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oede4b_cspec.fits
Making a product from these gratings
STIS/G140L 1138.4-1716.4 (Actual: 1138.4-1711.7)
STIS/G230L 1582.0-3158.7 (Actual: 1582.8-3151.2)
STIS/G430L 2895.9-5704.4 (Actual: 2977.5-5702.5)
STIS/G750L 5261.3-10252.3 (Actual: 5307.8-10246.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G140L
Abutting STIS/G230L product to current result
With a transition wavelength of 1711.746938159625
Abutting STIS/G430L product to current result
With a transition wavelength of 3151.1776676436853
Abutting STIS/G750L product to current result
With a transition wavelength of 5702.490336445166
Truncating current grating at 10246.526672026468
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4b_cspec.fits
Processing product (16196, '4e')
Targets in visit (16196, '4e'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4e')
Processing grating COS/G130M
Importing files ['./16196/lede4epnq_x1d.fits', './16196/lede4eppq_x1d.fits', './16196/lede4eprq_x1d.fits', './16196/lede4eptq_x1d.fits']
Processing file ./16196/lede4epnq_x1d.fits
Processing file ./16196/lede4eppq_x1d.fits
Processing file ./16196/lede4eprq_x1d.fits
Processing file ./16196/lede4eptq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede4e_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '4f')
Targets in visit (16196, '4f'): ['MRK-817']
Processing target MRK-817 in visit (16196, '4f')
Processing grating STIS/G750L
Importing files ['./16196/oede4f020_sx1.fits', './16196/oede4f030_sx1.fits', './16196/oede4f040_sx1.fits']
Processing file ./16196/oede4f020_sx1.fits
Processing file ./16196/oede4f030_sx1.fits
Processing file ./16196/oede4f040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oede4f_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oede4f050_sx1.fits', './16196/oede4f060_sx1.fits', './16196/oede4f070_sx1.fits']
Processing file ./16196/oede4f050_sx1.fits
Processing file ./16196/oede4f060_sx1.fits
Processing file ./16196/oede4f070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oede4f_cspec.fits
Processing grating STIS/G140L
Importing files ['./16196/oede4f080_x1d.fits']
Processing file ./16196/oede4f080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l_oede4f_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oede4f090_x1d.fits']
Processing file ./16196/oede4f090_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oede4f_cspec.fits
Making a product from these gratings
STIS/G140L 1138.4-1716.4 (Actual: 1138.3-1712.2)
STIS/G230L 1582.0-3158.7 (Actual: 1580.8-3149.2)
STIS/G430L 2895.9-5704.4 (Actual: 2976.5-5701.4)
STIS/G750L 5261.3-10252.3 (Actual: 5305.8-10244.4)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G140L
Abutting STIS/G230L product to current result
With a transition wavelength of 1712.1849569551614
Abutting STIS/G430L product to current result
With a transition wavelength of 3149.1594277594645
Abutting STIS/G750L product to current result
With a transition wavelength of 5701.418865043401
Truncating current grating at 10244.400619952936
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l-sg230l-g430l-g750l_oede4f_cspec.fits
Processing product (16196, '50')
Targets in visit (16196, '50'): ['MRK-817']
Processing target MRK-817 in visit (16196, '50')
Processing grating COS/G130M
Importing files ['./16196/lede50wsq_x1d.fits', './16196/lede50wuq_x1d.fits', './16196/lede50wwq_x1d.fits', './16196/lede50wyq_x1d.fits']
Processing file ./16196/lede50wsq_x1d.fits
Processing file ./16196/lede50wuq_x1d.fits
Processing file ./16196/lede50wwq_x1d.fits
Processing file ./16196/lede50wyq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede50_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede50x0q_x1d.fits', './16196/lede50x2q_x1d.fits', './16196/lede50x4q_x1d.fits', './16196/lede50x6q_x1d.fits']
Processing file ./16196/lede50x0q_x1d.fits
Processing file ./16196/lede50x2q_x1d.fits
Processing file ./16196/lede50x4q_x1d.fits
Processing file ./16196/lede50x6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede50_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.3283286767298
Truncating current grating at 1747.8334604591912
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede50_cspec.fits
Processing product (16196, '51')
Targets in visit (16196, '51'): ['MRK-817']
Processing target MRK-817 in visit (16196, '51')
Processing grating COS/G130M
Importing files ['./16196/lede51h1q_x1d.fits', './16196/lede51h3q_x1d.fits', './16196/lede51h5q_x1d.fits', './16196/lede51h7q_x1d.fits']
Processing file ./16196/lede51h1q_x1d.fits
Processing file ./16196/lede51h3q_x1d.fits
Processing file ./16196/lede51h5q_x1d.fits
Processing file ./16196/lede51h7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede51_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede51h9q_x1d.fits', './16196/lede51hbq_x1d.fits', './16196/lede51hdq_x1d.fits', './16196/lede51hfq_x1d.fits']
Processing file ./16196/lede51h9q_x1d.fits
Processing file ./16196/lede51hbq_x1d.fits
Processing file ./16196/lede51hdq_x1d.fits
Processing file ./16196/lede51hfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede51_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9992830877218
Truncating current grating at 1747.7595990921022
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede51_cspec.fits
Processing product (16196, '52')
Targets in visit (16196, '52'): ['MRK-817']
Processing target MRK-817 in visit (16196, '52')
Processing grating COS/G130M
Importing files ['./16196/lede52mkq_x1d.fits', './16196/lede52mmq_x1d.fits', './16196/lede52moq_x1d.fits', './16196/lede52mqq_x1d.fits']
Processing file ./16196/lede52mkq_x1d.fits
Processing file ./16196/lede52mmq_x1d.fits
Processing file ./16196/lede52moq_x1d.fits
Processing file ./16196/lede52mqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede52_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '53')
Targets in visit (16196, '53'): ['MRK-817']
Processing target MRK-817 in visit (16196, '53')
Processing grating COS/G160M
Importing files ['./16196/lede53mvq_x1d.fits', './16196/lede53mxq_x1d.fits']
Processing file ./16196/lede53mvq_x1d.fits
Processing file ./16196/lede53mxq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede53_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '56')
Targets in visit (16196, '56'): ['MRK-817']
Processing target MRK-817 in visit (16196, '56')
Processing grating COS/G130M
Importing files ['./16196/lede56a3q_x1d.fits', './16196/lede56a5q_x1d.fits', './16196/lede56a7q_x1d.fits', './16196/lede56ahq_x1d.fits']
Processing file ./16196/lede56a3q_x1d.fits
Processing file ./16196/lede56a5q_x1d.fits
Processing file ./16196/lede56a7q_x1d.fits
Processing file ./16196/lede56ahq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede56_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '57')
Targets in visit (16196, '57'): ['MRK-817']
Processing target MRK-817 in visit (16196, '57')
Processing grating COS/G160M
Importing files ['./16196/lede57azq_x1d.fits', './16196/lede57b2q_x1d.fits']
Processing file ./16196/lede57azq_x1d.fits
Processing file ./16196/lede57b2q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede57_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '59')
Targets in visit (16196, '59'): ['MRK-817']
Processing target MRK-817 in visit (16196, '59')
Processing grating COS/G130M
Importing files ['./16196/lede59npq_x1d.fits', './16196/lede59nrq_x1d.fits', './16196/lede59ntq_x1d.fits', './16196/lede59nvq_x1d.fits']
Processing file ./16196/lede59npq_x1d.fits
Processing file ./16196/lede59nrq_x1d.fits
Processing file ./16196/lede59ntq_x1d.fits
Processing file ./16196/lede59nvq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede59_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede59nxq_x1d.fits', './16196/lede59nzq_x1d.fits', './16196/lede59o1q_x1d.fits', './16196/lede59o3q_x1d.fits']
Processing file ./16196/lede59nxq_x1d.fits
Processing file ./16196/lede59nzq_x1d.fits
Processing file ./16196/lede59o1q_x1d.fits
Processing file ./16196/lede59o3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede59_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.3)
COS/G160M 1342-1800 (Actual: 1345.7-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.314679402225
Truncating current grating at 1747.8652211015196
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede59_cspec.fits
Processing product (16196, '60')
Targets in visit (16196, '60'): ['MRK-817']
Processing target MRK-817 in visit (16196, '60')
Processing grating COS/G130M
Importing files ['./16196/lede60waq_x1d.fits', './16196/lede60weq_x1d.fits', './16196/lede60wgq_x1d.fits', './16196/lede60wiq_x1d.fits']
Processing file ./16196/lede60waq_x1d.fits
Processing file ./16196/lede60weq_x1d.fits
Processing file ./16196/lede60wgq_x1d.fits
Processing file ./16196/lede60wiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede60_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede60wkq_x1d.fits', './16196/lede60x5q_x1d.fits', './16196/lede60x7q_x1d.fits', './16196/lede60xbq_x1d.fits']
Processing file ./16196/lede60wkq_x1d.fits
Processing file ./16196/lede60x5q_x1d.fits
Processing file ./16196/lede60x7q_x1d.fits
Processing file ./16196/lede60xbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede60_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.214581113572
Truncating current grating at 1747.8033465311353
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede60_cspec.fits
Processing product (16196, '61')
Targets in visit (16196, '61'): ['MRK-817']
Processing target MRK-817 in visit (16196, '61')
Processing grating COS/G130M
Importing files ['./16196/lede61dtq_x1d.fits', './16196/lede61dvq_x1d.fits', './16196/lede61dxq_x1d.fits', './16196/lede61dzq_x1d.fits']
Processing file ./16196/lede61dtq_x1d.fits
Processing file ./16196/lede61dvq_x1d.fits
Processing file ./16196/lede61dxq_x1d.fits
Processing file ./16196/lede61dzq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede61_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede61e1q_x1d.fits', './16196/lede61e3q_x1d.fits', './16196/lede61e5q_x1d.fits', './16196/lede61e7q_x1d.fits']
Processing file ./16196/lede61e1q_x1d.fits
Processing file ./16196/lede61e3q_x1d.fits
Processing file ./16196/lede61e5q_x1d.fits
Processing file ./16196/lede61e7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede61_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1367.0)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9950572553043
Truncating current grating at 1747.8273672103642
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede61_cspec.fits
Processing product (16196, '62')
Targets in visit (16196, '62'): ['MRK-817']
Processing target MRK-817 in visit (16196, '62')
Processing grating COS/G130M
Importing files ['./16196/lede62maq_x1d.fits', './16196/lede62mcq_x1d.fits', './16196/lede62meq_x1d.fits', './16196/lede62mgq_x1d.fits']
Processing file ./16196/lede62maq_x1d.fits
Processing file ./16196/lede62mcq_x1d.fits
Processing file ./16196/lede62meq_x1d.fits
Processing file ./16196/lede62mgq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede62_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede62miq_x1d.fits', './16196/lede62mkq_x1d.fits', './16196/lede62mmq_x1d.fits', './16196/lede62moq_x1d.fits']
Processing file ./16196/lede62miq_x1d.fits
Processing file ./16196/lede62mkq_x1d.fits
Processing file ./16196/lede62mmq_x1d.fits
Processing file ./16196/lede62moq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede62_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.8-1367.1)
COS/G160M 1342-1800 (Actual: 1345.4-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0742751159814
Truncating current grating at 1747.7819725453642
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede62_cspec.fits
Processing product (16196, '63')
Targets in visit (16196, '63'): ['MRK-817']
Processing target MRK-817 in visit (16196, '63')
Processing grating COS/G130M
Importing files ['./16196/lede63x0q_x1d.fits', './16196/lede63x2q_x1d.fits', './16196/lede63x4q_x1d.fits', './16196/lede63x6q_x1d.fits']
Processing file ./16196/lede63x0q_x1d.fits
Processing file ./16196/lede63x2q_x1d.fits
Processing file ./16196/lede63x4q_x1d.fits
Processing file ./16196/lede63x6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede63_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede63x8q_x1d.fits', './16196/lede63xaq_x1d.fits', './16196/lede63xcq_x1d.fits', './16196/lede63xmq_x1d.fits']
Processing file ./16196/lede63x8q_x1d.fits
Processing file ./16196/lede63xaq_x1d.fits
Processing file ./16196/lede63xcq_x1d.fits
Processing file ./16196/lede63xmq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede63_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.4-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0738557603036
Truncating current grating at 1747.7324169254396
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede63_cspec.fits
Processing product (16196, '64')
Targets in visit (16196, '64'): ['MRK-817']
Processing target MRK-817 in visit (16196, '64')
Processing grating COS/G130M
Importing files ['./16196/lede64imq_x1d.fits', './16196/lede64ioq_x1d.fits', './16196/lede64iqq_x1d.fits', './16196/lede64isq_x1d.fits']
Processing file ./16196/lede64imq_x1d.fits
Processing file ./16196/lede64ioq_x1d.fits
Processing file ./16196/lede64iqq_x1d.fits
Processing file ./16196/lede64isq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede64_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede64iuq_x1d.fits', './16196/lede64iwq_x1d.fits', './16196/lede64iyq_x1d.fits', './16196/lede64j0q_x1d.fits']
Processing file ./16196/lede64iuq_x1d.fits
Processing file ./16196/lede64iwq_x1d.fits
Processing file ./16196/lede64iyq_x1d.fits
Processing file ./16196/lede64j0q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede64_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.5-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1332663047183
Truncating current grating at 1747.719668904264
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede64_cspec.fits
Processing product (16196, '65')
Targets in visit (16196, '65'): ['MRK-817']
Processing target MRK-817 in visit (16196, '65')
Processing grating COS/G130M
Importing files ['./16196/lede65dxq_x1d.fits', './16196/lede65dzq_x1d.fits', './16196/lede65e1q_x1d.fits', './16196/lede65e3q_x1d.fits']
Processing file ./16196/lede65dxq_x1d.fits
Processing file ./16196/lede65dzq_x1d.fits
Processing file ./16196/lede65e1q_x1d.fits
Processing file ./16196/lede65e3q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede65_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede65e5q_x1d.fits', './16196/lede65e7q_x1d.fits', './16196/lede65e9q_x1d.fits', './16196/lede65ebq_x1d.fits']
Processing file ./16196/lede65e5q_x1d.fits
Processing file ./16196/lede65e7q_x1d.fits
Processing file ./16196/lede65e9q_x1d.fits
Processing file ./16196/lede65ebq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede65_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.4-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1627034739777
Truncating current grating at 1747.7558082026344
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede65_cspec.fits
Processing product (16196, '66')
Targets in visit (16196, '66'): ['MRK-817']
Processing target MRK-817 in visit (16196, '66')
Processing grating COS/G130M
Importing files ['./16196/lede66lbq_x1d.fits', './16196/lede66ldq_x1d.fits', './16196/lede66lfq_x1d.fits', './16196/lede66lhq_x1d.fits']
Processing file ./16196/lede66lbq_x1d.fits
Processing file ./16196/lede66ldq_x1d.fits
Processing file ./16196/lede66lfq_x1d.fits
Processing file ./16196/lede66lhq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede66_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede66ljq_x1d.fits', './16196/lede66llq_x1d.fits', './16196/lede66lnq_x1d.fits', './16196/lede66lpq_x1d.fits']
Processing file ./16196/lede66ljq_x1d.fits
Processing file ./16196/lede66llq_x1d.fits
Processing file ./16196/lede66lnq_x1d.fits
Processing file ./16196/lede66lpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede66_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1822880628297
Truncating current grating at 1747.7675943267077
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede66_cspec.fits
Processing product (16196, '67')
Targets in visit (16196, '67'): ['MRK-817']
Processing target MRK-817 in visit (16196, '67')
Processing grating COS/G130M
Importing files ['./16196/lede67x1q_x1d.fits', './16196/lede67x3q_x1d.fits', './16196/lede67x5q_x1d.fits', './16196/lede67x7q_x1d.fits']
Processing file ./16196/lede67x1q_x1d.fits
Processing file ./16196/lede67x3q_x1d.fits
Processing file ./16196/lede67x5q_x1d.fits
Processing file ./16196/lede67x7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede67_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede67x9q_x1d.fits', './16196/lede67xbq_x1d.fits', './16196/lede67xdq_x1d.fits', './16196/lede67xfq_x1d.fits']
Processing file ./16196/lede67x9q_x1d.fits
Processing file ./16196/lede67xbq_x1d.fits
Processing file ./16196/lede67xdq_x1d.fits
Processing file ./16196/lede67xfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede67_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.23165529377
Truncating current grating at 1747.8159794348267
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede67_cspec.fits
Processing product (16196, '68')
Targets in visit (16196, '68'): ['MRK-817']
Processing target MRK-817 in visit (16196, '68')
Processing grating COS/G130M
Importing files ['./16196/lede68fvq_x1d.fits', './16196/lede68fxq_x1d.fits', './16196/lede68fzq_x1d.fits', './16196/lede68g1q_x1d.fits']
Processing file ./16196/lede68fvq_x1d.fits
Processing file ./16196/lede68fxq_x1d.fits
Processing file ./16196/lede68fzq_x1d.fits
Processing file ./16196/lede68g1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede68_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede68g3q_x1d.fits', './16196/lede68g5q_x1d.fits', './16196/lede68g7q_x1d.fits', './16196/lede68g9q_x1d.fits']
Processing file ./16196/lede68g3q_x1d.fits
Processing file ./16196/lede68g5q_x1d.fits
Processing file ./16196/lede68g7q_x1d.fits
Processing file ./16196/lede68g9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede68_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1346.0-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.131685858688
Truncating current grating at 1747.7910173798828
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede68_cspec.fits
Processing product (16196, '69')
Targets in visit (16196, '69'): ['MRK-817']
Processing target MRK-817 in visit (16196, '69')
Processing grating COS/G130M
Importing files ['./16196/lede69h8q_x1d.fits', './16196/lede69hbq_x1d.fits', './16196/lede69hdq_x1d.fits', './16196/lede69hfq_x1d.fits']
Processing file ./16196/lede69h8q_x1d.fits
Processing file ./16196/lede69hbq_x1d.fits
Processing file ./16196/lede69hdq_x1d.fits
Processing file ./16196/lede69hfq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede69_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede69hhq_x1d.fits', './16196/lede69hjq_x1d.fits', './16196/lede69hmq_x1d.fits', './16196/lede69hoq_x1d.fits']
Processing file ./16196/lede69hhq_x1d.fits
Processing file ./16196/lede69hjq_x1d.fits
Processing file ./16196/lede69hmq_x1d.fits
Processing file ./16196/lede69hoq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede69_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1711413566263
Truncating current grating at 1747.7782371271112
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede69_cspec.fits
Processing product (16196, '70')
Targets in visit (16196, '70'): ['MRK-817']
Processing target MRK-817 in visit (16196, '70')
Processing grating COS/G130M
Importing files ['./16196/lede70t5q_x1d.fits', './16196/lede70t7q_x1d.fits', './16196/lede70t9q_x1d.fits', './16196/lede70tbq_x1d.fits']
Processing file ./16196/lede70t5q_x1d.fits
Processing file ./16196/lede70t7q_x1d.fits
Processing file ./16196/lede70t9q_x1d.fits
Processing file ./16196/lede70tbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede70_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede70tdq_x1d.fits', './16196/lede70tfq_x1d.fits', './16196/lede70thq_x1d.fits', './16196/lede70tjq_x1d.fits']
Processing file ./16196/lede70tdq_x1d.fits
Processing file ./16196/lede70tfq_x1d.fits
Processing file ./16196/lede70thq_x1d.fits
Processing file ./16196/lede70tjq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede70_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.3)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2603503013827
Truncating current grating at 1747.838858788149
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede70_cspec.fits
Processing product (16196, '71')
Targets in visit (16196, '71'): ['MRK-817']
Processing target MRK-817 in visit (16196, '71')
Processing grating COS/G130M
Importing files ['./16196/lede71bfq_x1d.fits', './16196/lede71bhq_x1d.fits', './16196/lede71bjq_x1d.fits', './16196/lede71blq_x1d.fits']
Processing file ./16196/lede71bfq_x1d.fits
Processing file ./16196/lede71bhq_x1d.fits
Processing file ./16196/lede71bjq_x1d.fits
Processing file ./16196/lede71blq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede71_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede71bnq_x1d.fits', './16196/lede71bpq_x1d.fits', './16196/lede71brq_x1d.fits', './16196/lede71btq_x1d.fits']
Processing file ./16196/lede71bnq_x1d.fits
Processing file ./16196/lede71bpq_x1d.fits
Processing file ./16196/lede71brq_x1d.fits
Processing file ./16196/lede71btq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede71_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1404847972692
Truncating current grating at 1747.7771947970941
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede71_cspec.fits
Processing product (16196, '72')
Targets in visit (16196, '72'): ['MRK-817']
Processing target MRK-817 in visit (16196, '72')
Processing grating COS/G130M
Importing files ['./16196/lede72c8q_x1d.fits', './16196/lede72caq_x1d.fits', './16196/lede72ccq_x1d.fits', './16196/lede72chq_x1d.fits']
Processing file ./16196/lede72c8q_x1d.fits
Processing file ./16196/lede72caq_x1d.fits
Processing file ./16196/lede72ccq_x1d.fits
Processing file ./16196/lede72chq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede72_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede72cjq_x1d.fits', './16196/lede72clq_x1d.fits', './16196/lede72cnq_x1d.fits', './16196/lede72cpq_x1d.fits']
Processing file ./16196/lede72cjq_x1d.fits
Processing file ./16196/lede72clq_x1d.fits
Processing file ./16196/lede72cnq_x1d.fits
Processing file ./16196/lede72cpq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede72_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.0)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.0205503145753
Truncating current grating at 1747.8134109418088
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede72_cspec.fits
Processing product (16196, '73')
Targets in visit (16196, '73'): ['MRK-817']
Processing target MRK-817 in visit (16196, '73')
Processing grating COS/G130M
Importing files ['./16196/lede73o7q_x1d.fits', './16196/lede73o9q_x1d.fits', './16196/lede73obq_x1d.fits', './16196/lede73odq_x1d.fits']
Processing file ./16196/lede73o7q_x1d.fits
Processing file ./16196/lede73o9q_x1d.fits
Processing file ./16196/lede73obq_x1d.fits
Processing file ./16196/lede73odq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede73_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede73ogq_x1d.fits', './16196/lede73ojq_x1d.fits', './16196/lede73olq_x1d.fits', './16196/lede73onq_x1d.fits']
Processing file ./16196/lede73ogq_x1d.fits
Processing file ./16196/lede73ojq_x1d.fits
Processing file ./16196/lede73olq_x1d.fits
Processing file ./16196/lede73onq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede73_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1097711075663
Truncating current grating at 1747.727088106873
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede73_cspec.fits
Processing product (16196, '74')
Targets in visit (16196, '74'): ['MRK-817']
Processing target MRK-817 in visit (16196, '74')
Processing grating COS/G130M
Importing files ['./16196/lede74ubq_x1d.fits', './16196/lede74udq_x1d.fits', './16196/lede74ufq_x1d.fits', './16196/lede74uhq_x1d.fits']
Processing file ./16196/lede74ubq_x1d.fits
Processing file ./16196/lede74udq_x1d.fits
Processing file ./16196/lede74ufq_x1d.fits
Processing file ./16196/lede74uhq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede74_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede74ukq_x1d.fits', './16196/lede74umq_x1d.fits', './16196/lede74uoq_x1d.fits', './16196/lede74v9q_x1d.fits']
Processing file ./16196/lede74ukq_x1d.fits
Processing file ./16196/lede74umq_x1d.fits
Processing file ./16196/lede74uoq_x1d.fits
Processing file ./16196/lede74v9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede74_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1294443353058
Truncating current grating at 1747.7757345040995
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede74_cspec.fits
Processing product (16196, '75')
Targets in visit (16196, '75'): ['MRK-817']
Processing target MRK-817 in visit (16196, '75')
Processing grating COS/G130M
Importing files ['./16196/lede75c8q_x1d.fits', './16196/lede75cbq_x1d.fits', './16196/lede75cdq_x1d.fits', './16196/lede75cfq_x1d.fits', './16196/lede75cqq_x1d.fits', './16196/lede75csq_x1d.fits', './16196/lede75cuq_x1d.fits', './16196/lede75cwq_x1d.fits']
Processing file ./16196/lede75c8q_x1d.fits
Processing file ./16196/lede75cbq_x1d.fits
Processing file ./16196/lede75cdq_x1d.fits
Processing file ./16196/lede75cfq_x1d.fits
Processing file ./16196/lede75cqq_x1d.fits
Processing file ./16196/lede75csq_x1d.fits
Processing file ./16196/lede75cuq_x1d.fits
Processing file ./16196/lede75cwq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede75_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede75chq_x1d.fits', './16196/lede75cjq_x1d.fits', './16196/lede75clq_x1d.fits', './16196/lede75cnq_x1d.fits']
Processing file ./16196/lede75chq_x1d.fits
Processing file ./16196/lede75cjq_x1d.fits
Processing file ./16196/lede75clq_x1d.fits
Processing file ./16196/lede75cnq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede75_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 940.2-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1418511159732
Truncating current grating at 1747.7508268918807
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede75_cspec.fits
Processing product (16196, '77')
Targets in visit (16196, '77'): ['MRK-817']
Processing target MRK-817 in visit (16196, '77')
Processing grating COS/G130M
Importing files ['./16196/lede77v8q_x1d.fits', './16196/lede77vaq_x1d.fits', './16196/lede77vcq_x1d.fits', './16196/lede77veq_x1d.fits']
Processing file ./16196/lede77v8q_x1d.fits
Processing file ./16196/lede77vaq_x1d.fits
Processing file ./16196/lede77vcq_x1d.fits
Processing file ./16196/lede77veq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede77_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '78')
Targets in visit (16196, '78'): ['MRK-817']
Processing target MRK-817 in visit (16196, '78')
Processing grating COS/G160M
Importing files ['./16196/lede78vjq_x1d.fits', './16196/lede78vlq_x1d.fits']
Processing file ./16196/lede78vjq_x1d.fits
Processing file ./16196/lede78vlq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede78_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '80')
Targets in visit (16196, '80'): ['MRK-817']
Processing target MRK-817 in visit (16196, '80')
Processing grating COS/G130M
Importing files ['./16196/lede80n4q_x1d.fits', './16196/lede80n6q_x1d.fits', './16196/lede80n8q_x1d.fits', './16196/lede80naq_x1d.fits']
Processing file ./16196/lede80n4q_x1d.fits
Processing file ./16196/lede80n6q_x1d.fits
Processing file ./16196/lede80n8q_x1d.fits
Processing file ./16196/lede80naq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede80_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '81')
Targets in visit (16196, '81'): ['MRK-817']
Processing target MRK-817 in visit (16196, '81')
Processing grating COS/G160M
Importing files ['./16196/lede81neq_x1d.fits', './16196/lede81ngq_x1d.fits']
Processing file ./16196/lede81neq_x1d.fits
Processing file ./16196/lede81ngq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede81_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '82')
Targets in visit (16196, '82'): ['MRK-817']
Processing target MRK-817 in visit (16196, '82')
Processing grating COS/G130M
Importing files ['./16196/lede82i5q_x1d.fits', './16196/lede82i7q_x1d.fits', './16196/lede82i9q_x1d.fits', './16196/lede82ibq_x1d.fits']
Processing file ./16196/lede82i5q_x1d.fits
Processing file ./16196/lede82i7q_x1d.fits
Processing file ./16196/lede82i9q_x1d.fits
Processing file ./16196/lede82ibq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede82_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede82idq_x1d.fits', './16196/lede82ifq_x1d.fits']
Processing file ./16196/lede82idq_x1d.fits
Processing file ./16196/lede82ifq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede82_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.2-1367.2)
COS/G160M 1342-1800 (Actual: 1343.3-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2361429629557
Truncating current grating at 1747.7718266198465
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede82_cspec.fits
Processing product (16196, '83')
Targets in visit (16196, '83'): ['MRK-817']
Processing target MRK-817 in visit (16196, '83')
Processing grating COS/G130M
Importing files ['./16196/lede83ijq_x1d.fits', './16196/lede83ilq_x1d.fits', './16196/lede83inq_x1d.fits', './16196/lede83ipq_x1d.fits']
Processing file ./16196/lede83ijq_x1d.fits
Processing file ./16196/lede83ilq_x1d.fits
Processing file ./16196/lede83inq_x1d.fits
Processing file ./16196/lede83ipq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede83_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede83irq_x1d.fits', './16196/lede83itq_x1d.fits']
Processing file ./16196/lede83irq_x1d.fits
Processing file ./16196/lede83itq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede83_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1343.3-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.206247463418
Truncating current grating at 1747.7718145063297
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede83_cspec.fits
Processing product (16196, '84')
Targets in visit (16196, '84'): ['MRK-817']
Processing target MRK-817 in visit (16196, '84')
Processing grating COS/G130M
Importing files ['./16196/lede84qmq_x1d.fits', './16196/lede84qoq_x1d.fits', './16196/lede84qqq_x1d.fits', './16196/lede84qsq_x1d.fits']
Processing file ./16196/lede84qmq_x1d.fits
Processing file ./16196/lede84qoq_x1d.fits
Processing file ./16196/lede84qqq_x1d.fits
Processing file ./16196/lede84qsq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede84_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede84quq_x1d.fits', './16196/lede84qwq_x1d.fits', './16196/lede84qyq_x1d.fits', './16196/lede84r0q_x1d.fits']
Processing file ./16196/lede84quq_x1d.fits
Processing file ./16196/lede84qwq_x1d.fits
Processing file ./16196/lede84qyq_x1d.fits
Processing file ./16196/lede84r0q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede84_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.9)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.106371580946
Truncating current grating at 1747.8694431084082
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede84_cspec.fits
Processing product (16196, '85')
Targets in visit (16196, '85'): ['MRK-817']
Processing target MRK-817 in visit (16196, '85')
Processing grating COS/G130M
Importing files ['./16196/lede85bqq_x1d.fits', './16196/lede85bsq_x1d.fits', './16196/lede85buq_x1d.fits', './16196/lede85bwq_x1d.fits']
Processing file ./16196/lede85bqq_x1d.fits
Processing file ./16196/lede85bsq_x1d.fits
Processing file ./16196/lede85buq_x1d.fits
Processing file ./16196/lede85bwq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede85_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede85byq_x1d.fits', './16196/lede85c0q_x1d.fits', './16196/lede85c2q_x1d.fits', './16196/lede85c4q_x1d.fits']
Processing file ./16196/lede85byq_x1d.fits
Processing file ./16196/lede85c0q_x1d.fits
Processing file ./16196/lede85c2q_x1d.fits
Processing file ./16196/lede85c4q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede85_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1366.9)
COS/G160M 1342-1800 (Actual: 1345.9-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9467249756499
Truncating current grating at 1747.7833759298528
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede85_cspec.fits
Processing product (16196, '86')
Targets in visit (16196, '86'): ['MRK-817']
Processing target MRK-817 in visit (16196, '86')
Processing grating COS/G130M
Importing files ['./16196/lede86j0q_x1d.fits', './16196/lede86j2q_x1d.fits', './16196/lede86j4q_x1d.fits', './16196/lede86j6q_x1d.fits']
Processing file ./16196/lede86j0q_x1d.fits
Processing file ./16196/lede86j2q_x1d.fits
Processing file ./16196/lede86j4q_x1d.fits
Processing file ./16196/lede86j6q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede86_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede86j8q_x1d.fits', './16196/lede86jaq_x1d.fits', './16196/lede86jcq_x1d.fits', './16196/lede86jeq_x1d.fits']
Processing file ./16196/lede86j8q_x1d.fits
Processing file ./16196/lede86jaq_x1d.fits
Processing file ./16196/lede86jcq_x1d.fits
Processing file ./16196/lede86jeq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede86_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.9-1366.9)
COS/G160M 1342-1800 (Actual: 1345.6-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.9266391134242
Truncating current grating at 1747.8076501637902
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede86_cspec.fits
Processing product (16196, '87')
Targets in visit (16196, '87'): ['MRK-817']
Processing target MRK-817 in visit (16196, '87')
Processing grating COS/G130M
Importing files ['./16196/lede87jcq_x1d.fits', './16196/lede87jeq_x1d.fits', './16196/lede87jgq_x1d.fits', './16196/lede87jiq_x1d.fits']
Processing file ./16196/lede87jcq_x1d.fits
Processing file ./16196/lede87jeq_x1d.fits
Processing file ./16196/lede87jgq_x1d.fits
Processing file ./16196/lede87jiq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede87_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede87jkq_x1d.fits', './16196/lede87jmq_x1d.fits', './16196/lede87joq_x1d.fits', './16196/lede87jqq_x1d.fits']
Processing file ./16196/lede87jkq_x1d.fits
Processing file ./16196/lede87jmq_x1d.fits
Processing file ./16196/lede87joq_x1d.fits
Processing file ./16196/lede87jqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede87_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1065.6-1366.9)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1366.946304118068
Truncating current grating at 1747.8317918737994
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede87_cspec.fits
Processing product (16196, '88')
Targets in visit (16196, '88'): ['MRK-817']
Processing target MRK-817 in visit (16196, '88')
Processing grating COS/G130M
Importing files ['./16196/lede88tdq_x1d.fits', './16196/lede88tfq_x1d.fits', './16196/lede88thq_x1d.fits', './16196/lede88tjq_x1d.fits']
Processing file ./16196/lede88tdq_x1d.fits
Processing file ./16196/lede88tfq_x1d.fits
Processing file ./16196/lede88thq_x1d.fits
Processing file ./16196/lede88tjq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede88_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede88tlq_x1d.fits', './16196/lede88tnq_x1d.fits', './16196/lede88tpq_x1d.fits', './16196/lede88trq_x1d.fits']
Processing file ./16196/lede88tlq_x1d.fits
Processing file ./16196/lede88tnq_x1d.fits
Processing file ./16196/lede88tpq_x1d.fits
Processing file ./16196/lede88trq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede88_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1453350676074
Truncating current grating at 1747.672299663824
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede88_cspec.fits
Processing product (16196, '89')
Targets in visit (16196, '89'): ['MRK-817']
Processing target MRK-817 in visit (16196, '89')
Processing grating COS/G130M
Importing files ['./16196/lede89bcq_x1d.fits', './16196/lede89beq_x1d.fits', './16196/lede89bgq_x1d.fits', './16196/lede89biq_x1d.fits']
Processing file ./16196/lede89bcq_x1d.fits
Processing file ./16196/lede89beq_x1d.fits
Processing file ./16196/lede89bgq_x1d.fits
Processing file ./16196/lede89biq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede89_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede89bkq_x1d.fits', './16196/lede89bmq_x1d.fits', './16196/lede89boq_x1d.fits', './16196/lede89bqq_x1d.fits']
Processing file ./16196/lede89bkq_x1d.fits
Processing file ./16196/lede89bmq_x1d.fits
Processing file ./16196/lede89boq_x1d.fits
Processing file ./16196/lede89bqq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede89_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.0-1367.1)
COS/G160M 1342-1800 (Actual: 1345.8-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1252031478302
Truncating current grating at 1747.7577443041564
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede89_cspec.fits
Processing product (16196, '90')
Targets in visit (16196, '90'): ['MRK-817']
Processing target MRK-817 in visit (16196, '90')
Processing grating COS/G130M
Importing files ['./16196/lede90dnq_x1d.fits', './16196/lede90dpq_x1d.fits', './16196/lede90drq_x1d.fits', './16196/lede90dtq_x1d.fits']
Processing file ./16196/lede90dnq_x1d.fits
Processing file ./16196/lede90dpq_x1d.fits
Processing file ./16196/lede90drq_x1d.fits
Processing file ./16196/lede90dtq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede90_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede90dvq_x1d.fits', './16196/lede90dxq_x1d.fits', './16196/lede90dzq_x1d.fits', './16196/lede90e1q_x1d.fits']
Processing file ./16196/lede90dvq_x1d.fits
Processing file ./16196/lede90dxq_x1d.fits
Processing file ./16196/lede90dzq_x1d.fits
Processing file ./16196/lede90e1q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede90_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.7-1747.8)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.2345908305585
Truncating current grating at 1747.769725741073
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede90_cspec.fits
Processing product (16196, '91')
Targets in visit (16196, '91'): ['MRK-817']
Processing target MRK-817 in visit (16196, '91')
Processing grating COS/G130M
Importing files ['./16196/lede91p8q_x1d.fits', './16196/lede91paq_x1d.fits', './16196/lede91pcq_x1d.fits', './16196/lede91peq_x1d.fits']
Processing file ./16196/lede91p8q_x1d.fits
Processing file ./16196/lede91paq_x1d.fits
Processing file ./16196/lede91pcq_x1d.fits
Processing file ./16196/lede91peq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede91_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede91pgq_x1d.fits', './16196/lede91piq_x1d.fits', './16196/lede91pkq_x1d.fits', './16196/lede91pmq_x1d.fits']
Processing file ./16196/lede91pgq_x1d.fits
Processing file ./16196/lede91piq_x1d.fits
Processing file ./16196/lede91pkq_x1d.fits
Processing file ./16196/lede91pmq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede91_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.6-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1846147374881
Truncating current grating at 1747.745008794437
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede91_cspec.fits
Processing product (16196, '92')
Targets in visit (16196, '92'): ['MRK-817']
Processing target MRK-817 in visit (16196, '92')
Processing grating COS/G130M
Importing files ['./16196/lede92k3q_x1d.fits', './16196/lede92k5q_x1d.fits', './16196/lede92k7q_x1d.fits', './16196/lede92k9q_x1d.fits']
Processing file ./16196/lede92k3q_x1d.fits
Processing file ./16196/lede92k5q_x1d.fits
Processing file ./16196/lede92k7q_x1d.fits
Processing file ./16196/lede92k9q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede92_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede92kbq_x1d.fits', './16196/lede92kdq_x1d.fits', './16196/lede92kfq_x1d.fits', './16196/lede92khq_x1d.fits']
Processing file ./16196/lede92kbq_x1d.fits
Processing file ./16196/lede92kdq_x1d.fits
Processing file ./16196/lede92kfq_x1d.fits
Processing file ./16196/lede92khq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede92_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.5-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.164524114105
Truncating current grating at 1747.7080440929208
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede92_cspec.fits
Processing product (16196, '93')
Targets in visit (16196, '93'): ['MRK-817']
Processing target MRK-817 in visit (16196, '93')
Processing grating COS/G130M
Importing files ['./16196/lede93stq_x1d.fits', './16196/lede93svq_x1d.fits', './16196/lede93sxq_x1d.fits', './16196/lede93szq_x1d.fits']
Processing file ./16196/lede93stq_x1d.fits
Processing file ./16196/lede93svq_x1d.fits
Processing file ./16196/lede93sxq_x1d.fits
Processing file ./16196/lede93szq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede93_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede93t1q_x1d.fits', './16196/lede93t3q_x1d.fits', './16196/lede93t5q_x1d.fits', './16196/lede93t7q_x1d.fits']
Processing file ./16196/lede93t1q_x1d.fits
Processing file ./16196/lede93t3q_x1d.fits
Processing file ./16196/lede93t5q_x1d.fits
Processing file ./16196/lede93t7q_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede93_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 1066.1-1367.2)
COS/G160M 1342-1800 (Actual: 1345.5-1747.7)
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.1743114182987
Truncating current grating at 1747.7078075018667
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m-g160m_lede93_cspec.fits
Processing product (16196, '94')
Targets in visit (16196, '94'): ['MRK-817']
Processing target MRK-817 in visit (16196, '94')
Processing grating COS/G130M
Importing files ['./16196/lede94r5q_x1d.fits', './16196/lede94r7q_x1d.fits', './16196/lede94r9q_x1d.fits', './16196/lede94rbq_x1d.fits']
Processing file ./16196/lede94r5q_x1d.fits
Processing file ./16196/lede94r7q_x1d.fits
Processing file ./16196/lede94r9q_x1d.fits
Processing file ./16196/lede94rbq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede94_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '95')
Targets in visit (16196, '95'): ['MRK-817']
Processing target MRK-817 in visit (16196, '95')
Processing grating COS/G160M
Importing files ['./16196/lede95roq_x1d.fits', './16196/lede95rwq_x1d.fits']
Processing file ./16196/lede95roq_x1d.fits
Processing file ./16196/lede95rwq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede95_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '96')
Targets in visit (16196, '96'): ['MRK-817']
Processing target MRK-817 in visit (16196, '96')
Processing grating COS/G130M
Importing files ['./16196/lede96e9q_x1d.fits', './16196/lede96ebq_x1d.fits', './16196/lede96edq_x1d.fits', './16196/lede96efq_x1d.fits']
Processing file ./16196/lede96e9q_x1d.fits
Processing file ./16196/lede96ebq_x1d.fits
Processing file ./16196/lede96edq_x1d.fits
Processing file ./16196/lede96efq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede96_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, '97')
Targets in visit (16196, '97'): ['MRK-817']
Processing target MRK-817 in visit (16196, '97')
Processing grating COS/G160M
Importing files ['./16196/lede97ejq_x1d.fits', './16196/lede97elq_x1d.fits']
Processing file ./16196/lede97ejq_x1d.fits
Processing file ./16196/lede97elq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede97_cspec.fits
No need to create abutted product as < 2 single grating products
Processing product (16196, 'a5')
Targets in visit (16196, 'a5'): ['MRK-817']
Processing target MRK-817 in visit (16196, 'a5')
Processing grating STIS/G750L
Importing files ['./16196/oedea5020_sx1.fits', './16196/oedea5030_sx1.fits', './16196/oedea5040_sx1.fits']
Processing file ./16196/oedea5020_sx1.fits
Processing file ./16196/oedea5030_sx1.fits
Processing file ./16196/oedea5040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oedea5_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oedea5050_sx1.fits', './16196/oedea5060_sx1.fits', './16196/oedea5070_sx1.fits']
Processing file ./16196/oedea5050_sx1.fits
Processing file ./16196/oedea5060_sx1.fits
Processing file ./16196/oedea5070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oedea5_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oedea5080_x1d.fits']
Processing file ./16196/oedea5080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oedea5_cspec.fits
Making a product from these gratings
STIS/G230L 1582.0-3158.7 (Actual: 1579.4-3143.2)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5700.3)
STIS/G750L 5261.3-10252.3 (Actual: 5303.8-10242.2)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G230L
Abutting STIS/G430L product to current result
With a transition wavelength of 3143.215827505996
Abutting STIS/G750L product to current result
With a transition wavelength of 5700.3201354009825
Truncating current grating at 10242.22565091332
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea5_cspec.fits
Processing product (16196, 'a6')
Targets in visit (16196, 'a6'): ['MRK-817']
Processing target MRK-817 in visit (16196, 'a6')
Processing grating STIS/G750L
Importing files ['./16196/oedea6020_sx1.fits', './16196/oedea6030_sx1.fits', './16196/oedea6040_sx1.fits']
Processing file ./16196/oedea6020_sx1.fits
Processing file ./16196/oedea6030_sx1.fits
Processing file ./16196/oedea6040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oedea6_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oedea6050_sx1.fits', './16196/oedea6060_sx1.fits', './16196/oedea6070_sx1.fits']
Processing file ./16196/oedea6050_sx1.fits
Processing file ./16196/oedea6060_sx1.fits
Processing file ./16196/oedea6070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oedea6_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oedea6080_x1d.fits']
Processing file ./16196/oedea6080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oedea6_cspec.fits
Making a product from these gratings
STIS/G230L 1582.0-3158.7 (Actual: 1588.8-3157.1)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5700.5)
STIS/G750L 5261.3-10252.3 (Actual: 5304.8-10243.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G230L
Abutting STIS/G430L product to current result
With a transition wavelength of 3157.071135310083
Abutting STIS/G750L product to current result
With a transition wavelength of 5700.492629471769
Truncating current grating at 10243.531587044345
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedea6_cspec.fits
Processing product (16196, 'an')
Targets in visit (16196, 'an'): ['MRK-817']
Processing target MRK-817 in visit (16196, 'an')
Processing grating STIS/G750L
Importing files ['./16196/oedean020_sx1.fits', './16196/oedean030_sx1.fits', './16196/oedean040_sx1.fits']
Processing file ./16196/oedean020_sx1.fits
Processing file ./16196/oedean030_sx1.fits
Processing file ./16196/oedean040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oedean_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oedean050_sx1.fits', './16196/oedean060_sx1.fits', './16196/oedean070_sx1.fits']
Processing file ./16196/oedean050_sx1.fits
Processing file ./16196/oedean060_sx1.fits
Processing file ./16196/oedean070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oedean_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oedean080_x1d.fits']
Processing file ./16196/oedean080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oedean_cspec.fits
Making a product from these gratings
STIS/G230L 1582.0-3158.7 (Actual: 1582.8-3151.2)
STIS/G430L 2895.9-5704.4 (Actual: 2976.5-5701.5)
STIS/G750L 5261.3-10252.3 (Actual: 5304.8-10243.5)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating STIS/G230L
Abutting STIS/G430L product to current result
With a transition wavelength of 3151.1882325880265
Abutting STIS/G750L product to current result
With a transition wavelength of 5701.494974535856
Truncating current grating at 10243.536619541446
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l-g430l-g750l_oedean_cspec.fits
Looping over proposals
Processing product 16196
Targets in proposal 16196: ['MRK-817']
Processing target MRK-817 in proposal 16196
Processing grating COS/G130M
Importing files ['./16196/lede01icq_x1d.fits', './16196/lede01ieq_x1d.fits', './16196/lede01igq_x1d.fits', './16196/lede01iiq_x1d.fits', './16196/lede02vbq_x1d.fits', './16196/lede02vdq_x1d.fits', './16196/lede02vfq_x1d.fits', './16196/lede02vhq_x1d.fits', './16196/lede03g0q_x1d.fits', './16196/lede03g2q_x1d.fits', './16196/lede03g4q_x1d.fits', './16196/lede03g6q_x1d.fits', './16196/lede04maq_x1d.fits', './16196/lede04mcq_x1d.fits', './16196/lede04meq_x1d.fits', './16196/lede04mgq_x1d.fits', './16196/lede05qcq_x1d.fits', './16196/lede05qeq_x1d.fits', './16196/lede05qgq_x1d.fits', './16196/lede05qiq_x1d.fits', './16196/lede06yyq_x1d.fits', './16196/lede06z0q_x1d.fits', './16196/lede06z2q_x1d.fits', './16196/lede06z4q_x1d.fits', './16196/lede07jyq_x1d.fits', './16196/lede07k0q_x1d.fits', './16196/lede07k2q_x1d.fits', './16196/lede07k4q_x1d.fits', './16196/lede08f3q_x1d.fits', './16196/lede08f5q_x1d.fits', './16196/lede08f7q_x1d.fits', './16196/lede08fcq_x1d.fits', './16196/lede09a1q_x1d.fits', './16196/lede09a3q_x1d.fits', './16196/lede09a5q_x1d.fits', './16196/lede09a7q_x1d.fits', './16196/lede0aetq_x1d.fits', './16196/lede0aevq_x1d.fits', './16196/lede0aexq_x1d.fits', './16196/lede0aezq_x1d.fits', './16196/lede0bj1q_x1d.fits', './16196/lede0bj3q_x1d.fits', './16196/lede0bj5q_x1d.fits', './16196/lede0bj7q_x1d.fits', './16196/lede0cvpq_x1d.fits', './16196/lede0cvrq_x1d.fits', './16196/lede0cvtq_x1d.fits', './16196/lede0cvvq_x1d.fits', './16196/lede0df6q_x1d.fits', './16196/lede0df8q_x1d.fits', './16196/lede0dfaq_x1d.fits', './16196/lede0dfcq_x1d.fits', './16196/lede0iknq_x1d.fits', './16196/lede0ikpq_x1d.fits', './16196/lede0ikrq_x1d.fits', './16196/lede0iktq_x1d.fits', './16196/lede0jw1q_x1d.fits', './16196/lede0jw3q_x1d.fits', './16196/lede0jw5q_x1d.fits', './16196/lede0jw7q_x1d.fits', './16196/lede0kf5q_x1d.fits', './16196/lede0kf7q_x1d.fits', './16196/lede0kf9q_x1d.fits', './16196/lede0kfbq_x1d.fits', './16196/lede0loxq_x1d.fits', './16196/lede0lozq_x1d.fits', './16196/lede0lp1q_x1d.fits', './16196/lede0lp3q_x1d.fits', './16196/lede0mz6q_x1d.fits', './16196/lede0mz8q_x1d.fits', './16196/lede0mzaq_x1d.fits', './16196/lede0mzvq_x1d.fits', './16196/lede0njbq_x1d.fits', './16196/lede0njeq_x1d.fits', './16196/lede0njgq_x1d.fits', './16196/lede0njiq_x1d.fits', './16196/lede0oglq_x1d.fits', './16196/lede0ognq_x1d.fits', './16196/lede0ogpq_x1d.fits', './16196/lede0ogrq_x1d.fits', './16196/lede0psiq_x1d.fits', './16196/lede0pskq_x1d.fits', './16196/lede0psmq_x1d.fits', './16196/lede0psoq_x1d.fits', './16196/lede0qc2q_x1d.fits', './16196/lede0qc4q_x1d.fits', './16196/lede0qc6q_x1d.fits', './16196/lede0qc8q_x1d.fits', './16196/lede0ra6q_x1d.fits', './16196/lede0ra8q_x1d.fits', './16196/lede0rabq_x1d.fits', './16196/lede0ragq_x1d.fits', './16196/lede0to1q_x1d.fits', './16196/lede0to4q_x1d.fits', './16196/lede0to6q_x1d.fits', './16196/lede0tobq_x1d.fits', './16196/lede0uzeq_x1d.fits', './16196/lede0uzhq_x1d.fits', './16196/lede0uzjq_x1d.fits', './16196/lede0uzoq_x1d.fits', './16196/lede0xgrq_x1d.fits', './16196/lede0xgtq_x1d.fits', './16196/lede0xgvq_x1d.fits', './16196/lede0xgyq_x1d.fits', './16196/lede0zz2q_x1d.fits', './16196/lede0zz4q_x1d.fits', './16196/lede0zz6q_x1d.fits', './16196/lede0zz8q_x1d.fits', './16196/lede10iyq_x1d.fits', './16196/lede10j0q_x1d.fits', './16196/lede10j2q_x1d.fits', './16196/lede10j4q_x1d.fits', './16196/lede11a4q_x1d.fits', './16196/lede11a6q_x1d.fits', './16196/lede11a8q_x1d.fits', './16196/lede11aaq_x1d.fits', './16196/lede12lzq_x1d.fits', './16196/lede12m1q_x1d.fits', './16196/lede12m3q_x1d.fits', './16196/lede12m5q_x1d.fits', './16196/lede14jzq_x1d.fits', './16196/lede14k1q_x1d.fits', './16196/lede14k3q_x1d.fits', './16196/lede14k5q_x1d.fits', './16196/lede15ngq_x1d.fits', './16196/lede15niq_x1d.fits', './16196/lede15nkq_x1d.fits', './16196/lede15nmq_x1d.fits', './16196/lede16vzq_x1d.fits', './16196/lede16w2q_x1d.fits', './16196/lede16w4q_x1d.fits', './16196/lede16w6q_x1d.fits', './16196/lede17hqq_x1d.fits', './16196/lede17hsq_x1d.fits', './16196/lede17huq_x1d.fits', './16196/lede17hwq_x1d.fits', './16196/lede18s8q_x1d.fits', './16196/lede18saq_x1d.fits', './16196/lede18scq_x1d.fits', './16196/lede18seq_x1d.fits', './16196/lede19msq_x1d.fits', './16196/lede19muq_x1d.fits', './16196/lede19mwq_x1d.fits', './16196/lede19myq_x1d.fits', './16196/lede1bvgq_x1d.fits', './16196/lede1bviq_x1d.fits', './16196/lede1bvkq_x1d.fits', './16196/lede1bvmq_x1d.fits', './16196/lede1cf2q_x1d.fits', './16196/lede1cf4q_x1d.fits', './16196/lede1cf6q_x1d.fits', './16196/lede1cf8q_x1d.fits', './16196/lede1ejlq_x1d.fits', './16196/lede1ejnq_x1d.fits', './16196/lede1ejpq_x1d.fits', './16196/lede1ejrq_x1d.fits', './16196/lede1gaeq_x1d.fits', './16196/lede1gahq_x1d.fits', './16196/lede1gajq_x1d.fits', './16196/lede1gamq_x1d.fits', './16196/lede1hhcq_x1d.fits', './16196/lede1hheq_x1d.fits', './16196/lede1hhgq_x1d.fits', './16196/lede1hhiq_x1d.fits', './16196/lede1irbq_x1d.fits', './16196/lede1irdq_x1d.fits', './16196/lede1irfq_x1d.fits', './16196/lede1irhq_x1d.fits', './16196/lede1mtsq_x1d.fits', './16196/lede1mtuq_x1d.fits', './16196/lede1mtwq_x1d.fits', './16196/lede1mu1q_x1d.fits', './16196/lede1noiq_x1d.fits', './16196/lede1nokq_x1d.fits', './16196/lede1nomq_x1d.fits', './16196/lede1nooq_x1d.fits', './16196/lede1oceq_x1d.fits', './16196/lede1ocgq_x1d.fits', './16196/lede1ociq_x1d.fits', './16196/lede1ockq_x1d.fits', './16196/lede1pkjq_x1d.fits', './16196/lede1pklq_x1d.fits', './16196/lede1pknq_x1d.fits', './16196/lede1pkpq_x1d.fits', './16196/lede1qspq_x1d.fits', './16196/lede1qsrq_x1d.fits', './16196/lede1qstq_x1d.fits', './16196/lede1qsvq_x1d.fits', './16196/lede1rmeq_x1d.fits', './16196/lede1rmgq_x1d.fits', './16196/lede1rmiq_x1d.fits', './16196/lede1rmkq_x1d.fits', './16196/lede1suaq_x1d.fits', './16196/lede1sucq_x1d.fits', './16196/lede1sueq_x1d.fits', './16196/lede1sugq_x1d.fits', './16196/lede1ucsq_x1d.fits', './16196/lede1ucuq_x1d.fits', './16196/lede1ucwq_x1d.fits', './16196/lede1ucyq_x1d.fits', './16196/lede1wsvq_x1d.fits', './16196/lede1wsxq_x1d.fits', './16196/lede1wszq_x1d.fits', './16196/lede1wt1q_x1d.fits', './16196/lede20alq_x1d.fits', './16196/lede20anq_x1d.fits', './16196/lede20apq_x1d.fits', './16196/lede20arq_x1d.fits', './16196/lede21keq_x1d.fits', './16196/lede21kgq_x1d.fits', './16196/lede21kiq_x1d.fits', './16196/lede21kkq_x1d.fits', './16196/lede22loq_x1d.fits', './16196/lede22lqq_x1d.fits', './16196/lede22lsq_x1d.fits', './16196/lede22luq_x1d.fits', './16196/lede23upq_x1d.fits', './16196/lede23urq_x1d.fits', './16196/lede23utq_x1d.fits', './16196/lede23uvq_x1d.fits', './16196/lede24jsq_x1d.fits', './16196/lede24juq_x1d.fits', './16196/lede24jwq_x1d.fits', './16196/lede24jyq_x1d.fits', './16196/lede25rzq_x1d.fits', './16196/lede25s1q_x1d.fits', './16196/lede25s3q_x1d.fits', './16196/lede25s5q_x1d.fits', './16196/lede26k2q_x1d.fits', './16196/lede26k4q_x1d.fits', './16196/lede26k6q_x1d.fits', './16196/lede26k8q_x1d.fits', './16196/lede27qjq_x1d.fits', './16196/lede27qlq_x1d.fits', './16196/lede27qnq_x1d.fits', './16196/lede27qpq_x1d.fits', './16196/lede28a5q_x1d.fits', './16196/lede28a7q_x1d.fits', './16196/lede28a9q_x1d.fits', './16196/lede28abq_x1d.fits', './16196/lede29hzq_x1d.fits', './16196/lede29i1q_x1d.fits', './16196/lede29i3q_x1d.fits', './16196/lede29i5q_x1d.fits', './16196/lede2ataq_x1d.fits', './16196/lede2atcq_x1d.fits', './16196/lede2ateq_x1d.fits', './16196/lede2atgq_x1d.fits', './16196/lede2bb4q_x1d.fits', './16196/lede2bb6q_x1d.fits', './16196/lede2bb8q_x1d.fits', './16196/lede2bbaq_x1d.fits', './16196/lede2cisq_x1d.fits', './16196/lede2ciuq_x1d.fits', './16196/lede2ciwq_x1d.fits', './16196/lede2ciyq_x1d.fits', './16196/lede2dokq_x1d.fits', './16196/lede2domq_x1d.fits', './16196/lede2dorq_x1d.fits', './16196/lede2dotq_x1d.fits', './16196/lede2eyeq_x1d.fits', './16196/lede2eygq_x1d.fits', './16196/lede2eyiq_x1d.fits', './16196/lede2eylq_x1d.fits', './16196/lede2fhvq_x1d.fits', './16196/lede2fhxq_x1d.fits', './16196/lede2fhzq_x1d.fits', './16196/lede2fi1q_x1d.fits', './16196/lede2gf0q_x1d.fits', './16196/lede2gf2q_x1d.fits', './16196/lede2gf4q_x1d.fits', './16196/lede2gf6q_x1d.fits', './16196/lede2hqxq_x1d.fits', './16196/lede2hqzq_x1d.fits', './16196/lede2hr1q_x1d.fits', './16196/lede2hr3q_x1d.fits', './16196/lede2ib3q_x1d.fits', './16196/lede2ib5q_x1d.fits', './16196/lede2ib7q_x1d.fits', './16196/lede2ib9q_x1d.fits', './16196/lede2jjoq_x1d.fits', './16196/lede2jjqq_x1d.fits', './16196/lede2jjsq_x1d.fits', './16196/lede2jjuq_x1d.fits', './16196/lede2kkaq_x1d.fits', './16196/lede2kkcq_x1d.fits', './16196/lede2kkhq_x1d.fits', './16196/lede2kkjq_x1d.fits', './16196/lede2ls0q_x1d.fits', './16196/lede2ls2q_x1d.fits', './16196/lede2ls4q_x1d.fits', './16196/lede2ls6q_x1d.fits', './16196/lede2mauq_x1d.fits', './16196/lede2mawq_x1d.fits', './16196/lede2mayq_x1d.fits', './16196/lede2mb0q_x1d.fits', './16196/lede2nknq_x1d.fits', './16196/lede2nkqq_x1d.fits', './16196/lede2nkuq_x1d.fits', './16196/lede2nkwq_x1d.fits', './16196/lede2ua2q_x1d.fits', './16196/lede2uzvq_x1d.fits', './16196/lede2uzxq_x1d.fits', './16196/lede2uzzq_x1d.fits', './16196/lede2yd3q_x1d.fits', './16196/lede2yd5q_x1d.fits', './16196/lede2yd7q_x1d.fits', './16196/lede2yd9q_x1d.fits', './16196/lede2zo6q_x1d.fits', './16196/lede2zo8q_x1d.fits', './16196/lede2zoaq_x1d.fits', './16196/lede2zocq_x1d.fits', './16196/lede30sbq_x1d.fits', './16196/lede30sdq_x1d.fits', './16196/lede30sfq_x1d.fits', './16196/lede30shq_x1d.fits', './16196/lede31d6q_x1d.fits', './16196/lede31d8q_x1d.fits', './16196/lede31daq_x1d.fits', './16196/lede31dcq_x1d.fits', './16196/lede32s0q_x1d.fits', './16196/lede32s2q_x1d.fits', './16196/lede32s5q_x1d.fits', './16196/lede32s7q_x1d.fits', './16196/lede33rzq_x1d.fits', './16196/lede33s2q_x1d.fits', './16196/lede33s4q_x1d.fits', './16196/lede33s7q_x1d.fits', './16196/lede34lnq_x1d.fits', './16196/lede34lpq_x1d.fits', './16196/lede34lrq_x1d.fits', './16196/lede34luq_x1d.fits', './16196/lede35xrq_x1d.fits', './16196/lede35xtq_x1d.fits', './16196/lede35xvq_x1d.fits', './16196/lede35xxq_x1d.fits', './16196/lede36g0q_x1d.fits', './16196/lede36g2q_x1d.fits', './16196/lede36g4q_x1d.fits', './16196/lede36g6q_x1d.fits', './16196/lede37l5q_x1d.fits', './16196/lede37l7q_x1d.fits', './16196/lede37l9q_x1d.fits', './16196/lede37lbq_x1d.fits', './16196/lede38tsq_x1d.fits', './16196/lede38tuq_x1d.fits', './16196/lede38twq_x1d.fits', './16196/lede38tyq_x1d.fits', './16196/lede39clq_x1d.fits', './16196/lede39cnq_x1d.fits', './16196/lede39cpq_x1d.fits', './16196/lede39crq_x1d.fits', './16196/lede3axcq_x1d.fits', './16196/lede3axeq_x1d.fits', './16196/lede3axgq_x1d.fits', './16196/lede3axiq_x1d.fits', './16196/lede3bk0q_x1d.fits', './16196/lede3bk2q_x1d.fits', './16196/lede3bk4q_x1d.fits', './16196/lede3bk6q_x1d.fits', './16196/lede3ck6q_x1d.fits', './16196/lede3ck8q_x1d.fits', './16196/lede3ckaq_x1d.fits', './16196/lede3ckcq_x1d.fits', './16196/lede3dt1q_x1d.fits', './16196/lede3dt3q_x1d.fits', './16196/lede3dt5q_x1d.fits', './16196/lede3dt7q_x1d.fits', './16196/lede3efcq_x1d.fits', './16196/lede3efeq_x1d.fits', './16196/lede3efgq_x1d.fits', './16196/lede3efiq_x1d.fits', './16196/lede3fdhq_x1d.fits', './16196/lede3fdjq_x1d.fits', './16196/lede3fdlq_x1d.fits', './16196/lede3fdnq_x1d.fits', './16196/lede3gmjq_x1d.fits', './16196/lede3gmlq_x1d.fits', './16196/lede3gmnq_x1d.fits', './16196/lede3gmpq_x1d.fits', './16196/lede3hbeq_x1d.fits', './16196/lede3hbhq_x1d.fits', './16196/lede3hbjq_x1d.fits', './16196/lede3hblq_x1d.fits', './16196/lede3irrq_x1d.fits', './16196/lede3irtq_x1d.fits', './16196/lede3irvq_x1d.fits', './16196/lede3irxq_x1d.fits', './16196/lede3lppq_x1d.fits', './16196/lede3lprq_x1d.fits', './16196/lede3lptq_x1d.fits', './16196/lede3lpvq_x1d.fits', './16196/lede3me4q_x1d.fits', './16196/lede3me6q_x1d.fits', './16196/lede3me8q_x1d.fits', './16196/lede3meaq_x1d.fits', './16196/lede3nc4q_x1d.fits', './16196/lede3nc6q_x1d.fits', './16196/lede3nc8q_x1d.fits', './16196/lede3ncaq_x1d.fits', './16196/lede3ncqq_x1d.fits', './16196/lede3nctq_x1d.fits', './16196/lede3ncwq_x1d.fits', './16196/lede3nd5q_x1d.fits', './16196/lede3pr0q_x1d.fits', './16196/lede3pr2q_x1d.fits', './16196/lede3pr4q_x1d.fits', './16196/lede3pr6q_x1d.fits', './16196/lede3qzpq_x1d.fits', './16196/lede3qzrq_x1d.fits', './16196/lede3qztq_x1d.fits', './16196/lede3qzvq_x1d.fits', './16196/lede3rh0q_x1d.fits', './16196/lede3rh2q_x1d.fits', './16196/lede3rh4q_x1d.fits', './16196/lede3rh6q_x1d.fits', './16196/lede3staq_x1d.fits', './16196/lede3stcq_x1d.fits', './16196/lede3steq_x1d.fits', './16196/lede3stgq_x1d.fits', './16196/lede3ua1q_x1d.fits', './16196/lede3ua3q_x1d.fits', './16196/lede3uzvq_x1d.fits', './16196/lede3uzyq_x1d.fits', './16196/lede3vijq_x1d.fits', './16196/lede3vimq_x1d.fits', './16196/lede3vioq_x1d.fits', './16196/lede3viqq_x1d.fits', './16196/lede3wduq_x1d.fits', './16196/lede3wdwq_x1d.fits', './16196/lede3wdyq_x1d.fits', './16196/lede3we0q_x1d.fits', './16196/lede3xjdq_x1d.fits', './16196/lede3xjfq_x1d.fits', './16196/lede3xjhq_x1d.fits', './16196/lede3xjmq_x1d.fits', './16196/lede3yq7q_x1d.fits', './16196/lede3yq9q_x1d.fits', './16196/lede3yqbq_x1d.fits', './16196/lede3yqdq_x1d.fits', './16196/lede3za1q_x1d.fits', './16196/lede3zzuq_x1d.fits', './16196/lede3zzwq_x1d.fits', './16196/lede3zzyq_x1d.fits', './16196/lede40mcq_x1d.fits', './16196/lede40meq_x1d.fits', './16196/lede40mgq_x1d.fits', './16196/lede40miq_x1d.fits', './16196/lede41u9q_x1d.fits', './16196/lede41ubq_x1d.fits', './16196/lede41udq_x1d.fits', './16196/lede41ufq_x1d.fits', './16196/lede42hfq_x1d.fits', './16196/lede42hhq_x1d.fits', './16196/lede42hjq_x1d.fits', './16196/lede42hlq_x1d.fits', './16196/lede43p8q_x1d.fits', './16196/lede43paq_x1d.fits', './16196/lede43pcq_x1d.fits', './16196/lede43peq_x1d.fits', './16196/lede44grq_x1d.fits', './16196/lede44gtq_x1d.fits', './16196/lede44gvq_x1d.fits', './16196/lede44gxq_x1d.fits', './16196/lede45q3q_x1d.fits', './16196/lede45q5q_x1d.fits', './16196/lede45q7q_x1d.fits', './16196/lede45q9q_x1d.fits', './16196/lede46ynq_x1d.fits', './16196/lede46ypq_x1d.fits', './16196/lede46yrq_x1d.fits', './16196/lede46ytq_x1d.fits', './16196/lede47b4q_x1d.fits', './16196/lede47b6q_x1d.fits', './16196/lede47b8q_x1d.fits', './16196/lede47baq_x1d.fits', './16196/lede48t2q_x1d.fits', './16196/lede48t4q_x1d.fits', './16196/lede48t6q_x1d.fits', './16196/lede48t8q_x1d.fits', './16196/lede49h4q_x1d.fits', './16196/lede49h6q_x1d.fits', './16196/lede49h8q_x1d.fits', './16196/lede49haq_x1d.fits', './16196/lede4ak6q_x1d.fits', './16196/lede4ak8q_x1d.fits', './16196/lede4akaq_x1d.fits', './16196/lede4akcq_x1d.fits', './16196/lede4epnq_x1d.fits', './16196/lede4eppq_x1d.fits', './16196/lede4eprq_x1d.fits', './16196/lede4eptq_x1d.fits', './16196/lede50wsq_x1d.fits', './16196/lede50wuq_x1d.fits', './16196/lede50wwq_x1d.fits', './16196/lede50wyq_x1d.fits', './16196/lede51h1q_x1d.fits', './16196/lede51h3q_x1d.fits', './16196/lede51h5q_x1d.fits', './16196/lede51h7q_x1d.fits', './16196/lede52mkq_x1d.fits', './16196/lede52mmq_x1d.fits', './16196/lede52moq_x1d.fits', './16196/lede52mqq_x1d.fits', './16196/lede56a3q_x1d.fits', './16196/lede56a5q_x1d.fits', './16196/lede56a7q_x1d.fits', './16196/lede56ahq_x1d.fits', './16196/lede59npq_x1d.fits', './16196/lede59nrq_x1d.fits', './16196/lede59ntq_x1d.fits', './16196/lede59nvq_x1d.fits', './16196/lede60waq_x1d.fits', './16196/lede60weq_x1d.fits', './16196/lede60wgq_x1d.fits', './16196/lede60wiq_x1d.fits', './16196/lede61dtq_x1d.fits', './16196/lede61dvq_x1d.fits', './16196/lede61dxq_x1d.fits', './16196/lede61dzq_x1d.fits', './16196/lede62maq_x1d.fits', './16196/lede62mcq_x1d.fits', './16196/lede62meq_x1d.fits', './16196/lede62mgq_x1d.fits', './16196/lede63x0q_x1d.fits', './16196/lede63x2q_x1d.fits', './16196/lede63x4q_x1d.fits', './16196/lede63x6q_x1d.fits', './16196/lede64imq_x1d.fits', './16196/lede64ioq_x1d.fits', './16196/lede64iqq_x1d.fits', './16196/lede64isq_x1d.fits', './16196/lede65dxq_x1d.fits', './16196/lede65dzq_x1d.fits', './16196/lede65e1q_x1d.fits', './16196/lede65e3q_x1d.fits', './16196/lede66lbq_x1d.fits', './16196/lede66ldq_x1d.fits', './16196/lede66lfq_x1d.fits', './16196/lede66lhq_x1d.fits', './16196/lede67x1q_x1d.fits', './16196/lede67x3q_x1d.fits', './16196/lede67x5q_x1d.fits', './16196/lede67x7q_x1d.fits', './16196/lede68fvq_x1d.fits', './16196/lede68fxq_x1d.fits', './16196/lede68fzq_x1d.fits', './16196/lede68g1q_x1d.fits', './16196/lede69h8q_x1d.fits', './16196/lede69hbq_x1d.fits', './16196/lede69hdq_x1d.fits', './16196/lede69hfq_x1d.fits', './16196/lede70t5q_x1d.fits', './16196/lede70t7q_x1d.fits', './16196/lede70t9q_x1d.fits', './16196/lede70tbq_x1d.fits', './16196/lede71bfq_x1d.fits', './16196/lede71bhq_x1d.fits', './16196/lede71bjq_x1d.fits', './16196/lede71blq_x1d.fits', './16196/lede72c8q_x1d.fits', './16196/lede72caq_x1d.fits', './16196/lede72ccq_x1d.fits', './16196/lede72chq_x1d.fits', './16196/lede73o7q_x1d.fits', './16196/lede73o9q_x1d.fits', './16196/lede73obq_x1d.fits', './16196/lede73odq_x1d.fits', './16196/lede74ubq_x1d.fits', './16196/lede74udq_x1d.fits', './16196/lede74ufq_x1d.fits', './16196/lede74uhq_x1d.fits', './16196/lede75c8q_x1d.fits', './16196/lede75cbq_x1d.fits', './16196/lede75cdq_x1d.fits', './16196/lede75cfq_x1d.fits', './16196/lede75cqq_x1d.fits', './16196/lede75csq_x1d.fits', './16196/lede75cuq_x1d.fits', './16196/lede75cwq_x1d.fits', './16196/lede77v8q_x1d.fits', './16196/lede77vaq_x1d.fits', './16196/lede77vcq_x1d.fits', './16196/lede77veq_x1d.fits', './16196/lede80n4q_x1d.fits', './16196/lede80n6q_x1d.fits', './16196/lede80n8q_x1d.fits', './16196/lede80naq_x1d.fits', './16196/lede82i5q_x1d.fits', './16196/lede82i7q_x1d.fits', './16196/lede82i9q_x1d.fits', './16196/lede82ibq_x1d.fits', './16196/lede83ijq_x1d.fits', './16196/lede83ilq_x1d.fits', './16196/lede83inq_x1d.fits', './16196/lede83ipq_x1d.fits', './16196/lede84qmq_x1d.fits', './16196/lede84qoq_x1d.fits', './16196/lede84qqq_x1d.fits', './16196/lede84qsq_x1d.fits', './16196/lede85bqq_x1d.fits', './16196/lede85bsq_x1d.fits', './16196/lede85buq_x1d.fits', './16196/lede85bwq_x1d.fits', './16196/lede86j0q_x1d.fits', './16196/lede86j2q_x1d.fits', './16196/lede86j4q_x1d.fits', './16196/lede86j6q_x1d.fits', './16196/lede87jcq_x1d.fits', './16196/lede87jeq_x1d.fits', './16196/lede87jgq_x1d.fits', './16196/lede87jiq_x1d.fits', './16196/lede88tdq_x1d.fits', './16196/lede88tfq_x1d.fits', './16196/lede88thq_x1d.fits', './16196/lede88tjq_x1d.fits', './16196/lede89bcq_x1d.fits', './16196/lede89beq_x1d.fits', './16196/lede89bgq_x1d.fits', './16196/lede89biq_x1d.fits', './16196/lede90dnq_x1d.fits', './16196/lede90dpq_x1d.fits', './16196/lede90drq_x1d.fits', './16196/lede90dtq_x1d.fits', './16196/lede91p8q_x1d.fits', './16196/lede91paq_x1d.fits', './16196/lede91pcq_x1d.fits', './16196/lede91peq_x1d.fits', './16196/lede92k3q_x1d.fits', './16196/lede92k5q_x1d.fits', './16196/lede92k7q_x1d.fits', './16196/lede92k9q_x1d.fits', './16196/lede93stq_x1d.fits', './16196/lede93svq_x1d.fits', './16196/lede93sxq_x1d.fits', './16196/lede93szq_x1d.fits', './16196/lede94r5q_x1d.fits', './16196/lede94r7q_x1d.fits', './16196/lede94r9q_x1d.fits', './16196/lede94rbq_x1d.fits', './16196/lede96e9q_x1d.fits', './16196/lede96ebq_x1d.fits', './16196/lede96edq_x1d.fits', './16196/lede96efq_x1d.fits']
Processing file ./16196/lede01icq_x1d.fits
Processing file ./16196/lede01ieq_x1d.fits
Processing file ./16196/lede01igq_x1d.fits
Processing file ./16196/lede01iiq_x1d.fits
Processing file ./16196/lede02vbq_x1d.fits
Processing file ./16196/lede02vdq_x1d.fits
Processing file ./16196/lede02vfq_x1d.fits
Processing file ./16196/lede02vhq_x1d.fits
Processing file ./16196/lede03g0q_x1d.fits
Processing file ./16196/lede03g2q_x1d.fits
Processing file ./16196/lede03g4q_x1d.fits
Processing file ./16196/lede03g6q_x1d.fits
Processing file ./16196/lede04maq_x1d.fits
Processing file ./16196/lede04mcq_x1d.fits
Processing file ./16196/lede04meq_x1d.fits
Processing file ./16196/lede04mgq_x1d.fits
Processing file ./16196/lede05qcq_x1d.fits
Processing file ./16196/lede05qeq_x1d.fits
Processing file ./16196/lede05qgq_x1d.fits
Processing file ./16196/lede05qiq_x1d.fits
Processing file ./16196/lede06yyq_x1d.fits
Processing file ./16196/lede06z0q_x1d.fits
Processing file ./16196/lede06z2q_x1d.fits
Processing file ./16196/lede06z4q_x1d.fits
Processing file ./16196/lede07jyq_x1d.fits
Processing file ./16196/lede07k0q_x1d.fits
Processing file ./16196/lede07k2q_x1d.fits
Processing file ./16196/lede07k4q_x1d.fits
Processing file ./16196/lede08f3q_x1d.fits
Processing file ./16196/lede08f5q_x1d.fits
Processing file ./16196/lede08f7q_x1d.fits
Processing file ./16196/lede08fcq_x1d.fits
Processing file ./16196/lede09a1q_x1d.fits
Processing file ./16196/lede09a3q_x1d.fits
Processing file ./16196/lede09a5q_x1d.fits
Processing file ./16196/lede09a7q_x1d.fits
Processing file ./16196/lede0aetq_x1d.fits
Processing file ./16196/lede0aevq_x1d.fits
Processing file ./16196/lede0aexq_x1d.fits
Processing file ./16196/lede0aezq_x1d.fits
Processing file ./16196/lede0bj1q_x1d.fits
Processing file ./16196/lede0bj3q_x1d.fits
Processing file ./16196/lede0bj5q_x1d.fits
Processing file ./16196/lede0bj7q_x1d.fits
Processing file ./16196/lede0cvpq_x1d.fits
Processing file ./16196/lede0cvrq_x1d.fits
Processing file ./16196/lede0cvtq_x1d.fits
Processing file ./16196/lede0cvvq_x1d.fits
Processing file ./16196/lede0df6q_x1d.fits
Processing file ./16196/lede0df8q_x1d.fits
Processing file ./16196/lede0dfaq_x1d.fits
Processing file ./16196/lede0dfcq_x1d.fits
Processing file ./16196/lede0iknq_x1d.fits
Processing file ./16196/lede0ikpq_x1d.fits
Processing file ./16196/lede0ikrq_x1d.fits
Processing file ./16196/lede0iktq_x1d.fits
Processing file ./16196/lede0jw1q_x1d.fits
Processing file ./16196/lede0jw3q_x1d.fits
Processing file ./16196/lede0jw5q_x1d.fits
Processing file ./16196/lede0jw7q_x1d.fits
Processing file ./16196/lede0kf5q_x1d.fits
Processing file ./16196/lede0kf7q_x1d.fits
Processing file ./16196/lede0kf9q_x1d.fits
Processing file ./16196/lede0kfbq_x1d.fits
Processing file ./16196/lede0loxq_x1d.fits
Processing file ./16196/lede0lozq_x1d.fits
Processing file ./16196/lede0lp1q_x1d.fits
Processing file ./16196/lede0lp3q_x1d.fits
Processing file ./16196/lede0mz6q_x1d.fits
Processing file ./16196/lede0mz8q_x1d.fits
Processing file ./16196/lede0mzaq_x1d.fits
Processing file ./16196/lede0mzvq_x1d.fits
Processing file ./16196/lede0njbq_x1d.fits
Processing file ./16196/lede0njeq_x1d.fits
Processing file ./16196/lede0njgq_x1d.fits
Processing file ./16196/lede0njiq_x1d.fits
Processing file ./16196/lede0oglq_x1d.fits
Processing file ./16196/lede0ognq_x1d.fits
Processing file ./16196/lede0ogpq_x1d.fits
Processing file ./16196/lede0ogrq_x1d.fits
Processing file ./16196/lede0psiq_x1d.fits
Processing file ./16196/lede0pskq_x1d.fits
Processing file ./16196/lede0psmq_x1d.fits
Processing file ./16196/lede0psoq_x1d.fits
Processing file ./16196/lede0qc2q_x1d.fits
Processing file ./16196/lede0qc4q_x1d.fits
Processing file ./16196/lede0qc6q_x1d.fits
Processing file ./16196/lede0qc8q_x1d.fits
Processing file ./16196/lede0ra6q_x1d.fits
Processing file ./16196/lede0ra8q_x1d.fits
Processing file ./16196/lede0rabq_x1d.fits
Processing file ./16196/lede0ragq_x1d.fits
Processing file ./16196/lede0to1q_x1d.fits
Processing file ./16196/lede0to4q_x1d.fits
Processing file ./16196/lede0to6q_x1d.fits
Processing file ./16196/lede0tobq_x1d.fits
Processing file ./16196/lede0uzeq_x1d.fits
Processing file ./16196/lede0uzhq_x1d.fits
Processing file ./16196/lede0uzjq_x1d.fits
Processing file ./16196/lede0uzoq_x1d.fits
Processing file ./16196/lede0xgrq_x1d.fits
Processing file ./16196/lede0xgtq_x1d.fits
Processing file ./16196/lede0xgvq_x1d.fits
Processing file ./16196/lede0xgyq_x1d.fits
Processing file ./16196/lede0zz2q_x1d.fits
Processing file ./16196/lede0zz4q_x1d.fits
Processing file ./16196/lede0zz6q_x1d.fits
Processing file ./16196/lede0zz8q_x1d.fits
Processing file ./16196/lede10iyq_x1d.fits
Processing file ./16196/lede10j0q_x1d.fits
Processing file ./16196/lede10j2q_x1d.fits
Processing file ./16196/lede10j4q_x1d.fits
Processing file ./16196/lede11a4q_x1d.fits
Processing file ./16196/lede11a6q_x1d.fits
Processing file ./16196/lede11a8q_x1d.fits
Processing file ./16196/lede11aaq_x1d.fits
Processing file ./16196/lede12lzq_x1d.fits
Processing file ./16196/lede12m1q_x1d.fits
Processing file ./16196/lede12m3q_x1d.fits
Processing file ./16196/lede12m5q_x1d.fits
Processing file ./16196/lede14jzq_x1d.fits
Processing file ./16196/lede14k1q_x1d.fits
Processing file ./16196/lede14k3q_x1d.fits
Processing file ./16196/lede14k5q_x1d.fits
Processing file ./16196/lede15ngq_x1d.fits
Processing file ./16196/lede15niq_x1d.fits
Processing file ./16196/lede15nkq_x1d.fits
Processing file ./16196/lede15nmq_x1d.fits
Processing file ./16196/lede16vzq_x1d.fits
Processing file ./16196/lede16w2q_x1d.fits
Processing file ./16196/lede16w4q_x1d.fits
Processing file ./16196/lede16w6q_x1d.fits
Processing file ./16196/lede17hqq_x1d.fits
Processing file ./16196/lede17hsq_x1d.fits
Processing file ./16196/lede17huq_x1d.fits
Processing file ./16196/lede17hwq_x1d.fits
Processing file ./16196/lede18s8q_x1d.fits
Processing file ./16196/lede18saq_x1d.fits
Processing file ./16196/lede18scq_x1d.fits
Processing file ./16196/lede18seq_x1d.fits
Processing file ./16196/lede19msq_x1d.fits
Processing file ./16196/lede19muq_x1d.fits
Processing file ./16196/lede19mwq_x1d.fits
Processing file ./16196/lede19myq_x1d.fits
Processing file ./16196/lede1bvgq_x1d.fits
Processing file ./16196/lede1bviq_x1d.fits
Processing file ./16196/lede1bvkq_x1d.fits
Processing file ./16196/lede1bvmq_x1d.fits
Processing file ./16196/lede1cf2q_x1d.fits
Processing file ./16196/lede1cf4q_x1d.fits
Processing file ./16196/lede1cf6q_x1d.fits
Processing file ./16196/lede1cf8q_x1d.fits
Processing file ./16196/lede1ejlq_x1d.fits
Processing file ./16196/lede1ejnq_x1d.fits
Processing file ./16196/lede1ejpq_x1d.fits
Processing file ./16196/lede1ejrq_x1d.fits
Processing file ./16196/lede1gaeq_x1d.fits
Processing file ./16196/lede1gahq_x1d.fits
Processing file ./16196/lede1gajq_x1d.fits
Processing file ./16196/lede1gamq_x1d.fits
Processing file ./16196/lede1hhcq_x1d.fits
Processing file ./16196/lede1hheq_x1d.fits
Processing file ./16196/lede1hhgq_x1d.fits
Processing file ./16196/lede1hhiq_x1d.fits
Processing file ./16196/lede1irbq_x1d.fits
Processing file ./16196/lede1irdq_x1d.fits
Processing file ./16196/lede1irfq_x1d.fits
Processing file ./16196/lede1irhq_x1d.fits
Processing file ./16196/lede1mtsq_x1d.fits
Processing file ./16196/lede1mtuq_x1d.fits
Processing file ./16196/lede1mtwq_x1d.fits
Processing file ./16196/lede1mu1q_x1d.fits
Processing file ./16196/lede1noiq_x1d.fits
Processing file ./16196/lede1nokq_x1d.fits
Processing file ./16196/lede1nomq_x1d.fits
Processing file ./16196/lede1nooq_x1d.fits
Processing file ./16196/lede1oceq_x1d.fits
Processing file ./16196/lede1ocgq_x1d.fits
Processing file ./16196/lede1ociq_x1d.fits
Processing file ./16196/lede1ockq_x1d.fits
Processing file ./16196/lede1pkjq_x1d.fits
Processing file ./16196/lede1pklq_x1d.fits
Processing file ./16196/lede1pknq_x1d.fits
Processing file ./16196/lede1pkpq_x1d.fits
Processing file ./16196/lede1qspq_x1d.fits
Processing file ./16196/lede1qsrq_x1d.fits
Processing file ./16196/lede1qstq_x1d.fits
Processing file ./16196/lede1qsvq_x1d.fits
Processing file ./16196/lede1rmeq_x1d.fits
Processing file ./16196/lede1rmgq_x1d.fits
Processing file ./16196/lede1rmiq_x1d.fits
Processing file ./16196/lede1rmkq_x1d.fits
Processing file ./16196/lede1suaq_x1d.fits
Processing file ./16196/lede1sucq_x1d.fits
Processing file ./16196/lede1sueq_x1d.fits
Processing file ./16196/lede1sugq_x1d.fits
Processing file ./16196/lede1ucsq_x1d.fits
Processing file ./16196/lede1ucuq_x1d.fits
Processing file ./16196/lede1ucwq_x1d.fits
Processing file ./16196/lede1ucyq_x1d.fits
Processing file ./16196/lede1wsvq_x1d.fits
Processing file ./16196/lede1wsxq_x1d.fits
Processing file ./16196/lede1wszq_x1d.fits
Processing file ./16196/lede1wt1q_x1d.fits
Processing file ./16196/lede20alq_x1d.fits
Processing file ./16196/lede20anq_x1d.fits
Processing file ./16196/lede20apq_x1d.fits
Processing file ./16196/lede20arq_x1d.fits
Processing file ./16196/lede21keq_x1d.fits
Processing file ./16196/lede21kgq_x1d.fits
Processing file ./16196/lede21kiq_x1d.fits
Processing file ./16196/lede21kkq_x1d.fits
Processing file ./16196/lede22loq_x1d.fits
Processing file ./16196/lede22lqq_x1d.fits
Processing file ./16196/lede22lsq_x1d.fits
Processing file ./16196/lede22luq_x1d.fits
Processing file ./16196/lede23upq_x1d.fits
Processing file ./16196/lede23urq_x1d.fits
Processing file ./16196/lede23utq_x1d.fits
Processing file ./16196/lede23uvq_x1d.fits
Processing file ./16196/lede24jsq_x1d.fits
Processing file ./16196/lede24juq_x1d.fits
Processing file ./16196/lede24jwq_x1d.fits
Processing file ./16196/lede24jyq_x1d.fits
Processing file ./16196/lede25rzq_x1d.fits
Processing file ./16196/lede25s1q_x1d.fits
Processing file ./16196/lede25s3q_x1d.fits
Processing file ./16196/lede25s5q_x1d.fits
Processing file ./16196/lede26k2q_x1d.fits
Processing file ./16196/lede26k4q_x1d.fits
Processing file ./16196/lede26k6q_x1d.fits
Processing file ./16196/lede26k8q_x1d.fits
Processing file ./16196/lede27qjq_x1d.fits
Processing file ./16196/lede27qlq_x1d.fits
Processing file ./16196/lede27qnq_x1d.fits
Processing file ./16196/lede27qpq_x1d.fits
Processing file ./16196/lede28a5q_x1d.fits
Processing file ./16196/lede28a7q_x1d.fits
Processing file ./16196/lede28a9q_x1d.fits
Processing file ./16196/lede28abq_x1d.fits
Processing file ./16196/lede29hzq_x1d.fits
Processing file ./16196/lede29i1q_x1d.fits
Processing file ./16196/lede29i3q_x1d.fits
Processing file ./16196/lede29i5q_x1d.fits
Processing file ./16196/lede2ataq_x1d.fits
Processing file ./16196/lede2atcq_x1d.fits
Processing file ./16196/lede2ateq_x1d.fits
Processing file ./16196/lede2atgq_x1d.fits
Processing file ./16196/lede2bb4q_x1d.fits
Processing file ./16196/lede2bb6q_x1d.fits
Processing file ./16196/lede2bb8q_x1d.fits
Processing file ./16196/lede2bbaq_x1d.fits
Processing file ./16196/lede2cisq_x1d.fits
Processing file ./16196/lede2ciuq_x1d.fits
Processing file ./16196/lede2ciwq_x1d.fits
Processing file ./16196/lede2ciyq_x1d.fits
Processing file ./16196/lede2dokq_x1d.fits
Processing file ./16196/lede2domq_x1d.fits
Processing file ./16196/lede2dorq_x1d.fits
Processing file ./16196/lede2dotq_x1d.fits
Processing file ./16196/lede2eyeq_x1d.fits
Processing file ./16196/lede2eygq_x1d.fits
Processing file ./16196/lede2eyiq_x1d.fits
Processing file ./16196/lede2eylq_x1d.fits
Processing file ./16196/lede2fhvq_x1d.fits
Processing file ./16196/lede2fhxq_x1d.fits
Processing file ./16196/lede2fhzq_x1d.fits
Processing file ./16196/lede2fi1q_x1d.fits
Processing file ./16196/lede2gf0q_x1d.fits
Processing file ./16196/lede2gf2q_x1d.fits
Processing file ./16196/lede2gf4q_x1d.fits
Processing file ./16196/lede2gf6q_x1d.fits
Processing file ./16196/lede2hqxq_x1d.fits
Processing file ./16196/lede2hqzq_x1d.fits
Processing file ./16196/lede2hr1q_x1d.fits
Processing file ./16196/lede2hr3q_x1d.fits
Processing file ./16196/lede2ib3q_x1d.fits
Processing file ./16196/lede2ib5q_x1d.fits
Processing file ./16196/lede2ib7q_x1d.fits
Processing file ./16196/lede2ib9q_x1d.fits
Processing file ./16196/lede2jjoq_x1d.fits
Processing file ./16196/lede2jjqq_x1d.fits
Processing file ./16196/lede2jjsq_x1d.fits
Processing file ./16196/lede2jjuq_x1d.fits
Processing file ./16196/lede2kkaq_x1d.fits
Processing file ./16196/lede2kkcq_x1d.fits
Processing file ./16196/lede2kkhq_x1d.fits
Processing file ./16196/lede2kkjq_x1d.fits
Processing file ./16196/lede2ls0q_x1d.fits
Processing file ./16196/lede2ls2q_x1d.fits
Processing file ./16196/lede2ls4q_x1d.fits
Processing file ./16196/lede2ls6q_x1d.fits
Processing file ./16196/lede2mauq_x1d.fits
Processing file ./16196/lede2mawq_x1d.fits
Processing file ./16196/lede2mayq_x1d.fits
Processing file ./16196/lede2mb0q_x1d.fits
Processing file ./16196/lede2nknq_x1d.fits
Processing file ./16196/lede2nkqq_x1d.fits
Processing file ./16196/lede2nkuq_x1d.fits
Processing file ./16196/lede2nkwq_x1d.fits
Processing file ./16196/lede2ua2q_x1d.fits
Processing file ./16196/lede2uzvq_x1d.fits
Processing file ./16196/lede2uzxq_x1d.fits
Processing file ./16196/lede2uzzq_x1d.fits
Processing file ./16196/lede2yd3q_x1d.fits
Processing file ./16196/lede2yd5q_x1d.fits
Processing file ./16196/lede2yd7q_x1d.fits
Processing file ./16196/lede2yd9q_x1d.fits
Processing file ./16196/lede2zo6q_x1d.fits
Processing file ./16196/lede2zo8q_x1d.fits
Processing file ./16196/lede2zoaq_x1d.fits
Processing file ./16196/lede2zocq_x1d.fits
Processing file ./16196/lede30sbq_x1d.fits
Processing file ./16196/lede30sdq_x1d.fits
Processing file ./16196/lede30sfq_x1d.fits
Processing file ./16196/lede30shq_x1d.fits
Processing file ./16196/lede31d6q_x1d.fits
Processing file ./16196/lede31d8q_x1d.fits
Processing file ./16196/lede31daq_x1d.fits
Processing file ./16196/lede31dcq_x1d.fits
Processing file ./16196/lede32s0q_x1d.fits
Processing file ./16196/lede32s2q_x1d.fits
Processing file ./16196/lede32s5q_x1d.fits
Processing file ./16196/lede32s7q_x1d.fits
Processing file ./16196/lede33rzq_x1d.fits
Processing file ./16196/lede33s2q_x1d.fits
Processing file ./16196/lede33s4q_x1d.fits
Processing file ./16196/lede33s7q_x1d.fits
Processing file ./16196/lede34lnq_x1d.fits
Processing file ./16196/lede34lpq_x1d.fits
Processing file ./16196/lede34lrq_x1d.fits
Processing file ./16196/lede34luq_x1d.fits
Processing file ./16196/lede35xrq_x1d.fits
Processing file ./16196/lede35xtq_x1d.fits
Processing file ./16196/lede35xvq_x1d.fits
Processing file ./16196/lede35xxq_x1d.fits
Processing file ./16196/lede36g0q_x1d.fits
Processing file ./16196/lede36g2q_x1d.fits
Processing file ./16196/lede36g4q_x1d.fits
Processing file ./16196/lede36g6q_x1d.fits
Processing file ./16196/lede37l5q_x1d.fits
Processing file ./16196/lede37l7q_x1d.fits
Processing file ./16196/lede37l9q_x1d.fits
Processing file ./16196/lede37lbq_x1d.fits
Processing file ./16196/lede38tsq_x1d.fits
Processing file ./16196/lede38tuq_x1d.fits
Processing file ./16196/lede38twq_x1d.fits
Processing file ./16196/lede38tyq_x1d.fits
Processing file ./16196/lede39clq_x1d.fits
Processing file ./16196/lede39cnq_x1d.fits
Processing file ./16196/lede39cpq_x1d.fits
Processing file ./16196/lede39crq_x1d.fits
Processing file ./16196/lede3axcq_x1d.fits
Processing file ./16196/lede3axeq_x1d.fits
Processing file ./16196/lede3axgq_x1d.fits
Processing file ./16196/lede3axiq_x1d.fits
Processing file ./16196/lede3bk0q_x1d.fits
Processing file ./16196/lede3bk2q_x1d.fits
Processing file ./16196/lede3bk4q_x1d.fits
Processing file ./16196/lede3bk6q_x1d.fits
Processing file ./16196/lede3ck6q_x1d.fits
Processing file ./16196/lede3ck8q_x1d.fits
Processing file ./16196/lede3ckaq_x1d.fits
Processing file ./16196/lede3ckcq_x1d.fits
Processing file ./16196/lede3dt1q_x1d.fits
Processing file ./16196/lede3dt3q_x1d.fits
Processing file ./16196/lede3dt5q_x1d.fits
Processing file ./16196/lede3dt7q_x1d.fits
Processing file ./16196/lede3efcq_x1d.fits
Processing file ./16196/lede3efeq_x1d.fits
Processing file ./16196/lede3efgq_x1d.fits
Processing file ./16196/lede3efiq_x1d.fits
Processing file ./16196/lede3fdhq_x1d.fits
Processing file ./16196/lede3fdjq_x1d.fits
Processing file ./16196/lede3fdlq_x1d.fits
Processing file ./16196/lede3fdnq_x1d.fits
Processing file ./16196/lede3gmjq_x1d.fits
Processing file ./16196/lede3gmlq_x1d.fits
Processing file ./16196/lede3gmnq_x1d.fits
Processing file ./16196/lede3gmpq_x1d.fits
Processing file ./16196/lede3hbeq_x1d.fits
Processing file ./16196/lede3hbhq_x1d.fits
Processing file ./16196/lede3hbjq_x1d.fits
Processing file ./16196/lede3hblq_x1d.fits
Processing file ./16196/lede3irrq_x1d.fits
Processing file ./16196/lede3irtq_x1d.fits
Processing file ./16196/lede3irvq_x1d.fits
Processing file ./16196/lede3irxq_x1d.fits
Processing file ./16196/lede3lppq_x1d.fits
Processing file ./16196/lede3lprq_x1d.fits
Processing file ./16196/lede3lptq_x1d.fits
Processing file ./16196/lede3lpvq_x1d.fits
Processing file ./16196/lede3me4q_x1d.fits
Processing file ./16196/lede3me6q_x1d.fits
Processing file ./16196/lede3me8q_x1d.fits
Processing file ./16196/lede3meaq_x1d.fits
Processing file ./16196/lede3nc4q_x1d.fits
Processing file ./16196/lede3nc6q_x1d.fits
Processing file ./16196/lede3nc8q_x1d.fits
Processing file ./16196/lede3ncaq_x1d.fits
Processing file ./16196/lede3ncqq_x1d.fits
Processing file ./16196/lede3nctq_x1d.fits
Processing file ./16196/lede3ncwq_x1d.fits
Processing file ./16196/lede3nd5q_x1d.fits
Processing file ./16196/lede3pr0q_x1d.fits
Processing file ./16196/lede3pr2q_x1d.fits
Processing file ./16196/lede3pr4q_x1d.fits
Processing file ./16196/lede3pr6q_x1d.fits
Processing file ./16196/lede3qzpq_x1d.fits
Processing file ./16196/lede3qzrq_x1d.fits
Processing file ./16196/lede3qztq_x1d.fits
Processing file ./16196/lede3qzvq_x1d.fits
Processing file ./16196/lede3rh0q_x1d.fits
Processing file ./16196/lede3rh2q_x1d.fits
Processing file ./16196/lede3rh4q_x1d.fits
Processing file ./16196/lede3rh6q_x1d.fits
Processing file ./16196/lede3staq_x1d.fits
Processing file ./16196/lede3stcq_x1d.fits
Processing file ./16196/lede3steq_x1d.fits
Processing file ./16196/lede3stgq_x1d.fits
Processing file ./16196/lede3ua1q_x1d.fits
Processing file ./16196/lede3ua3q_x1d.fits
Processing file ./16196/lede3uzvq_x1d.fits
Processing file ./16196/lede3uzyq_x1d.fits
Processing file ./16196/lede3vijq_x1d.fits
Processing file ./16196/lede3vimq_x1d.fits
Processing file ./16196/lede3vioq_x1d.fits
Processing file ./16196/lede3viqq_x1d.fits
Processing file ./16196/lede3wduq_x1d.fits
Processing file ./16196/lede3wdwq_x1d.fits
Processing file ./16196/lede3wdyq_x1d.fits
Processing file ./16196/lede3we0q_x1d.fits
Processing file ./16196/lede3xjdq_x1d.fits
Processing file ./16196/lede3xjfq_x1d.fits
Processing file ./16196/lede3xjhq_x1d.fits
Processing file ./16196/lede3xjmq_x1d.fits
Processing file ./16196/lede3yq7q_x1d.fits
Processing file ./16196/lede3yq9q_x1d.fits
Processing file ./16196/lede3yqbq_x1d.fits
Processing file ./16196/lede3yqdq_x1d.fits
Processing file ./16196/lede3za1q_x1d.fits
Processing file ./16196/lede3zzuq_x1d.fits
Processing file ./16196/lede3zzwq_x1d.fits
Processing file ./16196/lede3zzyq_x1d.fits
Processing file ./16196/lede40mcq_x1d.fits
Processing file ./16196/lede40meq_x1d.fits
Processing file ./16196/lede40mgq_x1d.fits
Processing file ./16196/lede40miq_x1d.fits
Processing file ./16196/lede41u9q_x1d.fits
Processing file ./16196/lede41ubq_x1d.fits
Processing file ./16196/lede41udq_x1d.fits
Processing file ./16196/lede41ufq_x1d.fits
Processing file ./16196/lede42hfq_x1d.fits
Processing file ./16196/lede42hhq_x1d.fits
Processing file ./16196/lede42hjq_x1d.fits
Processing file ./16196/lede42hlq_x1d.fits
Processing file ./16196/lede43p8q_x1d.fits
Processing file ./16196/lede43paq_x1d.fits
Processing file ./16196/lede43pcq_x1d.fits
Processing file ./16196/lede43peq_x1d.fits
Processing file ./16196/lede44grq_x1d.fits
Processing file ./16196/lede44gtq_x1d.fits
Processing file ./16196/lede44gvq_x1d.fits
Processing file ./16196/lede44gxq_x1d.fits
Processing file ./16196/lede45q3q_x1d.fits
Processing file ./16196/lede45q5q_x1d.fits
Processing file ./16196/lede45q7q_x1d.fits
Processing file ./16196/lede45q9q_x1d.fits
Processing file ./16196/lede46ynq_x1d.fits
Processing file ./16196/lede46ypq_x1d.fits
Processing file ./16196/lede46yrq_x1d.fits
Processing file ./16196/lede46ytq_x1d.fits
Processing file ./16196/lede47b4q_x1d.fits
Processing file ./16196/lede47b6q_x1d.fits
Processing file ./16196/lede47b8q_x1d.fits
Processing file ./16196/lede47baq_x1d.fits
Processing file ./16196/lede48t2q_x1d.fits
Processing file ./16196/lede48t4q_x1d.fits
Processing file ./16196/lede48t6q_x1d.fits
Processing file ./16196/lede48t8q_x1d.fits
Processing file ./16196/lede49h4q_x1d.fits
Processing file ./16196/lede49h6q_x1d.fits
Processing file ./16196/lede49h8q_x1d.fits
Processing file ./16196/lede49haq_x1d.fits
Processing file ./16196/lede4ak6q_x1d.fits
Processing file ./16196/lede4ak8q_x1d.fits
Processing file ./16196/lede4akaq_x1d.fits
Processing file ./16196/lede4akcq_x1d.fits
Processing file ./16196/lede4epnq_x1d.fits
Processing file ./16196/lede4eppq_x1d.fits
Processing file ./16196/lede4eprq_x1d.fits
Processing file ./16196/lede4eptq_x1d.fits
Processing file ./16196/lede50wsq_x1d.fits
Processing file ./16196/lede50wuq_x1d.fits
Processing file ./16196/lede50wwq_x1d.fits
Processing file ./16196/lede50wyq_x1d.fits
Processing file ./16196/lede51h1q_x1d.fits
Processing file ./16196/lede51h3q_x1d.fits
Processing file ./16196/lede51h5q_x1d.fits
Processing file ./16196/lede51h7q_x1d.fits
Processing file ./16196/lede52mkq_x1d.fits
Processing file ./16196/lede52mmq_x1d.fits
Processing file ./16196/lede52moq_x1d.fits
Processing file ./16196/lede52mqq_x1d.fits
Processing file ./16196/lede56a3q_x1d.fits
Processing file ./16196/lede56a5q_x1d.fits
Processing file ./16196/lede56a7q_x1d.fits
Processing file ./16196/lede56ahq_x1d.fits
Processing file ./16196/lede59npq_x1d.fits
Processing file ./16196/lede59nrq_x1d.fits
Processing file ./16196/lede59ntq_x1d.fits
Processing file ./16196/lede59nvq_x1d.fits
Processing file ./16196/lede60waq_x1d.fits
Processing file ./16196/lede60weq_x1d.fits
Processing file ./16196/lede60wgq_x1d.fits
Processing file ./16196/lede60wiq_x1d.fits
Processing file ./16196/lede61dtq_x1d.fits
Processing file ./16196/lede61dvq_x1d.fits
Processing file ./16196/lede61dxq_x1d.fits
Processing file ./16196/lede61dzq_x1d.fits
Processing file ./16196/lede62maq_x1d.fits
Processing file ./16196/lede62mcq_x1d.fits
Processing file ./16196/lede62meq_x1d.fits
Processing file ./16196/lede62mgq_x1d.fits
Processing file ./16196/lede63x0q_x1d.fits
Processing file ./16196/lede63x2q_x1d.fits
Processing file ./16196/lede63x4q_x1d.fits
Processing file ./16196/lede63x6q_x1d.fits
Processing file ./16196/lede64imq_x1d.fits
Processing file ./16196/lede64ioq_x1d.fits
Processing file ./16196/lede64iqq_x1d.fits
Processing file ./16196/lede64isq_x1d.fits
Processing file ./16196/lede65dxq_x1d.fits
Processing file ./16196/lede65dzq_x1d.fits
Processing file ./16196/lede65e1q_x1d.fits
Processing file ./16196/lede65e3q_x1d.fits
Processing file ./16196/lede66lbq_x1d.fits
Processing file ./16196/lede66ldq_x1d.fits
Processing file ./16196/lede66lfq_x1d.fits
Processing file ./16196/lede66lhq_x1d.fits
Processing file ./16196/lede67x1q_x1d.fits
Processing file ./16196/lede67x3q_x1d.fits
Processing file ./16196/lede67x5q_x1d.fits
Processing file ./16196/lede67x7q_x1d.fits
Processing file ./16196/lede68fvq_x1d.fits
Processing file ./16196/lede68fxq_x1d.fits
Processing file ./16196/lede68fzq_x1d.fits
Processing file ./16196/lede68g1q_x1d.fits
Processing file ./16196/lede69h8q_x1d.fits
Processing file ./16196/lede69hbq_x1d.fits
Processing file ./16196/lede69hdq_x1d.fits
Processing file ./16196/lede69hfq_x1d.fits
Processing file ./16196/lede70t5q_x1d.fits
Processing file ./16196/lede70t7q_x1d.fits
Processing file ./16196/lede70t9q_x1d.fits
Processing file ./16196/lede70tbq_x1d.fits
Processing file ./16196/lede71bfq_x1d.fits
Processing file ./16196/lede71bhq_x1d.fits
Processing file ./16196/lede71bjq_x1d.fits
Processing file ./16196/lede71blq_x1d.fits
Processing file ./16196/lede72c8q_x1d.fits
Processing file ./16196/lede72caq_x1d.fits
Processing file ./16196/lede72ccq_x1d.fits
Processing file ./16196/lede72chq_x1d.fits
Processing file ./16196/lede73o7q_x1d.fits
Processing file ./16196/lede73o9q_x1d.fits
Processing file ./16196/lede73obq_x1d.fits
Processing file ./16196/lede73odq_x1d.fits
Processing file ./16196/lede74ubq_x1d.fits
Processing file ./16196/lede74udq_x1d.fits
Processing file ./16196/lede74ufq_x1d.fits
Processing file ./16196/lede74uhq_x1d.fits
Processing file ./16196/lede75c8q_x1d.fits
Processing file ./16196/lede75cbq_x1d.fits
Processing file ./16196/lede75cdq_x1d.fits
Processing file ./16196/lede75cfq_x1d.fits
Processing file ./16196/lede75cqq_x1d.fits
Processing file ./16196/lede75csq_x1d.fits
Processing file ./16196/lede75cuq_x1d.fits
Processing file ./16196/lede75cwq_x1d.fits
Processing file ./16196/lede77v8q_x1d.fits
Processing file ./16196/lede77vaq_x1d.fits
Processing file ./16196/lede77vcq_x1d.fits
Processing file ./16196/lede77veq_x1d.fits
Processing file ./16196/lede80n4q_x1d.fits
Processing file ./16196/lede80n6q_x1d.fits
Processing file ./16196/lede80n8q_x1d.fits
Processing file ./16196/lede80naq_x1d.fits
Processing file ./16196/lede82i5q_x1d.fits
Processing file ./16196/lede82i7q_x1d.fits
Processing file ./16196/lede82i9q_x1d.fits
Processing file ./16196/lede82ibq_x1d.fits
Processing file ./16196/lede83ijq_x1d.fits
Processing file ./16196/lede83ilq_x1d.fits
Processing file ./16196/lede83inq_x1d.fits
Processing file ./16196/lede83ipq_x1d.fits
Processing file ./16196/lede84qmq_x1d.fits
Processing file ./16196/lede84qoq_x1d.fits
Processing file ./16196/lede84qqq_x1d.fits
Processing file ./16196/lede84qsq_x1d.fits
Processing file ./16196/lede85bqq_x1d.fits
Processing file ./16196/lede85bsq_x1d.fits
Processing file ./16196/lede85buq_x1d.fits
Processing file ./16196/lede85bwq_x1d.fits
Processing file ./16196/lede86j0q_x1d.fits
Processing file ./16196/lede86j2q_x1d.fits
Processing file ./16196/lede86j4q_x1d.fits
Processing file ./16196/lede86j6q_x1d.fits
Processing file ./16196/lede87jcq_x1d.fits
Processing file ./16196/lede87jeq_x1d.fits
Processing file ./16196/lede87jgq_x1d.fits
Processing file ./16196/lede87jiq_x1d.fits
Processing file ./16196/lede88tdq_x1d.fits
Processing file ./16196/lede88tfq_x1d.fits
Processing file ./16196/lede88thq_x1d.fits
Processing file ./16196/lede88tjq_x1d.fits
Processing file ./16196/lede89bcq_x1d.fits
Processing file ./16196/lede89beq_x1d.fits
Processing file ./16196/lede89bgq_x1d.fits
Processing file ./16196/lede89biq_x1d.fits
Processing file ./16196/lede90dnq_x1d.fits
Processing file ./16196/lede90dpq_x1d.fits
Processing file ./16196/lede90drq_x1d.fits
Processing file ./16196/lede90dtq_x1d.fits
Processing file ./16196/lede91p8q_x1d.fits
Processing file ./16196/lede91paq_x1d.fits
Processing file ./16196/lede91pcq_x1d.fits
Processing file ./16196/lede91peq_x1d.fits
Processing file ./16196/lede92k3q_x1d.fits
Processing file ./16196/lede92k5q_x1d.fits
Processing file ./16196/lede92k7q_x1d.fits
Processing file ./16196/lede92k9q_x1d.fits
Processing file ./16196/lede93stq_x1d.fits
Processing file ./16196/lede93svq_x1d.fits
Processing file ./16196/lede93sxq_x1d.fits
Processing file ./16196/lede93szq_x1d.fits
Processing file ./16196/lede94r5q_x1d.fits
Processing file ./16196/lede94r7q_x1d.fits
Processing file ./16196/lede94r9q_x1d.fits
Processing file ./16196/lede94rbq_x1d.fits
Processing file ./16196/lede96e9q_x1d.fits
Processing file ./16196/lede96ebq_x1d.fits
Processing file ./16196/lede96edq_x1d.fits
Processing file ./16196/lede96efq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g130m_lede_cspec.fits
Processing grating COS/G160M
Importing files ['./16196/lede01iqq_x1d.fits', './16196/lede01isq_x1d.fits', './16196/lede01iuq_x1d.fits', './16196/lede01iwq_x1d.fits', './16196/lede02vjq_x1d.fits', './16196/lede02vlq_x1d.fits', './16196/lede02vnq_x1d.fits', './16196/lede02vpq_x1d.fits', './16196/lede03g8q_x1d.fits', './16196/lede03gaq_x1d.fits', './16196/lede03gcq_x1d.fits', './16196/lede03geq_x1d.fits', './16196/lede04miq_x1d.fits', './16196/lede04mkq_x1d.fits', './16196/lede04mmq_x1d.fits', './16196/lede04moq_x1d.fits', './16196/lede05qlq_x1d.fits', './16196/lede05r6q_x1d.fits', './16196/lede05r8q_x1d.fits', './16196/lede05raq_x1d.fits', './16196/lede06z7q_x1d.fits', './16196/lede06z9q_x1d.fits', './16196/lede06zbq_x1d.fits', './16196/lede06zdq_x1d.fits', './16196/lede07k6q_x1d.fits', './16196/lede07k8q_x1d.fits', './16196/lede07kaq_x1d.fits', './16196/lede07kcq_x1d.fits', './16196/lede08feq_x1d.fits', './16196/lede08fgq_x1d.fits', './16196/lede08fiq_x1d.fits', './16196/lede08fkq_x1d.fits', './16196/lede09a9q_x1d.fits', './16196/lede09abq_x1d.fits', './16196/lede09adq_x1d.fits', './16196/lede09afq_x1d.fits', './16196/lede0af2q_x1d.fits', './16196/lede0af5q_x1d.fits', './16196/lede0af7q_x1d.fits', './16196/lede0af9q_x1d.fits', './16196/lede0bj9q_x1d.fits', './16196/lede0bjbq_x1d.fits', './16196/lede0bjdq_x1d.fits', './16196/lede0bjyq_x1d.fits', './16196/lede0cvxq_x1d.fits', './16196/lede0cvzq_x1d.fits', './16196/lede0cw1q_x1d.fits', './16196/lede0cw3q_x1d.fits', './16196/lede0dfeq_x1d.fits', './16196/lede0dfgq_x1d.fits', './16196/lede0dfiq_x1d.fits', './16196/lede0dfoq_x1d.fits', './16196/lede0ikvq_x1d.fits', './16196/lede0ikxq_x1d.fits', './16196/lede0ikzq_x1d.fits', './16196/lede0il1q_x1d.fits', './16196/lede0jw9q_x1d.fits', './16196/lede0jwbq_x1d.fits', './16196/lede0jwdq_x1d.fits', './16196/lede0jwfq_x1d.fits', './16196/lede0kfeq_x1d.fits', './16196/lede0kfgq_x1d.fits', './16196/lede0kfiq_x1d.fits', './16196/lede0kfkq_x1d.fits', './16196/lede0lp5q_x1d.fits', './16196/lede0lp7q_x1d.fits', './16196/lede0lp9q_x1d.fits', './16196/lede0lpbq_x1d.fits', './16196/lede0ma1q_x1d.fits', './16196/lede0ma4q_x1d.fits', './16196/lede0ma6q_x1d.fits', './16196/lede0mzxq_x1d.fits', './16196/lede0njkq_x1d.fits', './16196/lede0njmq_x1d.fits', './16196/lede0njoq_x1d.fits', './16196/lede0nk9q_x1d.fits', './16196/lede0ogtq_x1d.fits', './16196/lede0ogvq_x1d.fits', './16196/lede0ogxq_x1d.fits', './16196/lede0ogzq_x1d.fits', './16196/lede0psqq_x1d.fits', './16196/lede0pssq_x1d.fits', './16196/lede0psuq_x1d.fits', './16196/lede0pswq_x1d.fits', './16196/lede0qcaq_x1d.fits', './16196/lede0qccq_x1d.fits', './16196/lede0qceq_x1d.fits', './16196/lede0qcgq_x1d.fits', './16196/lede0raiq_x1d.fits', './16196/lede0ranq_x1d.fits', './16196/lede0rapq_x1d.fits', './16196/lede0rarq_x1d.fits', './16196/lede0togq_x1d.fits', './16196/lede0toiq_x1d.fits', './16196/lede0tokq_x1d.fits', './16196/lede0tomq_x1d.fits', './16196/lede0uztq_x1d.fits', './16196/lede0uzvq_x1d.fits', './16196/lede0uzxq_x1d.fits', './16196/lede0uzzq_x1d.fits', './16196/lede0yh2q_x1d.fits', './16196/lede0yh4q_x1d.fits', './16196/lede0zzaq_x1d.fits', './16196/lede0zzcq_x1d.fits', './16196/lede0zzeq_x1d.fits', './16196/lede0zzgq_x1d.fits', './16196/lede10j6q_x1d.fits', './16196/lede10j8q_x1d.fits', './16196/lede10jaq_x1d.fits', './16196/lede10jcq_x1d.fits', './16196/lede11adq_x1d.fits', './16196/lede11afq_x1d.fits', './16196/lede11ahq_x1d.fits', './16196/lede11ajq_x1d.fits', './16196/lede12m7q_x1d.fits', './16196/lede12m9q_x1d.fits', './16196/lede12mbq_x1d.fits', './16196/lede12mdq_x1d.fits', './16196/lede14k7q_x1d.fits', './16196/lede14k9q_x1d.fits', './16196/lede14kbq_x1d.fits', './16196/lede14kdq_x1d.fits', './16196/lede15noq_x1d.fits', './16196/lede15nqq_x1d.fits', './16196/lede15nsq_x1d.fits', './16196/lede15nuq_x1d.fits', './16196/lede16w8q_x1d.fits', './16196/lede16waq_x1d.fits', './16196/lede16wcq_x1d.fits', './16196/lede16weq_x1d.fits', './16196/lede17hyq_x1d.fits', './16196/lede17i0q_x1d.fits', './16196/lede17i2q_x1d.fits', './16196/lede17i4q_x1d.fits', './16196/lede18sgq_x1d.fits', './16196/lede18siq_x1d.fits', './16196/lede18skq_x1d.fits', './16196/lede18smq_x1d.fits', './16196/lede19n1q_x1d.fits', './16196/lede19n3q_x1d.fits', './16196/lede19n5q_x1d.fits', './16196/lede19n7q_x1d.fits', './16196/lede1bvoq_x1d.fits', './16196/lede1bvqq_x1d.fits', './16196/lede1bvsq_x1d.fits', './16196/lede1bvuq_x1d.fits', './16196/lede1cfaq_x1d.fits', './16196/lede1cfcq_x1d.fits', './16196/lede1cfeq_x1d.fits', './16196/lede1cfgq_x1d.fits', './16196/lede1ejtq_x1d.fits', './16196/lede1ejvq_x1d.fits', './16196/lede1ejxq_x1d.fits', './16196/lede1ejzq_x1d.fits', './16196/lede1gaoq_x1d.fits', './16196/lede1gaqq_x1d.fits', './16196/lede1gbiq_x1d.fits', './16196/lede1gbkq_x1d.fits', './16196/lede1hhkq_x1d.fits', './16196/lede1hhmq_x1d.fits', './16196/lede1hhoq_x1d.fits', './16196/lede1irjq_x1d.fits', './16196/lede1irlq_x1d.fits', './16196/lede1irnq_x1d.fits', './16196/lede1irpq_x1d.fits', './16196/lede1mu3q_x1d.fits', './16196/lede1mu5q_x1d.fits', './16196/lede1mu7q_x1d.fits', './16196/lede1mu9q_x1d.fits', './16196/lede1noqq_x1d.fits', './16196/lede1nosq_x1d.fits', './16196/lede1nouq_x1d.fits', './16196/lede1nowq_x1d.fits', './16196/lede1ocmq_x1d.fits', './16196/lede1ocoq_x1d.fits', './16196/lede1ocqq_x1d.fits', './16196/lede1ocsq_x1d.fits', './16196/lede1pkrq_x1d.fits', './16196/lede1pktq_x1d.fits', './16196/lede1pkvq_x1d.fits', './16196/lede1pkxq_x1d.fits', './16196/lede1qsxq_x1d.fits', './16196/lede1qszq_x1d.fits', './16196/lede1qt1q_x1d.fits', './16196/lede1qt3q_x1d.fits', './16196/lede1tukq_x1d.fits', './16196/lede1tumq_x1d.fits', './16196/lede1vd2q_x1d.fits', './16196/lede1vd4q_x1d.fits', './16196/lede1wt3q_x1d.fits', './16196/lede1wt5q_x1d.fits', './16196/lede1wt7q_x1d.fits', './16196/lede1wt9q_x1d.fits', './16196/lede20atq_x1d.fits', './16196/lede20avq_x1d.fits', './16196/lede20axq_x1d.fits', './16196/lede20azq_x1d.fits', './16196/lede21kmq_x1d.fits', './16196/lede21koq_x1d.fits', './16196/lede21kqq_x1d.fits', './16196/lede21ksq_x1d.fits', './16196/lede22lwq_x1d.fits', './16196/lede22lyq_x1d.fits', './16196/lede22m0q_x1d.fits', './16196/lede22m2q_x1d.fits', './16196/lede23uxq_x1d.fits', './16196/lede23uzq_x1d.fits', './16196/lede23v1q_x1d.fits', './16196/lede23v3q_x1d.fits', './16196/lede24k0q_x1d.fits', './16196/lede24k2q_x1d.fits', './16196/lede24k4q_x1d.fits', './16196/lede24k6q_x1d.fits', './16196/lede25s7q_x1d.fits', './16196/lede25s9q_x1d.fits', './16196/lede25sbq_x1d.fits', './16196/lede25sdq_x1d.fits', './16196/lede26kaq_x1d.fits', './16196/lede26kcq_x1d.fits', './16196/lede26keq_x1d.fits', './16196/lede26kgq_x1d.fits', './16196/lede27qrq_x1d.fits', './16196/lede27qtq_x1d.fits', './16196/lede27qvq_x1d.fits', './16196/lede27qxq_x1d.fits', './16196/lede28adq_x1d.fits', './16196/lede28afq_x1d.fits', './16196/lede28ahq_x1d.fits', './16196/lede28ajq_x1d.fits', './16196/lede29i8q_x1d.fits', './16196/lede29iaq_x1d.fits', './16196/lede29icq_x1d.fits', './16196/lede29ieq_x1d.fits', './16196/lede2atiq_x1d.fits', './16196/lede2atkq_x1d.fits', './16196/lede2atmq_x1d.fits', './16196/lede2atoq_x1d.fits', './16196/lede2bbcq_x1d.fits', './16196/lede2bbhq_x1d.fits', './16196/lede2bbjq_x1d.fits', './16196/lede2bblq_x1d.fits', './16196/lede2cj0q_x1d.fits', './16196/lede2cj2q_x1d.fits', './16196/lede2cj4q_x1d.fits', './16196/lede2cj6q_x1d.fits', './16196/lede2dowq_x1d.fits', './16196/lede2doyq_x1d.fits', './16196/lede2dp0q_x1d.fits', './16196/lede2dp3q_x1d.fits', './16196/lede2eynq_x1d.fits', './16196/lede2eyqq_x1d.fits', './16196/lede2eysq_x1d.fits', './16196/lede2eyuq_x1d.fits', './16196/lede2fi3q_x1d.fits', './16196/lede2fi5q_x1d.fits', './16196/lede2fi7q_x1d.fits', './16196/lede2fi9q_x1d.fits', './16196/lede2gf8q_x1d.fits', './16196/lede2gfaq_x1d.fits', './16196/lede2gfcq_x1d.fits', './16196/lede2gfxq_x1d.fits', './16196/lede2hr5q_x1d.fits', './16196/lede2hr7q_x1d.fits', './16196/lede2hr9q_x1d.fits', './16196/lede2hrbq_x1d.fits', './16196/lede2ibbq_x1d.fits', './16196/lede2ibdq_x1d.fits', './16196/lede2ibfq_x1d.fits', './16196/lede2ibhq_x1d.fits', './16196/lede2jjwq_x1d.fits', './16196/lede2jjyq_x1d.fits', './16196/lede2jk0q_x1d.fits', './16196/lede2jk2q_x1d.fits', './16196/lede2kkmq_x1d.fits', './16196/lede2kkoq_x1d.fits', './16196/lede2kkqq_x1d.fits', './16196/lede2kktq_x1d.fits', './16196/lede2ls8q_x1d.fits', './16196/lede2lsaq_x1d.fits', './16196/lede2lscq_x1d.fits', './16196/lede2lseq_x1d.fits', './16196/lede2mb2q_x1d.fits', './16196/lede2mb4q_x1d.fits', './16196/lede2mb6q_x1d.fits', './16196/lede2mb8q_x1d.fits', './16196/lede2nkyq_x1d.fits', './16196/lede2nl3q_x1d.fits', './16196/lede2nl5q_x1d.fits', './16196/lede2nl7q_x1d.fits', './16196/lede2ua4q_x1d.fits', './16196/lede2ua6q_x1d.fits', './16196/lede2ua8q_x1d.fits', './16196/lede2uaaq_x1d.fits', './16196/lede2ydbq_x1d.fits', './16196/lede2yddq_x1d.fits', './16196/lede2ydfq_x1d.fits', './16196/lede2ydhq_x1d.fits', './16196/lede2zoeq_x1d.fits', './16196/lede2zogq_x1d.fits', './16196/lede2zoiq_x1d.fits', './16196/lede2zokq_x1d.fits', './16196/lede30sjq_x1d.fits', './16196/lede30slq_x1d.fits', './16196/lede30snq_x1d.fits', './16196/lede30spq_x1d.fits', './16196/lede31deq_x1d.fits', './16196/lede31dgq_x1d.fits', './16196/lede31diq_x1d.fits', './16196/lede31dkq_x1d.fits', './16196/lede32s9q_x1d.fits', './16196/lede32sbq_x1d.fits', './16196/lede32sdq_x1d.fits', './16196/lede32sfq_x1d.fits', './16196/lede33s9q_x1d.fits', './16196/lede33syq_x1d.fits', './16196/lede33t0q_x1d.fits', './16196/lede33t2q_x1d.fits', './16196/lede34lwq_x1d.fits', './16196/lede34lyq_x1d.fits', './16196/lede34m0q_x1d.fits', './16196/lede34m3q_x1d.fits', './16196/lede35xzq_x1d.fits', './16196/lede35y1q_x1d.fits', './16196/lede35y3q_x1d.fits', './16196/lede35y5q_x1d.fits', './16196/lede36g8q_x1d.fits', './16196/lede36gaq_x1d.fits', './16196/lede36gcq_x1d.fits', './16196/lede36geq_x1d.fits', './16196/lede37ldq_x1d.fits', './16196/lede37lfq_x1d.fits', './16196/lede37lhq_x1d.fits', './16196/lede37ljq_x1d.fits', './16196/lede38u0q_x1d.fits', './16196/lede38u2q_x1d.fits', './16196/lede38u4q_x1d.fits', './16196/lede38u6q_x1d.fits', './16196/lede39ctq_x1d.fits', './16196/lede39cvq_x1d.fits', './16196/lede39cxq_x1d.fits', './16196/lede39czq_x1d.fits', './16196/lede3axkq_x1d.fits', './16196/lede3axmq_x1d.fits', './16196/lede3axoq_x1d.fits', './16196/lede3axqq_x1d.fits', './16196/lede3bk8q_x1d.fits', './16196/lede3bkaq_x1d.fits', './16196/lede3bkcq_x1d.fits', './16196/lede3bkeq_x1d.fits', './16196/lede3ckeq_x1d.fits', './16196/lede3ckgq_x1d.fits', './16196/lede3ckiq_x1d.fits', './16196/lede3ckkq_x1d.fits', './16196/lede3dt9q_x1d.fits', './16196/lede3dtbq_x1d.fits', './16196/lede3dtdq_x1d.fits', './16196/lede3dtfq_x1d.fits', './16196/lede3efkq_x1d.fits', './16196/lede3efmq_x1d.fits', './16196/lede3efoq_x1d.fits', './16196/lede3efqq_x1d.fits', './16196/lede3fdpq_x1d.fits', './16196/lede3fdrq_x1d.fits', './16196/lede3fdtq_x1d.fits', './16196/lede3fe0q_x1d.fits', './16196/lede3gmrq_x1d.fits', './16196/lede3gmtq_x1d.fits', './16196/lede3gmvq_x1d.fits', './16196/lede3gmxq_x1d.fits', './16196/lede3hbnq_x1d.fits', './16196/lede3hbpq_x1d.fits', './16196/lede3hbrq_x1d.fits', './16196/lede3hbtq_x1d.fits', './16196/lede3irzq_x1d.fits', './16196/lede3is1q_x1d.fits', './16196/lede3is3q_x1d.fits', './16196/lede3is6q_x1d.fits', './16196/lede3lpxq_x1d.fits', './16196/lede3lpzq_x1d.fits', './16196/lede3lq1q_x1d.fits', './16196/lede3lq3q_x1d.fits', './16196/lede3medq_x1d.fits', './16196/lede3mefq_x1d.fits', './16196/lede3mehq_x1d.fits', './16196/lede3mejq_x1d.fits', './16196/lede3ncdq_x1d.fits', './16196/lede3ncgq_x1d.fits', './16196/lede3ncjq_x1d.fits', './16196/lede3nclq_x1d.fits', './16196/lede3pr9q_x1d.fits', './16196/lede3prbq_x1d.fits', './16196/lede3prdq_x1d.fits', './16196/lede3prfq_x1d.fits', './16196/lede3qa2q_x1d.fits', './16196/lede3qa4q_x1d.fits', './16196/lede3qzxq_x1d.fits', './16196/lede3qzzq_x1d.fits', './16196/lede3rh8q_x1d.fits', './16196/lede3rhaq_x1d.fits', './16196/lede3rhcq_x1d.fits', './16196/lede3rheq_x1d.fits', './16196/lede3stjq_x1d.fits', './16196/lede3stpq_x1d.fits', './16196/lede3strq_x1d.fits', './16196/lede3sttq_x1d.fits', './16196/lede3ua5q_x1d.fits', './16196/lede3ua7q_x1d.fits', './16196/lede3ua9q_x1d.fits', './16196/lede3uabq_x1d.fits', './16196/lede3visq_x1d.fits', './16196/lede3viuq_x1d.fits', './16196/lede3viwq_x1d.fits', './16196/lede3viyq_x1d.fits', './16196/lede3we2q_x1d.fits', './16196/lede3we4q_x1d.fits', './16196/lede3we6q_x1d.fits', './16196/lede3we8q_x1d.fits', './16196/lede3xjoq_x1d.fits', './16196/lede3xk9q_x1d.fits', './16196/lede3xkhq_x1d.fits', './16196/lede3xkjq_x1d.fits', './16196/lede3yqfq_x1d.fits', './16196/lede3yqhq_x1d.fits', './16196/lede3yqjq_x1d.fits', './16196/lede3yqlq_x1d.fits', './16196/lede3za3q_x1d.fits', './16196/lede3za5q_x1d.fits', './16196/lede3za7q_x1d.fits', './16196/lede3za9q_x1d.fits', './16196/lede40mkq_x1d.fits', './16196/lede40mmq_x1d.fits', './16196/lede40moq_x1d.fits', './16196/lede40mqq_x1d.fits', './16196/lede41uiq_x1d.fits', './16196/lede41ukq_x1d.fits', './16196/lede41umq_x1d.fits', './16196/lede41uoq_x1d.fits', './16196/lede42hnq_x1d.fits', './16196/lede42hpq_x1d.fits', './16196/lede42hrq_x1d.fits', './16196/lede42htq_x1d.fits', './16196/lede43pgq_x1d.fits', './16196/lede43piq_x1d.fits', './16196/lede43pkq_x1d.fits', './16196/lede43pmq_x1d.fits', './16196/lede44gzq_x1d.fits', './16196/lede44h1q_x1d.fits', './16196/lede44h3q_x1d.fits', './16196/lede44h5q_x1d.fits', './16196/lede45qbq_x1d.fits', './16196/lede45qdq_x1d.fits', './16196/lede45qfq_x1d.fits', './16196/lede45qhq_x1d.fits', './16196/lede46yvq_x1d.fits', './16196/lede46yxq_x1d.fits', './16196/lede46yzq_x1d.fits', './16196/lede46z1q_x1d.fits', './16196/lede47bcq_x1d.fits', './16196/lede47beq_x1d.fits', './16196/lede47bgq_x1d.fits', './16196/lede47biq_x1d.fits', './16196/lede48taq_x1d.fits', './16196/lede48tcq_x1d.fits', './16196/lede48teq_x1d.fits', './16196/lede48tgq_x1d.fits', './16196/lede49hcq_x1d.fits', './16196/lede49heq_x1d.fits', './16196/lede49hgq_x1d.fits', './16196/lede49hiq_x1d.fits', './16196/lede50x0q_x1d.fits', './16196/lede50x2q_x1d.fits', './16196/lede50x4q_x1d.fits', './16196/lede50x6q_x1d.fits', './16196/lede51h9q_x1d.fits', './16196/lede51hbq_x1d.fits', './16196/lede51hdq_x1d.fits', './16196/lede51hfq_x1d.fits', './16196/lede53mvq_x1d.fits', './16196/lede53mxq_x1d.fits', './16196/lede57azq_x1d.fits', './16196/lede57b2q_x1d.fits', './16196/lede59nxq_x1d.fits', './16196/lede59nzq_x1d.fits', './16196/lede59o1q_x1d.fits', './16196/lede59o3q_x1d.fits', './16196/lede60wkq_x1d.fits', './16196/lede60x5q_x1d.fits', './16196/lede60x7q_x1d.fits', './16196/lede60xbq_x1d.fits', './16196/lede61e1q_x1d.fits', './16196/lede61e3q_x1d.fits', './16196/lede61e5q_x1d.fits', './16196/lede61e7q_x1d.fits', './16196/lede62miq_x1d.fits', './16196/lede62mkq_x1d.fits', './16196/lede62mmq_x1d.fits', './16196/lede62moq_x1d.fits', './16196/lede63x8q_x1d.fits', './16196/lede63xaq_x1d.fits', './16196/lede63xcq_x1d.fits', './16196/lede63xmq_x1d.fits', './16196/lede64iuq_x1d.fits', './16196/lede64iwq_x1d.fits', './16196/lede64iyq_x1d.fits', './16196/lede64j0q_x1d.fits', './16196/lede65e5q_x1d.fits', './16196/lede65e7q_x1d.fits', './16196/lede65e9q_x1d.fits', './16196/lede65ebq_x1d.fits', './16196/lede66ljq_x1d.fits', './16196/lede66llq_x1d.fits', './16196/lede66lnq_x1d.fits', './16196/lede66lpq_x1d.fits', './16196/lede67x9q_x1d.fits', './16196/lede67xbq_x1d.fits', './16196/lede67xdq_x1d.fits', './16196/lede67xfq_x1d.fits', './16196/lede68g3q_x1d.fits', './16196/lede68g5q_x1d.fits', './16196/lede68g7q_x1d.fits', './16196/lede68g9q_x1d.fits', './16196/lede69hhq_x1d.fits', './16196/lede69hjq_x1d.fits', './16196/lede69hmq_x1d.fits', './16196/lede69hoq_x1d.fits', './16196/lede70tdq_x1d.fits', './16196/lede70tfq_x1d.fits', './16196/lede70thq_x1d.fits', './16196/lede70tjq_x1d.fits', './16196/lede71bnq_x1d.fits', './16196/lede71bpq_x1d.fits', './16196/lede71brq_x1d.fits', './16196/lede71btq_x1d.fits', './16196/lede72cjq_x1d.fits', './16196/lede72clq_x1d.fits', './16196/lede72cnq_x1d.fits', './16196/lede72cpq_x1d.fits', './16196/lede73ogq_x1d.fits', './16196/lede73ojq_x1d.fits', './16196/lede73olq_x1d.fits', './16196/lede73onq_x1d.fits', './16196/lede74ukq_x1d.fits', './16196/lede74umq_x1d.fits', './16196/lede74uoq_x1d.fits', './16196/lede74v9q_x1d.fits', './16196/lede75chq_x1d.fits', './16196/lede75cjq_x1d.fits', './16196/lede75clq_x1d.fits', './16196/lede75cnq_x1d.fits', './16196/lede78vjq_x1d.fits', './16196/lede78vlq_x1d.fits', './16196/lede81neq_x1d.fits', './16196/lede81ngq_x1d.fits', './16196/lede82idq_x1d.fits', './16196/lede82ifq_x1d.fits', './16196/lede83irq_x1d.fits', './16196/lede83itq_x1d.fits', './16196/lede84quq_x1d.fits', './16196/lede84qwq_x1d.fits', './16196/lede84qyq_x1d.fits', './16196/lede84r0q_x1d.fits', './16196/lede85byq_x1d.fits', './16196/lede85c0q_x1d.fits', './16196/lede85c2q_x1d.fits', './16196/lede85c4q_x1d.fits', './16196/lede86j8q_x1d.fits', './16196/lede86jaq_x1d.fits', './16196/lede86jcq_x1d.fits', './16196/lede86jeq_x1d.fits', './16196/lede87jkq_x1d.fits', './16196/lede87jmq_x1d.fits', './16196/lede87joq_x1d.fits', './16196/lede87jqq_x1d.fits', './16196/lede88tlq_x1d.fits', './16196/lede88tnq_x1d.fits', './16196/lede88tpq_x1d.fits', './16196/lede88trq_x1d.fits', './16196/lede89bkq_x1d.fits', './16196/lede89bmq_x1d.fits', './16196/lede89boq_x1d.fits', './16196/lede89bqq_x1d.fits', './16196/lede90dvq_x1d.fits', './16196/lede90dxq_x1d.fits', './16196/lede90dzq_x1d.fits', './16196/lede90e1q_x1d.fits', './16196/lede91pgq_x1d.fits', './16196/lede91piq_x1d.fits', './16196/lede91pkq_x1d.fits', './16196/lede91pmq_x1d.fits', './16196/lede92kbq_x1d.fits', './16196/lede92kdq_x1d.fits', './16196/lede92kfq_x1d.fits', './16196/lede92khq_x1d.fits', './16196/lede93t1q_x1d.fits', './16196/lede93t3q_x1d.fits', './16196/lede93t5q_x1d.fits', './16196/lede93t7q_x1d.fits', './16196/lede95roq_x1d.fits', './16196/lede95rwq_x1d.fits', './16196/lede97ejq_x1d.fits', './16196/lede97elq_x1d.fits']
Processing file ./16196/lede01iqq_x1d.fits
Processing file ./16196/lede01isq_x1d.fits
Processing file ./16196/lede01iuq_x1d.fits
Processing file ./16196/lede01iwq_x1d.fits
Processing file ./16196/lede02vjq_x1d.fits
Processing file ./16196/lede02vlq_x1d.fits
Processing file ./16196/lede02vnq_x1d.fits
Processing file ./16196/lede02vpq_x1d.fits
Processing file ./16196/lede03g8q_x1d.fits
Processing file ./16196/lede03gaq_x1d.fits
Processing file ./16196/lede03gcq_x1d.fits
Processing file ./16196/lede03geq_x1d.fits
Processing file ./16196/lede04miq_x1d.fits
Processing file ./16196/lede04mkq_x1d.fits
Processing file ./16196/lede04mmq_x1d.fits
Processing file ./16196/lede04moq_x1d.fits
Processing file ./16196/lede05qlq_x1d.fits
Processing file ./16196/lede05r6q_x1d.fits
Processing file ./16196/lede05r8q_x1d.fits
Processing file ./16196/lede05raq_x1d.fits
Processing file ./16196/lede06z7q_x1d.fits
Processing file ./16196/lede06z9q_x1d.fits
Processing file ./16196/lede06zbq_x1d.fits
Processing file ./16196/lede06zdq_x1d.fits
Processing file ./16196/lede07k6q_x1d.fits
Processing file ./16196/lede07k8q_x1d.fits
Processing file ./16196/lede07kaq_x1d.fits
Processing file ./16196/lede07kcq_x1d.fits
Processing file ./16196/lede08feq_x1d.fits
Processing file ./16196/lede08fgq_x1d.fits
Processing file ./16196/lede08fiq_x1d.fits
Processing file ./16196/lede08fkq_x1d.fits
Processing file ./16196/lede09a9q_x1d.fits
Processing file ./16196/lede09abq_x1d.fits
Processing file ./16196/lede09adq_x1d.fits
Processing file ./16196/lede09afq_x1d.fits
Processing file ./16196/lede0af2q_x1d.fits
Processing file ./16196/lede0af5q_x1d.fits
Processing file ./16196/lede0af7q_x1d.fits
Processing file ./16196/lede0af9q_x1d.fits
Processing file ./16196/lede0bj9q_x1d.fits
Processing file ./16196/lede0bjbq_x1d.fits
Processing file ./16196/lede0bjdq_x1d.fits
Processing file ./16196/lede0bjyq_x1d.fits
Processing file ./16196/lede0cvxq_x1d.fits
Processing file ./16196/lede0cvzq_x1d.fits
Processing file ./16196/lede0cw1q_x1d.fits
Processing file ./16196/lede0cw3q_x1d.fits
Processing file ./16196/lede0dfeq_x1d.fits
Processing file ./16196/lede0dfgq_x1d.fits
Processing file ./16196/lede0dfiq_x1d.fits
Processing file ./16196/lede0dfoq_x1d.fits
Processing file ./16196/lede0ikvq_x1d.fits
Processing file ./16196/lede0ikxq_x1d.fits
Processing file ./16196/lede0ikzq_x1d.fits
Processing file ./16196/lede0il1q_x1d.fits
Processing file ./16196/lede0jw9q_x1d.fits
Processing file ./16196/lede0jwbq_x1d.fits
Processing file ./16196/lede0jwdq_x1d.fits
Processing file ./16196/lede0jwfq_x1d.fits
Processing file ./16196/lede0kfeq_x1d.fits
Processing file ./16196/lede0kfgq_x1d.fits
Processing file ./16196/lede0kfiq_x1d.fits
Processing file ./16196/lede0kfkq_x1d.fits
Processing file ./16196/lede0lp5q_x1d.fits
Processing file ./16196/lede0lp7q_x1d.fits
Processing file ./16196/lede0lp9q_x1d.fits
Processing file ./16196/lede0lpbq_x1d.fits
Processing file ./16196/lede0ma1q_x1d.fits
Processing file ./16196/lede0ma4q_x1d.fits
Processing file ./16196/lede0ma6q_x1d.fits
Processing file ./16196/lede0mzxq_x1d.fits
Processing file ./16196/lede0njkq_x1d.fits
Processing file ./16196/lede0njmq_x1d.fits
Processing file ./16196/lede0njoq_x1d.fits
Processing file ./16196/lede0nk9q_x1d.fits
Processing file ./16196/lede0ogtq_x1d.fits
Processing file ./16196/lede0ogvq_x1d.fits
Processing file ./16196/lede0ogxq_x1d.fits
Processing file ./16196/lede0ogzq_x1d.fits
Processing file ./16196/lede0psqq_x1d.fits
Processing file ./16196/lede0pssq_x1d.fits
Processing file ./16196/lede0psuq_x1d.fits
Processing file ./16196/lede0pswq_x1d.fits
Processing file ./16196/lede0qcaq_x1d.fits
Processing file ./16196/lede0qccq_x1d.fits
Processing file ./16196/lede0qceq_x1d.fits
Processing file ./16196/lede0qcgq_x1d.fits
Processing file ./16196/lede0raiq_x1d.fits
Processing file ./16196/lede0ranq_x1d.fits
Processing file ./16196/lede0rapq_x1d.fits
Processing file ./16196/lede0rarq_x1d.fits
Processing file ./16196/lede0togq_x1d.fits
Processing file ./16196/lede0toiq_x1d.fits
Processing file ./16196/lede0tokq_x1d.fits
Processing file ./16196/lede0tomq_x1d.fits
Processing file ./16196/lede0uztq_x1d.fits
Processing file ./16196/lede0uzvq_x1d.fits
Processing file ./16196/lede0uzxq_x1d.fits
Processing file ./16196/lede0uzzq_x1d.fits
Processing file ./16196/lede0yh2q_x1d.fits
Processing file ./16196/lede0yh4q_x1d.fits
Processing file ./16196/lede0zzaq_x1d.fits
Processing file ./16196/lede0zzcq_x1d.fits
Processing file ./16196/lede0zzeq_x1d.fits
Processing file ./16196/lede0zzgq_x1d.fits
Processing file ./16196/lede10j6q_x1d.fits
Processing file ./16196/lede10j8q_x1d.fits
Processing file ./16196/lede10jaq_x1d.fits
Processing file ./16196/lede10jcq_x1d.fits
Processing file ./16196/lede11adq_x1d.fits
Processing file ./16196/lede11afq_x1d.fits
Processing file ./16196/lede11ahq_x1d.fits
Processing file ./16196/lede11ajq_x1d.fits
Processing file ./16196/lede12m7q_x1d.fits
Processing file ./16196/lede12m9q_x1d.fits
Processing file ./16196/lede12mbq_x1d.fits
Processing file ./16196/lede12mdq_x1d.fits
Processing file ./16196/lede14k7q_x1d.fits
Processing file ./16196/lede14k9q_x1d.fits
Processing file ./16196/lede14kbq_x1d.fits
Processing file ./16196/lede14kdq_x1d.fits
Processing file ./16196/lede15noq_x1d.fits
Processing file ./16196/lede15nqq_x1d.fits
Processing file ./16196/lede15nsq_x1d.fits
Processing file ./16196/lede15nuq_x1d.fits
Processing file ./16196/lede16w8q_x1d.fits
Processing file ./16196/lede16waq_x1d.fits
Processing file ./16196/lede16wcq_x1d.fits
Processing file ./16196/lede16weq_x1d.fits
Processing file ./16196/lede17hyq_x1d.fits
Processing file ./16196/lede17i0q_x1d.fits
Processing file ./16196/lede17i2q_x1d.fits
Processing file ./16196/lede17i4q_x1d.fits
Processing file ./16196/lede18sgq_x1d.fits
Processing file ./16196/lede18siq_x1d.fits
Processing file ./16196/lede18skq_x1d.fits
Processing file ./16196/lede18smq_x1d.fits
Processing file ./16196/lede19n1q_x1d.fits
Processing file ./16196/lede19n3q_x1d.fits
Processing file ./16196/lede19n5q_x1d.fits
Processing file ./16196/lede19n7q_x1d.fits
Processing file ./16196/lede1bvoq_x1d.fits
Processing file ./16196/lede1bvqq_x1d.fits
Processing file ./16196/lede1bvsq_x1d.fits
Processing file ./16196/lede1bvuq_x1d.fits
Processing file ./16196/lede1cfaq_x1d.fits
Processing file ./16196/lede1cfcq_x1d.fits
Processing file ./16196/lede1cfeq_x1d.fits
Processing file ./16196/lede1cfgq_x1d.fits
Processing file ./16196/lede1ejtq_x1d.fits
Processing file ./16196/lede1ejvq_x1d.fits
Processing file ./16196/lede1ejxq_x1d.fits
Processing file ./16196/lede1ejzq_x1d.fits
Processing file ./16196/lede1gaoq_x1d.fits
Processing file ./16196/lede1gaqq_x1d.fits
Processing file ./16196/lede1gbiq_x1d.fits
Processing file ./16196/lede1gbkq_x1d.fits
Processing file ./16196/lede1hhkq_x1d.fits
Processing file ./16196/lede1hhmq_x1d.fits
Processing file ./16196/lede1hhoq_x1d.fits
Processing file ./16196/lede1irjq_x1d.fits
Processing file ./16196/lede1irlq_x1d.fits
Processing file ./16196/lede1irnq_x1d.fits
Processing file ./16196/lede1irpq_x1d.fits
Processing file ./16196/lede1mu3q_x1d.fits
Processing file ./16196/lede1mu5q_x1d.fits
Processing file ./16196/lede1mu7q_x1d.fits
Processing file ./16196/lede1mu9q_x1d.fits
Processing file ./16196/lede1noqq_x1d.fits
Processing file ./16196/lede1nosq_x1d.fits
Processing file ./16196/lede1nouq_x1d.fits
Processing file ./16196/lede1nowq_x1d.fits
Processing file ./16196/lede1ocmq_x1d.fits
Processing file ./16196/lede1ocoq_x1d.fits
Processing file ./16196/lede1ocqq_x1d.fits
Processing file ./16196/lede1ocsq_x1d.fits
Processing file ./16196/lede1pkrq_x1d.fits
Processing file ./16196/lede1pktq_x1d.fits
Processing file ./16196/lede1pkvq_x1d.fits
Processing file ./16196/lede1pkxq_x1d.fits
Processing file ./16196/lede1qsxq_x1d.fits
Processing file ./16196/lede1qszq_x1d.fits
Processing file ./16196/lede1qt1q_x1d.fits
Processing file ./16196/lede1qt3q_x1d.fits
Processing file ./16196/lede1tukq_x1d.fits
Processing file ./16196/lede1tumq_x1d.fits
Processing file ./16196/lede1vd2q_x1d.fits
Processing file ./16196/lede1vd4q_x1d.fits
Processing file ./16196/lede1wt3q_x1d.fits
Processing file ./16196/lede1wt5q_x1d.fits
Processing file ./16196/lede1wt7q_x1d.fits
Processing file ./16196/lede1wt9q_x1d.fits
Processing file ./16196/lede20atq_x1d.fits
Processing file ./16196/lede20avq_x1d.fits
Processing file ./16196/lede20axq_x1d.fits
Processing file ./16196/lede20azq_x1d.fits
Processing file ./16196/lede21kmq_x1d.fits
Processing file ./16196/lede21koq_x1d.fits
Processing file ./16196/lede21kqq_x1d.fits
Processing file ./16196/lede21ksq_x1d.fits
Processing file ./16196/lede22lwq_x1d.fits
Processing file ./16196/lede22lyq_x1d.fits
Processing file ./16196/lede22m0q_x1d.fits
Processing file ./16196/lede22m2q_x1d.fits
Processing file ./16196/lede23uxq_x1d.fits
Processing file ./16196/lede23uzq_x1d.fits
Processing file ./16196/lede23v1q_x1d.fits
Processing file ./16196/lede23v3q_x1d.fits
Processing file ./16196/lede24k0q_x1d.fits
Processing file ./16196/lede24k2q_x1d.fits
Processing file ./16196/lede24k4q_x1d.fits
Processing file ./16196/lede24k6q_x1d.fits
Processing file ./16196/lede25s7q_x1d.fits
Processing file ./16196/lede25s9q_x1d.fits
Processing file ./16196/lede25sbq_x1d.fits
Processing file ./16196/lede25sdq_x1d.fits
Processing file ./16196/lede26kaq_x1d.fits
Processing file ./16196/lede26kcq_x1d.fits
Processing file ./16196/lede26keq_x1d.fits
Processing file ./16196/lede26kgq_x1d.fits
Processing file ./16196/lede27qrq_x1d.fits
Processing file ./16196/lede27qtq_x1d.fits
Processing file ./16196/lede27qvq_x1d.fits
Processing file ./16196/lede27qxq_x1d.fits
Processing file ./16196/lede28adq_x1d.fits
Processing file ./16196/lede28afq_x1d.fits
Processing file ./16196/lede28ahq_x1d.fits
Processing file ./16196/lede28ajq_x1d.fits
Processing file ./16196/lede29i8q_x1d.fits
Processing file ./16196/lede29iaq_x1d.fits
Processing file ./16196/lede29icq_x1d.fits
Processing file ./16196/lede29ieq_x1d.fits
Processing file ./16196/lede2atiq_x1d.fits
Processing file ./16196/lede2atkq_x1d.fits
Processing file ./16196/lede2atmq_x1d.fits
Processing file ./16196/lede2atoq_x1d.fits
Processing file ./16196/lede2bbcq_x1d.fits
Processing file ./16196/lede2bbhq_x1d.fits
Processing file ./16196/lede2bbjq_x1d.fits
Processing file ./16196/lede2bblq_x1d.fits
Processing file ./16196/lede2cj0q_x1d.fits
Processing file ./16196/lede2cj2q_x1d.fits
Processing file ./16196/lede2cj4q_x1d.fits
Processing file ./16196/lede2cj6q_x1d.fits
Processing file ./16196/lede2dowq_x1d.fits
Processing file ./16196/lede2doyq_x1d.fits
Processing file ./16196/lede2dp0q_x1d.fits
Processing file ./16196/lede2dp3q_x1d.fits
Processing file ./16196/lede2eynq_x1d.fits
Processing file ./16196/lede2eyqq_x1d.fits
Processing file ./16196/lede2eysq_x1d.fits
Processing file ./16196/lede2eyuq_x1d.fits
Processing file ./16196/lede2fi3q_x1d.fits
Processing file ./16196/lede2fi5q_x1d.fits
Processing file ./16196/lede2fi7q_x1d.fits
Processing file ./16196/lede2fi9q_x1d.fits
Processing file ./16196/lede2gf8q_x1d.fits
Processing file ./16196/lede2gfaq_x1d.fits
Processing file ./16196/lede2gfcq_x1d.fits
Processing file ./16196/lede2gfxq_x1d.fits
Processing file ./16196/lede2hr5q_x1d.fits
Processing file ./16196/lede2hr7q_x1d.fits
Processing file ./16196/lede2hr9q_x1d.fits
Processing file ./16196/lede2hrbq_x1d.fits
Processing file ./16196/lede2ibbq_x1d.fits
Processing file ./16196/lede2ibdq_x1d.fits
Processing file ./16196/lede2ibfq_x1d.fits
Processing file ./16196/lede2ibhq_x1d.fits
Processing file ./16196/lede2jjwq_x1d.fits
Processing file ./16196/lede2jjyq_x1d.fits
Processing file ./16196/lede2jk0q_x1d.fits
Processing file ./16196/lede2jk2q_x1d.fits
Processing file ./16196/lede2kkmq_x1d.fits
Processing file ./16196/lede2kkoq_x1d.fits
Processing file ./16196/lede2kkqq_x1d.fits
Processing file ./16196/lede2kktq_x1d.fits
Processing file ./16196/lede2ls8q_x1d.fits
Processing file ./16196/lede2lsaq_x1d.fits
Processing file ./16196/lede2lscq_x1d.fits
Processing file ./16196/lede2lseq_x1d.fits
Processing file ./16196/lede2mb2q_x1d.fits
Processing file ./16196/lede2mb4q_x1d.fits
Processing file ./16196/lede2mb6q_x1d.fits
Processing file ./16196/lede2mb8q_x1d.fits
Processing file ./16196/lede2nkyq_x1d.fits
Processing file ./16196/lede2nl3q_x1d.fits
Processing file ./16196/lede2nl5q_x1d.fits
Processing file ./16196/lede2nl7q_x1d.fits
Processing file ./16196/lede2ua4q_x1d.fits
Processing file ./16196/lede2ua6q_x1d.fits
Processing file ./16196/lede2ua8q_x1d.fits
Processing file ./16196/lede2uaaq_x1d.fits
Processing file ./16196/lede2ydbq_x1d.fits
Processing file ./16196/lede2yddq_x1d.fits
Processing file ./16196/lede2ydfq_x1d.fits
Processing file ./16196/lede2ydhq_x1d.fits
Processing file ./16196/lede2zoeq_x1d.fits
Processing file ./16196/lede2zogq_x1d.fits
Processing file ./16196/lede2zoiq_x1d.fits
Processing file ./16196/lede2zokq_x1d.fits
Processing file ./16196/lede30sjq_x1d.fits
Processing file ./16196/lede30slq_x1d.fits
Processing file ./16196/lede30snq_x1d.fits
Processing file ./16196/lede30spq_x1d.fits
Processing file ./16196/lede31deq_x1d.fits
Processing file ./16196/lede31dgq_x1d.fits
Processing file ./16196/lede31diq_x1d.fits
Processing file ./16196/lede31dkq_x1d.fits
Processing file ./16196/lede32s9q_x1d.fits
Processing file ./16196/lede32sbq_x1d.fits
Processing file ./16196/lede32sdq_x1d.fits
Processing file ./16196/lede32sfq_x1d.fits
Processing file ./16196/lede33s9q_x1d.fits
Processing file ./16196/lede33syq_x1d.fits
Processing file ./16196/lede33t0q_x1d.fits
Processing file ./16196/lede33t2q_x1d.fits
Processing file ./16196/lede34lwq_x1d.fits
Processing file ./16196/lede34lyq_x1d.fits
Processing file ./16196/lede34m0q_x1d.fits
Processing file ./16196/lede34m3q_x1d.fits
Processing file ./16196/lede35xzq_x1d.fits
Processing file ./16196/lede35y1q_x1d.fits
Processing file ./16196/lede35y3q_x1d.fits
Processing file ./16196/lede35y5q_x1d.fits
Processing file ./16196/lede36g8q_x1d.fits
Processing file ./16196/lede36gaq_x1d.fits
Processing file ./16196/lede36gcq_x1d.fits
Processing file ./16196/lede36geq_x1d.fits
Processing file ./16196/lede37ldq_x1d.fits
Processing file ./16196/lede37lfq_x1d.fits
Processing file ./16196/lede37lhq_x1d.fits
Processing file ./16196/lede37ljq_x1d.fits
Processing file ./16196/lede38u0q_x1d.fits
Processing file ./16196/lede38u2q_x1d.fits
Processing file ./16196/lede38u4q_x1d.fits
Processing file ./16196/lede38u6q_x1d.fits
Processing file ./16196/lede39ctq_x1d.fits
Processing file ./16196/lede39cvq_x1d.fits
Processing file ./16196/lede39cxq_x1d.fits
Processing file ./16196/lede39czq_x1d.fits
Processing file ./16196/lede3axkq_x1d.fits
Processing file ./16196/lede3axmq_x1d.fits
Processing file ./16196/lede3axoq_x1d.fits
Processing file ./16196/lede3axqq_x1d.fits
Processing file ./16196/lede3bk8q_x1d.fits
Processing file ./16196/lede3bkaq_x1d.fits
Processing file ./16196/lede3bkcq_x1d.fits
Processing file ./16196/lede3bkeq_x1d.fits
Processing file ./16196/lede3ckeq_x1d.fits
Processing file ./16196/lede3ckgq_x1d.fits
Processing file ./16196/lede3ckiq_x1d.fits
Processing file ./16196/lede3ckkq_x1d.fits
Processing file ./16196/lede3dt9q_x1d.fits
Processing file ./16196/lede3dtbq_x1d.fits
Processing file ./16196/lede3dtdq_x1d.fits
Processing file ./16196/lede3dtfq_x1d.fits
Processing file ./16196/lede3efkq_x1d.fits
Processing file ./16196/lede3efmq_x1d.fits
Processing file ./16196/lede3efoq_x1d.fits
Processing file ./16196/lede3efqq_x1d.fits
Processing file ./16196/lede3fdpq_x1d.fits
Processing file ./16196/lede3fdrq_x1d.fits
Processing file ./16196/lede3fdtq_x1d.fits
Processing file ./16196/lede3fe0q_x1d.fits
Processing file ./16196/lede3gmrq_x1d.fits
Processing file ./16196/lede3gmtq_x1d.fits
Processing file ./16196/lede3gmvq_x1d.fits
Processing file ./16196/lede3gmxq_x1d.fits
Processing file ./16196/lede3hbnq_x1d.fits
Processing file ./16196/lede3hbpq_x1d.fits
Processing file ./16196/lede3hbrq_x1d.fits
Processing file ./16196/lede3hbtq_x1d.fits
Processing file ./16196/lede3irzq_x1d.fits
Processing file ./16196/lede3is1q_x1d.fits
Processing file ./16196/lede3is3q_x1d.fits
Processing file ./16196/lede3is6q_x1d.fits
Processing file ./16196/lede3lpxq_x1d.fits
Processing file ./16196/lede3lpzq_x1d.fits
Processing file ./16196/lede3lq1q_x1d.fits
Processing file ./16196/lede3lq3q_x1d.fits
Processing file ./16196/lede3medq_x1d.fits
Processing file ./16196/lede3mefq_x1d.fits
Processing file ./16196/lede3mehq_x1d.fits
Processing file ./16196/lede3mejq_x1d.fits
Processing file ./16196/lede3ncdq_x1d.fits
Processing file ./16196/lede3ncgq_x1d.fits
Processing file ./16196/lede3ncjq_x1d.fits
Processing file ./16196/lede3nclq_x1d.fits
Processing file ./16196/lede3pr9q_x1d.fits
Processing file ./16196/lede3prbq_x1d.fits
Processing file ./16196/lede3prdq_x1d.fits
Processing file ./16196/lede3prfq_x1d.fits
Processing file ./16196/lede3qa2q_x1d.fits
Processing file ./16196/lede3qa4q_x1d.fits
Processing file ./16196/lede3qzxq_x1d.fits
Processing file ./16196/lede3qzzq_x1d.fits
Processing file ./16196/lede3rh8q_x1d.fits
Processing file ./16196/lede3rhaq_x1d.fits
Processing file ./16196/lede3rhcq_x1d.fits
Processing file ./16196/lede3rheq_x1d.fits
Processing file ./16196/lede3stjq_x1d.fits
Processing file ./16196/lede3stpq_x1d.fits
Processing file ./16196/lede3strq_x1d.fits
Processing file ./16196/lede3sttq_x1d.fits
Processing file ./16196/lede3ua5q_x1d.fits
Processing file ./16196/lede3ua7q_x1d.fits
Processing file ./16196/lede3ua9q_x1d.fits
Processing file ./16196/lede3uabq_x1d.fits
Processing file ./16196/lede3visq_x1d.fits
Processing file ./16196/lede3viuq_x1d.fits
Processing file ./16196/lede3viwq_x1d.fits
Processing file ./16196/lede3viyq_x1d.fits
Processing file ./16196/lede3we2q_x1d.fits
Processing file ./16196/lede3we4q_x1d.fits
Processing file ./16196/lede3we6q_x1d.fits
Processing file ./16196/lede3we8q_x1d.fits
Processing file ./16196/lede3xjoq_x1d.fits
Processing file ./16196/lede3xk9q_x1d.fits
Processing file ./16196/lede3xkhq_x1d.fits
Processing file ./16196/lede3xkjq_x1d.fits
Processing file ./16196/lede3yqfq_x1d.fits
Processing file ./16196/lede3yqhq_x1d.fits
Processing file ./16196/lede3yqjq_x1d.fits
Processing file ./16196/lede3yqlq_x1d.fits
Processing file ./16196/lede3za3q_x1d.fits
Processing file ./16196/lede3za5q_x1d.fits
Processing file ./16196/lede3za7q_x1d.fits
Processing file ./16196/lede3za9q_x1d.fits
Processing file ./16196/lede40mkq_x1d.fits
Processing file ./16196/lede40mmq_x1d.fits
Processing file ./16196/lede40moq_x1d.fits
Processing file ./16196/lede40mqq_x1d.fits
Processing file ./16196/lede41uiq_x1d.fits
Processing file ./16196/lede41ukq_x1d.fits
Processing file ./16196/lede41umq_x1d.fits
Processing file ./16196/lede41uoq_x1d.fits
Processing file ./16196/lede42hnq_x1d.fits
Processing file ./16196/lede42hpq_x1d.fits
Processing file ./16196/lede42hrq_x1d.fits
Processing file ./16196/lede42htq_x1d.fits
Processing file ./16196/lede43pgq_x1d.fits
Processing file ./16196/lede43piq_x1d.fits
Processing file ./16196/lede43pkq_x1d.fits
Processing file ./16196/lede43pmq_x1d.fits
Processing file ./16196/lede44gzq_x1d.fits
Processing file ./16196/lede44h1q_x1d.fits
Processing file ./16196/lede44h3q_x1d.fits
Processing file ./16196/lede44h5q_x1d.fits
Processing file ./16196/lede45qbq_x1d.fits
Processing file ./16196/lede45qdq_x1d.fits
Processing file ./16196/lede45qfq_x1d.fits
Processing file ./16196/lede45qhq_x1d.fits
Processing file ./16196/lede46yvq_x1d.fits
Processing file ./16196/lede46yxq_x1d.fits
Processing file ./16196/lede46yzq_x1d.fits
Processing file ./16196/lede46z1q_x1d.fits
Processing file ./16196/lede47bcq_x1d.fits
Processing file ./16196/lede47beq_x1d.fits
Processing file ./16196/lede47bgq_x1d.fits
Processing file ./16196/lede47biq_x1d.fits
Processing file ./16196/lede48taq_x1d.fits
Processing file ./16196/lede48tcq_x1d.fits
Processing file ./16196/lede48teq_x1d.fits
Processing file ./16196/lede48tgq_x1d.fits
Processing file ./16196/lede49hcq_x1d.fits
Processing file ./16196/lede49heq_x1d.fits
Processing file ./16196/lede49hgq_x1d.fits
Processing file ./16196/lede49hiq_x1d.fits
Processing file ./16196/lede50x0q_x1d.fits
Processing file ./16196/lede50x2q_x1d.fits
Processing file ./16196/lede50x4q_x1d.fits
Processing file ./16196/lede50x6q_x1d.fits
Processing file ./16196/lede51h9q_x1d.fits
Processing file ./16196/lede51hbq_x1d.fits
Processing file ./16196/lede51hdq_x1d.fits
Processing file ./16196/lede51hfq_x1d.fits
Processing file ./16196/lede53mvq_x1d.fits
Processing file ./16196/lede53mxq_x1d.fits
Processing file ./16196/lede57azq_x1d.fits
Processing file ./16196/lede57b2q_x1d.fits
Processing file ./16196/lede59nxq_x1d.fits
Processing file ./16196/lede59nzq_x1d.fits
Processing file ./16196/lede59o1q_x1d.fits
Processing file ./16196/lede59o3q_x1d.fits
Processing file ./16196/lede60wkq_x1d.fits
Processing file ./16196/lede60x5q_x1d.fits
Processing file ./16196/lede60x7q_x1d.fits
Processing file ./16196/lede60xbq_x1d.fits
Processing file ./16196/lede61e1q_x1d.fits
Processing file ./16196/lede61e3q_x1d.fits
Processing file ./16196/lede61e5q_x1d.fits
Processing file ./16196/lede61e7q_x1d.fits
Processing file ./16196/lede62miq_x1d.fits
Processing file ./16196/lede62mkq_x1d.fits
Processing file ./16196/lede62mmq_x1d.fits
Processing file ./16196/lede62moq_x1d.fits
Processing file ./16196/lede63x8q_x1d.fits
Processing file ./16196/lede63xaq_x1d.fits
Processing file ./16196/lede63xcq_x1d.fits
Processing file ./16196/lede63xmq_x1d.fits
Processing file ./16196/lede64iuq_x1d.fits
Processing file ./16196/lede64iwq_x1d.fits
Processing file ./16196/lede64iyq_x1d.fits
Processing file ./16196/lede64j0q_x1d.fits
Processing file ./16196/lede65e5q_x1d.fits
Processing file ./16196/lede65e7q_x1d.fits
Processing file ./16196/lede65e9q_x1d.fits
Processing file ./16196/lede65ebq_x1d.fits
Processing file ./16196/lede66ljq_x1d.fits
Processing file ./16196/lede66llq_x1d.fits
Processing file ./16196/lede66lnq_x1d.fits
Processing file ./16196/lede66lpq_x1d.fits
Processing file ./16196/lede67x9q_x1d.fits
Processing file ./16196/lede67xbq_x1d.fits
Processing file ./16196/lede67xdq_x1d.fits
Processing file ./16196/lede67xfq_x1d.fits
Processing file ./16196/lede68g3q_x1d.fits
Processing file ./16196/lede68g5q_x1d.fits
Processing file ./16196/lede68g7q_x1d.fits
Processing file ./16196/lede68g9q_x1d.fits
Processing file ./16196/lede69hhq_x1d.fits
Processing file ./16196/lede69hjq_x1d.fits
Processing file ./16196/lede69hmq_x1d.fits
Processing file ./16196/lede69hoq_x1d.fits
Processing file ./16196/lede70tdq_x1d.fits
Processing file ./16196/lede70tfq_x1d.fits
Processing file ./16196/lede70thq_x1d.fits
Processing file ./16196/lede70tjq_x1d.fits
Processing file ./16196/lede71bnq_x1d.fits
Processing file ./16196/lede71bpq_x1d.fits
Processing file ./16196/lede71brq_x1d.fits
Processing file ./16196/lede71btq_x1d.fits
Processing file ./16196/lede72cjq_x1d.fits
Processing file ./16196/lede72clq_x1d.fits
Processing file ./16196/lede72cnq_x1d.fits
Processing file ./16196/lede72cpq_x1d.fits
Processing file ./16196/lede73ogq_x1d.fits
Processing file ./16196/lede73ojq_x1d.fits
Processing file ./16196/lede73olq_x1d.fits
Processing file ./16196/lede73onq_x1d.fits
Processing file ./16196/lede74ukq_x1d.fits
Processing file ./16196/lede74umq_x1d.fits
Processing file ./16196/lede74uoq_x1d.fits
Processing file ./16196/lede74v9q_x1d.fits
Processing file ./16196/lede75chq_x1d.fits
Processing file ./16196/lede75cjq_x1d.fits
Processing file ./16196/lede75clq_x1d.fits
Processing file ./16196/lede75cnq_x1d.fits
Processing file ./16196/lede78vjq_x1d.fits
Processing file ./16196/lede78vlq_x1d.fits
Processing file ./16196/lede81neq_x1d.fits
Processing file ./16196/lede81ngq_x1d.fits
Processing file ./16196/lede82idq_x1d.fits
Processing file ./16196/lede82ifq_x1d.fits
Processing file ./16196/lede83irq_x1d.fits
Processing file ./16196/lede83itq_x1d.fits
Processing file ./16196/lede84quq_x1d.fits
Processing file ./16196/lede84qwq_x1d.fits
Processing file ./16196/lede84qyq_x1d.fits
Processing file ./16196/lede84r0q_x1d.fits
Processing file ./16196/lede85byq_x1d.fits
Processing file ./16196/lede85c0q_x1d.fits
Processing file ./16196/lede85c2q_x1d.fits
Processing file ./16196/lede85c4q_x1d.fits
Processing file ./16196/lede86j8q_x1d.fits
Processing file ./16196/lede86jaq_x1d.fits
Processing file ./16196/lede86jcq_x1d.fits
Processing file ./16196/lede86jeq_x1d.fits
Processing file ./16196/lede87jkq_x1d.fits
Processing file ./16196/lede87jmq_x1d.fits
Processing file ./16196/lede87joq_x1d.fits
Processing file ./16196/lede87jqq_x1d.fits
Processing file ./16196/lede88tlq_x1d.fits
Processing file ./16196/lede88tnq_x1d.fits
Processing file ./16196/lede88tpq_x1d.fits
Processing file ./16196/lede88trq_x1d.fits
Processing file ./16196/lede89bkq_x1d.fits
Processing file ./16196/lede89bmq_x1d.fits
Processing file ./16196/lede89boq_x1d.fits
Processing file ./16196/lede89bqq_x1d.fits
Processing file ./16196/lede90dvq_x1d.fits
Processing file ./16196/lede90dxq_x1d.fits
Processing file ./16196/lede90dzq_x1d.fits
Processing file ./16196/lede90e1q_x1d.fits
Processing file ./16196/lede91pgq_x1d.fits
Processing file ./16196/lede91piq_x1d.fits
Processing file ./16196/lede91pkq_x1d.fits
Processing file ./16196/lede91pmq_x1d.fits
Processing file ./16196/lede92kbq_x1d.fits
Processing file ./16196/lede92kdq_x1d.fits
Processing file ./16196/lede92kfq_x1d.fits
Processing file ./16196/lede92khq_x1d.fits
Processing file ./16196/lede93t1q_x1d.fits
Processing file ./16196/lede93t3q_x1d.fits
Processing file ./16196/lede93t5q_x1d.fits
Processing file ./16196/lede93t7q_x1d.fits
Processing file ./16196/lede95roq_x1d.fits
Processing file ./16196/lede95rwq_x1d.fits
Processing file ./16196/lede97ejq_x1d.fits
Processing file ./16196/lede97elq_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_cos_mrk-817_g160m_lede_cspec.fits
Processing grating STIS/G750L
Importing files ['./16196/oede3o020_sx1.fits', './16196/oede3o030_sx1.fits', './16196/oede3o040_sx1.fits', './16196/oede4b020_sx1.fits', './16196/oede4b030_sx1.fits', './16196/oede4b040_sx1.fits', './16196/oede4f020_sx1.fits', './16196/oede4f030_sx1.fits', './16196/oede4f040_sx1.fits', './16196/oedea5020_sx1.fits', './16196/oedea5030_sx1.fits', './16196/oedea5040_sx1.fits', './16196/oedea6020_sx1.fits', './16196/oedea6030_sx1.fits', './16196/oedea6040_sx1.fits', './16196/oedean020_sx1.fits', './16196/oedean030_sx1.fits', './16196/oedean040_sx1.fits']
Processing file ./16196/oede3o020_sx1.fits
Processing file ./16196/oede3o030_sx1.fits
Processing file ./16196/oede3o040_sx1.fits
Processing file ./16196/oede4b020_sx1.fits
Processing file ./16196/oede4b030_sx1.fits
Processing file ./16196/oede4b040_sx1.fits
Processing file ./16196/oede4f020_sx1.fits
Processing file ./16196/oede4f030_sx1.fits
Processing file ./16196/oede4f040_sx1.fits
Processing file ./16196/oedea5020_sx1.fits
Processing file ./16196/oedea5030_sx1.fits
Processing file ./16196/oedea5040_sx1.fits
Processing file ./16196/oedea6020_sx1.fits
Processing file ./16196/oedea6030_sx1.fits
Processing file ./16196/oedea6040_sx1.fits
Processing file ./16196/oedean020_sx1.fits
Processing file ./16196/oedean030_sx1.fits
Processing file ./16196/oedean040_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g750l_oede_cspec.fits
Processing grating STIS/G430L
Importing files ['./16196/oede3o050_sx1.fits', './16196/oede3o060_sx1.fits', './16196/oede3o070_sx1.fits', './16196/oede4b050_sx1.fits', './16196/oede4b060_sx1.fits', './16196/oede4b070_sx1.fits', './16196/oede4f050_sx1.fits', './16196/oede4f060_sx1.fits', './16196/oede4f070_sx1.fits', './16196/oedea5050_sx1.fits', './16196/oedea5060_sx1.fits', './16196/oedea5070_sx1.fits', './16196/oedea6050_sx1.fits', './16196/oedea6060_sx1.fits', './16196/oedea6070_sx1.fits', './16196/oedean050_sx1.fits', './16196/oedean060_sx1.fits', './16196/oedean070_sx1.fits']
Processing file ./16196/oede3o050_sx1.fits
Processing file ./16196/oede3o060_sx1.fits
Processing file ./16196/oede3o070_sx1.fits
Processing file ./16196/oede4b050_sx1.fits
Processing file ./16196/oede4b060_sx1.fits
Processing file ./16196/oede4b070_sx1.fits
Processing file ./16196/oede4f050_sx1.fits
Processing file ./16196/oede4f060_sx1.fits
Processing file ./16196/oede4f070_sx1.fits
Processing file ./16196/oedea5050_sx1.fits
Processing file ./16196/oedea5060_sx1.fits
Processing file ./16196/oedea5070_sx1.fits
Processing file ./16196/oedea6050_sx1.fits
Processing file ./16196/oedea6060_sx1.fits
Processing file ./16196/oedea6070_sx1.fits
Processing file ./16196/oedean050_sx1.fits
Processing file ./16196/oedean060_sx1.fits
Processing file ./16196/oedean070_sx1.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_g430l_oede_cspec.fits
Processing grating STIS/G140L
Importing files ['./16196/oede3o080_x1d.fits', './16196/oede4b080_x1d.fits', './16196/oede4f080_x1d.fits']
Processing file ./16196/oede3o080_x1d.fits
Processing file ./16196/oede4b080_x1d.fits
Processing file ./16196/oede4f080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg140l_oede_cspec.fits
Processing grating STIS/G230L
Importing files ['./16196/oede3o090_x1d.fits', './16196/oede4b090_x1d.fits', './16196/oede4f090_x1d.fits', './16196/oedea5080_x1d.fits', './16196/oedea6080_x1d.fits', './16196/oedean080_x1d.fits']
Processing file ./16196/oede3o090_x1d.fits
Processing file ./16196/oede4b090_x1d.fits
Processing file ./16196/oede4f090_x1d.fits
Processing file ./16196/oedea5080_x1d.fits
Processing file ./16196/oedea6080_x1d.fits
Processing file ./16196/oedean080_x1d.fits
Using a maximum SNR of 20.0 in flux-based filtering
   Wrote ./16196/products_nofluxfilter/hst_16196_stis_mrk-817_sg230l_oede_cspec.fits
Making a product from these gratings
COS/G130M 900-1470 (Actual: 940.2-1367.4)
COS/G160M 1342-1800 (Actual: 1343.1-1748.0)
STIS/G140L 1138.4-1716.4 (Actual: 1138.4-1712.4)
STIS/G230L 1582.0-3158.7 (Actual: 1579.6-3157.5)
STIS/G430L 2895.9-5704.4 (Actual: 2975.5-5703.2)
STIS/G750L 5261.3-10252.3 (Actual: 5303.8-10247.4)
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Transition wavelengths tweaked
Starting at the short wavelength end with grating COS/G130M
Abutting COS/G160M product to current result
With a transition wavelength of 1367.41812608673
Abutting STIS/G230L product to current result
With a transition wavelength of 1747.9729682539157
Abutting STIS/G430L product to current result
With a transition wavelength of 3157.4639518997174
Abutting STIS/G750L product to current result
With a transition wavelength of 5703.244724755774
Truncating current grating at 10247.421572156081
   Wrote ./16196/products_nofluxfilter/hst_16196_cos-stis_mrk-817_g130m-g160m-sg230l-g430l-g750l_lede_cspec.fits

Because of the number of datasets, this co-add takes much longer to compute. Once it’s done, we can plot the results.

# Clear the older plot
plt.close()
plt.figure(6)

fn = 'hst_16196_cos-stis_mrk-817_g130m-g160m-sg230l-g430l-g750l_lede_cspec.fits'

# Plot the old coadd
oldcoaddfile = os.path.join(datadir_ex3, 'products', fn)
oldcoadddata = fits.getdata(oldcoaddfile)
oldwavelength = oldcoadddata['wavelength'][0]
oldflux = oldcoadddata['flux'][0]

plt.plot(downsample_1d(oldwavelength, samplefactor),
         downsample_1d(oldflux, samplefactor),
         label='coadd w/ flux filter',
         color="red",
         alpha=0.7)

# Plot the new coadd
newcoaddfile = os.path.join(datadir_ex3, 'products_nofluxfilter', fn)
newcoadddata = fits.getdata(newcoaddfile)
newwavelength = newcoadddata['wavelength'][0]
newflux = newcoadddata['flux'][0]

plt.plot(downsample_1d(newwavelength, samplefactor),
         downsample_1d(newflux, samplefactor),
         label='coadd w/o flux filter',
         color="blue",
         alpha=0.7)

targ = fits.getval(coaddfile, 'TARGNAME', ext=0)
pid = fits.getval(coaddfile, 'PROPOSID', ext=0)
ins = fits.getval(coaddfile, 'INSTRUME', ext=0)

plt.title(f'{targ} - {ins} - PID {pid}')
plt.xlabel(r'Wavelength [$\AA$]')
plt.ylabel(r'Flux [$erg\ s^{-1}\ cm^{-2}\ \AA^{-1}$]')
plt.legend()

# Show the plot below
plt.show()

The plot above shows that the flux is lower in the dataset made without the flux checker on. This means that the previously-rejected datasets were of lower flux. However, zooming in on some of the absorption features, we can see that the wings of some lines are broader in the dataset with no flux rejection, which can be useful in some science cases where these features are faint.

Happy co-adding!#

There are more tutorial notebooks for custom co-addition cases in this repo, check them out!#

About this Notebook#

Author: Elaine Frazer (efrazer@stsci.edu), Sierra Gomez (sigomez@stsci.edu)

Updated on: 02/26/2024

This tutorial was generated to be in compliance with the STScI style guides and would like to cite the Jupyter guide in particular.

Citations#

If you use astropy, astroquery, numpy, or matplotlib, for published research, please cite the authors. Follow these links for more information about citations:


Top of Page Space Telescope Logo