SAS User File for PROJYR14 Data

This file contains information and sample SAS programs to create a permanent
SAS dataset for users who want to use SAS in processing the MEPS data
provided in this PUF release.

There are two ways to create a permanent SAS dataset, using either the SAS
transport data file (PROJYR14.SSP) or the ASCII data file (PROJYR14.DAT)
supplied in this PUF release.  Section A provides a sample SAS program for the
first alternative, which is to convert the SAS transport data file to a
regular SAS dataset using the SAS PROCedure: XCOPY.  Section B provides a
sample SAS program for the second alternative, which is to read data from the
ASCII data file using a SAS DATA step with INFILE, INPUT, and LABEL
statements.  Section C explains format-related SAS statements that a user may
optionally use when working with the SAS dataset.  Examples of SAS programs
(DATA step or PROC) are provided in all three sections, primarily for the
benefit of inexperienced users.  Section D contains complete SAS statements
that must be used in the programs described in Sections B and C.

INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8 OR HIGHER.

******************************************************************************

The sample SAS programs provided in Sections A and B show how to create a
permanent SAS dataset from the data files provided in this PUF release.

A.     A Sample SAS Program for Converting the SAS Transport File to a
Permanent SAS Dataset 

The SAS PROCedure XCOPY will read a SAS transport file and convert the
data to regular SAS format, storing the output in a permanent SAS dataset. 
This permanent SAS dataset can then be used for all future processing and
analyses.

Below is a sample SAS program that can be used to convert the SAS transport
file to a permanent SAS dataset (in a Windows environment, with SAS V8 or
higher). 
 
     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     FILENAME IN1 'C:\MEPS\DOWNLOAD\PROJYR14.SSP';

     PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT;
     RUN;

SAS transport files, SAS data files, and SAS program files each should be
stored in separate locations (directory names). Storing different types of 
SAS files in one location can cause errors with converting
or retrieving data.  

Below are SAS statements to print a list of variables and a few sample records 
from the permanent SAS dataset:

     PROC CONTENTS DATA=PUFLIB.PROJYR14;
     TITLE "List of Variables in MEPS PROJYR14 SAS Dataset";
     RUN;

     PROC PRINT DATA=PUFLIB.PROJYR14 (OBS=20);
     TITLE "First 20 Observations in MEPS PROJYR14 SAS Dataset";
     RUN;

The LIBNAME statement tells SAS the location (directory name) to store the
permanent SAS dataset which is output by PROC XCOPY.  The FILENAME statement
tells SAS the location (complete directory and file name) of the input SAS
transport data file. 

NOTES:
     1) If you have an error reading a SAS data file you created, the problem 
        may be a result of where you are storing and/or how you are retrieving  
        the data.  First check the data library for multiple releases of SAS
        files (e.g., V8 with file extensions of '.SAS7BDAT' and V6 with file 
        extensions of '.SD2') stored in the same location.  
        
           a) You can avoid errors when reading these files by including 
              the SAS release within the LIBNAME statement  - e.g., 
                     LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; 
           or
           
           b) Store SAS data files with different file extensions such as .SD2
              and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6
              files in the same folder); 
           or
           
           c) When importing transport files, output the SAS dataset to 
              a different library than the one which contains the downloaded 
              SAS transport file - e.g.,
                     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
                     FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxx.SSP';
                     PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT;
                     RUN;

     2)  The names used in the LIBNAME and FILENAME statements shown
     above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary
     aliases.

     3)  The directory and file names used in the LIBNAME and FILENAME
     statements shown above are Windows syntax and may need to be
     modified for other operating systems such as UNIX, MAC/OS, VMS, or
     OS/2.

     4)  PROJYR14 is the internal SAS dataset name (also the PC file name,
     without the extension) prior to the creation of the SAS transport data
     file.  After running PROC XCOPY, the output SAS dataset assumes the same
     dataset name (or file name).  Hence, in the example above, a file named
     PROJYR14.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when 
     PROC XCOPY runs successfully.

     5)  The SAS transport file PROJYR14.SSP was created from a SAS V9
     data file, using PROC COPY.  This file has been tested for use with
     SAS V8 or higher.  This file may work with earlier versions of
     SAS, although it has not been tested with those versions. Users who are
     unable to use this SAS transport file should instead convert the ASCII
     data file PROJYR14.DAT to a SAS dataset as described in Section B.


B.     A Sample SAS Program for Converting the ASCII Data File to a Permanent
SAS Dataset

The complete SAS statements (INPUT and LABEL) included in Section D are
intended to save time for those users wishing to create a permanent SAS
dataset from the PROJYR14.DAT ASCII data file.  These statements must be used
in combination with other SAS statements to create the appropriate SAS
program, as shown below.  To use the statements provided in Section D to
create a SAS program, you will need an ASCII text editor.  If you are using an
interactive form of SAS (Windows, UNIX, OS2, etc.), use the editor provided as
part of the SAS software.  

Following is a sample SAS program that will convert the ASCII data file to SAS
format:

     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     FILENAME IN1 'C:\MEPS\DOWNLOAD\PROJYR14.DAT';

     DATA PUFLIB.PROJYR14;
     INFILE IN1 LRECL=666;  
     INPUT .....; * to user: insert the complete INPUT statement that is
provided in Section D;
     LABEL .....; * to user: insert the complete LABEL statement that is
provided in Section D;
     RUN;

Here is an explanation of the SAS statements used in the program above.

LIBNAME statement: This tells SAS the location (directory name) of the
permanent SAS dataset.

FILENAME statement: This tells SAS the location of the input ASCII data file.

DATA statement: This signifies the beginning of a SAS DATA step and specifies
the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning
an internal SAS dataset name (PROJYR14).  In the example, after the successful
completion of the DATA step, a PC file named PROJYR14.SAS7BDAT would have
been created in the C:\MEPS\SASDATA directory.

INFILE statement: This tells SAS the location (directory and file name) of the
input ASCII data file.  Also provided is the logical record length (666  
bytes), with the default of RECFM=V implied when this parameter is omitted. 
LRECL and RECFM are optional parameters in the INFILE statement.  With regard
to these options, please note the following: the ASCII data file PROJYR14.DAT
contains a 2-byte carriage return/line feed at the end of each record.  When
converting to a PC-SAS file, the LRECL option should be used to specify the
record length to avoid use of a default record length by PC-SAS.  If the
RECFM=V option is used, the LRECL option must be specified as the logical
record length (e.g., 666 for PROJYR14.DAT).  If RECFM=F is used, then the  
LRECL value must  be specified as the logical record length plus 2 (668 for  
PROJYR14.DAT).  Note that if the RECFM option is omitted, then the default
option of RECFM=V is automatically used, and LRECL should be specified as the
logical record (666 for PROJYR14.DAT).  

INPUT statement: This specifies the input record layout, giving names and the
beginning and ending column positions for data items (which become SAS
variables) in the ASCII data file (PROJYR14.DAT).  Variable type (numeric or
character) is also defined via the INPUT statement.

LABEL statement: This associates descriptive names with the SAS variables.

RUN statement: This tells SAS to execute all commands up to this point.

See Section A.1 above for tips on retrieving and storing the permanent SAS 
data files.                                                  


C.     Optional Format-related SAS Statements

If a user wants to use formats for the SAS variables, a SAS format library
must first be created.  Below is a SAS program that will accomplish this:

     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     
     PROC FORMAT LIBRARY=PUFLIB;
     VALUE .....; * to user: insert the complete set of VALUE statements found
in Section D;
     VALUE .....;
     .......... ;
     RUN;


Below is an example of how to use the SAS formats defined by the PROC FORMAT
procedure:

     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     OPTIONS FMTSEARCH=(PUFLIB); 
   
     PROC FREQ DATA=PUFLIB.PROJYR14;
     TABLES .... / LIST MISSING;
     FORMAT varnam1 fmtnam1.  Varnam2 fmtnam2.  .... ;
     * to user: substitute varnam1 and fmtnam1 with actual variable names and
format names;
     *     Insert the FORMAT statement provided in Section D, if you are using
all the variables in the TABLES statement;
     TITLE "Frequency Distributions ....";
     RUN; 

Here is an explanation of the SAS statements used above.

LIBNAME statement: This tells SAS the location (directory name) of the SAS
format library.  Please note that SAS datasets (file name extension is 
'SAS7BDAT' for SAS V8 or higher and 'SD2' for SAS V6) and format libraries 
(file name extension is 'SAS7BCAT' for SAS V8 or higher and 'SC2' for SAS  
V6) can be stored under the same directory.

OPTIONS FMTSEARCH=...: This specifies the SAS format library.

PROC FORMAT statement: This identifies the SAS procedure that will make SAS
formats according to VALUE statements.  Formats will be stored in a file named
FORMATS.SAS7BCAT.  Please note that the option 'LIBRARY=...' can be omitted 
if the user does not want to create a permanent SAS format library. When simply
'PROC FORMAT;' is used, the formats are defined only for the duration of the
batch SAS program or an interactive SAS session.

VALUE statement: This gives a) names to formats; and b) descriptive labels for
individual values, or range of values.  The format names can then be invoked
using a FORMAT statement if desired.

PROC FREQ statement: This identifies the SAS procedure that generates
frequency distributions of variables specified in the TABLES statement,
formatted if a FORMAT statement is used.  The input SAS dataset is specified
in the 'DATA=' option.

FORMAT statement: This associates existing formats with variables.  When using
this statement, the formats must have already been created with a PROC FORMAT
procedure. 

RUN statement: This tells SAS to execute all commands up to this point.


NOTES:

     1)  Use of formats is entirely optional, and depends on the types
     of analyses that you are doing.  It is recommended that you create
     and use them as appropriate.

     2)  The names used in the LIBNAME and FILENAME statements shown
     above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary
     aliases.

     3)  You only create the permanent SAS dataset once.  Additional
     analyses can be run using this permanent dataset.

     4)  The file and directory specifications in the LIBNAME and
     FILENAME statements are Windows syntax and may need to be modified
     for other operating systems such as UNIX, MAC/OS, VMS, or OS/2.


D.  SAS Statements

This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in
converting the ASCII PROJYR14.DAT file into a SAS dataset, and for creating
SAS formats.

* INPUT STATEMENTS;
INFILE IN LRECL=666;

