NOTE: PROCEDURE PRINTTO used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

3    
4    libname dc
4  ! "C:\Users\yl2269\Dropbox\Yao_Backup\ChicagoBooth_DB\Research_Project\Bank_liquidity\Journal\J
4  ! AR\CodeAndData\00_DataCollection\dc_code\CoVaR\cv_data";
NOTE: Libref DC was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: 
      C:\Users\yl2269\Dropbox\Yao_Backup\ChicagoBooth_DB\Research_Project\Bank_liquidity\Journal\J
      AR\CodeAndData\00_DataCollection\dc_code\CoVaR\cv_data
5    
6    filename macdef1
6  ! 'C:\Users\yl2269\Dropbox\Yao_Backup\ChicagoBooth_DB\Research_Project\Bank_liquidity\Journal\J
6  ! AR\CodeAndData\00_DataCollection\dc_code\CoVaR\cv_code\99_Macros.sas';
7    %include macdef1;
117  
118  data covar;
119  set dc.covar;
120  run;

NOTE: There were 30780 observations read from the data set DC.COVAR.
NOTE: The data set WORK.COVAR has 30780 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

121  
122  data predictor_macro;
123  set dc.covarregressors;
124  if w>=10 then yw=cats(y, 'W',w);
125  if w<10 then yw=cats(y, 'W0',w);
126  q=qtr(input(yw,weeku7.));
127  if w=0 then q=1;
128  run;

NOTE: There were 1736 observations read from the data set DC.COVARREGRESSORS.
NOTE: The data set WORK.PREDICTOR_MACRO has 1736 observations and 11 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      

129  
130  proc means data=predictor_macro noprint;
131  by y q;
132  var d_tb3m d_yieldcurve liqspread d_creditspread retmkt ret_re_mktadj vix;
133  output out=predictor_macro_qtr (drop=_type_ _freq_) mean=d_tb3m d_yieldcurve liqspread
133! d_creditspread retmkt ret_re_mktadj vix;
134  run;

NOTE: There were 1736 observations read from the data set WORK.PREDICTOR_MACRO.
NOTE: The data set WORK.PREDICTOR_MACRO_QTR has 132 observations and 9 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

135  
136  data predictor_macro_qtr;
137  set predictor_macro_qtr;
138  d_tb3m_lag1=lag(d_tb3m);
139  d_yieldcurve_lag1=lag(d_yieldcurve);
140  liqspread_lag1=lag(liqspread);
141  d_creditspread_lag1=lag(d_creditspread);
142  retmkt_lag1=lag(retmkt);
143  ret_re_mktadj_lag1=lag(ret_re_mktadj);
144  vix_lag1=lag(vix);
145  
146  d_tb3m_lag4=lag4(d_tb3m);
147  d_yieldcurve_lag4=lag4(d_yieldcurve);
148  liqspread_lag4=lag4(liqspread);
149  d_creditspread_lag4=lag4(d_creditspread);
150  retmkt_lag4=lag4(retmkt);
151  ret_re_mktadj_lag4=lag4(ret_re_mktadj);
152  vix_lag4=lag4(vix);
153  
154  d_tb3m_lag8=lag8(d_tb3m);
155  d_yieldcurve_lag8=lag8(d_yieldcurve);
156  liqspread_lag8=lag8(liqspread);
157  d_creditspread_lag8=lag8(d_creditspread);
158  retmkt_lag8=lag8(retmkt);
159  ret_re_mktadj_lag8=lag8(ret_re_mktadj);
160  vix_lag8=lag8(vix);
161  run;

NOTE: There were 132 observations read from the data set WORK.PREDICTOR_MACRO_QTR.
NOTE: The data set WORK.PREDICTOR_MACRO_QTR has 132 observations and 30 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

162  
163  
164  data predictor_bank;
165  set dc.CoVaRPredictor_bank;
166  rename maturitymismatch=mm;
167  rename boomindicator=boom;
168  keep rssd9001 y q leverage maturitymismatch size boomindicator;
169  run;

NOTE: There were 22530 observations read from the data set DC.COVARPREDICTOR_BANK.
NOTE: The data set WORK.PREDICTOR_BANK has 22530 observations and 7 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

170  
171  data predictor_bank;
172  set predictor_bank;
173  leverage_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or
173! (q=1 and y=lag(y)+1)),lag(leverage),.);
174  mm_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or (q=1
174! and y=lag(y)+1)),lag(mm),.);
175  size_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or (q=1
175!  and y=lag(y)+1)),lag(size),.);
176  boom_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or (q=1
176!  and y=lag(y)+1)),lag(boom),.);
177  
178  leverage_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(leverage),.);
179  mm_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(mm),.);
180  size_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(size),.);
181  boom_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(boom),.);
182  
183  leverage_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(leverage),.);
184  mm_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(mm),.);
185  size_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(size),.);
186  boom_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(boom),.);
187  run;

NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      1 at 173:87    1 at 173:111   1 at 174:81    1 at 174:105   1 at 175:83    1 at 175:107
      1 at 176:83    1 at 176:107   4 at 178:57    4 at 179:51    4 at 180:53    4 at 181:53
      8 at 183:57    8 at 184:51    8 at 185:53    8 at 186:53    
NOTE: There were 22530 observations read from the data set WORK.PREDICTOR_BANK.
NOTE: The data set WORK.PREDICTOR_BANK has 22530 observations and 19 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.03 seconds
      

188  
189  data covar;
190  set dc.covar;
191  run;

NOTE: There were 30780 observations read from the data set DC.COVAR.
NOTE: The data set WORK.COVAR has 30780 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

192  
193  data predictor_macro;
194  set dc.covarregressors;
195  if w>=10 then yw=cats(y, 'W',w);
196  if w<10 then yw=cats(y, 'W0',w);
197  q=qtr(input(yw,weeku7.));
198  if w=0 then q=1;
199  run;

NOTE: There were 1736 observations read from the data set DC.COVARREGRESSORS.
NOTE: The data set WORK.PREDICTOR_MACRO has 1736 observations and 11 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

200  
201  proc means data=predictor_macro noprint;
202  by y q;
203  var d_tb3m d_yieldcurve liqspread d_creditspread retmkt ret_re_mktadj vix;
204  output out=predictor_macro_qtr (drop=_type_ _freq_) mean=d_tb3m d_yieldcurve liqspread
204! d_creditspread retmkt ret_re_mktadj vix;
205  run;

NOTE: There were 1736 observations read from the data set WORK.PREDICTOR_MACRO.
NOTE: The data set WORK.PREDICTOR_MACRO_QTR has 132 observations and 9 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      

206  
207  data predictor_macro_qtr;
208  set predictor_macro_qtr;
209  d_tb3m_lag1=lag(d_tb3m);
210  d_yieldcurve_lag1=lag(d_yieldcurve);
211  liqspread_lag1=lag(liqspread);
212  d_creditspread_lag1=lag(d_creditspread);
213  retmkt_lag1=lag(retmkt);
214  ret_re_mktadj_lag1=lag(ret_re_mktadj);
215  vix_lag1=lag(vix);
216  
217  d_tb3m_lag4=lag4(d_tb3m);
218  d_yieldcurve_lag4=lag4(d_yieldcurve);
219  liqspread_lag4=lag4(liqspread);
220  d_creditspread_lag4=lag4(d_creditspread);
221  retmkt_lag4=lag4(retmkt);
222  ret_re_mktadj_lag4=lag4(ret_re_mktadj);
223  vix_lag4=lag4(vix);
224  
225  d_tb3m_lag8=lag8(d_tb3m);
226  d_yieldcurve_lag8=lag8(d_yieldcurve);
227  liqspread_lag8=lag8(liqspread);
228  d_creditspread_lag8=lag8(d_creditspread);
229  retmkt_lag8=lag8(retmkt);
230  ret_re_mktadj_lag8=lag8(ret_re_mktadj);
231  vix_lag8=lag8(vix);
232  run;

NOTE: There were 132 observations read from the data set WORK.PREDICTOR_MACRO_QTR.
NOTE: The data set WORK.PREDICTOR_MACRO_QTR has 132 observations and 30 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

233  
234  
235  data predictor_bank;
236  set dc.CoVaRPredictor_bank;
237  rename maturitymismatch=mm;
238  rename boomindicator=boom;
239  keep rssd9001 y q leverage maturitymismatch size boomindicator;
240  run;

NOTE: There were 22530 observations read from the data set DC.COVARPREDICTOR_BANK.
NOTE: The data set WORK.PREDICTOR_BANK has 22530 observations and 7 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

241  
242  data predictor_bank;
243  set predictor_bank;
244  leverage_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or
244! (q=1 and y=lag(y)+1)),lag(leverage),.);
245  mm_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or (q=1
245! and y=lag(y)+1)),lag(mm),.);
246  size_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or (q=1
246!  and y=lag(y)+1)),lag(size),.);
247  boom_lag1=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and q=lag(q)+1) or (q=1
247!  and y=lag(y)+1)),lag(boom),.);
248  
249  leverage_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(leverage),.);
250  mm_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(mm),.);
251  size_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(size),.);
252  boom_lag4=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and q=lag4(q)),lag4(boom),.);
253  
254  leverage_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(leverage),.);
255  mm_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(mm),.);
256  size_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(size),.);
257  boom_lag8=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and q=lag8(q)),lag8(boom),.);
258  run;

NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      1 at 244:87    1 at 244:111   1 at 245:81    1 at 245:105   1 at 246:83    1 at 246:107
      1 at 247:83    1 at 247:107   4 at 249:57    4 at 250:51    4 at 251:53    4 at 252:53
      8 at 254:57    8 at 255:51    8 at 256:53    8 at 257:53    
NOTE: There were 22530 observations read from the data set WORK.PREDICTOR_BANK.
NOTE: The data set WORK.PREDICTOR_BANK has 22530 observations and 19 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

259  
260  data banksectormktcap;
261  set dc.ret_banksector_w;
262  if w>=10 then yw=cats(y, 'W',w);
263  if w<10 then yw=cats(y, 'W0',w);
264  q=qtr(input(yw,weeku7.));
265  if w=0 then q=1;
266  run;

NOTE: There were 1745 observations read from the data set DC.RET_BANKSECTOR_W.
NOTE: The data set WORK.BANKSECTORMKTCAP has 1745 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

267  
268  proc means data=banksectormktcap noprint;
269  var meanbankmktcap;
270  by y q;
271  output out= meanbankmktcap (drop= _TYPE_ _FREQ_ ) mean=meanbankmktcap;
272  run;

NOTE: There were 1745 observations read from the data set WORK.BANKSECTORMKTCAP.
NOTE: The data set WORK.MEANBANKMKTCAP has 133 observations and 3 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

273  
274  
275  proc sort data=covar;by y q;run;

NOTE: There were 30780 observations read from the data set WORK.COVAR.
NOTE: The data set WORK.COVAR has 30780 observations and 6 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

276  data covar;
277  merge covar(in=a) meanbankmktcap;
278  by y q;
279  if a;
280  run;

NOTE: There were 30780 observations read from the data set WORK.COVAR.
NOTE: There were 133 observations read from the data set WORK.MEANBANKMKTCAP.
NOTE: The data set WORK.COVAR has 30780 observations and 7 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      

281  
282  data covar;
283  set covar;
284  d_covar_dollar=d_covar_dollar_raw/meanbankmktcap;
285  keep rssd9001 y q d_covar_dollar;
286  run;

NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      522 at 284:34   
NOTE: There were 30780 observations read from the data set WORK.COVAR.
NOTE: The data set WORK.COVAR has 30780 observations and 4 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

287  
288  proc sort data=covar;by y q;run;

NOTE: There were 30780 observations read from the data set WORK.COVAR.
NOTE: The data set WORK.COVAR has 30780 observations and 4 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      

289  data fwdcovar;
290  merge covar (in=a) predictor_macro_qtr;
291  by y q;
292  if a;
293  run;

NOTE: There were 30780 observations read from the data set WORK.COVAR.
NOTE: There were 132 observations read from the data set WORK.PREDICTOR_MACRO_QTR.
NOTE: The data set WORK.FWDCOVAR has 30780 observations and 32 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

294  
295  proc sort data=fwdcovar;by rssd9001 y q;run;

NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.FWDCOVAR has 30780 observations and 32 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      

296  data fwdcovar;
297  merge fwdcovar (in=a) predictor_bank;
298  by rssd9001 y q;
299  if a;
300  run;

NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: There were 22530 observations read from the data set WORK.PREDICTOR_BANK.
NOTE: The data set WORK.FWDCOVAR has 30780 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

301  
302  data trimlist;
303     input Name $40.;
304     datalines;

NOTE: The data set WORK.TRIMLIST has 3 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

308  ;
309  run;
310  
311  %trim_by_year(fwdcovar, trimlist,1);

NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.FWDCOVAR has 30780 observations and 48 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: There were 3 observations read from the data set WORK.TRIMLIST.
NOTE: The data set WORK.TRIMLIST_RANK has 3 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

NOTE: PROCEDURE SQL used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

NOTE: PROCEDURE SQL used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.FWDCOVAR has 30780 observations and 51 variables.
NOTE: PROCEDURE RANK used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.FWDCOVAR has 30780 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

312  
313  /*Prediction: Out-of-sample*/
314  
315  data fwd_d_covar;
316  format y BEST12. q BEST12. rssd9001 BEST12. fwd_d_covar_lead1q BEST12. fwd_d_covar_lead4q
316! BEST12. fwd_d_covar_lead8q BEST12. ;
317  stop;
318  run;

NOTE: Variable y is uninitialized.
NOTE: Variable q is uninitialized.
NOTE: Variable rssd9001 is uninitialized.
NOTE: Variable fwd_d_covar_lead1q is uninitialized.
NOTE: Variable fwd_d_covar_lead4q is uninitialized.
NOTE: Variable fwd_d_covar_lead8q is uninitialized.
NOTE: The data set WORK.FWD_D_COVAR has 0 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

319  
320  %macro fwd_d_covar_Cal;
321  %do j=2009 %to 2022;
322  %do k=1 %to 4;
323  
324  data sample;
325  set fwdcovar;
326  if (y<&j) or (y=&j and q<&k+1);
327  run;
328  
329  proc reg data=sample noprint outest=coef_1q (rename=(intercept=intercept_lag1
329! leverage_lag1=coef_leverage_lag1 mm_lag1=coef_mm_lag1 size_lag1=coef_size_lag1
329! boom_lag1=coef_boom_lag1 d_tb3m_lag1=coef_d_tb3m_lag1
329! d_yieldcurve_lag1=coef_d_yieldcurve_lag1 liqspread_lag1=coef_liqspread_lag1
329! d_creditspread_lag1=coef_d_creditspread_lag1 retmkt_lag1=coef_retmkt_lag1
329! ret_re_mktadj_lag1=coef_ret_re_mktadj_lag1 vix_lag1=coef_vix_lag1 )) rsquare;  model
329! d_covar_dollar= leverage_lag1 mm_lag1 size_lag1 boom_lag1 d_tb3m_lag1 d_yieldcurve_lag1
329! liqspread_lag1 d_creditspread_lag1 retmkt_lag1 ret_re_mktadj_lag1 vix_lag1 ; quit;
330  
331  proc reg data=sample noprint outest=coef_4q (rename=(intercept=intercept_lag4
331! leverage_lag4=coef_leverage_lag4 mm_lag4=coef_mm_lag4 size_lag4=coef_size_lag4
331! boom_lag4=coef_boom_lag4 d_tb3m_lag4=coef_d_tb3m_lag4
331! d_yieldcurve_lag4=coef_d_yieldcurve_lag4 liqspread_lag4=coef_liqspread_lag4
331! d_creditspread_lag4=coef_d_creditspread_lag4 retmkt_lag4=coef_retmkt_lag4
331! ret_re_mktadj_lag4=coef_ret_re_mktadj_lag4 vix_lag4=coef_vix_lag4 )) rsquare;  model
331! d_covar_dollar= leverage_lag4 mm_lag4 size_lag4 boom_lag4 d_tb3m_lag4 d_yieldcurve_lag4
331! liqspread_lag4 d_creditspread_lag4 retmkt_lag4 ret_re_mktadj_lag4 vix_lag4 ; quit;
332  
333  proc reg data=sample noprint outest=coef_8q (rename=(intercept=intercept_lag8
333! leverage_lag8=coef_leverage_lag8 mm_lag8=coef_mm_lag8 size_lag8=coef_size_lag8
333! boom_lag8=coef_boom_lag8 d_tb3m_lag8=coef_d_tb3m_lag8
333! d_yieldcurve_lag8=coef_d_yieldcurve_lag8 liqspread_lag8=coef_liqspread_lag8
333! d_creditspread_lag8=coef_d_creditspread_lag8 retmkt_lag8=coef_retmkt_lag8
333! ret_re_mktadj_lag8=coef_ret_re_mktadj_lag8 vix_lag8=coef_vix_lag8 )) rsquare;  model
333! d_covar_dollar= leverage_lag8 mm_lag8 size_lag8 boom_lag8 d_tb3m_lag8 d_yieldcurve_lag8
333! liqspread_lag8 d_creditspread_lag8 retmkt_lag8 ret_re_mktadj_lag8 vix_lag8 ; quit;
334  
335  
336  data coef;
337  merge coef_1q coef_4q coef_8q;
338  run;
339  
340  data sample;if _n_=1 then set coef (drop=_MODEL_ _TYPE_ _DEPVAR_ _RMSE_ d_covar_dollar _IN_
340! _P_ _EDF_ _RSQ_);set sample;run;
341  
342  
343  proc sort data=sample;by rssd9001 y q;run;
344  
345  
346  data predicted;
347  set sample;
348  fwd_d_covar_lead1q=intercept_lag1+coef_leverage_lag1*leverage+coef_mm_lag1*mm+coef_size_lag1*
348! size+coef_boom_lag1*boom+coef_d_tb3m_lag1*d_tb3m+coef_d_yieldcurve_lag1*d_yieldcurve+coef_liq
348! spread_lag1*liqspread+coef_d_creditspread_lag1*d_creditspread+coef_retmkt_lag1*retmkt+coef_re
348! t_re_mktadj_lag1*ret_re_mktadj+coef_vix_lag1*vix;
349  
350  fwd_d_covar_lead4q=intercept_lag4+coef_leverage_lag4*leverage+coef_mm_lag4*mm+coef_size_lag4*
350! size+coef_boom_lag4*boom+coef_d_tb3m_lag4*d_tb3m+coef_d_yieldcurve_lag4*d_yieldcurve+coef_liq
350! spread_lag4*liqspread+coef_d_creditspread_lag4*d_creditspread+coef_retmkt_lag4*retmkt+coef_re
350! t_re_mktadj_lag4*ret_re_mktadj+coef_vix_lag4*vix;
351  
352  fwd_d_covar_lead8q=intercept_lag8+coef_leverage_lag8*leverage+coef_mm_lag8*mm+coef_size_lag8*
352! size+coef_boom_lag8*boom+coef_d_tb3m_lag8*d_tb3m+coef_d_yieldcurve_lag8*d_yieldcurve+coef_liq
352! spread_lag8*liqspread+coef_d_creditspread_lag8*d_creditspread+coef_retmkt_lag8*retmkt+coef_re
352! t_re_mktadj_lag8*ret_re_mktadj+coef_vix_lag8*vix;
353  
354  if y=&j and q=&k;
355  keep y q rssd9001 fwd_d_covar_lead1q fwd_d_covar_lead4q fwd_d_covar_lead8q;
356  run;
357  
358  data fwd_d_covar;
359  set fwd_d_covar predicted;
360  run;
361  %end;
362  %end;
363  %mend fwd_d_covar_Cal;
364  %fwd_d_covar_Cal;

NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 13296 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

NOTE: Writing HTML Body file: sashtml.htm

NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.25 seconds
      cpu time            0.15 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 13296 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 13296 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 13296 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 13296 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      3943 at 13:54   154 at 13:76    256 at 13:199   3943 at 16:55   154 at 16:77
      256 at 16:200   3943 at 20:55   154 at 20:77    256 at 20:200   
NOTE: There were 13296 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 269 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 0 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 269 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 269 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 13566 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 13566 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 13566 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 13566 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 13566 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4018 at 36:54   156 at 36:76    256 at 36:199   4018 at 39:55   156 at 39:77
      256 at 39:200   4018 at 43:55   156 at 43:77    256 at 43:200   
NOTE: There were 13566 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 270 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 269 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 270 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 539 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 13837 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 13837 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 13837 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 13837 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 13837 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4094 at 59:54   158 at 59:76    256 at 59:199   4094 at 62:55   158 at 62:77
      256 at 62:200   4094 at 66:55   158 at 66:77    256 at 66:200   
