SAS User File for H213F 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 (H213F.SSP) or the ASCII data file (H213F.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: CIMPORT. 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. ****************************************************************************** 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 CIMPORT 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). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H213F.SSP'; PROC CIMPORT DATA=PUFLIB.H213F INFILE=IN1; RUN; Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H213F; TITLE 'List of Variables in MEPS H213F SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H213F (OBS=20); TITLE 'First 20 Observations in MEPS H213F SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC CIMPORT. 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 and Linux. 3) H213F 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 CIMPORT, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H213F.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H213F.SSP was created from a SAS V9 data file, using PROC CPORT. This file should 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 H213F.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 H213F.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, Linux, etc.), use the editor provided as part of the SAS software. Following is a sample Windows SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H213F.DAT'; DATA PUFLIB.H213F; INFILE IN1 LRECL=308; 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 (H213F). In the example, after the successful completion of the DATA step, a PC file named H213F.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 (308 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 H213F.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., 308 for H213F.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (310 for H213F.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 (308 for H213F.DAT). INPUT statement: This specifies the input record layout, giving names, the beginning column positions, and the lengths for data items (which become SAS variables) in the ASCII data file (H213F.DAT). Variable type (numeric or character) is also defined by character variables having a dollar sign ($) directly before the variables length, while numeric variables do not have a dollar sign. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format catalog 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.H213F; 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') and format catalog (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 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) 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 and Linux. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H213F.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=308; INPUT @1 DUID 7.0 @8 PID 3.0 @11 DUPERSID $10.0 @21 EVNTIDX $16.0 @37 EVENTRN 1.0 @38 FFEEIDX $14.0 @52 PANEL 2.0 @54 MPCDATA 1.0 @55 OPDATEYR 4.0 @59 OPDATEMM 2.0 @61 SEEDOC_M18 2.0 @63 DRSPLTY_M18 2.0 @65 MEDPTYPE_M18 2.0 @67 VSTCTGRY 3.0 @70 VSTRELCN_M18 2.0 @72 LABTEST_M18 2.0 @74 SONOGRAM_M18 2.0 @76 XRAYS_M18 2.0 @78 MAMMOG_M18 2.0 @80 MRI_M18 2.0 @82 EKG_M18 2.0 @84 RCVVAC_M18 2.0 @86 SURGPROC 2.0 @88 MEDPRESC 3.0 @91 FFOPTYPE 2.0 @93 OPXP19X 9.2 @102 OPTC19X 9.2 @111 OPFSF19X 8.2 @119 OPFMR19X 8.2 @127 OPFMD19X 8.2 @135 OPFPV19X 9.2 @144 OPFVA19X 8.2 @152 OPFTR19X 8.2 @160 OPFOF19X 7.2 @167 OPFSL19X 8.2 @175 OPFWC19X 7.2 @182 OPFOT19X 8.2 @190 OPFXP19X 9.2 @199 OPFTC19X 9.2 @208 OPDSF19X 7.2 @215 OPDMR19X 7.2 @222 OPDMD19X 7.2 @229 OPDPV19X 8.2 @237 OPDVA19X 7.2 @244 OPDTR19X 7.2 @251 OPDOF19X 4.2 @255 OPDSL19X 6.2 @261 OPDWC19X 7.2 @268 OPDOT19X 7.2 @275 OPDXP19X 8.2 @283 OPDTC19X 8.2 @291 IMPFLAG 1.0 @292 PERWT19F 12.6 @304 VARSTR 4.0 @308 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUIDF. PID PIDF. DUPERSID $DUPERSIDF. EVNTIDX $EVNTIDXF. EVENTRN EVENTRNF. FFEEIDX $FFEEIDXF. PANEL PANELF. MPCDATA MPCDATAF. OPDATEYR OPDTEYRF. OPDATEMM OPDTEMMF. SEEDOC_M18 SEEDOCF. DRSPLTY_M18 DRSPLTYF. MEDPTYPE_M18 MEDPTYPF. VSTCTGRY VSTCTGRF. VSTRELCN_M18 VSTRELCF. LABTEST_M18 LABTESTF. SONOGRAM_M18 SONOGRMF. XRAYS_M18 XRAYSF. MAMMOG_M18 MAMMOGF. MRI_M18 MRIF. EKG_M18 EKGF. RCVVAC_M18 RCVVACF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. FFOPTYPE FFOPTYPF. OPXP19X OPXP19XF. OPTC19X OPTC19XF. OPFSF19X OPFSF19F. OPFMR19X OPFMR19F. OPFMD19X OPFMD19F. OPFPV19X OPFPV19F. OPFVA19X OPFVA19F. OPFTR19X OPFTR19F. OPFOF19X OPFOF19F. OPFSL19X OPFSL19F. OPFWC19X OPFWC19F. OPFOT19X OPFOT19F. OPFXP19X OPFXP19F. OPFTC19X OPFTC19F. OPDSF19X OPDSF19F. OPDMR19X OPDMR19F. OPDMD19X OPDMD19F. OPDPV19X OPDPV19F. OPDVA19X OPDVA19F. OPDTR19X OPDTR19F. OPDOF19X OPDOF19F. OPDSL19X OPDSL19F. OPDWC19X OPDWC19F. OPDOT19X OPDOT19F. OPDXP19X OPDXP19F. OPDTC19X OPDTC19F. IMPFLAG IMPFLAGF. PERWT19F PERWT19F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ="PANEL # + ENCRYPTED DU IDENTIFIER" PID ="PERSON NUMBER" DUPERSID ="PERSON ID (DUID + PID)" EVNTIDX ="EVENT ID" EVENTRN ="EVENT ROUND NUMBER" FFEEIDX ="FLAT FEE ID" PANEL ="PANEL NUMBER" MPCDATA ="MPC DATA FLAG" OPDATEYR ="EVENT DATE - YEAR" OPDATEMM ="EVENT DATE - MONTH" SEEDOC_M18 ="DID P TALK TO MD THIS VISIT" DRSPLTY_M18 ="OPAT DOCTOR S SPECIALTY" MEDPTYPE_M18 ="TYPE OF MED PERSON P TALKED TO ON VISIT DT" VSTCTGRY ="BEST CATEGORY FOR CARE P RECV ON VISIT DT" VSTRELCN_M18 ="THIS VISIT RELATED TO SPEC COND" LABTEST_M18 ="THIS VISIT DID P HAVE LAB TESTS" SONOGRAM_M18 ="THIS VISIT DID P HAVE SONOGRAM OR ULTRSD" XRAYS_M18 ="THIS VISIT DID P HAVE X-RAYS" MAMMOG_M18 ="THIS VISIT DID P HAVE A MAMMOGRAM" MRI_M18 ="THIS VISIT DID P HAVE AN MRI/CATSCAN" EKG_M18 ="THIS VISIT DID P HAVE AN EKG, EEG OR ECG" RCVVAC_M18 ="THIS VISIT DID P RECEIVE A VACCINATION" SURGPROC ="WAS SURG PROC PERFORMED ON P THIS VISIT" MEDPRESC ="ANY MEDICINE PRESCRIBED FOR P THIS VISIT" FFOPTYPE ="FLAT FEE BUNDLE" OPXP19X ="TOTAL EXP FOR EVENT (OPFXP19X + OPDXP19X)" OPTC19X ="TOTAL CHG FOR EVENT (OPFTC19X + OPDTC19X)" OPFSF19X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" OPFMR19X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" OPFMD19X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" OPFPV19X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" OPFVA19X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" OPFTR19X ="FACILITY AMOUNT PAID, TRICARE(IMPUTED)" OPFOF19X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" OPFSL19X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" OPFWC19X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" OPFOT19X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" OPFXP19X ="FACILITY SUM PAYMENTS OPFSF19X - OPFOT19X" OPFTC19X ="TOTAL FACILITY CHARGE (IMPUTED)" OPDSF19X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" OPDMR19X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" OPDMD19X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" OPDPV19X ="DOCTOR AMOUNT PAID, PRIVATE INSUR (IMPUTED)" OPDVA19X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" OPDTR19X ="DOCTOR AMOUNT PAID, TRICARE(IMPUTED)" OPDOF19X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" OPDSL19X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" OPDWC19X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" OPDOT19X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" OPDXP19X ="DOCTOR SUM PAYMENTS OPDSF19X - OPDOT19X" OPDTC19X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT19F ="EXPENDITURE FILE PERSON WEIGHT, 2019" VARSTR ="VARIANCE ESTIMATION STRATUM, 2019" VARPSU ="VARIANCE ESTIMATION PSU, 2019" ; * VALUE STATEMENTS; VALUE DRSPLTYF -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" 18 = "18 ONCOLOGY" 19 = "19 OPHTHALMOLOGY" 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 DUIDF 2320008 - 2469684 = "2320008 - 2469684 DUID" ; VALUE $DUPERSIDF '2320008102' - '2469684102' = "2320008102 - 2469684102 DUPERSID" ; VALUE EKGF -8 = "-8 DK" -7 = "-7 REFUSED" 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 $EVNTIDXF '2320008102203401' - '2469684102002201' = "2320008102203401 - 2469684102002201 EVNTIDX" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10010' - 'OP246956910202' = "10010 - OP246956910202 FFEEIDX" ; VALUE FFOPTYPF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 FLAT FEE STEM" 2 = "2 FLAT FEE LEAF" ; 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 LABTESTF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MAMMOGF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MEDPRESF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE MEDPTYPF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 ACUPUNCTURIST" 2 = "2 CHIROPRACTOR" 3 = "3 DENTIST/DENTAL CARE PERSON" 4 = "4 ALTERNATIVE MEDICINE PROVIDER" 5 = "5 MASSAGE THERAPIST" 6 = "6 MENTAL HLTH CNSLR/MARITAL OR FAM THERAPIST" 7 = "7 MIDWIFE" 8 = "8 NURSE/NURSE PRACTITIONER" 9 = "9 OPTOMETRIST" 10 = "10 PHYSICAL/OCCUPATIONAL THERAPIST" 11 = "11 PHYSICIAN'S ASSISTANT" 12 = "12 PODIATRIST" 13 = "13 PSYCHOLOGIST" 14 = "14 SOCIAL WORKER" 15 = "15 TECHNICIAN" 91 = "91 OTHER" ; VALUE MPCDATAF 1 = "1 HAS MPC DATA" 2 = "2 NO MPC DATA" ; VALUE MRIF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE OPDMD19F 0 = "0" 0.07 - 26.11 = "$0.07 - $26.11" 26.12 - 67.6 = "$26.12 - $67.60" 67.61 - 173.87 = "$67.61 - $173.87" 173.88 - 4270.29 = "$173.88 - $4,270.29" ; VALUE OPDMR19F 0 = "0" 1.73 - 51.2 = "$1.73 - $51.20" 51.21 - 111.31 = "$51.21 - $111.31" 111.32 - 244.34 = "$111.32 - $244.34" 244.35 - 6069.99 = "$244.35 - $6,069.99" ; VALUE OPDOF19F 0 = "0" ; VALUE OPDOT19F 0 = "0" 1.84 - 26.36 = "$1.84 - $26.36" 26.37 - 110.38 = "$26.37 - $110.38" 110.39 - 559.35 = "$110.39 - $559.35" 559.36 - 3532.92 = "$559.36 - $3,532.92" ; VALUE OPDPV19F 0 = "0" 0.03 - 35.03 = "$0.03 - $35.03" 35.04 - 132.81 = "$35.04 - $132.81" 132.82 - 336 = "$132.82 - $336.00" 336.01 - 12464 = "$336.01 - $12,464.00" ; VALUE OPDSF19F 0 = "0" 0.2 - 15.3 = "$0.20 - $15.30" 15.31 - 41.89 = "$15.31 - $41.89" 41.9 - 130.46 = "$41.90 - $130.46" 130.47 - 4727.38 = "$130.47 - $4,727.38" ; VALUE OPDSL19F 0 = "0" 1 - 348.3 = "$1.00 - $348.30" ; VALUE OPDTC19F 0 = "0" 0.03 - 199 = "$0.03 - $199.00" 199.01 - 505.97 = "$199.01 - $505.97" 505.98 - 1358 = "$505.98 - $1,358.00" 1358.01 - 62325.5 = "$1,358.01 - $62,325.50" ; VALUE OPDTEMMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 - 12 = "1-12 MONTH" ; VALUE OPDTEYRF -8 = "-8 DK" -7 = "-7 REFUSED" 2019 = "2019" ; VALUE OPDTR19F 0 = "0" 1.68 - 14.41 = "$1.68 - $14.41" 14.42 - 50.21 = "$14.42 - $50.21" 50.22 - 125.46 = "$50.22 - $125.46" 125.47 - 1501.38 = "$125.47 - $1,501.38" ; VALUE OPDVA19F 0 = "0" 6.63 - 31.03 = "$6.63 - $31.03" 31.04 - 72.89 = "$31.04 - $72.89" 72.9 - 166.86 = "$72.90 - $166.86" 166.87 - 4983.87 = "$166.87 - $4,983.87" ; VALUE OPDWC19F 0 = "0" 17 - 154.66 = "$17.00 - $154.66" 154.67 - 241.76 = "$154.67 - $241.76" 241.77 - 624 = "$241.77 - $624.00" 624.01 - 3253.94 = "$624.01 - $3,253.94" ; VALUE OPDXP19F 0 = "0" 0.03 - 64.76 = "$0.03 - $64.76" 64.77 - 151.81 = "$64.77 - $151.81" 151.82 - 346.81 = "$151.82 - $346.81" 346.82 - 13667.4 = "$346.82 - $13,667.40" ; VALUE OPFMD19F 0 = "0" 1.3 - 32.31 = "$1.30 - $32.31" 32.32 - 92.28 = "$32.32 - $92.28" 92.29 - 204.49 = "$92.29 - $204.49" 204.5 - 23020.36 = "$204.50 - $23,020.36" ; VALUE OPFMR19F 0 = "0" 0.09 - 73.13 = "$0.09 - $73.13" 73.14 - 126.24 = "$73.14 - $126.24" 126.25 - 313.73 = "$126.25 - $313.73" 313.74 - 58000 = "$313.74 - $58,000.00" ; VALUE OPFOF19F 0 = "0" 5.22 - 40 = "$5.22 - $40.00" 40.01 - 76.33 = "$40.01 - $76.33" 76.34 - 243.55 = "$76.34 - $243.55" 243.56 - 3413.4 = "$243.56 - $3,413.40" ; VALUE OPFOT19F 0 = "0" 13.94 - 19974.96 = "$13.94 - $19,974.96" ; VALUE OPFPV19F 0 = "0" 0.27 - 50.4 = "$0.27 - $50.40" 50.41 - 140.48 = "$50.41 - $140.48" 140.49 - 429.15 = "$140.49 - $429.15" 429.16 - 138059.02 = "$429.16 - $138,059.02" ; VALUE OPFSF19F 0 = "0" 0.01 - 20 = "$0.01 - $20.00" 20.01 - 40 = "$20.01 - $40.00" 40.01 - 131.77 = "$40.01 - $131.77" 131.78 - 25000 = "$131.78 - $25,000.00" ; VALUE OPFSL19F 0 = "0" 29.25 - 37628.53 = "$29.25 - $37,628.53" ; VALUE OPFTC19F 0 = "0" 3.91 - 240 = "$3.91 - $240.00" 240.01 - 490 = "$240.01 - $490.00" 490.01 - 1623 = "$490.01 - $1,623.00" 1623.01 - 257263.21 = "$1,623.01 - $257,263.21" ; VALUE OPFTR19F 0 = "0" 0.75 - 31 = "$0.75 - $31.00" 31.01 - 90.05 = "$31.01 - $90.05" 90.06 - 182 = "$90.06 - $182.00" 182.01 - 22113.34 = "$182.01 - $22,113.34" ; VALUE OPFVA19F 0 = "0" 2.12 - 83.13 = "$2.12 - $83.13" 83.14 - 173.53 = "$83.14 - $173.53" 173.54 - 433.81 = "$173.54 - $433.81" 433.82 - 18387.21 = "$433.82 - $18,387.21" ; VALUE OPFWC19F 0 = "0" 9.7 - 93.12 = "$9.70 - $93.12" 93.13 - 183.22 = "$93.13 - $183.22" 183.23 - 983.25 = "$183.23 - $983.25" 983.26 - 6043.53 = "$983.26 - $6,043.53" ; VALUE OPFXP19F 0 = "0" 0.25 - 94.43 = "$0.25 - $94.43" 94.44 - 177.27 = "$94.44 - $177.27" 177.28 - 468.36 = "$177.28 - $468.36" 468.37 - 138059.02 = "$468.37 - $138,059.02" ; VALUE OPTC19XF 0 = "0" 3.91 - 291 = "$3.91 - $291.00" 291.01 - 710.33 = "$291.01 - $710.33" 710.34 - 2356.68 = "$710.34 - $2,356.68" 2356.69 - 285808.21 = "$2,356.69 - $285,808.21" ; VALUE OPXP19XF 0 = "0" 0.25 - 113.95 = "$0.25 - $113.95" 113.96 - 231 = "$113.96 - $231.00" 231.01 - 643.17 = "$231.01 - $643.17" 643.18 - 139924.13 = "$643.18 - $139,924.13" ; VALUE PANELF 23 = "PANEL 23" 24 = "PANEL 24" ; VALUE PERWT19F 0 = "0.000000 WEIGHT" 633.006358 - 74740.855689 = "633.006358 - 74740.855689 WEIGHT" ; VALUE PIDF 101 - 301 = "101 - 301 PID" ; VALUE RCVVACF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SEEDOCF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE SONOGRMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SURGPROF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE VARPSUF 1 - 6 = "1 - 6" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ; VALUE VSTCTGRF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" 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 PREGNANCY-RELATED (INC PRENATAL/ DELV)" 9 = "9 WELL CHILD EXAM" 10 = "10 LASER EYE SURGERY" 91 = "91 OTHER" ; VALUE VSTRELCF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE XRAYSF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ;