SAS User File for H67F 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 (H67F.SSP) or the ASCII data file (H67F.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. ****************************************************************************** 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 data 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 PC-SAS program that can be used to convert the SAS transport file to a permanent PC SAS dataset (in a Windows environment, with SAS V6.12). LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H67F.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; If the user wants a list of variables and a few sample records in the permanent SAS dataset, following are the SAS statements to accomplish these. PROC CONTENTS DATA=PUFLIB.H67F; TITLE 'List of Variables in MEPS H67F SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H67F (OBS=20); TITLE 'First 20 Observations in MEPS H67F 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) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) 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. 3) H67F 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 H67F.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H67F.SSP was created from a PC-SAS Version 6.12 data file, using PROC COPY. This file has been tested for use with PC-SAS version 6.10 or higher, or with mainframe SAS version 6.08 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 H67F.DAT to a SAS data set as described in Section B. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded SAS Transport file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H67F.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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 H67F.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'; FILENAME IN1 'C:\MEPS\H67F.DAT'; DATA PUFLIB.H67F; INFILE IN1 LRECL=376; 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 describes the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H67F). In the example, after the successful completion of the DATA step, a PC file named H67F.SAS7BDAT would have been created in the C:\MEPS 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 (376 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 H67F.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., 376 for H67F.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (378 for H67F.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 (376 for H67F.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 (H67F.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. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded ASCII data file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H67F.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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'; 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'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H67F; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnami and fmtnami 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') and format libraries (file name extension is 'SAS7BCAT') 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 will generate 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 type 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 data set 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 H67F.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=376; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 FFEEIDX $12.0 @42 MPCDATA 1.0 @43 OPDATEYR 4.0 @47 OPDATEMM 2.0 @49 OPDATEDD 2.0 @51 SEETLKPV 2.0 @53 SEEDOC 2.0 @55 DRSPLTY 2.0 @57 MEDPTYPE 2.0 @59 VSTCTGRY 2.0 @61 VSTRELCN 2.0 @63 PHYSTH 2.0 @65 OCCUPTH 2.0 @67 SPEECHTH 2.0 @69 CHEMOTH 2.0 @71 RADIATTH 2.0 @73 KIDNEYD 2.0 @75 IVTHER 2.0 @77 DRUGTRT 2.0 @79 RCVSHOT 2.0 @81 PSYCHOTH 2.0 @83 LABTEST 2.0 @85 SONOGRAM 2.0 @87 XRAYS 2.0 @89 MAMMOG 2.0 @91 MRI 2.0 @93 EKG 2.0 @95 EEG 2.0 @97 RCVVAC 2.0 @99 ANESTH 2.0 @101 OTHSVCE 2.0 @103 SURGPROC 2.0 @105 MEDPRESC 2.0 @107 VAPLACE 1.0 @108 OPICD1X $3.0 @111 OPICD2X $3.0 @114 OPICD3X $3.0 @117 OPICD4X $3.0 @120 OPPRO1X $2.0 @122 OPPRO2X $2.0 @124 OPCCC1X $3.0 @127 OPCCC2X $3.0 @130 OPCCC3X $3.0 @133 OPCCC4X $3.0 @136 FFOPTYPE 2.0 @138 FFBEF02 2.0 @140 FFTOT03 2.0 @142 OPXP02X 8.2 @150 OPTC02X 8.2 @158 OPFSF02X 8.2 @166 OPFMR02X 8.2 @174 OPFMD02X 8.2 @182 OPFPV02X 8.2 @190 OPFVA02X 8.2 @198 OPFTR02X 8.2 @206 OPFOF02X 7.2 @213 OPFSL02X 7.2 @220 OPFWC02X 7.2 @227 OPFOR02X 7.2 @234 OPFOU02X 7.2 @241 OPFOT02X 8.2 @249 OPFXP02X 8.2 @257 OPFTC02X 8.2 @265 OPDSF02X 8.2 @273 OPDMR02X 7.2 @280 OPDMD02X 7.2 @287 OPDPV02X 7.2 @294 OPDVA02X 6.2 @300 OPDTR02X 6.2 @306 OPDOF02X 6.2 @312 OPDSL02X 6.2 @318 OPDWC02X 7.2 @325 OPDOR02X 7.2 @332 OPDOU02X 6.2 @338 OPDOT02X 6.2 @344 OPDXP02X 8.2 @352 OPDTC02X 8.2 @360 IMPFLAG 1.0 @361 PERWT02F 12.6 @373 VARSTR 3.0 @376 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. FFEEIDX $FFEEIDX. MPCDATA MPCDATAF. OPDATEYR OPDTEYRF. OPDATEMM OPDTEMMF. OPDATEDD OPDTEDDF. SEETLKPV SEETLKPF. SEEDOC SEEDOCF. DRSPLTY DRSPLTYF. MEDPTYPE MEDPTYPF. VSTCTGRY VSTCTGRF. VSTRELCN VSTRELCF. PHYSTH PHYSTHF. OCCUPTH OCCUPTHF. SPEECHTH SPEECHTF. CHEMOTH CHEMOTHF. RADIATTH RADIATTF. KIDNEYD KIDNEYDF. IVTHER IVTHERF. DRUGTRT DRUGTRTF. RCVSHOT RCVSHOTF. PSYCHOTH PSYCHOTF. LABTEST LABTESTF. SONOGRAM SONOGRMF. XRAYS XRAYSF. MAMMOG MAMMOGF. MRI MRIF. EKG EKGF. EEG EEGF. RCVVAC RCVVACF. ANESTH ANESTHF. OTHSVCE OTHSVCEF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. VAPLACE VAPLACEF. OPICD1X $OPICD1X. OPICD2X $OPICD2X. OPICD3X $OPICD3X. OPICD4X $OPICD4X. OPPRO1X $OPPRO1X. OPPRO2X $OPPRO2X. OPCCC1X $OPCCC1X. OPCCC2X $OPCCC2X. OPCCC3X $OPCCC3X. OPCCC4X $OPCCC4X. FFOPTYPE FFOPTYPF. FFBEF02 FFBEF02F. FFTOT03 FFTOT03F. OPXP02X OPXP02XF. OPTC02X OPTC02XF. OPFSF02X OPFSF02F. OPFMR02X OPFMR02F. OPFMD02X OPFMD02F. OPFPV02X OPFPV02F. OPFVA02X OPFVA02F. OPFTR02X OPFTR02F. OPFOF02X OPFOF02F. OPFSL02X OPFSL02F. OPFWC02X OPFWC02F. OPFOR02X OPFOR02F. OPFOU02X OPFOU02F. OPFOT02X OPFOT02F. OPFXP02X OPFXP02F. OPFTC02X OPFTC02F. OPDSF02X OPDSF02F. OPDMR02X OPDMR02F. OPDMD02X OPDMD02F. OPDPV02X OPDPV02F. OPDVA02X OPDVA02F. OPDTR02X OPDTR02F. OPDOF02X OPDOF02F. OPDSL02X OPDSL02F. OPDWC02X OPDWC02F. OPDOR02X OPDOR02F. OPDOU02X OPDOU02F. OPDOT02X OPDOT02F. OPDXP02X OPDXP02F. OPDTC02X OPDTC02F. IMPFLAG IMPFLAGF. PERWT02F PERWT02F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID + PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' FFEEIDX ='FLAT FEE ID' MPCDATA ='MPC DATA FLAG' OPDATEYR='EVENT DATE - YEAR' OPDATEMM='EVENT DATE - MONTH' OPDATEDD='EVENT DATE - DAY' SEETLKPV='DID P VISIT PROV IN PERSON OR TELEPHONE' SEEDOC ='DID P TALK TO MD THIS VISIT/PHONE CALL' DRSPLTY ='OPAT DOCTOR S SPECIALTY' MEDPTYPE='TYPE OF MED PERSON P TALKED TO ON VST DT' VSTCTGRY='BEST CATEGORY FOR CARE P RECV ON VST DT' VSTRELCN='THIS VST/PHONE CALL RELATED TO SPEC COND' PHYSTH ='THIS VISIT DID P HAVE PHYSICAL THERAPY' OCCUPTH ='THIS VIS DID P HAVE OCCUPATIONAL THERAPY' SPEECHTH='THIS VISIT DID P HAVE SPEECH THERAPY' CHEMOTH ='THIS VISIT DID P HAVE CHEMOTHERAPY' RADIATTH='THIS VISIT DID P HAVE RADIATION THERAPY' KIDNEYD ='THIS VISIT DID P HAVE KIDNEY DIALYSIS' IVTHER ='THIS VISIT DID P HAVE IV THERAPY' DRUGTRT ='THIS VIS DID P HAVE TRT FOR DRUG/ALCOHOL' RCVSHOT ='THIS VISIT DID P RECEIVE AN ALLERGY SHOT' PSYCHOTH='DID P HAVE PSYCHOTHERAPY/COUNSELING' LABTEST ='THIS VISIT DID P HAVE LAB TESTS' SONOGRAM='THIS VISIT DID P HAVE SONOGRAM OR ULTRSD' XRAYS ='THIS VISIT DID P HAVE X-RAYS' MAMMOG ='THIS VISIT DID P HAVE A MAMMOGRAM' MRI ='THIS VISIT DID P HAVE AN MRI/CATSCAN' EKG ='THIS VISIT DID P HAVE AN EKG OR ECG' EEG ='THIS VISIT DID P HAVE AN EEG' RCVVAC ='THIS VISIT DID P RECEIVE A VACCINATION' ANESTH ='THIS VISIT DID P RECEIVE ANESTHESIA' OTHSVCE ='THIS VISIT DID P HAVE OTH DIAG TEST/EXAM' SURGPROC='WAS SURG PROC PERFORMED ON P THIS VISIT' MEDPRESC='ANY MEDICINE PRESCRIBED FOR P THIS VISIT' VAPLACE ='VA FACILITY FLAG' OPICD1X ='3-DIGIT ICD-9-CM CONDITION CODE' OPICD2X ='3-DIGIT ICD-9-CM CONDITION CODE' OPICD3X ='3-DIGIT ICD-9-CM CONDITION CODE' OPICD4X ='3-DIGIT ICD-9-CM CONDITION CODE' OPPRO1X ='2-DIGIT ICD-9-CM PROCEDURE CODE' OPPRO2X ='2-DIGIT ICD-9-CM PROCEDURE CODE' OPCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC4X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFOPTYPE='FLAT FEE BUNDLE' FFBEF02 ='TOTAL # OF VISITS IN FF BEFORE 2002' FFTOT03 ='TOTAL # OF VISITS IN FF AFTER 2002' OPXP02X ='TOT EXP FOR EVENT (OPFXP02X + OPDXP02X)' OPTC02X ='TOTAL CHG FOR EVENT (OPFTC02X+OPDTC02X)' OPFSF02X='FACILITY AMT PD, FAMILY (IMPUTED)' OPFMR02X='FACILITY AMT PD, MEDICARE (IMPUTED)' OPFMD02X='FACILITY AMT PD, MEDICAID (IMPUTED)' OPFPV02X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' OPFVA02X='FACILITY AMT PD, VETERANS (IMPUTED)' OPFTR02X='FACILITY AMT PD, TRICARE (IMPUTED)' OPFOF02X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' OPFSL02X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' OPFWC02X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' OPFOR02X='FACILITY AMT PD, OTH PRIV (IMPUTED)' OPFOU02X='FACILITY AMT PD, OTH PUB (IMPUTED)' OPFOT02X='FACILITY AMT PD, OTH INSUR (IMPUTED)' OPFXP02X='FACILITY SUM PAYMENTS OPFSF02X-OPFOT02X' OPFTC02X='TOTAL FACILITY CHARGE (IMPUTED)' OPDSF02X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' OPDMR02X='DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)' OPDMD02X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' OPDPV02X='DOCTOR AMT PD, PRIVATE INSUR (IMPUTED)' OPDVA02X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' OPDTR02X='DOCTOR AMOUNT PAID, TRICARE (IMPUTED)' OPDOF02X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' OPDSL02X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' OPDWC02X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' OPDOR02X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' OPDOU02X='DOCTOR AMT PD, OTH PUBLIC (IMPUTED)' OPDOT02X='DOCTOR AMT PAID, OTH INSUR (IMPUTED)' OPDXP02X='DOCTOR SUM PAYMENTS OPDSF02X-OPDOT02X' OPDTC02X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT02F='EXPENDITURE FILE PERSON WEIGHT, 2002' VARSTR ='VARIANCE ESTIMATION STRATUM, 2002' VARPSU ='VARIANCE ESTIMATION PSU, 2002' ; * VALUE STATEMENTS; VALUE ANESTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE CHEMOTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE DRSPLTYF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 ALLERGY/IMMUNOLOGY' 2 = '2 ANESTHESIOLOGY' 3 = '3 CARDIOLOGY (HEART)' 4 = '4 DERMATOLOGY (SKIN)' 5 = '5 ENDOCRINOLOGY/METABOLISM' 6 = '6 FAMILY PRACTICE' 7 = '7 GASTROENTEROLOGY' 8 = '8 GENERAL PRACTICE' 9 = '9 GENERAL SURGERY' 10 = '10 GERIATRICS (ELDERLY)' 11 = '11 GYNECOLOGY/OBSTETRICS' 12 = '12 HEMATOLOGY (BLOOD)' 13 = '13 HOSPITAL RESIDENCE' 14 = '14 INTERNAL MEDICINE' 15 = '15 NEPHROLOGY (KIDNEYS)' 16 = '16 NEUROLOGY' 17 = '17 NUCLEAR MEDICINE' 18 = '18 ONCOLOGY' 19 = '19 OPTHALMOLOGY' 20 = '20 ORTHOPEDICS' 21 = '21 OSTEOPATHY' 22 = '22 OTORHINOLARYNGOLOGY' 23 = '23 PATHOLOGY' 24 = '24 PEDIATRICIAN' 25 = '25 PHYSICAL MEDICINE/REHAB' 26 = '26 PLASTIC SURGERY' 27 = '27 PROCTOLOGY' 28 = '28 PSYCHIATRY' 29 = '29 PULMONARY' 30 = '30 RADIOLOGY' 31 = '31 RHEUMATOLOGY (ARTHRITIS)' 32 = '32 THORACIC SURGERY' 33 = '33 UROLOGY' 91 = '91 OTHER DR SPECIALTY' ; VALUE DRUGTRTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EEGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE EKGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE FFBEF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 5 = '1 - 5' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE FFOPTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE FFTOT03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 2 = '1 - 2' ; VALUE IMPFLAGF 0 = '0 NOT ELIGIBLE FOR IMPUTATION' 1 = '1 COMPLETE HC DATA' 2 = '2 COMPLETE MPC DATA' 3 = '3 FULLY IMPUTED' 4 = '4 PARTIALLY IMPUTED' 5 = '5 CAPITATION IMPUTATION' ; VALUE IVTHERF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE KIDNEYDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE LABTESTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MAMMOGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MEDPRESF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MEDPTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 CHIROPRACTOR' 2 = '2 DENTIST/DENTAL CARE PERSON' 3 = '3 MIDWIFE' 4 = '4 NURSE/NURSE PRACTITIONER' 5 = '5 OPTOMETRIST' 6 = '6 PODIATRIST' 7 = "7 PHYSICIAN'S ASSISTANT" 8 = '8 PHYSICAL THERAPIST' 9 = '9 OCCUPATIONAL THERAPIST' 10 = '10 PSYCHOLOGIST' 11 = '11 SOCIAL WORKER' 12 = '12 TECHNICIAN' 14 = '14 ACUPUNCTURE' 15 = '15 MASSAGE THERAPIST' 16 = '16 HOMEOPATHIC/NATURAPATHIC/HERBALIST' 17 = '17 OTHER ALTERNATIVE/COMPLEMENTARY CARE PRO' 91 = '91 OTHER' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE MRIF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE OCCUPTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE $OPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001-260' ; VALUE $OPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001-260' ; VALUE $OPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001-260' ; VALUE $OPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001-260' ; VALUE OPDMD02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.32 - 8060 = '$0.32 - $8,060.00' ; VALUE OPDMR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.32 - 30.89 = '$2.32 - $30.89' 30.9 - 79.73 = '$30.90 - $79.73' 79.74 - 188.9 = '$79.74 - $188.90' 188.91 - 4147.39 = '$188.91 - $4,147.39' ; VALUE OPDOF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 110.62 = '$110.62' ; VALUE OPDOR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.6 - 20.29 = '$1.60 - $20.29' 20.3 - 58.59 = '$20.30 - $58.59' 58.6 - 220 = '$58.60 - $220.00' 220.01 - 6062 = '$220.01 - $6,062.00' ; VALUE OPDOT02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 42 - 952.35 = '$42.00 - $952.35' ; VALUE OPDOU02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.12 - 11.95 = '$2.12 - $11.95' 11.96 - 33.31 = '$11.96 - $33.31' 33.32 - 126.7 = '$33.32 - $126.70' 126.71 - 895.47 = '$126.71 - $895.47' ; VALUE OPDPV02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 31.21 = '$0.01 - $31.21' 31.22 - 82.65 = '$31.22 - $82.65' 82.66 - 315 = '$82.66 - $315.00' 315.01 - 8920.9 = '$315.01 - $8,920.90' ; VALUE OPDSF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.24 - 12.48 = '$0.24 - $12.48' 12.49 - 38.74 = '$12.49 - $38.74' 38.75 - 116 = '$38.75 - $116.00' 116.01 - 13760 = '$116.01 - $13,760.00' ; VALUE OPDSL02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.52 - 27.93 = '$0.52 - $27.93' 27.94 - 67.17 = '$27.94 - $67.17' 67.18 - 199.82 = '$67.18 - $199.82' 199.83 - 855 = '$199.83 - $855.00' ; VALUE OPDTC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 78 = '$6.00 - $78.00' 78.01 - 250 = '$78.01 - $250.00' 250.01 - 768.75 = '$250.01 - $768.75' 768.76 - 15385 = '$768.76 - $15,385.00' ; VALUE OPDTEDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE OPDTEMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1-12 MONTH' ; VALUE OPDTEYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2002 = '2002' ; VALUE OPDTR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.28 - 27.06 = '$2.28 - $27.06' 27.07 - 137.02 = '$27.07 - $137.02' 137.03 - 301.75 = '$137.03 - $301.75' 301.76 - 610.38 = '$301.76 - $610.38' ; VALUE OPDVA02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.39 - 547.25 = '$11.39 - $547.25' ; VALUE OPDWC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 13.16 - 95.29 = '$13.16 - $95.29' 95.3 - 288.68 = '$95.30 - $288.68' 288.69 - 1421.96 = '$288.69 - $1,421.96' 1421.97 - 4186 = '$1,421.97 - $4,186.00' ; VALUE OPDXP02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.32 - 39.6 = '$2.32 - $39.60' 39.61 - 113.08 = '$39.61 - $113.08' 113.09 - 345.13 = '$113.09 - $345.13' 345.14 - 13760 = '$345.14 - $13,760.00' ; VALUE OPFMD02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.31 - 36.17 = '$0.31 - $36.17' 36.18 - 79.18 = '$36.18 - $79.18' 79.19 - 213.14 = '$79.19 - $213.14' 213.15 - 13085 = '$213.15 - $13,085.00' ; VALUE OPFMR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.36 - 33.03 = '$0.36 - $33.03' 33.04 - 74.01 = '$33.04 - $74.01' 74.02 - 225.22 = '$74.02 - $225.22' 225.23 - 19081.47 = '$225.23 - $19,081.47' ; VALUE OPFOF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.38 - 6757.69 = '$4.38 - $6,757.69' ; VALUE OPFOR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.14 - 31.54 = '$0.14 - $31.54' 31.55 - 92.98 = '$31.55 - $92.98' 92.99 - 208.64 = '$92.99 - $208.64' 208.65 - 9612.12 = '$208.65 - $9,612.12' ; VALUE OPFOT02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.25 - 39.9 = '$1.25 - $39.90' 39.91 - 89.32 = '$39.91 - $89.32' 89.33 - 215.21 = '$89.33 - $215.21' 215.22 - 13085 = '$215.22 - $13,085.00' ; VALUE OPFOU02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.48 - 36.07 = '$3.48 - $36.07' 36.08 - 131.18 = '$36.08 - $131.18' 131.19 - 438 = '$131.19 - $438.00' 438.01 - 7349.37 = '$438.01 - $7,349.37' ; VALUE OPFPV02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 39 = '$0.01 - $39.00' 39.01 - 91 = '$39.01 - $91.00' 91.01 - 352.84 = '$91.01 - $352.84' 352.85 - 14919 = '$352.85 - $14,919.00' ; VALUE OPFSF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 9.59 = '$0.01 - $9.59' 9.6 - 19.6 = '$9.60 - $19.60' 19.61 - 66.63 = '$19.61 - $66.63' 66.64 - 15000 = '$66.64 - $15,000.00' ; VALUE OPFSL02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4 - 17.88 = '$4.00 - $17.88' 17.89 - 56.42 = '$17.89 - $56.42' 56.43 - 159 = '$56.43 - $159.00' 159.01 - 4442.98 = '$159.01 - $4,442.98' ; VALUE OPFTC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.5 - 97 = '$3.50 - $97.00' 97.01 - 223.5 = '$97.01 - $223.50' 223.51 - 715.3 = '$223.51 - $715.30' 715.31 - 45304.29 = '$715.31 - $45,304.29' ; VALUE OPFTR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.33 - 34.46 = '$0.33 - $34.46' 34.47 - 90.52 = '$34.47 - $90.52' 90.53 - 277.59 = '$90.53 - $277.59' 277.6 - 13588.57 = '$277.60 - $13,588.57' ; VALUE OPFVA02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.04 - 47.03 = '$0.04 - $47.03' 47.04 - 84.88 = '$47.04 - $84.88' 84.89 - 188.18 = '$84.89 - $188.18' 188.19 - 14993 = '$188.19 - $14,993.00' ; VALUE OPFWC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.18 - 48.01 = '$4.18 - $48.01' 48.02 - 85 = '$48.02 - $85.00' 85.01 - 197.82 = '$85.01 - $197.82' 197.83 - 8370.05 = '$197.83 - $8,370.05' ; VALUE OPFXP02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.1 - 52 = '$1.10 - $52.00' 52.01 - 114 = '$52.01 - $114.00' 114.01 - 346.47 = '$114.01 - $346.47' 346.48 - 19893.47 = '$346.48 - $19,893.47' ; VALUE $OPICD1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V00' - 'V99' = 'V00-V99' ; VALUE $OPICD2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V00' - 'V99' = 'V00-V99' ; VALUE $OPICD3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V00' - 'V99' = 'V00-V99' ; VALUE $OPICD4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V00' - 'V99' = 'V00-V99' ; VALUE $OPPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01-05' '06' - '07' = '06-07' '08' - '16' = '08-16' '18' - '20' = '18-20' '21' - '29' = '21-29' '30' - '34' = '30-34' '35' - '39' = '35-39' '40' - '41' = '40-41' '42' - '54' = '42-54' '55' - '59' = '55-59' '60' - '64' = '60-64' '65' - '71' = '65-71' '72' - '75' = '72-75' '76' - '84' = '76-84' '85' - '86' = '85-86' '87' - '99' = '87-99' ; VALUE $OPPRO2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01-05' '06' - '07' = '06-07' '08' - '16' = '08-16' '18' - '20' = '18-20' '21' - '29' = '21-29' '30' - '34' = '30-34' '35' - '39' = '35-39' '40' - '41' = '40-41' '42' - '54' = '42-54' '55' - '59' = '55-59' '60' - '64' = '60-64' '65' - '71' = '65-71' '72' - '75' = '72-75' '76' - '84' = '76-84' '85' - '86' = '85-86' '87' - '99' = '87-99' ; VALUE OPTC02XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.5 - 112 = '$3.50 - $112.00' 112.01 - 259.36 = '$112.01 - $259.36' 259.37 - 911 = '$259.37 - $911.00' 911.01 - 45304.29 = '$911.01 - $45,304.29' ; VALUE OPXP02XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.1 - 60 = '$1.10 - $60.00' 60.01 - 139.73 = '$60.01 - $139.73' 139.74 - 439.18 = '$139.74 - $439.18' 439.19 - 24884.36 = '$439.19 - $24,884.36' ; VALUE OTHSVCEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE PERWT02F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 657.780302 - 44304.059056 = '657.780302 - 44304.059056 WEIGHT' ; VALUE PHYSTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE PID OTHER = 'VALID ID' ; VALUE PSYCHOTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RADIATTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RCVSHOTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RCVVACF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SEEDOCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SEETLKPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 SAW PROVIDER' 2 = '2 TELEPHONE CALL' ; VALUE SONOGRMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SPEECHTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE SURGPROF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE VAPLACEF -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 203 = '1 - 203' ; VALUE VSTCTGRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 GENERAL CHECKUP' 2 = '2 DIAGNOSIS OR TREATMENT' 3 = '3 EMERGENCY (E.G., ACCIDENT OR INJURY)' 4 = '4 PSYCHOTHERAPY/MENTAL HEALTH COUNSELING' 5 = '5 FOLLOW-UP OR POST-OPERATIVE VISIT' 6 = '6 IMMUNIZATIONS OR SHOTS' 7 = '7 VISION EXAM' 8 = '8 MATERNITY CARE (PRE/POSTNATAL)' 9 = '9 WELL CHILD EXAM' 10 = '10 LASER EYE SURGERY' 91 = '91 OTHER' ; VALUE VSTRELCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE XRAYSF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ;