-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprogress_file.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1952 lines (1952 loc) · 167 KB
/
progress_file.csv
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
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-01-10-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-08-30-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-12-06-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-08-02-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-11-08-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-01-31-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-01-17-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-10-18-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-07-12-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-01-03-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-11-22-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-12-20-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-10-11-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-11-15-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-10-25-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-08-09-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-09-20-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-11-01-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-02-07-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-07-19-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-11-29-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-12-13-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-02-14-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-08-23-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2022-01-24-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-09-13-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-08-16-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-10-04-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-07-05-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-07-26-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-09-06-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-12-27-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-4_week_ensemble/2021-09-27-COVIDhub-4_week_ensemble.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-01-09-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-01-17-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-02-14-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-01-31-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-11-29-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-07-26-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-01-03-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-08-16-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-01-24-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-08-09-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-10-25-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-11-01-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-12-13-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-09-27-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-12-06-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-08-30-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-12-27-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-09-20-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-08-02-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2022-02-07-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-09-13-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-07-12-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-10-04-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-08-23-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-07-05-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-10-18-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-12-20-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-09-06-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-10-11-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-07-19-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/MIT-Cassandra/2021-11-08-MIT-Cassandra.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-01-24-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-01-17-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-11-01-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-01-03-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-01-31-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-11-15-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-01-10-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-10-25-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-12-06-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-11-22-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-12-27-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-10-11-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-02-14-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-10-18-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-11-29-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2022-02-07-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-10-04-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-12-13-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-11-08-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/UT_GISAG-SPDM/2021-12-20-UT_GISAG-SPDM.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-01-16-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-09-19-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-10-31-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-08-29-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-02-13-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-08-01-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-01-23-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-10-03-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-09-12-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-12-12-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-12-26-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-07-25-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-08-22-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-07-18-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-01-02-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-11-14-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-07-11-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-11-21-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-12-19-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-08-15-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-01-09-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-08-08-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-07-04-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-09-26-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-09-05-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-01-30-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-11-28-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2022-02-06-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-10-24-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-12-05-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-11-07-CU-nochange.csv
../covid19-forecast-hub/data-processed/CU-nochange/2021-10-17-CU-nochange.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-10-10-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-10-24-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-09-12-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-10-31-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-08-01-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-09-19-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-11-07-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-01-16-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-02-13-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-07-11-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-11-14-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-12-12-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-07-25-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-09-26-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-02-06-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-07-04-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-08-29-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-12-26-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-11-28-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-01-23-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-10-03-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-10-17-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-12-19-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-09-05-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-08-15-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-11-21-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-01-30-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-08-08-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-12-27-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-01-02-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-08-22-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2022-01-09-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-12-05-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/BPagano-RtDriven/2021-07-18-BPagano-RtDriven.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-13-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-28-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-05-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-01-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-14-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-19-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-26-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-11-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-21-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-21-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-19-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-24-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-25-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-25-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-29-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-19-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-16-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-24-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-21-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-09-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-02-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-20-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-09-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-23-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-21-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-21-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-04-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-31-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2022-01-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-02-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-13-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-12-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-24-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-06-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-06-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-15-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-11-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-16-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-29-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-05-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-30-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-18-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-30-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-22-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-05-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-07-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-28-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-23-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-24-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-27-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-08-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-10-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-05-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-10-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-15-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-07-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-15-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-22-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-02-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-10-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2022-01-02-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-23-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-18-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-20-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-30-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-04-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-16-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-27-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2022-01-04-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-17-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-26-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-07-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-20-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-10-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-30-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-11-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-13-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-12-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-17-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-28-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-18-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-19-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-16-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-19-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-09-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-26-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-20-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-26-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-06-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-04-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-25-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-06-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-03-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-04-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-08-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-19-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-14-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-27-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-29-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-05-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-08-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-15-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-12-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-06-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-27-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-26-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-07-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-14-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-25-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-11-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-12-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-02-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-05-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-09-04-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-18-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-01-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-11-01-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-31-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-10-28-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-08-12-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-01-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-25-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-14-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-07-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-12-20-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/FAIR-NRAR/2021-07-13-FAIR-NRAR.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2021-11-14-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2021-07-04-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2021-08-01-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2022-02-13-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2022-02-06-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2021-08-22-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2021-11-21-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/Covid19Sim-Simulator/2021-08-08-Covid19Sim-Simulator.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-12-06-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-11-01-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-07-26-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-10-11-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-01-31-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-01-24-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-01-10-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-02-14-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-09-13-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-01-17-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-08-02-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-02-07-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-12-13-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-08-16-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-10-18-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-07-19-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-07-05-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-12-20-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-09-06-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-08-09-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-09-20-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-11-15-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-08-30-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-11-22-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-08-23-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2022-01-03-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-10-25-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-12-27-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-09-27-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-10-04-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-11-08-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-07-12-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/COVIDhub-trained_ensemble/2021-11-29-COVIDhub-trained_ensemble.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-11-08-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-12-27-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-10-04-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-08-09-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-09-13-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-07-12-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-12-13-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-09-20-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-09-27-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-07-05-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-12-20-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-12-06-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-08-30-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-11-15-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-11-01-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-09-06-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-11-22-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-07-19-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/FDANIHASU-Sweight/2021-11-29-FDANIHASU-Sweight.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-11-01-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-12-20-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-09-20-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-12-13-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-07-05-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-07-19-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-07-12-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2022-02-07-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-08-23-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2022-01-17-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-12-06-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2022-01-03-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-08-16-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-12-27-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2022-02-14-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-07-26-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2022-01-31-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-08-02-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-10-04-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-09-06-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2022-01-24-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-08-30-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-11-29-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-11-08-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-09-27-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-09-13-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/UMich-RidgeTfReg/2021-10-25-UMich-RidgeTfReg.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-10-04-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-09-27-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-11-01-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-09-06-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-12-27-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-08-23-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-11-08-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-08-30-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-07-26-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-07-12-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2022-01-17-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-11-15-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2022-01-10-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-10-11-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-07-19-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2022-02-07-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-10-25-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2022-02-14-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-10-18-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2022-01-31-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2022-01-03-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-11-29-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-08-09-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-11-22-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-09-20-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-07-05-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-08-16-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-12-20-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/DDS-NBDS/2021-08-02-DDS-NBDS.csv
../covid19-forecast-hub/data-processed/USF-STPM/2021-08-16-USF-STPM.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-10-31-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-10-17-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-11-07-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-10-04-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-09-26-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-08-30-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-11-21-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-09-13-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-07-18-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-10-24-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-07-05-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-12-12-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-09-19-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-12-05-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-11-14-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-07-11-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-10-10-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-09-05-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-11-29-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-12-19-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-07-26-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/Google_Harvard-CPF/2021-08-23-Google_Harvard-CPF.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-11-29-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-12-27-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-12-20-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-11-15-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-11-08-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-11-22-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-12-06-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/MUNI-VAR/2021-12-13-MUNI-VAR.csv
../covid19-forecast-hub/data-processed/UMass-trends_ensemble/2022-01-31-UMass-trends_ensemble.csv
../covid19-forecast-hub/data-processed/UMass-trends_ensemble/2022-01-17-UMass-trends_ensemble.csv
../covid19-forecast-hub/data-processed/UMass-trends_ensemble/2022-01-24-UMass-trends_ensemble.csv
../covid19-forecast-hub/data-processed/UMass-trends_ensemble/2022-02-14-UMass-trends_ensemble.csv
../covid19-forecast-hub/data-processed/UMass-trends_ensemble/2022-02-07-UMass-trends_ensemble.csv
../covid19-forecast-hub/data-processed/UMass-trends_ensemble/2022-01-10-UMass-trends_ensemble.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-10-25-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-01-31-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-11-22-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-08-02-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-12-20-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-02-07-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-12-13-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-02-14-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-07-05-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-09-13-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-01-17-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-08-09-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-10-04-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-12-27-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-11-01-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-07-12-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-10-18-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-11-08-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-10-11-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-11-15-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-12-06-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-07-26-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-11-29-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-08-23-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-09-20-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-01-10-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-01-03-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-08-30-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-09-27-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2022-01-24-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/FRBSF_Wilson-Econometric/2021-07-19-FRBSF_Wilson-Econometric.csv
../covid19-forecast-hub/data-processed/PSI-DICE/2022-02-14-PSI-DICE.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-11-22-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-09-20-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-01-03-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-09-06-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-07-19-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-02-14-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-10-18-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-01-31-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-08-09-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-09-27-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-10-11-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-08-23-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-08-30-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-10-04-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-11-01-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-12-20-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-09-13-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-02-07-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-07-05-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-10-25-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-01-24-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-07-26-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-08-16-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-08-02-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-07-12-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-01-17-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-11-08-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-12-13-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-11-29-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-11-15-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-12-27-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2022-01-10-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/MUNI-ARIMA/2021-12-06-MUNI-ARIMA.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-12-26-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-11-14-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-01-16-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-01-23-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-08-22-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-11-21-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-11-28-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-12-12-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-09-05-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-10-10-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-09-12-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-02-06-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-09-19-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-09-26-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-12-19-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-10-24-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-01-02-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-08-29-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-10-17-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-01-30-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-10-03-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-01-09-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-12-05-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-10-31-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2021-11-07-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/CUBoulder-COVIDLSTM/2022-02-13-CUBoulder-COVIDLSTM.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-07-11-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-09-12-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-08-22-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-10-24-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-12-12-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-11-07-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-12-05-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-11-21-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2022-02-13-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-10-10-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-07-18-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-07-04-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-09-05-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-11-28-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-10-03-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-12-19-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-09-26-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-07-25-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2022-01-16-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-08-15-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-08-29-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-08-01-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-09-19-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/JHU_UNC_GAS-StatMechPool/2021-08-08-JHU_UNC_GAS-StatMechPool.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-07-04-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-08-15-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-08-01-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-09-05-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-07-11-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-08-29-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-08-22-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-07-25-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-07-18-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/Geneva-DetGrowth/2021-08-08-Geneva-DetGrowth.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-08-08-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-11-28-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-11-07-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-11-14-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-09-12-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-12-19-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-10-24-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-12-26-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-07-18-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-08-01-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-01-09-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-01-30-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-11-21-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-12-12-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-02-13-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-09-05-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-09-26-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-02-06-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-07-25-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-01-02-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-10-31-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-07-11-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-10-17-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-12-05-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-09-19-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-08-22-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-08-15-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-10-03-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-01-23-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2022-01-16-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-08-29-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-10-10-TTU-squider.csv
../covid19-forecast-hub/data-processed/TTU-squider/2021-07-04-TTU-squider.csv
../covid19-forecast-hub/data-processed/NCSU-COVSIM/2022-01-23-NCSU-COVSIM.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-11-29-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-02-14-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-10-18-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-07-26-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-12-13-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-07-05-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-08-23-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-02-07-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-11-22-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-09-13-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-11-01-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-08-09-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-12-27-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-12-06-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-09-27-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-08-02-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-10-04-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-01-10-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-01-03-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-01-24-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-01-17-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-09-20-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-12-20-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-08-30-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-10-25-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-10-11-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-07-19-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2022-01-31-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-07-12-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/JHUAPL-SLPHospEns/2021-09-06-JHUAPL-SLPHospEns.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-09-05-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-10-10-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-10-03-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-09-12-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-11-07-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-07-18-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-07-11-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-08-01-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-10-17-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2022-01-30-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-10-24-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-10-31-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-11-21-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2022-01-02-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-08-08-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-11-28-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-09-19-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-08-29-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-12-26-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-11-14-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-12-12-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2022-01-09-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-12-19-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2022-01-23-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-08-22-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-12-05-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-07-25-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2022-02-13-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2022-02-06-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/MIT_CritData-GBCF/2021-07-04-MIT_CritData-GBCF.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-07-18-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-10-04-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-10-11-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-09-26-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-07-11-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-09-13-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-07-04-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-08-08-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-09-19-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-07-25-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-08-29-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-08-15-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-09-06-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-08-22-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/UA-EpiCovDA/2021-08-01-UA-EpiCovDA.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-08-30-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-07-05-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-08-23-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-09-20-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-08-16-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-09-13-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-08-02-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-08-09-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-07-19-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-09-06-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-07-26-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-09-27-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/LANL-GrowthRate/2021-07-12-LANL-GrowthRate.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-02-07-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-11-29-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-11-01-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-12-20-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-08-09-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-07-05-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-08-23-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-02-14-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-10-04-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-09-27-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-12-13-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-09-06-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-11-08-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-08-02-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-01-10-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-10-11-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-09-13-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-10-25-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-12-27-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-09-20-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-12-06-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-01-03-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-07-19-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-01-17-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-10-18-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-01-31-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-08-30-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2022-01-24-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-11-22-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-07-26-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-08-16-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/MIT_ISOLAT-Mixtures/2021-07-12-MIT_ISOLAT-Mixtures.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2022-01-24-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-12-19-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-11-14-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-11-07-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2022-02-07-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-12-26-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2022-02-14-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-11-28-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-12-05-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-11-21-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2022-01-31-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/LosAlamos_NAU-CModel_SDVaxVar/2021-12-12-LosAlamos_NAU-CModel_SDVaxVar.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-01-31-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-10-18-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-12-27-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-08-30-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-09-13-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-07-19-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-02-14-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-09-06-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-11-15-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-07-26-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-01-03-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-10-25-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-08-16-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-08-02-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-01-10-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-12-20-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-02-07-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-12-13-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-08-09-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-09-20-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-07-05-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-01-24-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2022-01-17-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-12-06-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-10-04-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-11-08-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-11-29-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-09-27-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-07-12-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-08-23-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-10-11-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/epiforecasts-ensemble1/2021-11-22-epiforecasts-ensemble1.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-10-31-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-07-04-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-09-19-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-09-26-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-11-07-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-11-14-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-02-13-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-09-05-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-08-22-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-10-03-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-02-06-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-12-26-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-01-23-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-07-11-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-09-12-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-01-16-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-07-18-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-01-09-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-01-30-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-10-17-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-12-05-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-08-08-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-08-01-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2022-01-02-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-12-12-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-11-21-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-11-28-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-10-24-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-12-19-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-08-29-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/CU-scenario_mid/2021-07-25-CU-scenario_mid.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-08-02-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-07-19-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-08-09-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-10-18-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-07-26-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-09-20-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-10-04-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-07-12-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-11-22-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-12-13-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-02-07-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-07-05-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-09-27-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-10-11-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-11-08-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-01-10-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-09-06-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-11-01-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-01-03-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-01-24-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-12-27-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-02-14-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-08-16-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-08-30-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-01-31-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-12-20-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-10-25-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-11-15-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-12-06-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2022-01-17-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-09-13-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-08-23-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/RobertWalraven-ESG/2021-11-29-RobertWalraven-ESG.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-02-13-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-07-22-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-12-05-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-07-12-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-11-07-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-12-26-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-08-15-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-10-04-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-12-13-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-08-02-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-09-19-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-11-21-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-01-23-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-07-19-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-10-31-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-11-28-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-01-03-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-01-30-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-08-09-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-10-25-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-08-22-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-02-06-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-01-09-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-08-29-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-09-12-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-11-14-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-10-10-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2022-01-16-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-10-17-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-09-26-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-12-20-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/QJHong-Encounter/2021-09-05-QJHong-Encounter.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-08-29-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-08-08-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-10-24-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-08-01-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-09-12-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-12-05-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-12-26-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-02-06-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-09-05-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-07-25-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-07-18-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-07-04-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-01-23-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-08-15-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-01-30-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-11-14-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-10-03-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-02-13-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-12-19-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-01-02-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-09-19-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-01-16-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-12-12-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-08-22-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-10-10-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-11-07-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-07-11-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2022-01-09-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-11-28-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-10-31-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-10-17-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/JHU_CSSE-DECOM/2021-11-21-JHU_CSSE-DECOM.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-01-10-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-11-01-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-12-27-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-01-31-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-10-18-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-08-23-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-09-13-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-07-26-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-09-20-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-08-30-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-01-03-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-12-20-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-01-17-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-10-04-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-09-06-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-07-05-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-02-14-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-09-27-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-01-24-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-08-16-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2022-02-07-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-07-12-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-10-11-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-07-19-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-08-02-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-08-09-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-11-15-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-10-25-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/MOBS-GLEAM_COVID/2021-11-08-MOBS-GLEAM_COVID.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-09-16-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-08-27-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-11-04-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-07-23-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-09-02-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-07-30-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2022-01-24-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-09-10-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-09-23-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-11-19-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-08-09-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-12-22-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-10-18-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2022-02-07-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-07-16-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-07-02-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-10-21-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2022-01-14-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/IHME-CurveFit/2021-10-01-IHME-CurveFit.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2022-02-06-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-09-12-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-09-26-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-07-25-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-08-01-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-09-05-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-09-19-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-08-15-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2022-02-13-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-11-28-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-10-24-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-11-07-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-10-17-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-11-21-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2022-01-16-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-08-22-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2022-01-30-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-07-04-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-11-14-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-07-18-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-08-08-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-10-31-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-12-05-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2022-01-23-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-08-29-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-10-10-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-07-11-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Karlen-pypm/2021-10-03-Karlen-pypm.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-07-19-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2022-01-17-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-12-20-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2022-01-24-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-12-27-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-11-15-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2022-01-03-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-11-29-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-09-27-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-07-26-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-08-09-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-10-11-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-09-20-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-09-13-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-08-02-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-08-23-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-11-22-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-07-12-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2022-02-07-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-12-13-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-10-04-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-09-06-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2022-01-10-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-07-05-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-08-16-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-12-06-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-10-25-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2022-02-14-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/Microsoft-DeepSTIA/2021-08-30-Microsoft-DeepSTIA.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-12-19-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-09-26-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-10-10-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-09-19-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-12-12-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-08-01-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-09-12-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-07-25-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2021-11-28-JHUAPL-Gecko.csv
../covid19-forecast-hub/data-processed/JHUAPL-Gecko/2022-01-02-JHUAPL-Gecko.csv