INPUT @1      DUPERIDX $8.0
      @9      AGESTUB   2.0
      @11     SEX       1.0
      @12     RACE7P    1.0
      @13     INSCOV_A  1.0
      @14     INSCOV_B  2.0
      @16     MCDHMO    1.0
      @17     PRVHMO    1.0
      @18     POVCAT    1.0
      @19     TOTEXP14  10.2
      @29     TOTSLF14  9.2
      @38     TOTPHI14  10.2
      @48     TOTMCR14  9.2
      @57     TOTMCD14  9.2
      @66     TOTTRI14  9.2
      @75     TOTVA14   9.2
      @84     TOTWC14   9.2
      @93     TOTOTP14  8.2
      @101    TOTOSR14  9.2
      @110    HOSEXP14  10.2
      @120    HOSSLF14  9.2
      @129    HOSPHI14  10.2
      @139    HOSMCR14  9.2
      @148    HOSMCD14  9.2
      @157    HOSTRI14  9.2
      @166    HOSVA14   9.2
      @175    HOSWC14   9.2
      @184    HOSOTP14  8.2
      @192    HOSOSR14  8.2
      @200    PHYEXP14  9.2
      @209    PHYSLF14  8.2
      @217    PHYPHI14  9.2
      @226    PHYMCR14  9.2
      @235    PHYMCD14  8.2
      @243    PHYTRI14  9.2
      @252    PHYVA14   7.2
      @259    PHYWC14   8.2
      @267    PHYOTP14  8.2
      @275    PHYOSR14  9.2
      @284    DVTEXP14  8.2
      @292    DVTSLF14  8.2
      @300    DVTPHI14  8.2
      @308    DVTMCR14  7.2
      @315    DVTMCD14  8.2
      @323    DVTTRI14  4.2
      @327    DVTVA14   6.2
      @333    DVTWC14   4.2
      @337    DVTOTP14  7.2
      @344    DVTOSR14  8.2
      @352    OBOEXP14  8.2
      @360    OBOSLF14  8.2
      @368    OBOPHI14  8.2
      @376    OBOMCR14  8.2
      @384    OBOMCD14  8.2
      @392    OBOTRI14  4.2
      @396    OBOVA14   6.2
      @402    OBOWC14   8.2
      @410    OBOOTP14  7.2
      @417    OBOOSR14  8.2
      @425    HHCEXP14  9.2
      @434    HHCSLF14  8.2
      @442    HHCPHI14  9.2
      @451    HHCMCR14  9.2
      @460    HHCMCD14  9.2
      @469    HHCTRI14  7.2
      @476    HHCVA14   8.2
      @484    HHCWC14   8.2
      @492    HHCOTP14  8.2
      @500    HHCOSR14  7.2
      @507    RXEXP14   9.2
      @516    RXSLF14   8.2
      @524    RXPHI14   8.2
      @532    RXMCR14   9.2
      @541    RXMCD14   9.2
      @550    RXTRI14   8.2
      @558    RXVA14    8.2
      @566    RXWC14    8.2
      @574    RXOTP14   8.2
      @582    RXOSR14   7.2
      @589    OTHEXP14  8.2
      @597    OTHSLF14  8.2
      @605    OTHPHI14  8.2
      @613    OTHMCR14  8.2
      @621    OTHMCD14  4.2
      @625    OTHTRI14  4.2
      @629    OTHVA14   4.2
      @633    OTHWC14   8.2
      @641    OTHOTP14  7.2
      @648    OTHOSR14  7.2
      @655    WTADJ14   12.6
;


* FORMAT STATEMENTS;
FORMAT DUPERIDX $ID.
       AGESTUB  AGESTUB.
       SEX      SEX.
       RACE7P   RACE7P.
       INSCOV_A INSCOV_A.
       INSCOV_B INSCOV_B.
       MCDHMO   YESNO.
       PRVHMO   YESNO.
       POVCAT   POVCAT.
       TOTEXP14 TOTEXP.
       TOTSLF14 TOTSLF.
       TOTPHI14 TOTPHI.
       TOTMCR14 TOTMCR.
       TOTMCD14 TOTMCD.
       TOTTRI14 TOTTRI.
       TOTVA14  TOTVA.
       TOTWC14  TOTWC.
       TOTOTP14 TOTOTP.
       TOTOSR14 TOTOSR.
       HOSEXP14 HOSEXP.
       HOSSLF14 HOSSLF.
       HOSPHI14 HOSPHI.
       HOSMCR14 HOSMCR.
       HOSMCD14 HOSMCD.
       HOSTRI14 HOSTRI.
       HOSVA14  HOSVA.
       HOSWC14  HOSWC.
       HOSOTP14 HOSOTP.
       HOSOSR14 HOSOSR.
       PHYEXP14 PHYEXP.
       PHYSLF14 PHYSLF.
       PHYPHI14 PHYPHI.
       PHYMCR14 PHYMCR.
       PHYMCD14 PHYMCD.
       PHYTRI14 PHYTRI.
       PHYVA14  PHYVA.
       PHYWC14  PHYWC.
       PHYOTP14 PHYOTP.
       PHYOSR14 PHYOSR.
       DVTEXP14 DVTEXP.
       DVTSLF14 DVTSLF.
       DVTPHI14 DVTPHI.
       DVTMCR14 DVTMCR.
       DVTMCD14 DVTMCD.
       DVTTRI14 DVTTRI.
       DVTVA14  DVTVA.
       DVTWC14  DVTWC.
       DVTOTP14 DVTOTP.
       DVTOSR14 DVTOSR.
       OBOEXP14 OBOEXP.
       OBOSLF14 OBOSLF.
       OBOPHI14 OBOPHI.
       OBOMCR14 OBOMCR.
       OBOMCD14 OBOMCD.
       OBOTRI14 OBOTRI.
       OBOVA14  OBOVA.
       OBOWC14  OBOWC.
       OBOOTP14 OBOOTP.
       OBOOSR14 OBOOSR.
       HHCEXP14 HHCEXP.
       HHCSLF14 HHCSLF.
       HHCPHI14 HHCPHI.
       HHCMCR14 HHCMCR.
       HHCMCD14 HHCMCD.
       HHCTRI14 HHCTRI.
       HHCVA14  HHCVA.
       HHCWC14  HHCWC.
       HHCOTP14 HHCOTP.
       HHCOSR14 HHCOSR.
       RXEXP14  RXEXP.
       RXSLF14  RXSLF.
       RXPHI14  RXPHI.
       RXMCR14  RXMCR.
       RXMCD14  RXMCD.
       RXTRI14  RXTRI.
       RXVA14   RXVA.
       RXWC14   RXWC.
       RXOTP14  RXOTP.
       RXOSR14  RXOSR.
       OTHEXP14 OTHEXP.
       OTHSLF14 OTHSLF.
       OTHPHI14 OTHPHI.
       OTHMCR14 OTHMCR.
       OTHMCD14 OTHMCD.
       OTHTRI14 OTHTRI.
       OTHVA14  OTHVA.
       OTHWC14  OTHWC.
       OTHOTP14 OTHOTP.
       OTHOSR14 OTHOSR.
       WTADJ14  GTZERO.