NOTE: There were 13837 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 271 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 539 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 271 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 810 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 14109 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 14109 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14109 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 14109 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14109 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4174 at 82:54   163 at 82:76    256 at 82:199   4174 at 85:55   163 at 85:77
      256 at 85:200   4174 at 89:55   163 at 89:77    256 at 89:200   
NOTE: There were 14109 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 272 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 810 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 272 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 1082 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 14382 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 14382 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14382 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 14382 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14382 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4247 at 105:54   168 at 105:76    256 at 105:199   4247 at 108:55   168 at 108:77
      256 at 108:200   4247 at 112:55   168 at 112:77    256 at 112:200   
NOTE: There were 14382 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 273 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1082 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 273 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 1355 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 14657 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 14657 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14657 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 14657 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14657 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4323 at 128:54   171 at 128:76    256 at 128:199   4323 at 131:55   171 at 131:77
      256 at 131:200   4323 at 135:55   171 at 135:77    256 at 135:200   
NOTE: There were 14657 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 275 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1355 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 275 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 1630 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 14933 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 14933 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14933 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 14933 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 14933 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4401 at 151:54   176 at 151:76    256 at 151:199   4401 at 154:55   176 at 154:77
      256 at 154:200   4401 at 158:55   176 at 158:77    256 at 158:200   
NOTE: There were 14933 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 276 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1630 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 276 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 1906 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 15213 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 15213 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 15213 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 15213 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 15213 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.03 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4482 at 174:54   179 at 174:76    256 at 174:199   4482 at 177:55   179 at 177:77
      256 at 177:200   4482 at 181:55   179 at 181:77    256 at 181:200   
NOTE: There were 15213 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 280 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1906 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 280 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 2186 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 15495 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 15495 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 15495 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 15495 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 15495 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4563 at 197:54   182 at 197:76    256 at 197:199   4563 at 200:55   182 at 200:77
      256 at 200:200   4563 at 204:55   182 at 204:77    256 at 204:200   
NOTE: There were 15495 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 282 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 2186 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 282 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 2468 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 15777 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 15777 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 15777 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 15777 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 15777 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4644 at 220:54   185 at 220:76    256 at 220:199   4644 at 223:55   185 at 223:77
      256 at 223:200   4644 at 227:55   185 at 227:77    256 at 227:200   
NOTE: There were 15777 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 282 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 2468 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 282 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 2750 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 16062 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 16062 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16062 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 16062 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16062 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4725 at 243:54   189 at 243:76    256 at 243:199   4725 at 246:55   189 at 246:77
      256 at 246:200   4725 at 250:55   189 at 250:77    256 at 250:200   
NOTE: There were 16062 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 285 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 2750 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 285 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 3035 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 16347 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 16347 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16347 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 16347 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16347 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4803 at 266:54   193 at 266:76    256 at 266:199   4803 at 269:55   193 at 269:77
      256 at 269:200   4803 at 273:55   193 at 273:77    256 at 273:200   
NOTE: There were 16347 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 285 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 3035 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 285 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 3320 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 16635 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 16635 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16635 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 16635 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16635 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4847 at 289:54   198 at 289:76    256 at 289:199   4847 at 292:55   198 at 292:77
      256 at 292:200   4847 at 296:55   198 at 296:77    256 at 296:200   
NOTE: There were 16635 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 288 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 3320 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 288 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 3608 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 16923 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 16923 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16923 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 16923 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 16923 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4891 at 312:54   202 at 312:76    256 at 312:199   4891 at 315:55   202 at 315:77
      256 at 315:200   4891 at 319:55   202 at 319:77    256 at 319:200   
NOTE: There were 16923 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 288 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 3608 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 288 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 3896 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 17216 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 17216 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 17216 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 17216 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 17216 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4939 at 335:54   207 at 335:76    256 at 335:199   4939 at 338:55   207 at 338:77
      256 at 338:200   4939 at 342:55   207 at 342:77    256 at 342:200   
NOTE: There were 17216 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 293 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 3896 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 293 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 4189 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 17510 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 17510 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 17510 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 17510 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 17510 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      4986 at 358:54   211 at 358:76    256 at 358:199   4986 at 361:55   211 at 361:77
      256 at 361:200   4986 at 365:55   211 at 365:77    256 at 365:200   
NOTE: There were 17510 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 294 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 4189 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 294 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 4483 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 17806 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 17806 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 17806 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 17806 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 17806 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5032 at 381:54   216 at 381:76    256 at 381:199   5032 at 384:55   216 at 384:77
      256 at 384:200   5032 at 388:55   216 at 388:77    256 at 388:200   
NOTE: There were 17806 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 296 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 4483 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 296 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 4779 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 18104 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 18104 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 18104 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 18104 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 18104 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5075 at 404:54   219 at 404:76    256 at 404:199   5075 at 407:55   219 at 407:77
      256 at 407:200   5075 at 411:55   219 at 411:77    256 at 411:200   
NOTE: There were 18104 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 298 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 4779 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 298 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 5077 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 18403 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 18403 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 18403 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 18403 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 18403 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5117 at 427:54   224 at 427:76    256 at 427:199   5117 at 430:55   224 at 430:77
      256 at 430:200   5117 at 434:55   224 at 434:77    256 at 434:200   
NOTE: There were 18403 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 299 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 5077 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 299 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 5376 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 18703 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 18703 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 18703 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 18703 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 18703 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5160 at 450:54   227 at 450:76    256 at 450:199   5160 at 453:55   227 at 453:77
      256 at 453:200   5160 at 457:55   227 at 457:77    256 at 457:200   
NOTE: There were 18703 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 300 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 5376 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 300 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 5676 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 19004 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 19004 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19004 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 19004 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19004 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5205 at 473:54   231 at 473:76    256 at 473:199   5205 at 476:55   231 at 476:77
      256 at 476:200   5205 at 480:55   231 at 480:77    256 at 480:200   
NOTE: There were 19004 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 301 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 5676 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 301 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 5977 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 19311 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 19311 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19311 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 19311 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19311 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5250 at 496:54   235 at 496:76    256 at 496:199   5250 at 499:55   235 at 499:77
      256 at 499:200   5250 at 503:55   235 at 503:77    256 at 503:200   
NOTE: There were 19311 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 307 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 5977 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 307 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 6284 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 19621 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.10 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 19621 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19621 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 19621 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19621 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5294 at 519:54   239 at 519:76    256 at 519:199   5294 at 522:55   239 at 522:77
      256 at 522:200   5294 at 526:55   239 at 526:77    256 at 526:200   
NOTE: There were 19621 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 310 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 6284 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 310 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 6594 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 19937 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 19937 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19937 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 19937 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 19937 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5339 at 542:54   244 at 542:76    256 at 542:199   5339 at 545:55   244 at 545:77
      256 at 545:200   5339 at 549:55   244 at 549:77    256 at 549:200   
NOTE: There were 19937 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 316 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 6594 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 316 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 6910 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 20255 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 20255 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 20255 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 20255 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 20255 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5420 at 565:54   249 at 565:76    256 at 565:199   5420 at 568:55   249 at 568:77
      256 at 568:200   5420 at 572:55   249 at 572:77    256 at 572:200   
NOTE: There were 20255 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 318 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 6910 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 318 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 7228 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 20574 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


ERROR: Cannot open utility file.
NOTE: The data set WORK.COEF_1Q has 0 observations and 0 variables.
WARNING: Data set WORK.COEF_1Q was not replaced because new file is incomplete.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 20574 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 20574 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 20574 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 20574 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5504 at 588:54   253 at 588:76    256 at 588:199   5504 at 591:55   253 at 591:77
      256 at 591:200   5504 at 595:55   253 at 595:77    256 at 595:200   
NOTE: There were 20574 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 319 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 7228 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 319 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 7547 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 20896 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 20896 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 20896 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 20896 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 20896 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5589 at 611:54   256 at 611:76    256 at 611:199   5589 at 614:55   256 at 614:77
      256 at 614:200   5589 at 618:55   256 at 618:77    256 at 618:200   
NOTE: There were 20896 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 322 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 7547 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 322 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 7869 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 21223 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 21223 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 21223 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 21223 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 21223 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5672 at 634:54   258 at 634:76    256 at 634:199   5672 at 637:55   258 at 637:77
      256 at 637:200   5672 at 641:55   258 at 641:77    256 at 641:200   
NOTE: There were 21223 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 327 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 7869 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 327 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 8196 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 21551 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 21551 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 21551 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 21551 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 21551 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5755 at 657:54   261 at 657:76    256 at 657:199   5755 at 660:55   261 at 660:77
      256 at 660:200   5755 at 664:55   261 at 664:77    256 at 664:200   
NOTE: There were 21551 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 328 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 8196 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 328 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 8524 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 21882 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 21882 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 21882 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 21882 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 21882 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5839 at 680:54   265 at 680:76    256 at 680:199   5839 at 683:55   265 at 683:77
      256 at 683:200   5839 at 687:55   265 at 687:77    256 at 687:200   
NOTE: There were 21882 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 331 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 8524 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 331 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 8855 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 22216 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 22216 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 22216 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 22216 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 22216 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      5923 at 703:54   270 at 703:76    256 at 703:199   5923 at 706:55   270 at 706:77
      256 at 706:200   5923 at 710:55   270 at 710:77    256 at 710:200   
NOTE: There were 22216 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 334 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 8855 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 334 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 9189 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 22550 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 22550 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 22550 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 22550 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 22550 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6006 at 726:54   272 at 726:76    256 at 726:199   6006 at 729:55   272 at 729:77
      256 at 729:200   6006 at 733:55   272 at 733:77    256 at 733:200   
NOTE: There were 22550 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 334 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 9189 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 334 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 9523 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 22885 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 22885 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 22885 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 22885 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 22885 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6085 at 749:54   274 at 749:76    256 at 749:199   6085 at 752:55   274 at 752:77
      256 at 752:200   6085 at 756:55   274 at 756:77    256 at 756:200   
NOTE: There were 22885 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 335 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 9523 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 335 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 9858 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 23225 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 23225 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 23225 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 23225 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 23225 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6164 at 772:54   277 at 772:76    256 at 772:199   6164 at 775:55   277 at 775:77
      256 at 775:200   6164 at 779:55   277 at 779:77    256 at 779:200   
NOTE: There were 23225 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 340 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 9858 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 340 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 10198 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 23567 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 23567 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 23567 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 23567 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 23567 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6244 at 795:54   281 at 795:76    256 at 795:199   6244 at 798:55   281 at 798:77
      256 at 798:200   6244 at 802:55   281 at 802:77    256 at 802:200   
