-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathaedp.prj
3008 lines (3005 loc) · 160 KB
/
aedp.prj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
33 Patch Control
0
0
1
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\misc\WstarTestc.ox
999
21
6
C:\Users\Chris\Desktop\QC\Main.ox
Ox:UNIX
1147890 0 23 78 58 19 0 2377 3240 4754 0 0 863 420 -1 -1 0 0 13 1 1 13 1 0 19 58 0 0 0
DPArchive\AREAS.oxh
Ox
1049586 1 3 5 3 70 0 2377 3240 4754 0 0 1081 210 -1 -1 0 0 42 0 0 42 1 0 70 3 0 0 0
DPArchive\collect.ox
Ox
1049586 0 0 1 0 1 0 2377 3240 4754 0 0 65 0 -1 -1 0 0 21 0 0 21 1 0 1 0 0 0 0
DPArchive\DPArchive.ox
Ox
1049586 1 167 28 166 20 0 2377 3240 4754 0 0 787 1120 -1 -1 0 0 25 0 0 25 1 0 20 166 0 0 0
docs\doc.css
DATA:CSS
1048818 2 65 3 65 7 0 2377 3240 4754 1 0 521 2100 -1 -1 0 0 29 0 0 29 1 0 7 65 0 0 0
packages\niqlow\niqlow.ark
DATA:UNIX
5341426 0 6 9 9 21 0 2377 3240 4754 1 0 1053 630 -1 -1 0 0 17 0 0 17 1 0 21 9 0 0 0
docs\index.html
HTML
17827835 0 -1 3499 -1 3524 0 2377 3240 4754 0 1 1493 1116 -1 -1 0 0 1988 -1 -1 1988 1 0 3524 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\Makefile
DATA
5243122 0 14 1 22 1 0 2377 3240 4754 1 0 293 1540 -1 -1 0 0 53 0 0 53 1 0 1 22 0 0 0
docs\details.html
HTML
17827835 0 -1 93 -1 137 0 2377 3240 4754 0 1 1493 124 -1 -1 0 0 -1 -1 -1 -1 1 0 137 -1 0 0 0
docs\toc.html
HTML
1050619 1 -1 332 -1 802 0 2377 3240 4754 0 1 99 930 -1 -1 0 0 -1 -1 -1 -1 1 0 802 -1 0 -1 0
docs\old_index.html
HTML
17827835 2 -1 2077 -1 2083 0 2377 3240 4754 0 1 507 2108 -1 -1 0 0 3422 -1 -1 3422 1 0 2083 -1 0 -1 0
docs\about.html
HTML
17827835 0 -1 465 -1 521 0 2377 3240 4754 0 1 235 0 -1 -1 0 0 38 -1 -1 38 1 0 521 -1 0 -1 0
docs\title.html
HTML
17827835 1 -1 539 -1 609 0 2377 3240 4754 0 1 643 682 -1 -1 0 0 15 -1 -1 15 1 0 609 -1 0 -1 0
DPArchive\DPArchive.oxh
Ox
1049586 0 62 7 0 1 0 0 3240 2377 0 0 65 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
DPArchive\JOURNALS.oxh
Ox
1049586 2 11 20 11 24 0 2377 3240 4754 0 0 1053 770 -1 -1 0 0 42 0 0 42 1 0 24 11 0 0 0
DPArchive\LANGUAGES.oxh
Ox
1049586 0 0 1 0 1 0 2377 3240 4754 0 0 65 0 -1 -1 0 0 42 0 0 42 1 0 1 0 0 0 0
DPArchive\main.ox
Ox
1049586 2 4 5 4 6 0 2377 3240 4754 0 0 255 280 -1 -1 0 0 20 0 0 20 1 0 6 4 0 0 0
DPArchive\parse.ox
Ox
1049586 0 6 3 7 1 0 2377 3240 3665 0 0 65 490 -1 -1 0 0 19 0 0 19 1 0 1 7 0 0 0
docs\archive.html
HTML
1050619 0 -1 0 -1 0 0 2377 3240 4754 0 1 99 0 -1 -1 0 0 0 -1 -1 0 1 0 0 -1 0 0 0
DPArchive\ReadCSV.h
Ox
1049586 0 0 1 0 1 0 2377 3240 4754 0 0 65 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
DPArchive\ReadCSV.ox
Ox
1049586 0 0 1 0 1 0 2377 3240 4754 0 0 65 0 -1 -1 0 0 21 0 0 21 1 0 1 0 0 0 0
docs\bsindex.html
HTML
17827835 0 -1 3499 -1 3524 0 2377 3240 4754 0 1 1493 1116 -1 -1 0 0 1988 -1 -1 1988 1 0 3524 -1 0 -1 0
surveys\BelzilEER2007\BELZIL20071059.ark
DATA
273678578 0 14 419 13 418 0 0 960 631 1 0 3105 910 -1 -1 0 0 24 0 0 24 1 0 418 13 0 0 0
articles\LimAER2013\AER_103_4_1360_97.ark
DATA
273678578 0 10 67 11 1 1008 1008 2664 4178 1 0 293 770 -1 -1 0 0 -1 -1 -1 -1 1 0 1 11 0 0 0
surveys\ArcidiaconoEllicksonARE2011\ar_economics3_363.ark
DATA:UNIX
273776882 2 0 8 0 9 792 792 2448 3962 1 0 597 0 -1 -1 0 0 -1 -1 -1 -1 1 0 9 0 0 0 0
articles\JonesPratapAER2020\AER_110_9_2859_98.ark
DATA
273678578 0 10 65 11 1 936 936 2592 4106 1 0 293 770 -1 -1 0 0 -1 -1 -1 -1 1 0 1 11 0 0 0
surveys\EcksteinWolpnJHR1989\10.2307_145996.ark
DATA
273678578 1 0 8 0 1 0 0 960 631 1 0 293 0 -1 -1 0 0 24 0 0 24 1 0 1 0 0 0 0
surveys\KeaneJOE2010\S0304407609001948.ark
DATA:UNIX
273776882 0 0 8 0 8 504 504 2160 3674 1 0 559 0 -1 -1 0 0 -1 -1 -1 -1 1 0 8 0 0 0 0
surveys\KeaneWolpinRED2009\S1094202508000318.ark
DATA:UNIX
273776882 0 0 8 0 14 576 576 2232 3746 1 0 787 0 -1 -1 0 0 -1 -1 -1 -1 1 0 14 0 0 0 0
surveys\GalianiPantano2021\w28698.ark
DATA:UNIX
273776882 0 0 1 11 2 648 648 2304 3818 1 0 331 770 -1 -1 0 0 -1 -1 -1 -1 1 0 2 11 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Shared.h
Ox
269485042 0 289 16 72 25 0 0 960 631 0 0 367 364 -1 -1 0 0 104 0 0 104 1 0 25 72 0 0 0
C:\Users\Chris\Desktop\QC\source\QCShared.ox
Ox
269485042 2 122 60 122 64 0 0 960 631 0 0 997 280 -1 -1 0 0 1 0 0 1 1 0 64 122 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\DDPShared.h
Ox
269485042 4 404 20 404 21 0 0 960 631 0 0 311 280 -1 -1 0 0 17 0 0 17 1 0 21 404 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Predictions.h
Ox
269485042 0 72 49 72 5 0 0 960 631 0 0 87 532 -1 -1 0 0 19 0 0 19 1 0 5 72 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Predictions.ox
Ox
269485042 2 173 42 173 49 0 0 960 631 0 0 703 280 -1 -1 0 0 25 0 0 25 1 0 49 173 0 0 0
surveys\ArroyoZhangJPopE1997\10.2307_20007526.ark
DATA
273678578 0 0 2 0 8 0 0 960 631 1 0 213 0 -1 -1 0 0 26 0 0 26 1 0 8 0 0 0 0
C:\Users\Chris\Desktop\QC\text\Quality_Constraints.tex
TeX:UNIX
269594619 0 -1 14944 -1 2476 0 0 960 631 0 1 1215 308 -1 -1 0 0 30 -1 -1 30 1 0 2476 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Shared\Shared.ox
Ox
269485042 0 325 45 329 23 0 0 960 631 0 0 339 252 -1 -1 0 0 20 0 0 20 1 0 23 329 0 0 0
C:\Users\Chris\Desktop\QC\Main.h
Ox
269485042 0 2 1 2 19 0 0 960 631 0 0 283 56 -1 -1 0 0 1 4 4 1 1 0 19 2 0 0 0
C:\Users\Chris\Desktop\QC\data\shared.do
DATA
273678578 2 17 10 17 14 0 0 960 631 1 0 297 476 -1 -1 0 0 40 0 0 40 1 0 14 17 0 0 0
C:\Users\Chris\Desktop\QC\include\QCVariables.h
Ox
269485042 0 20 1 20 1 0 0 960 631 0 0 31 84 -1 -1 0 0 55 0 0 55 1 0 1 20 0 0 0
C:\Users\Chris\Desktop\QC\Multi.hetero.optobj
ASCII:UNIX
273786746 0 2 1 2 2 0 0 960 631 1 0 129 56 -1 -1 0 0 8 0 0 8 1 0 2 2 0 0 0
C:\Users\Chris\Desktop\QC\include\QCShared.h
Ox
269485042 0 226 1 236 10 0 0 960 631 0 0 157 280 -1 -1 0 0 1 1 1 1 1 0 10 236 0 0 0
C:\Users\Chris\Desktop\QC\include\QC.h
Ox
269485042 2 12 13 12 19 0 0 960 631 0 0 283 140 -1 -1 0 0 1 0 0 1 1 0 19 12 0 0 0
C:\Users\Chris\Desktop\QC\source\QCVariables.ox
Ox
269485042 2 11 5 11 10 0 0 960 631 0 0 157 84 -1 -1 0 0 1 13 13 1 1 0 10 11 0 0 0
C:\Users\Chris\Desktop\QC\source\Makefile
TeX
269496315 0 -1 231 -1 328 0 0 960 631 0 1 529 364 -1 -1 0 0 416 -1 -1 416 1 0 328 -1 0 0 0
C:\Users\Chris\Desktop\QC\source\QC.ox
Ox
269485042 2 38 5 38 8 0 0 960 631 0 0 129 140 -1 -1 0 0 1 264 264 1 1 0 8 38 0 0 0
surveys\KeaneToddWolpinHLE2011\keane_todd_wolpin.ark
DATA
273678578 0 0 2 0 8 0 0 960 631 1 0 213 0 -1 -1 0 0 -1 -1 -1 -1 1 0 8 0 0 0 0
surveys\WolpinAER1996\10.2307_2118164.ark
DATA
273678578 0 0 2 0 8 0 0 960 631 1 0 213 0 -1 -1 0 0 -1 -1 -1 -1 1 0 8 0 0 0 0
docs\screen.css
DATA:CSS
269484274 0 13 1 0 1 0 0 960 631 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\Switches.ini
DATA:INI:EDT
269485050 0 171 9 180 10 0 0 799 631 1 1 161 442 -1 -1 0 0 -1 -1 -1 -1 1 0 10 180 0 -1 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\ColorGrid.ini
DATA:INI:EDT
269485050 0 0 1 0 1 0 0 799 631 1 1 89 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\ColorEffects.ini
DATA:INI:EDT
269485050 0 0 1 0 1 0 0 799 631 1 1 89 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\FilterSets.ini
DATA:INI:EDT
269485050 0 878 9 874 20 0 0 799 631 1 1 241 544 -1 -1 0 0 -1 -1 -1 -1 1 0 20 874 0 -1 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\Keywords.ini
DATA:INI:EDT
269485050 0 10 40 10 40 0 0 799 631 1 1 401 170 -1 -1 0 0 -1 -1 -1 -1 1 0 40 10 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\index.html
HTML:UNIX
269584379 1 -1 0 -1 512 0 0 799 631 0 1 137 184 -1 -1 0 0 -1 -1 -1 -1 1 0 512 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\ParallelObjective.ox
Ox
269485042 0 42 29 41 27 0 0 960 668 0 0 395 252 -1 -1 0 0 72 0 0 72 1 0 27 41 0 0 0
C:\Users\Chris\Desktop\QC\text\Paper\Quality_Constraints.tex
TeX:UNIX
269594619 0 -1 66798 -1 13650 0 0 960 600 0 1 557 336 -1 -1 0 0 30 -1 -1 30 1 0 13650 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\ParallelObjective.ox
Ox
269485042 0 41 1 23 1 681 0 1362 324 0 0 31 224 -1 -1 0 0 4 15 15 4 1 0 1 23 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--17-05-2021-12-46-40.log
DATA
273678578 0 0 1 1182 878 0 0 612 1003 1 0 1060 952 -1 -1 0 0 -1 -1 -1 -1 1 0 878 1182 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--16-05-2021-14-59-51.log
DATA
273678578 0 429 1 916 1 52 52 1314 286 1 0 115 252 -1 -1 0 0 26 0 0 26 1 0 1 916 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--15-05-2021-15-47-50.log
DATA
273678578 0 0 1 602 1 26 26 1288 260 1 0 115 -392 -1 -1 0 0 -1 -1 -1 -1 1 0 1 602 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\html\source\bootcamp.toc
TeX:AUX
269496306 0 0 1 158 1 26 26 1764 444 0 0 31 56 -1 -1 0 0 21 0 0 21 1 0 1 158 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Econ452demo\tourc.smcl
DATA:UNIX
273776882 0 0 1 0 1 104 104 1842 522 1 0 115 0 -1 -1 0 0 7 0 0 7 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Tournament\FakeC.pkg
DATA
273678578 0 0 1 0 1 52 52 1790 470 1 0 115 0 -1 -1 0 0 4 0 0 4 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Tournament\lab10.pkg
DATA
273678578 0 0 1 0 1 78 78 1816 496 1 0 115 0 -1 -1 0 0 4 0 0 4 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KWtest.ox
Ox
269485042 0 0 1 0 1 960 0 1920 600 0 0 31 0 -1 -1 0 0 20 0 0 20 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\replications.ox
Ox
269485042 2 14 32 14 40 960 0 1920 600 0 0 577 336 -1 -1 0 0 110 0 0 110 1 0 40 14 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\RunAhn.ox
Ox
269485042 0 0 1 0 1 960 0 1920 600 0 0 31 0 -1 -1 0 0 22 0 0 22 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Demo\week6.pkg
DATA
273678578 0 0 1 0 1 960 0 1920 600 1 0 115 0 -1 -1 0 0 4 0 0 4 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\docs\niqlow.ox.html
HTML
269486075 0 -1 1652 -1 1520 960 0 1920 600 0 1 236 92 -1 -1 0 0 38 -1 -1 38 1 0 1520 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\C4E\build.ox
Ox
269485042 0 0 1 3 5 960 0 1920 600 0 0 87 84 -1 -1 0 0 89 0 0 89 1 0 5 3 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Parameters.h
Ox
269485042 1 152 22 152 8 960 0 1920 600 0 0 129 56 -1 -1 0 0 17 0 0 17 1 0 8 152 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\StateVariable.h
Ox
269485042 0 505 32 521 36 960 0 1920 600 0 0 563 56 -1 -1 0 0 20 0 0 20 1 0 36 521 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\ActionVariable.ox
Ox
269485042 2 18 9 18 11 960 0 1920 600 0 0 171 308 -1 -1 0 0 28 0 0 28 1 0 11 18 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\TimeInvariant.ox
Ox
269485042 1 107 10 107 70 960 0 1920 600 0 0 997 56 -1 -1 0 0 27 0 0 27 1 0 70 107 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\TimeInvariant.h
Ox
269485042 2 125 2 125 5 960 0 1920 600 0 0 87 264 -1 -1 0 0 24 0 0 24 1 0 5 125 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\StateVariable.ox
Ox
269485042 0 99 6 99 6 960 0 1920 600 0 0 101 56 -1 -1 0 0 27 0 0 27 1 0 6 99 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\OODP.htm
HTML
286263291 2 -1 22849 -1 22854 960 0 1920 600 0 1 528 92 -1 -1 0 0 77 -1 -1 77 1 0 22854 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\html\source\numcamp.toc
TeX:AUX
269496306 1 7 1 25 1 52 52 1790 470 0 0 31 336 -1 -1 0 0 15 0 0 15 1 0 1 25 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\source\exer\Disection.htm
HTML
269486075 0 -1 109 -1 114 52 52 1334 243 0 1 104 92 -1 -1 0 0 81 -1 -1 81 1 0 114 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\docs\book.html
HTML
269486075 0 -1 22129 -1 22608 156 156 1894 574 0 1 214 69 -1 -1 0 0 21 -1 -1 21 1 0 22608 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\docs\index.html
HTML
269486075 0 -1 0 -1 0 130 130 1868 548 0 1 49 0 -1 -1 0 0 15 -1 -1 15 1 0 0 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\docs\css\book.css
DATA:CSS
269549810 0 190 1 193 8 78 78 1816 496 1 0 213 56 -1 -1 0 0 7 0 0 7 1 0 8 193 0 0 0
C:\Users\Chris\Desktop\QC\options.txt
ASCII
273688443 0 0 10 1 14 960 0 1920 600 1 0 297 28 -1 -1 0 0 1 0 0 1 1 0 14 1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\niqlow.oxdoc
HTML
286263291 1 -1 1122 -1 1204 960 0 1920 600 0 1 665 207 -1 -1 0 0 89 -1 -1 89 1 0 1204 -1 0 -1 0
C:\Users\Chris\Desktop\QC\logs\Data--12-05-2021-20-34-34.log
DATA
273678578 2 249 1 249 19 130 130 1868 548 1 0 367 168 -1 -1 0 0 26 0 0 26 1 0 19 249 0 0 0
C:\Users\Chris\Desktop\QC\QCmain.optobj
DATA
273678578 0 45 4 30 4 0 0 683 429 1 0 157 840 -1 -1 0 0 9 0 0 9 1 0 4 30 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--12-05-2021-20-10-09.log
DATA
273678578 0 0 1 0 1 52 52 1790 470 1 0 115 -2100 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--12-05-2021-18-35-14.log
DATA
273678578 0 0 1 0 1 0 0 1738 418 1 0 115 -3908 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\DP-QC-12-05-2021-18-35-14.log
DATA
273678578 0 0 1 0 1 182 182 1920 600 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Downloads\452 (1).log
DATA:UNIX
273776882 1 16 67 17 5 338 338 950 1291 1 0 171 -49136 -1 -1 0 0 -1 -1 -1 -1 1 0 5 17 0 0 0
C:\Users\Chris\Downloads\452.log
DATA:UNIX
273776882 0 0 1 100 1 26 26 1764 444 1 0 115 2716 -1 -1 0 0 -1 -1 -1 -1 1 0 1 100 0 0 0
C:\Users\Chris\Desktop\QC\data\mproc_restart_full.do
ASCII
273688442 0 18 18 18 21 960 0 1920 600 1 0 395 504 -1 -1 0 0 1 4 4 1 1 0 21 18 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\docs\toc.html
HTML
269486075 0 -1 22286 -1 22286 104 104 1842 522 0 1 665 299 -1 -1 0 0 -1 -1 -1 -1 1 0 22286 -1 0 -1 0
C:\Users\Chris\Desktop\QC\logs\s0x.txt
DATA:Hard
273678578 1 0 1 12 1 960 0 1920 600 1 0 115 336 -1 -1 0 0 25 0 0 25 1 0 1 12 0 0 0
C:\Users\Chris\AppData\Local\MiKTeX\2.9\miktex\log\pdflatex.log
DATA
273678578 1 120 63 120 126 960 0 1920 600 1 0 885 504 -1 -1 0 0 152 0 0 152 1 0 126 120 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--30-03-2021-14-03-04.log
DATA:UNIX
273776886 1 904 11 905 66 960 0 1920 600 1 0 1025 420 -1 -1 0 0 26 0 0 26 1 0 66 905 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Tournament\stata.toc
TeX:AUX
269496306 0 0 1 4 5 156 156 1542 574 0 0 87 112 -1 -1 0 0 -1 -1 -1 -1 1 0 5 4 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Tournament\D.pkg
DATA
273678578 0 7 1 7 1 130 130 1868 548 1 0 115 196 -1 -1 0 0 -1 -1 -1 -1 1 0 1 7 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\source\exer\LevittationD.htm
HTML
269486075 0 -1 2679 -1 2677 182 182 1568 600 0 1 247 1058 -1 -1 0 0 -1 -1 -1 -1 1 0 2677 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\source\exer\Levittation.htm
HTML
269486075 0 -1 134 -1 2473 182 182 1920 600 0 1 49 552 -1 -1 0 0 -1 -1 -1 -1 1 0 2473 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Demo\stata.toc
TeX:AUX
269496306 0 0 1 6 15 960 0 1920 600 0 0 227 168 -1 -1 0 0 4 0 0 4 1 0 15 6 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Tournament\B.pkg
DATA
273678578 0 0 1 0 1 130 130 1868 548 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Program Files\WinEdt Team\WinEdt 10\Exec\PDF\PDFCloseDoc.edt
ASCII:EDT
269494138 7 52 1 51 1 960 0 1920 600 1 0 73 289 -1 -1 0 0 21 0 0 21 1 0 1 51 0 0 0
C:\Users\Chris\Desktop\QC\text\Paper\Quality_Constraints.aux
TeX:AUX
269496306 0 0 1 0 1 78 78 1816 496 0 0 31 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\text\MBarber_JMP.synctex.gz
DATA
273744114 0 0 1 0 1 52 52 1790 470 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Demo\HomerSimpson.pkg
DATA
273678578 0 6 28 6 2 130 130 1868 548 1 0 129 168 -1 -1 0 0 4 0 0 4 1 0 2 6 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\TakeHome\HomerSimpson.pkg
DATA
273678578 0 0 1 0 1 130 130 1868 548 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\AppEc\docs\stata\Demo\quiz2.pkg
DATA
273678578 0 4 15 4 18 156 156 1894 574 1 0 353 112 -1 -1 0 0 4 0 0 4 1 0 18 4 0 0 0
C:\Users\Chris\Desktop\QC\text\qc.tex
TeX
269496315 2 -1 67712 -1 67714 78 78 1336 338 0 1 81 29596 -1 -1 0 0 1 -1 -1 1 1 0 67714 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DP.oxdoc
HTML
269486075 0 -1 6466 -1 5548 175 175 1561 648 0 1 115 391 -1 -1 0 0 89 -1 -1 89 1 0 5548 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DDP.oxdoc
HTML
269486075 0 -1 16007 -1 3335 78 78 1456 558 0 1 93 713 -1 -1 0 0 86 -1 -1 86 1 0 3335 -1 0 -1 0
C:\Users\Chris\Desktop\QC\logs\Data--27-01-2021-12-02-11.log
DATA
273678578 0 0 1 0 1 0 0 1920 353 1 0 -27 -21909 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\data\mproc_restart_next.do
DATA
5243122 0 43 33 5 1 0 0 1920 353 1 0 115 56 -1 -1 0 0 1 2 2 1 1 0 1 5 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\MainMenu.ini
DATA:INI:EDT
1049594 0 3296 139 3324 29 0 0 1920 353 1 1 313 170 -1 -1 0 0 83 0 0 83 1 0 29 3324 0 -1 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\OxRun.edt
ASCII:EDT
1058682 0 3 60 5 36 0 0 1598 353 1 0 353 85 -1 -1 0 0 91 0 0 91 1 0 36 5 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\OxRunLOUD.edt
ASCII:EDT
1058682 0 2 60 6 37 0 0 1598 353 1 0 361 102 -1 -1 0 0 83 0 0 83 1 0 37 6 0 0 0
C:\Users\Chris\Desktop\QC\Single.hetero.optobj
DATA:UNIX
273776882 0 40 25 40 1 0 0 1262 252 1 0 115 1120 -1 -1 0 0 9 0 0 9 1 0 1 40 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\C4E\source\part2\LinearAlgebra.htm
HTML
269486075 4 -1 14791 -1 14790 0 0 1262 230 0 1 104 322 -1 -1 0 0 20 -1 -1 20 1 0 14790 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm1.html
HTML
269486075 1 -1 1259 -1 1642 0 0 960 603 0 1 49 161 -1 -1 0 0 21 -1 -1 21 1 0 1642 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midtermW20.html
HTML
269486075 1 -1 5362 -1 5704 234 234 1920 706 0 1 49 299 -1 -1 0 0 21 -1 -1 21 1 0 5704 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm2F18.html
HTML
269486075 0 -1 774 -1 21 234 234 1620 703 0 1 280 0 -1 -1 0 0 21 -1 -1 21 1 0 21 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm2F17.html
HTML
269486075 0 -1 0 -1 0 234 234 1920 703 0 1 49 0 -1 -1 0 0 21 -1 -1 21 1 0 0 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm1F18makeup.html
HTML
286263291 1 -1 921 -1 1084 0 0 683 253 0 1 49 460 -1 -1 0 0 21 -1 -1 21 1 0 1084 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm1F18b.html
HTML
269486075 0 -1 738 -1 1910 0 0 960 603 0 1 49 345 -1 -1 0 0 21 -1 -1 21 1 0 1910 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm1F18.html
HTML
269486075 0 -1 1033 -1 3085 0 0 960 603 0 1 49 506 -1 -1 0 0 21 -1 -1 21 1 0 3085 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm1F17b.html
HTML
269486075 0 -1 0 -1 677 960 0 1920 622 0 1 401 184 -1 -1 0 0 21 -1 -1 21 1 0 677 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm1F17.html
HTML
269486075 1 -1 1458 -1 1621 960 0 1920 622 0 1 599 115 -1 -1 0 0 21 -1 -1 21 1 0 1621 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Exams\midterm2.html
HTML
269486075 1 -1 2154 -1 2159 130 130 1842 606 0 1 434 322 -1 -1 0 0 21 -1 -1 21 1 0 2159 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\ValueIteration.ox
Ox
1049586 2 381 60 381 62 0 0 960 668 0 0 885 168 -1 -1 0 0 11 0 0 11 1 0 62 381 0 0 0
C:\Users\Chris\Desktop\QC\toggles.oxh
Ox:UNIX
1147890 0 12 26 5 46 0 0 960 668 0 0 661 140 -1 -1 0 0 35 0 0 35 1 0 46 5 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\ReservationValues.ox
Ox
1049586 2 118 40 118 43 0 0 960 668 0 0 619 168 -1 -1 0 0 11 0 0 11 1 0 43 118 0 0 0
C:\Users\Chris\Desktop\QC\data\mproc12.do
DATA
5243122 2 7 42 7 46 960 0 1920 668 1 0 745 196 -1 -1 0 0 18 0 0 18 1 0 46 7 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Parameters.ox
Ox
1049586 2 559 20 559 25 0 0 960 668 0 0 367 168 -1 -1 0 0 24 0 0 24 1 0 25 559 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Outcomes.h
Ox
1049586 4 13 92 13 91 960 0 1920 722 0 0 1333 252 -1 -1 0 0 19 0 0 19 1 0 91 13 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Outcomes.ox
Ox
1049586 0 253 1 257 1 0 0 960 668 0 0 31 84 -1 -1 0 0 22 0 0 22 1 0 1 257 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Objective.ox
Ox
1049586 0 292 2 291 6 0 0 960 668 0 0 101 112 -1 -1 0 0 23 0 0 23 1 0 6 291 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Methods.ox
Ox
1049586 2 195 34 195 42 0 0 960 668 0 0 605 168 -1 -1 0 0 1 187 187 1 1 0 42 195 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KeaneWolpinJPE1997.h
Ox
1049586 2 77 1 77 19 0 0 960 668 0 0 283 560 -1 -1 0 0 14 0 0 14 1 0 19 77 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\DP.h
Ox
1049586 2 336 18 336 24 0 0 960 668 0 0 353 168 -1 -1 0 0 20 0 0 20 1 0 24 336 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DP.ox
Ox
1049586 0 249 1 236 1 0 0 960 668 0 0 31 140 -1 -1 0 0 16 0 0 16 1 0 1 236 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DDPShared.ox
Ox
1049586 2 126 49 126 56 0 0 960 668 0 0 801 336 -1 -1 0 0 23 0 0 23 1 0 56 126 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Data.ox
Ox
1049586 2 28 55 28 57 0 0 960 668 0 0 815 168 31 280 1 0 1 945 945 1 1 0 57 28 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Bellman.ox
Ox
1049586 2 472 10 472 19 0 0 960 668 0 0 283 168 -1 -1 0 0 21 0 0 21 1 0 19 472 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Bellman.h
Ox
1049586 2 78 6 78 15 0 0 960 668 0 0 437 168 -1 -1 0 0 13 0 0 13 1 0 15 78 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\AuxiliaryValues.h
Ox
1049586 0 57 5 12 1 0 0 960 668 0 0 31 56 -1 -1 0 0 20 0 0 20 1 0 1 12 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\AuxiliaryValues.ox
Ox
1049586 2 95 1 95 3 0 0 960 668 0 0 59 168 -1 -1 0 0 29 0 0 29 1 0 3 95 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\DDP\AllTest.h
Ox
1049586 0 125 1 120 43 0 0 960 668 0 0 619 336 -1 -1 0 0 40 0 0 40 1 0 43 120 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Algorithms.h
Ox
1049586 1 145 2 146 56 0 0 960 668 0 0 843 140 -1 -1 0 0 17 0 0 17 1 0 56 146 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Algorithms.ox
Ox
1049586 0 999 21 999 20 0 0 960 668 0 0 297 336 -1 -1 0 0 24 0 0 24 1 0 20 999 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow_exercises\Nam\aiyagari_main.ox
Ox
1049586 0 0 26 4 1 0 0 960 668 0 0 31 112 -1 -1 0 0 23 0 0 23 1 0 1 4 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\ActionVariable.h
Ox
1049586 0 23 13 23 20 0 0 960 668 0 0 297 112 -1 -1 0 0 20 0 0 20 1 0 20 23 0 0 0
C:\Users\Chris\Downloads\QED Timetable v2 - Feed.tsv
DATA
273678578 0 74 1 74 1 0 0 1712 479 1 0 115 2072 -1 -1 0 0 -1 -1 -1 -1 1 0 1 74 0 0 0
C:\Users\Chris\Downloads\QED Timetable v2 - Feed (2).tsv
DATA
273678578 0 74 1 74 1 208 208 1920 687 1 0 115 588 -1 -1 0 0 -1 -1 -1 -1 1 0 1 74 0 0 0
C:\Users\Chris\Documents\OFFICE\PROF\VITAE\cv_exper.htm
HTML
269486075 0 -1 0 -1 0 156 156 1542 616 0 1 49 0 -1 -1 0 0 55 -1 -1 55 1 0 0 -1 0 -1 0
C:\Users\Chris\Desktop\QC\logs\Data--8-07-2020-13-04-25.log
DATA
273678578 0 0 1 0 1 104 104 1366 356 1 0 115 0 -1 -1 0 0 26 0 0 26 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\Single.hetero.optobj_X
DATA
273678578 0 0 1 0 1 0 0 1262 252 1 0 115 0 -1 -1 0 0 9 0 0 9 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\head.htm
HTML
269486075 0 -1 0 -1 0 104 104 1366 356 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\othpub.htm
HTML
269486075 0 -1 0 -1 0 0 0 1262 252 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\rfpub.htm
HTML
269486075 0 -1 0 -1 0 52 52 1314 304 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\stud.html
HTML
286263291 0 -1 5855 -1 6078 0 0 1262 252 0 1 423 2162 -1 -1 0 0 -1 -1 -1 -1 1 0 6078 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\class.htm
HTML
269486075 0 -1 912 -1 0 52 52 1314 304 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\super.html
HTML
269486075 0 -1 1797 -1 0 78 78 1340 330 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\current.html
HTML
269486075 0 -1 0 -1 0 104 104 1366 356 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\govt.htm
HTML
269486075 0 -1 0 -1 0 52 52 1314 304 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\proj.htm
HTML
269486075 1 -1 54 -1 387 26 26 1288 278 0 1 49 276 -1 -1 0 0 -1 -1 -1 -1 1 0 387 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\wkpap.htm
HTML
269486075 0 -1 425 -1 2381 104 104 1366 356 0 1 49 828 -1 -1 0 0 -1 -1 -1 -1 1 0 2381 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\exper.html
HTML
286263291 0 -1 1672 -1 494 26 26 1288 278 0 1 436 46 -1 -1 0 0 4 -1 -1 4 1 0 494 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\conf.htm
HTML
269486075 0 -1 1780 -1 1780 78 78 1340 330 0 1 88 46 -1 -1 0 0 0 -1 -1 0 1 0 1780 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\grant.htm
HTML
269486075 0 50 2 -1 1747 78 78 1340 330 0 1 89 115 -1 -1 0 0 -1 -1 -1 -1 1 0 1747 -1 0 0 0
C:\Users\Chris\Downloads\FixUserNames1.csv
DATA
273678578 0 0 33 0 33 0 0 960 668 1 0 563 0 -1 -1 0 0 33 0 0 33 1 0 33 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\educ.html
HTML
269486075 0 -1 0 -1 0 0 0 1262 252 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\_includes\cv\admin.htm
HTML
269486075 0 -1 0 -1 0 26 26 1288 278 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\css\reveal.css
DATA:CSS
269484274 0 1120 726 0 1 0 0 960 668 1 0 115 0 -1 -1 0 0 4 0 0 4 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\css\slide.css
DATA:CSS
269484274 0 28 1 27 18 0 0 960 668 1 0 353 168 -1 -1 0 0 8 0 0 8 1 0 18 27 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\templates\DynamicPrograms\MyModelMain.ox
Ox
269485042 2 41 5 41 10 0 0 960 668 0 0 199 252 -1 -1 0 0 17 0 0 17 1 0 10 41 0 0 0
C:\Users\Chris\Desktop\QC\Main.oxdoc
HTML
286263291 0 -1 36 -1 36 0 0 960 668 0 1 49 46 -1 -1 0 0 32 -1 -1 32 1 0 36 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KeaneWolpinREStat1994.h
Ox
269485042 2 20 14 20 20 0 0 960 668 0 0 297 140 -1 -1 0 0 14 0 0 14 1 0 20 20 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KeaneWolpinJPE1997.ox
Ox
269485042 0 19 40 67 13 0 0 960 668 0 0 227 528 -1 -1 0 0 32 0 0 32 1 0 13 67 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KeaneWolpinREStat1994.ox
Ox
269485042 2 16 2 16 7 0 0 960 668 0 0 157 252 -1 -1 0 0 35 0 0 35 1 0 7 16 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\CFMPI\ClientServerTestA.ox
Ox
269485042 0 0 1 0 1 0 0 960 668 0 0 31 0 -1 -1 0 0 77 0 0 77 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\css\reveal.min.css
DATA:CSS
269484274 2 136 23 136 27 0 0 960 668 1 0 479 252 -1 -1 0 0 21 0 0 21 1 0 27 136 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--1-06-2020-16-16-35.log
DATA
273678578 0 0 1 0 1 0 0 960 668 1 0 115 0 -1 -1 0 0 26 0 0 26 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\css\doc.css
DATA:CSS
269484274 0 397 1 446 1 130 130 1314 526 1 0 115 84 -1 -1 0 0 29 0 0 29 1 0 1 446 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\AiyagariAgent.ox
Ox
269485042 2 36 87 36 93 130 130 1516 590 0 0 1319 252 -1 -1 0 0 88 0 0 88 1 0 93 36 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\month.bat
Application
269485042 0 0 1 0 1 0 0 1262 233 0 0 31 0 -1 -1 0 0 10 0 0 10 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\academicpages.github.io\README.md
HTML
269486075 0 -1 750 -1 1096 104 104 1816 564 0 1 550 23 -1 -1 0 0 160 -1 -1 160 1 0 1096 -1 0 0 0
C:\Users\Chris\Desktop\kahn.txt
ASCII
273688443 0 5 1 4 1 208 208 906 772 1 0 115 112 -1 -1 0 0 -1 -1 -1 -1 1 0 1 4 0 0 0
C:\Users\Chris\Desktop\activate.txt
ASCII
273688443 0 0 1 36 1 208 208 1920 668 1 0 115 168 -1 -1 0 0 -1 -1 -1 -1 1 0 1 36 0 0 0
C:\Users\Chris\Documents\OFFICE\PROF\VITAE\cv_info.htm
HTML
269486075 1 -1 2 -1 881 182 182 1894 642 0 1 49 299 -1 -1 0 0 -1 -1 -1 -1 1 0 881 -1 0 -1 0
C:\Users\Chris\Google Drive\ier-review.txt
ASCII
273688443 1 0 1 128 1 26 26 1412 486 1 0 115 616 -1 -1 0 0 49 9 9 49 1 0 1 128 0 0 0
C:\Users\Chris\Desktop\QC\Single.ability-trans.optobj
DATA
273678578 0 0 1 0 1 0 0 960 668 1 0 115 -504 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\data\mproc_restart.do
DATA
5243122 0 20 5 27 6 960 0 1920 890 1 0 185 756 -1 -1 0 0 1 2 2 1 1 0 6 27 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--15-05-2020-17-03-57.log
DATA
273678578 0 0 1 0 1 960 0 1920 741 1 0 115 -4148 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--15-05-2020-16-08-15.log
DATA
273678578 0 0 1 0 1 960 0 1920 741 1 0 115 -4116 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--15-05-2020-13-15-31.log
DATA
273678578 2 154 169 154 174 0 0 1764 388 1 0 1865 252 -1 -1 0 0 -1 -1 -1 -1 1 0 174 154 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--2-08-2019-15-27-22.log
DATA
273678578 0 138 63 31 1 156 156 1920 544 1 0 -390 -2777 -1 -1 0 0 -1 -1 -1 -1 1 0 1 31 0 0 0
C:\Users\Chris\Desktop\QC\Single.ability-retry.optobj
DATA
273678578 0 26 5 26 5 0 0 683 429 1 0 171 -700 -1 -1 0 0 9 0 0 9 1 0 5 26 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\DDP\AllTest.ox
Ox
269485042 0 63 2 63 28 0 0 960 412 0 0 451 252 -1 -1 0 0 21 0 0 21 1 0 28 63 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-14-08-23.log
DATA
273678578 0 0 1 0 1 52 52 1094 412 1 0 115 -1848 -1 -1 0 0 26 0 0 26 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-14-16-06.log
DATA
273678578 0 0 1 0 1 104 104 1868 492 1 0 115 -3780 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-14-00-45.log
DATA
273678578 0 0 1 0 1 26 26 1790 414 1 0 115 -3897 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-13-23-08.log
DATA
273678578 1 97 27 97 28 0 0 1764 388 1 0 493 364 -1 -1 0 0 -1 -1 -1 -1 1 0 28 97 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-12-49-08.log
DATA
273678578 0 0 1 555 1 130 130 1894 518 1 0 115 -1876 -1 -1 0 0 -1 -1 -1 -1 1 0 1 555 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-11-33-30.log
DATA
273678578 0 0 1 571 25 26 26 1790 414 1 0 451 252 -1 -1 0 0 -1 -1 -1 -1 1 0 25 571 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-12-15-55.log
DATA
273678578 0 0 1 0 1 78 78 1842 466 1 0 115 -9001 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-10-28-27.log
DATA
273678578 0 0 1 0 1 130 130 1358 498 1 0 115 -2900 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-11-24-43.log
DATA
273678578 0 0 1 0 1 156 156 1920 544 1 0 115 -4032 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-10-59-00.log
DATA
273678578 0 36 73 83 26 52 52 1816 440 1 0 465 -280 -1 -1 0 0 -1 -1 -1 -1 1 0 26 83 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-11-13-01.log
DATA
273678578 0 0 1 0 1 104 104 1868 492 1 0 115 -2016 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--13-05-2020-10-49-11.log
DATA
273678578 0 0 1 0 1 26 26 1790 414 1 0 115 -4233 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\templates\DynamicPrograms\MyModel.ox
Ox
269485042 0 0 1 0 1 52 52 1816 440 0 0 31 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--5-05-2020-18-17-04.log
DATA
273678578 0 0 1 62 31 52 52 1816 415 1 0 535 140 -1 -1 0 0 26 0 0 26 1 0 31 62 0 0 0
C:\Users\Chris\Desktop\QC\savedoutput\Data--30-04-2020-16-17-21.log
DATA
273678578 0 0 1 62 18 182 182 1894 672 1 0 353 168 -1 -1 0 0 26 0 0 26 1 0 18 62 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--5-05-2020-19-14-49.log
DATA
273678578 0 0 1 0 1 78 78 1894 340 1 0 115 0 -1 -1 0 0 26 0 0 26 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\talk.html
HTML
269486075 0 -1 31540 -1 31543 78 78 1262 474 0 1 49 161 -1 -1 0 0 15 -1 -1 15 1 0 31543 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\css\screen.css
DATA:CSS
269484274 0 0 1 0 1 78 78 1262 474 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\F2019\assign3b.htm
HTML
286263291 1 -1 3917 -1 4777 26 26 1366 126 0 1 357 759 -1 -1 0 0 21 -1 -1 21 1 0 4777 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\F2019\searchdata.txt
ASCII
273688443 0 0 1 0 1 130 130 1764 753 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\F2019\assign3.htm
HTML
269486075 0 -1 3010 -1 0 26 26 1366 126 0 1 49 0 -1 -1 0 0 21 -1 -1 21 1 0 0 -1 0 -1 0
C:\Users\Chris\Desktop\QC\logs\Data--10-11-2019-16-16-23.log
DATA
273678578 0 0 1 0 1 78 78 1868 379 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\Non-Stationary_Search.txt
ASCII
273688443 0 0 1 0 1 208 208 1842 831 1 0 115 -1905 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow_exercises\Nam\aiyagari.ox
Ox
269485042 0 53 6 28 4 0 0 960 412 0 0 115 280 -1 -1 0 0 17 0 0 17 1 0 4 28 0 0 0
C:\Users\Chris\Desktop\QC\logs\Obj-Single-ability-retry-9-11-2019-10-34-52.log
DATA
273678578 0 0 1 0 1 0 0 960 412 1 0 115 0 -1 -1 0 0 94 0 0 94 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\savedoutput\Data-Single.ability-retry.log.txt
ASCII:UNIX
5351291 0 0 1 0 1 960 0 1920 909 1 0 115 -3907 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--8-11-2019-10-10-32.log
DATA
5243122 0 0 1 0 1 0 0 960 909 1 0 115 -3907 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--7-11-2019-9-47-24.log
DATA:UNIX
273776882 0 0 1 150 1 104 104 949 472 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 150 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--6-11-2019-9-57-19.log
DATA:UNIX
273776882 0 0 1 134 79 26 26 1816 327 1 0 702 976 -1 -1 0 0 -1 -1 -1 -1 1 0 79 134 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\test7Pinf.csv
DATA:UNIX
273776882 0 0 1 0 1 26 26 1660 649 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\F2019\doc.css
DATA:CSS
269549810 0 183 4 183 12 52 52 1236 467 1 0 269 280 -1 -1 0 0 -1 -1 -1 -1 1 0 12 183 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\F2019\assign2.htm
HTML
269486075 0 -1 278 -1 97 0 0 1184 415 0 1 49 46 -1 -1 0 0 -1 -1 -1 -1 1 0 97 -1 0 -1 0
C:\Users\Chris\Desktop\QC\logs\Data--2-08-2019-18-18-24.log
DATA
273678578 0 0 1 0 1 0 0 1262 280 1 0 115 0 -1 -1 0 0 26 0 0 26 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\Single.ability-Scaling.optobj
DATA:UNIX
273776882 0 4 2 3 4 0 0 683 429 1 0 157 -756 -1 -1 0 0 9 0 0 9 1 0 4 3 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\Exec\Ox\OxRun.edt
ASCII:EDT
269494138 0 5 143 5 1 0 0 681 370 1 0 73 85 -1 -1 0 0 83 0 0 83 1 0 1 5 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\Exec\Ox\OxRunLOUD.edt
ASCII:EDT
269494138 0 1 53 5 27 681 0 1362 370 1 0 281 85 -1 -1 0 0 83 0 0 83 1 0 27 5 0 0 0
C:\Users\Chris\Desktop\QC\.gitignore
DATA
273678578 0 0 1 7 5 78 78 1456 404 1 0 171 196 -1 -1 0 0 6 0 0 6 1 0 5 7 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--9-07-2019-12-09-33.log
DATA
273678578 0 0 1 0 1 130 130 1842 618 1 0 115 -3780 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--9-07-2019-11-59-15.log
DATA
273678578 0 0 1 0 1 78 78 1790 566 1 0 115 -2100 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\Single.ability-Scaling.optobj.hold4
DATA
273678578 0 3 5 5 3 26 26 1738 514 1 0 143 140 -1 -1 0 0 -1 -1 -1 -1 1 0 3 5 0 0 0
C:\Users\Chris\Desktop\QC\SimulatedAnnealing-IterStart-ability-Scaling.optobj
DATA
273678578 0 0 1 0 1 52 52 1314 332 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\Wmat.ox
Ox
269485042 0 0 1 4 1 52 52 1314 332 0 0 31 112 -1 -1 0 0 19 0 0 19 1 0 1 4 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Makefile.inc
DATA
273678578 0 5 1 7 26 683 0 1366 315 1 0 507 196 -1 -1 0 0 22 0 0 22 1 0 26 7 0 0 0
C:\Users\Chris\Desktop\QC\Makefile.inc
DATA
273678578 0 6 21 6 21 0 0 683 429 1 0 395 112 -1 -1 0 0 22 0 0 22 1 0 21 6 0 0 0
C:\Users\Chris\Desktop\QC\Makefile
TeX
269496315 0 -1 49 -1 95 0 0 683 429 0 1 277 168 -1 -1 0 0 20 -1 -1 20 1 0 95 -1 0 0 0
C:\Users\Chris\Desktop\QC\Single.ability.optobj
DATA:UNIX
273776882 0 1 10 1 15 0 0 683 429 1 0 311 28 -1 -1 0 0 9 0 0 9 1 0 15 1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\CFMPI.ox
Ox
269485042 0 229 68 229 74 960 0 1920 684 0 0 1053 168 -1 -1 0 0 20 0 0 20 1 0 74 229 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Variables.h
Ox
269485042 0 0 1 11 1 0 0 683 429 0 0 31 308 -1 -1 0 0 74 0 0 74 1 0 1 11 0 0 0
C:\Users\Chris\Desktop\QC\Single.restart.optobj
DATA
273678578 0 2 2 7 23 0 0 683 429 1 0 423 196 -1 -1 0 0 6 0 0 6 1 0 23 7 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--27-05-2019-22-02-48.log
DATA
273678578 0 0 1 77 1 0 0 683 429 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 77 0 0 0
C:\Users\Chris\Desktop\QC\savedoutput\restart_single_Data--21-05-2019-9-37-17.log.txt
ASCII:UNIX
273786747 0 0 1 85 1 130 130 1366 429 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 85 0 0 0
C:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\C4E\source\part2\Optimization1.htm
HTML
269486075 0 -1 0 -1 0 78 78 1314 377 0 1 49 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--23-04-2019-12-52-52.log
DATA
273678578 0 0 1 54 1 0 0 683 429 1 0 115 364 -1 -1 0 0 -1 -1 -1 -1 1 0 1 54 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--23-04-2019-12-02-17.log
DATA
273678578 0 0 1 0 1 0 0 683 429 1 0 115 -1260 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--23-04-2019-11-46-05.log
DATA
273678578 0 0 1 0 1 0 0 683 429 1 0 115 -1680 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--23-04-2019-11-27-59.log
DATA
273678578 0 0 1 0 1 0 0 683 429 1 0 115 -2304 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--23-04-2019-11-24-18.log
DATA
273678578 0 0 1 141 8 0 0 683 429 1 0 213 364 -1 -1 0 0 -1 -1 -1 -1 1 0 8 141 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--23-04-2019-11-15-14.log
DATA
273678578 0 0 1 0 6 0 0 683 429 1 0 185 0 -1 -1 0 0 -1 -1 -1 -1 1 0 6 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--17-04-2019-13-31-54.log
DATA
5243122 0 0 1 0 1 0 0 683 429 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--17-04-2019-13-24-20.log
DATA
273678578 0 7 12 37 7 104 104 1340 403 1 0 199 308 -1 -1 0 0 -1 -1 -1 -1 1 0 7 37 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--16-04-2019-15-31-50.log
DATA
273678578 2 30 8 30 12 0 0 683 429 1 0 269 -896 -1 -1 0 0 26 0 0 26 1 0 12 30 0 0 0
C:\Users\Chris\Desktop\QC\data\Graphs.do
DATA
273678578 0 1 14 27 1 683 0 1366 315 1 0 115 28 -1 -1 0 0 10 0 0 10 1 0 1 27 0 0 0
C:\Users\Chris\Desktop\QC\logs\Data--16-04-2019-15-22-19.log
DATA
273678578 0 14 30 9 15 0 0 683 429 1 0 311 56 -1 -1 0 0 -1 -1 -1 -1 1 0 15 9 0 0 0
C:\Users\Chris\Desktop\QC\source\QC.oxdoc
HTML
286263291 2 -1 1452 -1 1458 683 0 1366 315 0 1 1068 207 -1 -1 0 0 14741 -1 -1 14741 1 0 1458 -1 0 0 0
C:\Users\Chris\Desktop\QC\Fit.linear20.optobj
DATA
273678578 0 100 89 0 1 0 0 677 684 1 0 115 0 -1 -1 0 0 1 78 78 1 1 0 1 0 0 0 0
C:\Users\Chris\Desktop\QC\include\QCShared.h.hold
Ox
269485042 0 92 64 93 9 52 52 1288 351 0 0 143 224 -1 -1 0 0 -1 -1 -1 -1 1 0 9 93 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DDP.ox
Ox
269485042 0 0 1 1 1 234 234 1620 703 0 0 31 28 -1 -1 0 0 17 0 0 17 1 0 1 1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\DDP.h
Ox
269485042 0 0 1 0 1 78 78 1013 338 0 0 31 0 -1 -1 0 0 18 0 0 18 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\docs\Makefile
DATA
273678578 0 24 1 24 2 960 0 1920 741 1 0 171 581 -1 -1 0 0 1 0 0 1 1 0 2 24 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\docs\oxdoc.sed
DATA
273678578 0 0 1 0 1 78 78 1314 377 1 0 115 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\docs\CFMPI\Makefile
DATA
273678578 0 0 1 10 13 52 52 1288 351 1 0 325 280 -1 -1 0 0 -1 -1 -1 -1 1 0 13 10 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\Examples.edt
ASCII:EDT
269494138 0 3 60 3 54 52 52 966 325 1 0 497 51 -1 -1 0 0 83 0 0 83 1 0 54 3 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\DebugExamples.edt
ASCII:EDT
269494138 0 2 60 2 54 52 52 966 370 1 0 497 34 -1 -1 0 0 83 0 0 83 1 0 54 2 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\OxDoc.edt
ASCII:EDT
269494138 0 0 1 0 1 0 0 914 318 1 0 73 0 -1 -1 0 0 64 0 0 64 1 0 1 0 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\OxCompile.edt
ASCII:EDT
269494138 0 2 60 2 54 130 130 1044 448 1 0 497 34 -1 -1 0 0 83 0 0 83 1 0 54 2 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\Ox\GCC.edt
ASCII:EDT
269494138 0 0 1 0 1 104 104 1018 422 1 0 73 0 -1 -1 0 0 93 0 0 93 1 0 1 0 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\Exec\Ox\OxCompile.edt
ASCII:EDT
269494138 0 4 35 2 54 519 0 1039 370 1 0 497 34 -1 -1 0 0 83 0 0 83 1 0 54 2 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\Exec\Ox\Examples.edt
ASCII:EDT
269494138 2 2 53 2 57 75 75 1453 475 1 0 521 34 -1 -1 0 0 83 0 0 83 1 0 57 2 0 0 0
C:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\Exec\Ox\DebugExamples.edt
ASCII:EDT
269494138 0 0 1 2 54 52 52 1288 370 1 0 497 34 -1 -1 0 0 -1 -1 -1 -1 1 0 54 2 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\misc\WstarTestc.ox
Ox
269485042 2 9 11 9 23 960 0 1920 741 0 0 381 252 -1 -1 0 0 24 0 0 24 1 0 23 9 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\misc\WstarTestc.h
Ox
1049586 2 4 16 4 31 960 0 1920 741 0 0 451 112 -1 -1 0 0 14 0 0 14 1 0 31 4 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\misc\WstarTestb.h
Ox
1049586 2 4 16 4 31 960 0 1920 741 0 0 451 112 -1 -1 0 0 14 0 0 14 1 0 31 4 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\misc\WstarTest.h
Ox
1049586 2 6 17 6 32 960 0 1920 741 0 0 465 112 -1 -1 0 0 14 0 0 14 1 0 32 6 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\WolpinJPE1984.oxdoc
HTML
17827835 2 -1 1349 -1 1364 960 0 1920 741 0 1 489 115 -1 -1 0 0 97 -1 -1 97 1 0 1364 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\WolpinJPE1984.ox
Ox
1049586 2 15 7 15 16 960 0 1920 741 0 0 283 308 -1 -1 0 0 27 0 0 27 1 0 16 15 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\WolpinJPE1984.h
Ox
1049586 0 3 35 3 27 960 0 1920 741 0 0 395 84 -1 -1 0 0 14 0 0 14 1 0 27 3 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Variables.oxdoc
HTML
1050619 2 -1 48468 -1 48475 960 0 1920 722 0 1 214 253 -1 -1 0 0 93 -1 -1 93 1 0 48475 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Variables.ox
Ox
1049586 1 0 1 10 1 104 104 1362 340 0 0 31 280 -1 -1 0 0 23 0 0 23 1 0 1 10 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\ValueIteration.h
Ox
1049586 0 100 20 100 26 960 0 1920 741 0 0 381 168 -1 -1 0 0 18 0 0 18 1 0 26 100 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\RustRothwellJAE1995.ox
Ox
1049586 0 8 63 8 34 960 0 1920 741 0 0 535 224 -1 -1 0 0 33 0 0 33 1 0 34 8 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\RustRothwellJAE1995.h
Ox
1049586 2 4 23 4 30 960 0 1920 741 0 0 437 112 -1 -1 0 0 14 0 0 14 1 0 30 4 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\RosenzweigWolpinJPE1993.oxdoc
HTML
1050619 0 -1 79 -1 150 960 0 1920 741 0 1 49 115 -1 -1 0 0 124 -1 -1 124 1 0 150 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\RosenzweigWolpinJPE1993.ox
Ox
1049586 2 53 30 53 33 960 0 1920 741 0 0 479 168 -1 -1 0 0 37 0 0 37 1 0 33 53 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\RosenzweigWolpinJPE1993.h
Ox
1049586 0 5 32 3 1 960 0 1920 741 0 0 31 84 -1 -1 0 0 14 0 0 14 1 0 1 3 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\ReservationValues.h
Ox
1049586 2 37 52 37 67 960 0 1920 741 0 0 955 112 -1 -1 0 0 79 0 0 79 1 0 67 37 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Parameters.oxdoc
HTML
1050619 2 -1 3660 -1 3666 78 78 1464 585 0 1 918 345 -1 -1 0 0 60 -1 -1 60 1 0 3666 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\ParallelObjective.h
Ox
1049586 2 10 43 10 55 958 0 1916 676 0 0 787 280 -1 -1 0 0 16 0 0 16 1 0 55 10 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\wolpin1997.txt
ASCII
5252987 0 0 1 0 1 0 0 1288 194 1 0 115 0 -1 -1 0 0 42 0 0 42 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\wolpin1987match.do
ASCII
5252986 0 0 1 13 19 78 78 1366 272 1 0 367 336 -1 -1 0 0 74 0 0 74 1 0 19 13 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\WolpinEmet1987.oxdoc
HTML
17827835 2 -1 1691 -1 1694 960 0 1920 741 0 1 478 253 -1 -1 0 0 100 -1 -1 100 1 0 1694 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\WolpinEmet1987.ox
Ox
1049586 0 42 1 44 1 960 0 1920 741 0 0 31 461 -1 -1 0 0 28 0 0 28 1 0 1 44 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\WolpinEmet1987.h
Ox
1049586 1 7 85 7 76 960 0 1920 741 0 0 1165 196 -1 -1 0 0 14 0 0 14 1 0 76 7 0 0 0
C:\Users\Chris\Documents\OFFICE\software\pubcss\dist\acm-sigchi\templates\acm-sigchi-sample.html
HTML
1050619 0 -1 21121 -1 14797 104 104 1490 696 0 1 236 345 -1 -1 0 0 15 -1 -1 15 1 0 14797 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\pubcss\README.md
HTML
1050619 1 -1 929 -1 954 182 182 1568 658 0 1 676 368 -1 -1 0 0 8 -1 -1 8 1 0 954 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\pubcss\dist\css\pubcss-acm-sig.css
DATA:CSS
1048818 0 183 5 178 18 683 0 1366 315 1 0 353 280 -1 -1 0 0 18 0 0 18 1 0 18 178 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Objective.oxdoc
HTML
1050619 2 -1 2087 -1 2093 78 78 1336 319 0 1 929 368 -1 -1 0 0 60 -1 -1 60 1 0 2093 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Objective.h
Ox
1049586 2 107 24 107 27 960 0 1920 722 0 0 479 140 -1 -1 0 0 21 0 0 21 1 0 27 107 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Methods.h
Ox
1049586 2 50 50 50 52 960 0 1920 722 0 0 745 168 -1 -1 0 0 1 110 110 1 1 0 52 50 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\Makefile
DATA
5243122 0 0 1 0 1 960 0 1920 741 1 0 115 0 -1 -1 0 0 31 0 0 31 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Makefile
TeX
1060859 0 -1 580 -1 580 26 26 1412 445 0 1 95 336 -1 -1 0 0 23 -1 -1 23 1 0 580 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\css\oxdoc-lite.css
DATA:CSS
1114354 0 6 1 0 1 960 0 1920 722 1 0 115 0 -1 -1 0 0 1 0 0 1 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\OODP\lunch.html
HTML
17827835 1 -1 16454 -1 16639 0 0 960 741 0 1 49 368 -1 -1 0 0 15 -1 -1 15 1 0 16639 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\LSemp_main.ox
Ox
1049586 0 5 1 5 1 960 0 1920 722 0 0 31 140 -1 -1 0 0 20 0 0 20 1 0 1 5 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\LSemp.ox
Ox
1049586 2 17 25 17 31 960 0 1920 722 0 0 451 168 -1 -1 0 0 17 0 0 17 1 0 31 17 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\LS_main.ox
Ox
1049586 2 5 5 5 12 960 0 1920 722 0 0 185 140 -1 -1 0 0 17 0 0 17 1 0 12 5 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\LS.ox
Ox
1049586 2 30 1 30 8 960 0 1920 722 0 0 129 498 -1 -1 0 0 17 0 0 17 1 0 8 30 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KennetJAE1994.ox
Ox
1049586 0 66 16 66 15 960 0 1920 741 0 0 227 364 -1 -1 0 0 27 0 0 27 1 0 15 66 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KennetJAE1994.h
Ox
1049586 0 24 30 30 19 960 0 1920 741 0 0 535 153 -1 -1 0 0 14 0 0 14 1 0 19 30 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\KeaneWolpinREStat1994.oxdoc
HTML
1050619 0 -1 0 -1 0 182 182 1568 670 0 1 49 0 -1 -1 0 0 86 -1 -1 86 1 0 0 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\replications\IJCEmet2009.ox
Ox
1049586 2 53 6 53 14 960 0 1920 741 0 0 255 308 -1 -1 0 0 67 0 0 67 1 0 14 53 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\FiveO\GetStartedFiveO.ox
Ox
1049586 0 0 1 17 23 234 234 1620 741 0 0 339 224 -1 -1 0 0 12 0 0 12 1 0 23 17 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\DDP\GetStartedData.ox
Ox
1049586 2 24 15 24 24 960 0 1920 703 0 0 353 336 -1 -1 0 0 90 0 0 90 1 0 24 24 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\GetStarted
TeX
1060859 0 -1 16548 -1 16133 52 52 1310 293 0 1 613 84 -1 -1 0 0 57 -1 -1 57 1 0 16133 -1 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\FiveO.oxdoc
HTML
1050619 0 -1 11233 -1 11239 26 26 1284 267 0 1 445 138 -1 -1 0 0 60 -1 -1 60 1 0 11239 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\FiveO.ox
Ox
1049586 0 0 1 0 1 182 182 1568 689 0 0 31 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Data.oxdoc
HTML
1050619 0 -1 11434 -1 11475 960 0 1920 703 0 1 258 207 -1 -1 0 0 4740 -1 -1 4740 1 0 11475 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Data.h
Ox
1049586 1 2 11 2 1 960 0 1920 703 0 0 31 56 -1 -1 0 0 1 6 6 1 1 0 1 2 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\CFMPI.oxh
Ox
1049586 0 64 45 64 58 960 0 1920 703 0 0 829 364 -1 -1 0 0 20 0 0 20 1 0 58 64 0 0 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Bellman.oxdoc
HTML
1050619 2 -1 6112 -1 6118 960 0 1920 684 0 1 1028 115 -1 -1 0 0 120 -1 -1 120 1 0 6118 -1 0 -1 0
C:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Algorithms.oxdoc
HTML
1050619 0 -1 0 -1 0 234 234 1620 741 0 1 49 0 -1 -1 0 0 66 -1 -1 66 1 0 0 -1 0 0 0