;


* LABEL STATEMENTS;
LABEL DUPERIDX='PERSON ID'
      AGESTUB ='AGE'
      SEX     ='SEX'
      RACE7P  ='RACE/ETHNICITY'
      INSCOV_A='INSURANCE STATUS DURING YEAR - UNDER 65'
      INSCOV_B='INSURANCE STATUS DURING YEAR - 65 & OVER'
      MCDHMO  ='MEDICAID/SCHIP HMO DURING YEAR'
      PRVHMO  ='PRIVATE HMO COVERAGE DURING YEAR'
      POVCAT  ='FAMILY INCOME AS PERCENT OF POVERTY LINE'
      TOTEXP14='TOTAL, PAID BY TOTAL, 2014'
      TOTSLF14='TOTAL, PAID BY OUT OF POCKET, 2014'
      TOTPHI14='TOTAL, PAID BY PRIV INSU, 2014'
      TOTMCR14='TOTAL, PAID BY MEDICARE, 2014'
      TOTMCD14='TOTAL, PAID BY MEDICAID, 2014'
      TOTTRI14='TOTAL, PAID BY TRICARE, 2014'
      TOTVA14 ='TOTAL, PAID BY VA, 2014'
      TOTWC14 ='TOTAL, PAID BY WORKERS COMP, 2014'
      TOTOTP14='TOTAL, PAID BY OTHER PUBLIC, 2014'
      TOTOSR14='TOTAL, PAID BY OTHER, 2014'
      HOSEXP14='HOSPITAL, PAID BY TOTAL, 2014'
      HOSSLF14='HOSPITAL, PAID BY OUT OF POCKET, 2014'
      HOSPHI14='HOSPITAL, PAID BY PRIV INSU, 2014'
      HOSMCR14='HOSPITAL, PAID BY MEDICARE, 2014'
      HOSMCD14='HOSPITAL, PAID BY MEDICAID, 2014'
      HOSTRI14='HOSPITAL, PAID BY TRICARE, 2014'
      HOSVA14 ='HOSPITAL, PAID BY VA, 2014'
      HOSWC14 ='HOSPITAL, PAID BY WORKERS COMP, 2014'
      HOSOTP14='HOSPITAL, PAID BY OTHER PUBLIC, 2014'
      HOSOSR14='HOSPITAL, PAID BY OTHER, 2014'
      PHYEXP14='PHYSICIAN, PAID BY TOTAL, 2014'
      PHYSLF14='PHYSICIAN, PAID BY OUT OF POCKET, 2014'
      PHYPHI14='PHYSICIAN, PAID BY PRIV INSU, 2014'
      PHYMCR14='PHYSICIAN, PAID BY MEDICARE, 2014'
      PHYMCD14='PHYSICIAN, PAID BY MEDICAID, 2014'
      PHYTRI14='PHYSICIAN, PAID BY TRICARE, 2014'
      PHYVA14 ='PHYSICIAN, PAID BY VA, 2014'
      PHYWC14 ='PHYSICIAN, PAID BY WORKERS COMP, 2014'
      PHYOTP14='PHYSICIAN, PAID BY OTHER PUBLIC, 2014'
      PHYOSR14='PHYSICIAN, PAID BY OTHER, 2014'
      DVTEXP14='DENTAL, PAID BY TOTAL, 2014'
      DVTSLF14='DENTAL, PAID BY OUT OF POCKET, 2014'
      DVTPHI14='DENTAL, PAID BY PRIV INSU, 2014'
      DVTMCR14='DENTAL, PAID BY MEDICARE, 2014'
      DVTMCD14='DENTAL, PAID BY MEDICAID, 2014'
      DVTTRI14='DENTAL, PAID BY TRICARE, 2014'
      DVTVA14 ='DENTAL, PAID BY VA, 2014'
      DVTWC14 ='DENTAL, PAID BY WORKERS COMP, 2014'
      DVTOTP14='DENTAL, PAID BY OTHER PUBLIC, 2014'
      DVTOSR14='DENTAL, PAID BY OTHER, 2014'
      OBOEXP14='OTHER PROVIDER, PAID BY TOTAL, 2014'
      OBOSLF14='OTHER PROVIDER, BY OUT OF POCKET, 2014'
      OBOPHI14='OTHER PROVIDER, PAID BY PRIV INSU, 2014'
      OBOMCR14='OTHER PROVIDER, PAID BY MEDICARE, 2014'
      OBOMCD14='OTHER PROVIDER, PAID BY MEDICAID, 2014'
      OBOTRI14='OTHER PROVIDER, PAID BY TRICARE, 2014'
      OBOVA14 ='OTHER PROVIDER, PAID BY VA, 2014'
      OBOWC14 ='OTHER PROVIDER, BY WORKERS COMP, 2014'
      OBOOTP14='OTHER PROVIDER, BY OTHER PUBLIC, 2014'
      OBOOSR14='OTHER PROVIDER, PAID BY OTHER, 2014'
      HHCEXP14='HOME HEALTH, PAID BY TOTAL, 2014'
      HHCSLF14='HOME HEALTH, PAID BY OUT OF POCKET, 2014'
      HHCPHI14='HOME HEALTH, PAID BY PRIV INSU, 2014'
      HHCMCR14='HOME HEALTH, PAID BY MEDICARE, 2014'
      HHCMCD14='HOME HEALTH, PAID BY MEDICAID, 2014'
      HHCTRI14='HOME HEALTH, PAID BY TRICARE, 2014'
      HHCVA14 ='HOME HEALTH, PAID BY VA, 2014'
      HHCWC14 ='HOME HEALTH, PAID BY WORKERS COMP, 2014'
      HHCOTP14='HOME HEALTH, PAID BY OTHER PUBLIC, 2014'
      HHCOSR14='HOME HEALTH, PAID BY OTHER, 2014'
      RXEXP14 ='RX, PAID BY TOTAL, 2014'
      RXSLF14 ='RX, PAID BY OUT OF POCKET, 2014'
      RXPHI14 ='RX, PAID BY PRIV INSU, 2014'
      RXMCR14 ='RX, PAID BY MEDICARE, 2014'
      RXMCD14 ='RX, PAID BY MEDICAID, 2014'
      RXTRI14 ='RX, PAID BY TRICARE, 2014'
      RXVA14  ='RX, PAID BY VA, 2014'
      RXWC14  ='RX, PAID BY WORKERS COMP, 2014'
      RXOTP14 ='RX, PAID BY OTHER PUBLIC, 2014'
      RXOSR14 ='RX, PAID BY OTHER, 2014'
      OTHEXP14='OTHER MEDICAL, PAID BY TOTAL, 2014'
      OTHSLF14='OTHER MEDICAL, BY OUT OF POCKET, 2014'
      OTHPHI14='OTHER MEDICAL, PAID BY PRIV INSU, 2014'
      OTHMCR14='OTHER MEDICAL, PAID BY MEDICARE, 2014'
      OTHMCD14='OTHER MEDICAL, PAID BY MEDICAID, 2014'
      OTHTRI14='OTHER MEDICAL, PAID BY TRICARE, 2014'
      OTHVA14 ='OTHER MEDICAL, PAID BY VA, 2014'
      OTHWC14 ='OTHER MEDICAL, BY WORKERS COMP, 2014'
      OTHOTP14='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2014'
      OTHOSR14='OTHER MEDICAL, PAID BY OTHER, 2014'
      WTADJ14 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2014'