NOTE: There were 23567 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 342 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 10198 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 342 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 10540 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 23920 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 23920 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 23920 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 23920 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 23920 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6326 at 818:54   284 at 818:76    256 at 818:199   6326 at 821:55   284 at 821:77
      256 at 821:200   6326 at 825:55   284 at 825:77    256 at 825:200   
NOTE: There were 23920 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 10540 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 10893 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 24273 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 24273 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 24273 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 24273 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 24273 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6401 at 841:54   287 at 841:76    256 at 841:199   6401 at 844:55   287 at 844:77
      256 at 844:200   6401 at 848:55   287 at 848:77    256 at 848:200   
NOTE: There were 24273 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 10893 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 11246 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 24626 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 24626 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 24626 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 24626 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 24626 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6476 at 864:54   291 at 864:76    256 at 864:199   6476 at 867:55   291 at 867:77
      256 at 867:200   6476 at 871:55   291 at 871:77    256 at 871:200   
NOTE: There were 24626 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 11246 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 11599 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 24979 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 24979 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 24979 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 24979 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 24979 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6622 at 887:54   294 at 887:76    256 at 887:199   6622 at 890:55   294 at 890:77
      256 at 890:200   6622 at 894:55   294 at 894:77    256 at 894:200   
NOTE: There were 24979 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 11599 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 11952 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 25332 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 25332 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 25332 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 25332 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 25332 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6769 at 910:54   297 at 910:76    256 at 910:199   6769 at 913:55   297 at 913:77
      256 at 913:200   6769 at 917:55   297 at 917:77    256 at 917:200   
NOTE: There were 25332 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 11952 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 12305 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 25685 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 25685 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 25685 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 25685 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 25685 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      6914 at 933:54   300 at 933:76    256 at 933:199   6914 at 936:55   300 at 936:77
      256 at 936:200   6914 at 940:55   300 at 940:77    256 at 940:200   
NOTE: There were 25685 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 12305 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 12658 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 26038 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 26038 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 26038 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 26038 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 26038 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7058 at 956:54   303 at 956:76    256 at 956:199   7058 at 959:55   303 at 959:77
      256 at 959:200   7058 at 963:55   303 at 963:77    256 at 963:200   
NOTE: There were 26038 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 12658 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 13011 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 26391 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 26391 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 26391 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 26391 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 26391 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7203 at 979:54   305 at 979:76    256 at 979:199   7203 at 982:55   305 at 982:77
      256 at 982:200   7203 at 986:55   305 at 986:77    256 at 986:200   
NOTE: There were 26391 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 13011 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 13364 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 26744 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 26744 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 26744 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 26744 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 26744 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7347 at 1002:54   307 at 1002:76    256 at 1002:199   7347 at 1005:55   307 at 1005:77
      256 at 1005:200   7347 at 1009:55   307 at 1009:77    256 at 1009:200   
NOTE: There were 26744 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 13364 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 13717 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 27097 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 27097 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 27097 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 27097 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 27097 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7488 at 1025:54   309 at 1025:76    256 at 1025:199   7488 at 1028:55   309 at 1028:77
      256 at 1028:200   7488 at 1032:55   309 at 1032:77    256 at 1032:200   
NOTE: There were 27097 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 13717 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 14070 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 27450 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 27450 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 27450 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 27450 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 27450 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7631 at 1048:54   311 at 1048:76    256 at 1048:199   7631 at 1051:55   311 at 1051:77
      256 at 1051:200   7631 at 1055:55   311 at 1055:77    256 at 1055:200   
NOTE: There were 27450 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 353 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 14070 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 353 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 14423 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 27799 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 27799 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 27799 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 27799 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 27799 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7770 at 1071:54   313 at 1071:76    256 at 1071:199   7770 at 1074:55   313 at 1074:77
      256 at 1074:200   7770 at 1078:55   313 at 1078:77    256 at 1078:200   
NOTE: There were 27799 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 349 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 14423 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 349 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 14772 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 28145 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.07 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.11 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 28145 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 28145 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 28145 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 28145 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.05 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      7907 at 1094:54   315 at 1094:76    256 at 1094:199   7907 at 1097:55   315 at 1097:77
      256 at 1097:200   7907 at 1101:55   315 at 1101:77    256 at 1101:200   
NOTE: There were 28145 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 346 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 14772 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 346 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 15118 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 28491 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 28491 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 28491 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 28491 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 28491 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8044 at 1117:54   317 at 1117:76    256 at 1117:199   8044 at 1120:55   317 at 1120:77
      256 at 1120:200   8044 at 1124:55   317 at 1124:77    256 at 1124:200   
NOTE: There were 28491 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 346 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 15118 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 346 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 15464 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 28835 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 28835 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 28835 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
      


NOTE: There were 28835 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 28835 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8179 at 1140:54   320 at 1140:76    256 at 1140:199   8179 at 1143:55   320 at 1143:77
      256 at 1143:200   8179 at 1147:55   320 at 1147:77    256 at 1147:200   