;


* VALUE STATEMENTS;
VALUE AGESTUB  
  0 - 17 = '0-17'
  18 - 64 = '18-64'
  65 - HIGH = '65 or older'
  ;
VALUE DVTEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.1 - 187.14 = '$1 - $187'
  187.14 < - 365.67 = '$188 - $366'
  365.67 < - 850.915 = '$367 - $851'
  850.915 < - 34173.64 = '$852 - $34,174'
  ;
VALUE DVTMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  3.03 - 133.41 = '$3 - $133'
  133.41 < - 236.03 = '$134 - $236'
  236.03 < - 490.95 = '$237 - $491'
  490.95 < - 20473.1 = '$492 - $20,473'
  ;
VALUE DVTMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  3.25 - 34.37 = '$3 - $34'
  34.37 < - 70.78 = '$35 - $71'
  70.78 < - 181.975 = '$72 - $182'
  181.975 < - 3687.98 = '$183 - $3,688'
  ;
VALUE DVTOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.59 - 128.92 = '$1 - $129'
  128.92 < - 261.14 = '$130 - $261'
  261.14 < - 479.3 = '$262 - $479'
  479.3 < - 15828.43 = '$480 - $15,828'
  ;
VALUE DVTOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  12.97 - 74.55 = '$12 - $75'
  74.55 < - 148.555 = '$76 - $149'
  148.555 < - 415.22 = '$150 - $415'
  415.22 < - 5192.86 = '$416 - $5,193'
  ;
VALUE DVTPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.15 - 201.04 = '$2 - $201'
  201.04 < - 357.26 = '$202 - $357'
  357.26 < - 736.6 = '$358 - $737'
  736.6 < - 30736.93 = '$738 - $30,737'
  ;
VALUE DVTSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.65 - 69.19 = '$1 - $69'
  69.19 < - 184.66 = '$70 - $185'
  184.66 < - 509.52 = '$186 - $510'
  509.52 < - 28591.45 = '$511 - $28,591'
  ;
VALUE DVTTRI  
  0 = '0'
  ;
VALUE DVTVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.04 - 1.89 = '$1 - $2'
  1.89 < - 4.36 = '$3 - $4'
  4.36 < - 15.56 = '$5 - $16'
  15.56 < - 172.21 = '$17 - $172'
  ;
VALUE DVTWC  
  0 = '0'
  ;
VALUE GTZERO  
  0 = '0'
  0 < - HIGH = '>0'
  ;
VALUE HHCEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  8.19 - 1381.67 = '$8 - $1,382'
  1381.67 < - 5570.72 = '$1,383 - $5,571'
  5570.72 < - 15903.29 = '$5,572 - $15,903'
  15903.29 < - 391291.85 = '$15,904 - $391,292'
  ;
VALUE HHCMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  7.06 - 1369.28 = '$7 - $1,369'
  1369.28 < - 6276.71 = '$1,370 - $6,277'
  6276.71 < - 20607.41 = '$6,278 - $20,607'
  20607.41 < - 322674.6 = '$20,608 - $322,675'
  ;
VALUE HHCMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  21.98 - 2573.48 = '$21 - $2,573'
  2573.48 < - 5818.11 = '$2,574 - $5,818'
  5818.11 < - 13041.91 = '$5,819 - $13,042'
  13041.91 < - 104477.28 = '$13,043 - $104,477'
  ;
VALUE HHCOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  75.1 - 185.31 = '$75 - $185'
  185.31 < - 425.1 = '$186 - $425'
  425.1 < - 1205.86 = '$426 - $1,206'
  1205.86 < - 3620.43 = '$1,207 - $3,620'
  ;
VALUE HHCOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  19.22 - 408.52 = '$19 - $409'
  408.52 < - 1021.58 = '$410 - $1,022'
  1021.58 < - 2659.21 = '$1,023 - $2,659'
  2659.21 < - 20059.61 = '$2,660 - $20,060'
  ;
VALUE HHCPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  40.27 - 844.2 = '$40 - $844'
  844.2 < - 2711.085 = '$845 - $2,711'
  2711.085 < - 8298.42 = '$2,712 - $8,298'
  8298.42 < - 137144.58 = '$8,299 - $137,145'
  ;
VALUE HHCSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  8.19 - 143.28 = '$8 - $143'
  143.28 < - 497.95 = '$144 - $498'
  497.95 < - 1672.32 = '$499 - $1,672'
  1672.32 < - 97759.81 = '$1,673 - $97,760'
  ;
VALUE HHCTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  7.02 - 58.265 = '$7 - $58'
  58.265 < - 189.675 = '$59 - $190'
  189.675 < - 505.885 = '$191 - $506'
  505.885 < - 1963.9 = '$507 - $1,964'
  ;
VALUE HHCVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  201.23 - 1918.9 = '$201 - $1,919'
  1918.9 < - 5030.77 = '$1,920 - $5,031'
  5030.77 < - 11461.17 = '$5,032 - $11,461'
  11461.17 < - 52320.06 = '$11,462 - $52,320'
  ;
VALUE HHCWC  
  0 = '0'
  20000 - 40000 = '$20,000 - $40,000'
  ;
VALUE HOSEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  3.66 - 338.07 = '$3 - $338'
  338.07 < - 1285.825 = '$339 - $1,286'
  1285.825 < - 5654.74 = '$1,287 - $5,655'
  5654.74 < - 1084706.42 = '$5,656 - $1,084,706'
  ;
VALUE HOSMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.01 - 223.725 = '$2 - $224'
  223.725 < - 834.48 = '$225 - $834'
  834.48 < - 4090.165 = '$835 - $4,090'
  4090.165 < - 792226.51 = '$4,091 - $792,227'
  ;
VALUE HOSMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.43 - 260.95 = '$1 - $261'
  260.95 < - 1351.24 = '$262 - $1,351'
  1351.24 < - 8176.61 = '$1,352 - $8,177'
  8176.61 < - 259708.1 = '$8,178 - $259,708'
  ;
VALUE HOSOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  3.07 - 131.55 = '$3 - $132'
  131.55 < - 427.61 = '$133 - $428'
  427.61 < - 1605.26 = '$429 - $1,605'
  1605.26 < - 85970.68 = '$1,606 - $85,971'
  ;
VALUE HOSOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  7.15 - 97.53 = '$7 - $98'
  97.53 < - 302.335 = '$99 - $302'
  302.335 < - 1248.28 = '$303 - $1,248'
  1248.28 < - 62883.97 = '$1,249 - $62,884'
  ;
VALUE HOSPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.83 - 309.58 = '$1 - $310'
  309.58 < - 1129.06 = '$311 - $1,129'
  1129.06 < - 3808.08 = '$1,130 - $3,808'
  3808.08 < - 1084706.42 = '$3,809 - $1,084,706'
  ;
VALUE HOSSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.16 - 55.93 = '$2 - $56'
  55.93 < - 167.8 = '$57 - $168'
  167.8 < - 559.33 = '$169 - $559'
  559.33 < - 139965.65 = '$560 - $139,966'
  ;
VALUE HOSTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 77.64 = '$1 - $78'
  77.64 < - 282.84 = '$79 - $283'
  282.84 < - 930.505 = '$284 - $931'
  930.505 < - 179171.52 = '$932 - $179,172'
  ;
VALUE HOSVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.54 - 209.41 = '$1 - $209'
  209.41 < - 834.06 = '$210 - $834'
  834.06 < - 3436.86 = '$835 - $3,437'
  3436.86 < - 319618.83 = '$3,438 - $319,619'
  ;
VALUE HOSWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.49 - 96.42 = '$2 - $96'
  96.42 < - 270.38 = '$97 - $270'
  270.38 < - 883.31 = '$271 - $883'
  883.31 < - 411586.34 = '$884 - $411,586'
  ;
VALUE $ID  
  'N0000114' - 'N7338014' = 'N0000114 - N7338014'
  ;
VALUE INSCOV_A  
  1 = '1 Any Private, employment related or TRICARE'
  2 = '2 Any Private, not employment related'
  3 = '3 Any Public (Medicaid, SCHIP, Medicare)'
  4 = '4 Uninsured for entire year'
  5 = '5 Age 65 or older'
  ;
VALUE INSCOV_B  
  -1 = '-1 Inapplicable (under age 65)'
  1 = '1 Held Medicaid and Medicare at same time'
  2 = '2 Held Mcare & Priv via emplymnt at same time'
  3 = '3 Held Mcare & Priv-nonemplmnt at same time'
  4 = '4 Held Medicare alone during the year'
  5 = '5 Held no Medicare during the year'
  ;
VALUE OBOEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.17 - 22.99 = '$1 - $23'
  22.99 < - 83.91 = '$24 - $84'
  83.91 < - 329.51 = '$85 - $330'
  329.51 < - 96138.19 = '$331 - $96,138'
  ;
VALUE OBOMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.17 - 13.73 = '$1 - $14'
  13.73 < - 39.8 = '$15 - $40'
  39.8 < - 156.58 = '$41 - $157'
  156.58 < - 95989.57 = '$158 - $95,990'
  ;
VALUE OBOMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.15 - 32.59 = '$1 - $33'
  32.59 < - 122.98 = '$34 - $123'
  122.98 < - 379.15 = '$124 - $379'
  379.15 < - 88512.27 = '$380 - $88,512'
  ;
VALUE OBOOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.53 - 47.77 = '$1 - $48'
  47.77 < - 132.16 = '$49 - $132'
  132.16 < - 431.52 = '$133 - $432'
  431.52 < - 16767.06 = '$433 - $16,767'
  ;
VALUE OBOOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.02 - 33.5 = '$2 - $34'
  33.5 < - 82.04 = '$35 - $82'
  82.04 < - 231.31 = '$83 - $231'
  231.31 < - 3846.44 = '$232 - $3,846'
  ;