NOTE: There were 28835 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 344 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 15464 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 344 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 15808 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 29176 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 29176 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 29176 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 29176 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 29176 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.04 seconds
      cpu time            0.04 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8311 at 1163:54   323 at 1163:76    256 at 1163:199   8311 at 1166:55   323 at 1166:77
      256 at 1166:200   8311 at 1170:55   323 at 1170:77    256 at 1170:200   
NOTE: There were 29176 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 341 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 15808 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 341 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 16149 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 29512 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.06 seconds
      cpu time            0.04 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.04 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.04 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 29512 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 29512 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
      


NOTE: There were 29512 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 29512 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.05 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8435 at 1186:54   327 at 1186:76    256 at 1186:199   8435 at 1189:55   327 at 1189:77
      256 at 1189:200   8435 at 1193:55   327 at 1193:77    256 at 1193:200   
NOTE: There were 29512 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 336 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 16149 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 336 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 16485 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 29839 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.04 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 29839 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 29839 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 29839 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 29839 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.04 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8551 at 1209:54   330 at 1209:76    256 at 1209:199   8551 at 1212:55   330 at 1212:77
      256 at 1212:200   8551 at 1216:55   330 at 1216:77    256 at 1216:200   
NOTE: There were 29839 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 327 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 16485 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 327 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 16812 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 30156 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 30156 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 30156 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30156 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 30156 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.04 seconds
      cpu time            0.03 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8658 at 1232:54   332 at 1232:76    256 at 1232:199   8658 at 1235:55   332 at 1235:77
      256 at 1235:200   8658 at 1239:55   332 at 1239:77    256 at 1239:200   
NOTE: There were 30156 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 317 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 16812 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 317 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 17129 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 30469 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 30469 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 30469 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30469 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 30469 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.04 seconds
      cpu time            0.03 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8764 at 1255:54   336 at 1255:76    256 at 1255:199   8764 at 1258:55   336 at 1258:77
      256 at 1258:200   8764 at 1262:55   336 at 1262:77    256 at 1262:200   
NOTE: There were 30469 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 313 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 17129 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 313 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 17442 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 30780 observations read from the data set WORK.FWDCOVAR.
NOTE: The data set WORK.SAMPLE has 30780 observations and 48 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.00 seconds
      


NOTE: The data set WORK.COEF_1Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_4Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: The data set WORK.COEF_8Q has 1 observations and 21 variables.
NOTE: PROCEDURE REG used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF_1Q.
NOTE: There were 1 observations read from the data set WORK.COEF_4Q.
NOTE: There were 1 observations read from the data set WORK.COEF_8Q.
NOTE: The data set WORK.COEF has 1 observations and 45 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: There were 1 observations read from the data set WORK.COEF.
NOTE: There were 30780 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 30780 observations and 84 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds
      


NOTE: There were 30780 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.SAMPLE has 30780 observations and 84 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      8871 at 1278:54   340 at 1278:76    256 at 1278:199   8871 at 1281:55   340 at 1281:77
      256 at 1281:200   8871 at 1285:55   340 at 1285:77    256 at 1285:200   
NOTE: There were 30780 observations read from the data set WORK.SAMPLE.
NOTE: The data set WORK.PREDICTED has 311 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      


NOTE: There were 17442 observations read from the data set WORK.FWD_D_COVAR.
NOTE: There were 311 observations read from the data set WORK.PREDICTED.
NOTE: The data set WORK.FWD_D_COVAR has 17753 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

365  
366  proc sort data=covar;by rssd9001 y q;run;

NOTE: There were 30780 observations read from the data set WORK.COVAR.
NOTE: The data set WORK.COVAR has 30780 observations and 4 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

367  proc sort data=fwd_d_covar;by rssd9001 y q;run;

NOTE: There were 17753 observations read from the data set WORK.FWD_D_COVAR.
NOTE: The data set WORK.FWD_D_COVAR has 17753 observations and 6 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds
      

368  
369  data fwd_d_covar;
370  set fwd_d_covar;
371  fwd_d_covar_1q_out=ifn(rssd9001=lag(rssd9001) and ((q>=2 and q<=4 and y=lag(y) and
371! q=lag(q)+1) or (q=1 and y=lag(y)+1)),lag(fwd_d_covar_lead1q),.);
372  fwd_d_covar_4q_out=ifn(rssd9001=lag4(rssd9001) and (y=lag4(y)+1 and
372! q=lag4(q)),lag4(fwd_d_covar_lead4q),.);
373  fwd_d_covar_8q_out=ifn(rssd9001=lag8(rssd9001) and (y=lag8(y)+2 and
373! q=lag8(q)),lag8(fwd_d_covar_lead8q),.);
374  drop fwd_d_covar_lead1q fwd_d_covar_lead4q fwd_d_covar_lead8q;
375  run;

NOTE: Missing values were generated as a result of performing an operation on missing values.
      Each place is given by: (Number of times) at (Line):(Column).
      1 at 371:92    1 at 371:116   4 at 372:62    8 at 373:62    
NOTE: There were 17753 observations read from the data set WORK.FWD_D_COVAR.
NOTE: The data set WORK.FWD_D_COVAR has 17753 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

376  
377  data dc.fwd_d_covar_out;
378  set fwd_d_covar;
379  run;

NOTE: There were 17753 observations read from the data set WORK.FWD_D_COVAR.
NOTE: The data set DC.FWD_D_COVAR_OUT has 17753 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           20.43 seconds
      cpu time            3.20 seconds
      