VALUE OBOPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.14 - 13.96 = '$1 - $14'
  13.96 < - 45.7 = '$15 - $46'
  45.7 < - 186.89 = '$47 - $187'
  186.89 < - 79506.55 = '$188 - $79,507'
  ;
VALUE OBOSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.21 - 5.54 = '$1 - $6'
  5.54 < - 18.2 = '$7 - $18'
  18.2 < - 70.67 = '$19 - $71'
  70.67 < - 46736.59 = '$72 - $46,737'
  ;
VALUE OBOTRI  
  0 = '0'
  ;
VALUE OBOVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.12 - 2.02 = '$1 - $2'
  2.02 < - 6.19 = '$3 - $6'
  6.19 < - 18.91 = '$7 - $19'
  18.91 < - 927.81 = '$20 - $928'
  ;
VALUE OBOWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.21 - 56.64 = '$1 - $57'
  56.64 < - 161.575 = '$58 - $162'
  161.575 < - 616.01 = '$163 - $616'
  616.01 < - 15283.87 = '$617 - $15,284'
  ;
VALUE OTHEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.84 - 147.28 = '$1 - $147'
  147.28 < - 303.77 = '$148 - $304'
  303.77 < - 552.31 = '$305 - $552'
  552.31 < - 75743.51 = '$553 - $75,744'
  ;
VALUE OTHMCD  
  0 = '0'
  ;
VALUE OTHMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  9.26 - 901.1 = '$9 - $901'
  901.1 < - 1754.955 = '$902 - $1,755'
  1754.955 < - 4190.59 = '$1,756 - $4,191'
  4190.59 < - 74983.67 = '$4,192 - $74,984'
  ;
VALUE OTHOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  7.53 - 117.19 = '$7 - $117'
  117.19 < - 260.42 = '$118 - $260'
  260.42 < - 447.86 = '$261 - $448'
  447.86 < - 8781.63 = '$449 - $8,782'
  ;
VALUE OTHOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.09 - 43.16 = '$2 - $43'
  43.16 < - 78.59 = '$44 - $79'
  78.59 < - 201.41 = '$80 - $201'
  201.41 < - 2164.64 = '$202 - $2,165'
  ;
VALUE OTHPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.98 - 71.87 = '$1 - $72'
  71.87 < - 141.905 = '$73 - $142'
  141.905 < - 255.47 = '$143 - $255'
  255.47 < - 18393.68 = '$256 - $18,394'
  ;
VALUE OTHSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.84 - 110.46 = '$1 - $110'
  110.46 < - 257.96 = '$111 - $258'
  257.96 < - 477.7 = '$259 - $478'
  477.7 < - 52019.9 = '$479 - $52,020'
  ;
VALUE OTHTRI  
  0 = '0'
  ;
VALUE OTHVA  
  0 = '0'
  ;
VALUE OTHWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  165.52 - 1084.44 = '$165 - $1,084'
  1084.44 < - 2147.82 = '$1,085 - $2,148'
  2147.82 < - 4385.58 = '$2,149 - $4,386'
  4385.58 < - 19918.52 = '$4,387 - $19,919'
  ;
VALUE PHYEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.74 - 214.88 = '$1 - $215'
  214.88 < - 560.08 = '$216 - $560'
  560.08 < - 1671.65 = '$561 - $1,672'
  1671.65 < - 161721.78 = '$1,673 - $161,722'
  ;
VALUE PHYMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.67 - 118.06 = '$1 - $118'
  118.06 < - 287.72 = '$119 - $288'
  287.72 < - 792.89 = '$289 - $793'
  792.89 < - 79977.06 = '$794 - $79,977'
  ;
VALUE PHYMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.78 - 273.53 = '$1 - $274'
  273.53 < - 811.34 = '$275 - $811'
  811.34 < - 2305.95 = '$812 - $2,306'
  2305.95 < - 108335.72 = '$2,307 - $108,336'
  ;
VALUE PHYOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.56 - 68.69 = '$1 - $69'
  68.69 < - 149.07 = '$70 - $149'
  149.07 < - 379.35 = '$150 - $379'
  379.35 < - 125491.53 = '$380 - $125,492'
  ;
VALUE PHYOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 47.81 = '$1 - $48'
  47.81 < - 105.56 = '$49 - $106'
  105.56 < - 304.21 = '$107 - $304'
  304.21 < - 38813.71 = '$305 - $38,814'
  ;
VALUE PHYPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.39 - 186.38 = '$2 - $186'
  186.38 < - 457.25 = '$187 - $457'
  457.25 < - 1269.85 = '$458 - $1,270'
  1269.85 < - 136980.23 = '$1,271 - $136,980'
  ;
VALUE PHYSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.67 - 33.39 = '$1 - $33'
  33.39 < - 83.33 = '$34 - $83'
  83.33 < - 213.71 = '$84 - $214'
  213.71 < - 46781.82 = '$215 - $46,782'
  ;
VALUE PHYTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  8.47 - 195.54 = '$8 - $196'
  195.54 < - 577.82 = '$197 - $578'
  577.82 < - 1476.9 = '$579 - $1,477'
  1476.9 < - 142290.21 = '$1,478 - $142,290'
  ;
VALUE PHYVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.47 - 24.77 = '$1 - $25'
  24.77 < - 81.79 = '$26 - $82'
  81.79 < - 272 = '$83 - $272'
  272 < - 9383.36 = '$273 - $9,383'
  ;
VALUE PHYWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.7 - 290.34 = '$6 - $290'
  290.34 < - 736.63 = '$291 - $737'
  736.63 < - 2343.82 = '$738 - $2,344'
  2343.82 < - 76311.28 = '$2,345 - $76,311'
  ;
VALUE POVCAT  
  1 = '1 Less than 1.00 times poverty line'
  2 = '2 1.01 to 1.24 times poverty line'
  3 = '3 1.25 to 1.99 times poverty line'
  4 = '4 2.0 to 3.99 times poverty line'
  5 = '5 4.00 or more times poverty line'
  ;
VALUE RACE7P  
  1 = '1 Hispanic'
  2 = '2 White Alone, NH'
  3 = '3 Black Alone, NH'
  4 = '4 American Indian and Alaska Native Alone, NH'
  5 = '5 Asian Alone, NH'
  6 = '6 Native Hawaiian/Pacific Islander Alone, NH'
  7 = '7 Two or more Races, NH'
  ;
VALUE RXEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.51 - 81.45 = '$1 - $81'
  81.45 < - 340.28 = '$82 - $340'
  340.28 < - 1350.22 = '$341 - $1,350'
  1350.22 < - 360656.22 = '$1,351 - $360,656'
  ;
VALUE RXMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.51 - 52.23 = '$1 - $52'
  52.23 < - 167.96 = '$53 - $168'
  167.96 < - 712.685 = '$169 - $713'
  712.685 < - 285826.55 = '$714 - $285,827'
  ;
VALUE RXMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  9.75 - 1021.66 = '$9 - $1,022'
  1021.66 < - 3079.715 = '$1,023 - $3,080'
  3079.715 < - 8274.31 = '$3,081 - $8,274'
  8274.31 < - 359319.62 = '$8,275 - $359,320'
  ;
VALUE RXOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  5.32 - 49.68 = '$5 - $50'
  49.68 < - 191.52 = '$51 - $192'
  191.52 < - 431.65 = '$193 - $432'
  431.65 < - 4998.22 = '$433 - $4,998'
  ;
VALUE RXOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.69 - 52.31 = '$1 - $52'
  52.31 < - 260.76 = '$53 - $261'
  260.76 < - 994.31 = '$262 - $994'
  994.31 < - 41362.69 = '$995 - $41,363'
  ;
VALUE RXPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.19 - 88.54 = '$2 - $89'
  88.54 < - 339.03 = '$90 - $339'
  339.03 < - 1242.38 = '$340 - $1,242'
  1242.38 < - 96281.77 = '$1,243 - $96,282'
  ;
VALUE RXSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.81 - 22.67 = '$1 - $23'
  22.67 < - 88.17 = '$24 - $88'
  88.17 < - 313.2 = '$89 - $313'
  313.2 < - 29614.04 = '$314 - $29,614'
  ;
VALUE RXTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.58 - 33.27 = '$1 - $33'
  33.27 < - 158.02 = '$34 - $158'
  158.02 < - 665.09 = '$159 - $665'
  665.09 < - 23918.88 = '$666 - $23,919'
  ;
VALUE RXVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.77 - 56.12 = '$1 - $56'
  56.12 < - 241.585 = '$57 - $242'
  241.585 < - 685.46 = '$243 - $685'
  685.46 < - 17560.7 = '$686 - $17,561'
  ;
VALUE RXWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.16 - 93.96 = '$2 - $94'
  93.96 < - 240.84 = '$95 - $241'
  240.84 < - 784.59 = '$242 - $785'
  784.59 < - 24614.73 = '$786 - $24,615'
  ;
VALUE SEX  
  1 = '1 Male'
  2 = '2 Female'
  ;
VALUE TOTEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.84 - 488.46 = '$1 - $488'
  488.46 < - 1552.51 = '$489 - $1,553'
  1552.51 < - 5224.6 = '$1,554 - $5,225'
  5224.6 < - 1175164.98 = '$5,226 - $1,175,165'
  ;
VALUE TOTMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 241.85 = '$1 - $242'
  241.85 < - 727.22 = '$243 - $727'
  727.22 < - 2919.25 = '$728 - $2,919'
  2919.25 < - 804726.94 = '$2,920 - $804,727'
  ;
VALUE TOTMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.43 - 499.13 = '$1 - $499'
  499.13 < - 2043.025 = '$500 - $2,043'
  2043.025 < - 8749.55 = '$2,044 - $8,750'
  8749.55 < - 360604.72 = '$8,751 - $360,605'
  ;
VALUE TOTOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.53 - 87.5 = '$1 - $88'
  87.5 < - 210.2 = '$89 - $210'
  210.2 < - 562 = '$211 - $562'
  562 < - 125491.53 = '$563 - $125,492'
  ;
VALUE TOTOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 65.74 = '$1 - $66'
  65.74 < - 206.18 = '$67 - $206'
  206.18 < - 796.01 = '$207 - $796'
  796.01 < - 62883.97 = '$797 - $62,884'
  ;
VALUE TOTPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.55 - 355.17 = '$1 - $355'
  355.17 < - 1064.23 = '$356 - $1,064'
  1064.23 < - 3302.04 = '$1,065 - $3,302'
  3302.04 < - 1168569.15 = '$3,303 - $1,168,569'
  ;
VALUE TOTSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.81 - 88.18 = '$1 - $88'
  88.18 < - 329.805 = '$89 - $330'
  329.805 < - 948 = '$331 - $948'
  948 < - 157469.51 = '$949 - $157,470'
  ;
VALUE TOTTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 230.77 = '$1 - $231'
  230.77 < - 781.02 = '$232 - $781'
  781.02 < - 2291.86 = '$782 - $2,292'
  2291.86 < - 197318.55 = '$2,293 - $197,319'
  ;
VALUE TOTVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.08 - 31.935 = '$1 - $32'
  31.935 < - 181.98 = '$33 - $182'
  181.98 < - 829.83 = '$183 - $830'
  829.83 < - 319882.31 = '$831 - $319,882'
  ;
VALUE TOTWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.49 - 281.33 = '$2 - $281'
  281.33 < - 911.7 = '$282 - $912'
  911.7 < - 2979.39 = '$913 - $2,979'
  2979.39 < - 504298.42 = '$2,980 - $504,298'
  ;
VALUE YESNO  
  0 = '0 No'
  1 = '1 Yes'
  ;