📦 EqualifyEverything / equalify-uic-analysis

📄 output.csv · 2202 lines
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202Link Type,Location Type,Title,Link,URL,PDF Size (bytes),Page Count,Text-based,Tagged,Notes
PDF,Page (ACF Field),Social Security Number & ITIN (Field: intro_text_body),https://www.ssa.gov/pubs/EN-05-10096.pdf,https://ois.uic.edu/life-at-uic/practical-matters/social-security-number-and-itin/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.ssa.gov/pubs/EN-05-10096.pdf
PDF,Page (ACF Field),International Student Enrollment Requirements (Field: intro_text_body),https://www.ice.gov/doclib/sevis/pdf/bcm2305-04.pdf,https://ois.uic.edu/immigration/international-student-enrollment-requirements/,134421.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),International Student Enrollment and Status Requirements for Fall 2022 (Field: intro_text_body),https://www.ice.gov/doclib/coronavirus/covid19faq.pdf,https://ois.uic.edu/news-stories/international-student-enrollment-and-status-requirements-for-fall-2022/,558197.0,27.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),White House Acts to Expand and Strengthen Pathways for Internationals in STEM Fields (Field: intro_text_body),https://educationusa.state.gov/sites/default/files/intl_ed_joint_statement.pdf,https://ois.uic.edu/news-stories/white-house-acts-to-expand-and-strengthen-pathways-for-internationals-in-stem-fields/,472584.0,4.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),SEVP Extends Temporary COVID-19 Guidance through 2021-22 Academic Year (Field: intro_text_body),https://www.ice.gov/doclib/sevis/pdf/bcm2104-05.pdf,https://ois.uic.edu/news-stories/sevp-extends-temporary-covid-19-guidance-through-2021-22-academic-year/,149531.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Court Orders Halt to DHS and DOL Interim Final Rules Impacting H-1B and PERM Matters (Field: intro_text_body),https://www.courtlistener.com/recap/gov.uscourts.cand.367484/gov.uscourts.cand.367484.73.0.pdf,https://ois.uic.edu/news-stories/court-orders-halt-to-dhs-and-dol-interim-final-rules-impacting-h-1b-and-perm-matters/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.courtlistener.com/recap/gov.uscourts.cand.367484/gov.uscourts.cand.367484.73.0.pdf
Box,Profile (ACF Field),"Žefran, Miloš (Field: cv_link)",https://uofi.box.com/s/cwme9hjx6lmwd0q8gnyy4b2l6gxr0goc,https://ece.uic.edu/profiles/milos-zefran-phd/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Vital, Dieff (Field: cv_link)",https://uofi.app.box.com/file/1292208827028,https://ece.uic.edu/profiles/vital-dieff/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Tuninetti, Daniela (Field: cv_link)",https://uofi.box.com/s/tqr4do0kst8in9udw7ii8806jlf9grq6,https://ece.uic.edu/profiles/daniela-tuninetti-phd/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Devroye, Natasha (Field: cv_link)",https://uofi.app.box.com/s/s4sadz0qdvrrch6h52bqem9vihyy5u09,https://ece.uic.edu/profiles/natasha-devroye/,,,,,Skipped: Box link
Box,Page (ACF Field),Proposals (Field: intro_text_body),https://uofi.box.com/s/ohg69tso1uahnwvducuv,http://2017.techteach.uic.edu/program/proposals/,,,,,Skipped: Box link
Box,Page (ACF Field),Session Material (Field: intro_text_body),https://uofi.box.com/s/g5z306wrm8ifmx0jbq5btdvndv8vbtzn,http://2017.techteach.uic.edu/session-material/,,,,,Skipped: Box link
Box,Page (ACF Field),Session Material (Field: intro_text_body),https://uofi.box.com/s/5szac0b1aej7aav9mwgad5zk37eezmoz,http://2017.techteach.uic.edu/session-material/,,,,,Skipped: Box link
Box,Page (ACF Field),Session Material (Field: intro_text_body),https://uofi.box.com/s/li7ye93s7ttnnsfqtz04egxydywb203m,http://2017.techteach.uic.edu/session-material/,,,,,Skipped: Box link
Box,Page (ACF Field),Session Material (Field: intro_text_body),https://uofi.box.com/s/839ehuulib9e4o7mrn7v1xzuwo19iuif,http://2017.techteach.uic.edu/session-material/,,,,,Skipped: Box link
Box,Page (ACF Field),Session Material (Field: intro_text_body),https://uofi.box.com/s/jw4ozxafoa7e1f8jd5708xydxxvnfdoq,http://2017.techteach.uic.edu/session-material/,,,,,Skipped: Box link
Box,Page (ACF Field),Session Material (Field: intro_text_body),https://uofi.box.com/s/luzxzyi65qvamlwo2ios2ahey88p7zcs,http://2017.techteach.uic.edu/session-material/,,,,,Skipped: Box link
Box,Page (ACF Field),Pre-Award (Field: intro_text_body),https://uofi.app.box.com/s/fblgaoxiqhpqg28snqk5tepfv79hsdte,http://ossr.uic.edu/pre-award/,,,,,Skipped: Box link
PDF,Research Project (ACF Field),"Liechty, Mark (Field: abstract)",http://ossr.red.uic.edu/wp-content/uploads/sites/240/2018/10/4099_001.pdf,http://ossr.uic.edu/research/anthropology-3/,94700.0,1.0,False,False,No tags detected via pdfminer3
PDF,Research Project (ACF Field),"Schewe, Paul (Field: abstract)",http://ossr.red.uic.edu/wp-content/uploads/sites/240/2018/10/3962_001.pdf,http://ossr.uic.edu/research/criminology-law-and-justice/,26990.0,1.0,False,False,No tags detected via pdfminer3
Box,Menu,Foreign National Docs Required,https://uofi.app.box.com/s/43dk4jtezkoxof9cjtqiaqsj3keui476,,,,,,Skipped: Box link
Box,Menu,Prohibited and Restricted Purchases on P-card,https://uofi.app.box.com/s/cn7ikr4e8wq5dwagh8y64swmz0433ft3,,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Sharp, Lisa (Field: cv_link)",https://nursing.uic.edu/wp-content/uploads/sites/220/2023/07/CV-June-2023-.pdf,https://ccts.uic.edu/profiles/sharp-lisa/,425088.0,44.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Osterholt, Amber (Field: cv_link)",https://ccts.uic.edu/wp-content/uploads/sites/569/2024/04/Amber-E.-Osterholt-curriculum-vitae.pdf,https://ccts.uic.edu/profiles/osterholt/,126336.0,6.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Wang, Heng (Field: cv_link)",https://ccts.uic.edu/wp-content/uploads/sites/569/2024/02/Resume_HengWang_2024_CCTS_Website-1.pdf,https://ccts.uic.edu/profiles/wang/,127628.0,8.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Sharp, Lisa (Field: cv_link)",https://nursing.uic.edu/wp-content/uploads/sites/220/2023/07/CV-June-2023-.pdf,https://ccts.uic.edu/profiles/sharp-lisa/,425088.0,44.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Osterholt, Amber (Field: cv_link)",https://ccts.uic.edu/wp-content/uploads/sites/569/2024/04/Amber-E.-Osterholt-curriculum-vitae.pdf,https://ccts.uic.edu/profiles/osterholt/,126336.0,6.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Wang, Heng (Field: cv_link)",https://ccts.uic.edu/wp-content/uploads/sites/569/2024/02/Resume_HengWang_2024_CCTS_Website-1.pdf,https://ccts.uic.edu/profiles/wang/,127628.0,8.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Clean Transportation (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2021/08/THI-UIC-Gasoline-Cancer-Risk-Paper.pdf,https://erc.uic.edu/clean-transportation/,1781945.0,23.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Clean Transportation (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/09/UIC-NUVVE-ESB2G-Model_FINAL.pdf,https://erc.uic.edu/clean-transportation/,2026937.0,41.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Clean Transportation (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/11/DataSourcesforTransportation-RelateFundingApplications.pdf,https://erc.uic.edu/clean-transportation/,1968986.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),In-Person Workshops (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/06/UIC-Green-Era-Workshop_Agenda_Updated.pdf,https://erc.uic.edu/bioenergy/teachad/in-person-workshops/,149569.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),In-Person Workshops (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/WWTP-CHP-CoDigestion-Workshop.pdf,https://erc.uic.edu/bioenergy/teachad/in-person-workshops/,868363.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2024/06/Project_Profle-GreenEra_Final.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,403490.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2024/06/Project_Profile_Des_Moines_Final.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,941003.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/06/TEACH-AD-Project-Profile_St.-Cloud.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,360239.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/06/Project-Profile-Barstows-Longview-Farm.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,292344.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/EPA-Profile-Kishwaukee.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,672891.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Project-Profile-UWO_Farm-Digester.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,529589.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/01/Project-Profile-UWO.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,512201.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/ProjecProfile-UCSD.pd_.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,612406.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/07/ERC-TEACH-AD-10th-Webinar-1.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,6729167.0,48.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Lessons_in_biosolidsmanagement.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,,,,,Download failed: 404 Client Error: Not Found for url: https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Lessons_in_biosolidsmanagement.pdf
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Biogas-Upgrading.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,10888680.0,47.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/IEPAPWIP-ComEd-EE-Program.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,1587937.0,18.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/ERC-TEACH-AD-5th-Webinar-002.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,,,,,Download failed: 404 Client Error: Not Found for url: https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/ERC-TEACH-AD-5th-Webinar-002.pdf
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/03/ERC-TEACH-AD-4th-Webinar_Final.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,10538957.0,54.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/02/Dec8ERC-TEACH-AD-3rd-Webinar-Final-Deck-reduced.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,4827441.0,61.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/02/FinalTeach-AD2ndWebinar.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,5374476.0,41.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/02/ERC-TEACH-AD-1st-Webinar-FINAL-Draft-6-14-1.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,4590603.0,43.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Sustainable Landscapes (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2021/02/ROW_Sheet_2021_igc.pdf,https://erc.uic.edu/landscapes/,6025536.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Rights-of-Way as Habitat Working Group (Field: intro_text_body),https://erc-news.uic.edu/wp-content/uploads/sites/633/2020/03/Monarch_Conservation_Efforts_at_UIC-3.pdf,https://erc.uic.edu/bioenergy/row/,,,,,"Download failed: HTTPSConnectionPool(host='erc-news.uic.edu', port=443): Max retries exceeded with url: /wp-content/uploads/sites/633/2020/03/Monarch_Conservation_Efforts_at_UIC-3.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPSConnection object at 0x105966350>: Failed to resolve 'erc-news.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,News (ACF Field),Midwest Regional Hydrogen Economy Global Benchmarking (Field: intro_text_body),https://static1.squarespace.com/static/570b03987c65e49ce6174883/t/6273c29dfadc0d0cb969f177/1651753633783/Chicago+Regional+Hydrogen+Hub+White+Paper+2+-+Midwest+Regional+Hydrogen+Economy+Global+Benchmarking+-+Final.pdf,https://erc.uic.edu/news-stories/midwest-regional-hydrogen-economy-global-benchmarking/,5298411.0,52.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Clean Transportation (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2021/08/THI-UIC-Gasoline-Cancer-Risk-Paper.pdf,https://erc.uic.edu/clean-transportation/,1781945.0,23.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Clean Transportation (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/09/UIC-NUVVE-ESB2G-Model_FINAL.pdf,https://erc.uic.edu/clean-transportation/,2026937.0,41.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Clean Transportation (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/11/DataSourcesforTransportation-RelateFundingApplications.pdf,https://erc.uic.edu/clean-transportation/,1968986.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),In-Person Workshops (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/06/UIC-Green-Era-Workshop_Agenda_Updated.pdf,https://erc.uic.edu/bioenergy/teachad/in-person-workshops/,149569.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),In-Person Workshops (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/WWTP-CHP-CoDigestion-Workshop.pdf,https://erc.uic.edu/bioenergy/teachad/in-person-workshops/,868363.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2024/06/Project_Profle-GreenEra_Final.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,403490.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2024/06/Project_Profile_Des_Moines_Final.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,941003.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/06/TEACH-AD-Project-Profile_St.-Cloud.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,360239.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/06/Project-Profile-Barstows-Longview-Farm.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,292344.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/EPA-Profile-Kishwaukee.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,672891.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Project-Profile-UWO_Farm-Digester.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,529589.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/01/Project-Profile-UWO.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,512201.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Project profiles (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/ProjecProfile-UCSD.pd_.pdf,https://erc.uic.edu/bioenergy/teachad/project-profiles/,612406.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/07/ERC-TEACH-AD-10th-Webinar-1.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,6729167.0,48.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Lessons_in_biosolidsmanagement.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,,,,,Download failed: 404 Client Error: Not Found for url: https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Lessons_in_biosolidsmanagement.pdf
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/Biogas-Upgrading.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,10888680.0,47.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2023/02/IEPAPWIP-ComEd-EE-Program.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,1587937.0,18.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/ERC-TEACH-AD-5th-Webinar-002.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,,,,,Download failed: 404 Client Error: Not Found for url: https://erc.uic.edu/wp-content/uploads/sites/633/2022/06/ERC-TEACH-AD-5th-Webinar-002.pdf
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/03/ERC-TEACH-AD-4th-Webinar_Final.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,10538957.0,54.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/02/Dec8ERC-TEACH-AD-3rd-Webinar-Final-Deck-reduced.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,4827441.0,61.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/02/FinalTeach-AD2ndWebinar.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,5374476.0,41.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),TEACH AD Webinars (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2022/02/ERC-TEACH-AD-1st-Webinar-FINAL-Draft-6-14-1.pdf,https://erc.uic.edu/bioenergy/teachad/teach-ad-webinars/,4590603.0,43.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Sustainable Landscapes (Field: intro_text_body),https://erc.uic.edu/wp-content/uploads/sites/633/2021/02/ROW_Sheet_2021_igc.pdf,https://erc.uic.edu/landscapes/,6025536.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Rights-of-Way as Habitat Working Group (Field: intro_text_body),https://erc-news.uic.edu/wp-content/uploads/sites/633/2020/03/Monarch_Conservation_Efforts_at_UIC-3.pdf,https://erc.uic.edu/bioenergy/row/,,,,,"Download failed: HTTPSConnectionPool(host='erc-news.uic.edu', port=443): Max retries exceeded with url: /wp-content/uploads/sites/633/2020/03/Monarch_Conservation_Efforts_at_UIC-3.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPSConnection object at 0x105966710>: Failed to resolve 'erc-news.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,News (ACF Field),Midwest Regional Hydrogen Economy Global Benchmarking (Field: intro_text_body),https://static1.squarespace.com/static/570b03987c65e49ce6174883/t/6273c29dfadc0d0cb969f177/1651753633783/Chicago+Regional+Hydrogen+Hub+White+Paper+2+-+Midwest+Regional+Hydrogen+Economy+Global+Benchmarking+-+Final.pdf,https://erc.uic.edu/news-stories/midwest-regional-hydrogen-economy-global-benchmarking/,5298411.0,52.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"2019, Annual Report (Field: about)",http://idhd.ahs.uic.edu/wp-content/uploads/sites/438/2021/06/FINAL_DHD2019_AnnualReport.pdf,http://idhd.ahs.uic.edu/profiles/2019-annual-report/,6069288.0,16.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"(2015), Knowledge Utilization and ADA Technical Assistance Information: Latent class analysis of information market segments (Field: about)",https://app.box.com/s/swsb44xoehlrmn8gsd5jlsupnj36bv9b,http://idhd.ahs.uic.edu/profiles/utilization-and-ada-technical-assistance-information-latent-class-analysis-of-information-market-segments-knowledge/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), The political arithmetic of disability and the American family: A demographic perspective (Field: about)",https://app.box.com/s/pt5cwi5nmjnzsh8tbjqfxn002qkb99m8,http://idhd.ahs.uic.edu/profiles/political-arithmetic-of-disability-and-the-american-family-a-demographic-perspective-the/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2015), Fine motor and self‐care milestones for individuals with Down syndrome using a Retrospective Chart Review (Field: about)",https://app.box.com/s/lbozoyo1k8sks2llcj8hzw7p7jntt6sd,http://idhd.ahs.uic.edu/profiles/and-self%e2%80%90care-milestones-for-individuals-with-down-syndrome-using-a-retrospective-chart-review-fine-motor/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), &#8220;Remember our voices are our tools:” Sexual self-advocacy as defined by people with intellectual and developmental disabilities (Field: about)",https://app.box.com/s/8wk9pv17qd71va44acay2au9e7k4d1k1,http://idhd.ahs.uic.edu/profiles/remember-our-voices-are-our-tools-sexual-self-advocacy-as-defined-by-people-with-intellectual-and-developmental-disabilities/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2017), Vocational Rehabilitation of Transition-Age Youth with Disabilities: A Propensity-Score Matched Study (Field: about)",https://app.box.com/file/515749759358,http://idhd.ahs.uic.edu/profiles/vocational-rehabilitation-of-transition-age-youth-with-disabilities-a-propensity-score-matched-study/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2017), Vocational Rehabilitation of Transition-Age Youth with Disabilities: A Propensity-Score Matched Study (Field: about)",https://app.box.com/s/aqi3rk6fqlgladxplotjptdk8auykb64,http://idhd.ahs.uic.edu/profiles/vocational-rehabilitation-of-transition-age-youth-with-disabilities-a-propensity-score-matched-study/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2016), Individual, parent and social-environmental correlates of caregiving experiences among parents of adults with autism spectrum disorder: Caregiving for adults with ASD (Field: about)",https://app.box.com/s/fcapicezlpxgi4nxe1rvtwecfgjho69l,http://idhd.ahs.uic.edu/profiles/individual-parent-and-social-environmental-correlates-of-caregiving-experiences-among-parents-of-adults-with-autism-spectrum-disorder-caregiving-for-adults-with-asd/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), Human Rights and Neoliberalism in Australian Welfare to Work Policy: Experiences and Perceptions of People with Disabilities and Disability Stakeholders (Field: about)",https://app.box.com/s/f0hgntce6rqzhox0bb5u6ssitw6koy8g,http://idhd.ahs.uic.edu/profiles/human-rights-and-neoliberalism-in-australian-welfare-to-work-policy-experiences-and-perceptions-of-people-with-disabilities-and-disability-stakeholders/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2016), The State of Transportation for People With Intellectual and Developmental Disabilities in Medicaid Home and Community-Based Services 1915(c) Waivers (Field: about)",https://app.box.com/s/9id1ckyer5go6d7rhgex8bvb4n2tqn6j,http://idhd.ahs.uic.edu/profiles/the-state-of-transportation-for-people-with-intellectual-and-developmental-disabilities-in-medicaid-home-and-community-based-services-1915c-waivers/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2015), In the Voices of Parents Suggestions for the Next IDEA Reauthorization (Field: about)",https://app.box.com/s/3v6llng85xs4soywiqljh9vxaq0miu8a,http://idhd.ahs.uic.edu/profiles/in-the-voices-of-parents-suggestions-for-the-next-idea-reauthorization-meghan-burke/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"2019, Annual Report (Field: about)",http://idhd.ahs.uic.edu/wp-content/uploads/sites/438/2021/06/FINAL_DHD2019_AnnualReport.pdf,http://idhd.ahs.uic.edu/profiles/2019-annual-report/,6069288.0,16.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"(2015), Knowledge Utilization and ADA Technical Assistance Information: Latent class analysis of information market segments (Field: about)",https://app.box.com/s/swsb44xoehlrmn8gsd5jlsupnj36bv9b,http://idhd.ahs.uic.edu/profiles/utilization-and-ada-technical-assistance-information-latent-class-analysis-of-information-market-segments-knowledge/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), The political arithmetic of disability and the American family: A demographic perspective (Field: about)",https://app.box.com/s/pt5cwi5nmjnzsh8tbjqfxn002qkb99m8,http://idhd.ahs.uic.edu/profiles/political-arithmetic-of-disability-and-the-american-family-a-demographic-perspective-the/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2015), Fine motor and self‐care milestones for individuals with Down syndrome using a Retrospective Chart Review (Field: about)",https://app.box.com/s/lbozoyo1k8sks2llcj8hzw7p7jntt6sd,http://idhd.ahs.uic.edu/profiles/and-self%e2%80%90care-milestones-for-individuals-with-down-syndrome-using-a-retrospective-chart-review-fine-motor/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), &#8220;Remember our voices are our tools:” Sexual self-advocacy as defined by people with intellectual and developmental disabilities (Field: about)",https://app.box.com/s/8wk9pv17qd71va44acay2au9e7k4d1k1,http://idhd.ahs.uic.edu/profiles/remember-our-voices-are-our-tools-sexual-self-advocacy-as-defined-by-people-with-intellectual-and-developmental-disabilities/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2017), Vocational Rehabilitation of Transition-Age Youth with Disabilities: A Propensity-Score Matched Study (Field: about)",https://app.box.com/file/515749759358,http://idhd.ahs.uic.edu/profiles/vocational-rehabilitation-of-transition-age-youth-with-disabilities-a-propensity-score-matched-study/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2017), Vocational Rehabilitation of Transition-Age Youth with Disabilities: A Propensity-Score Matched Study (Field: about)",https://app.box.com/s/aqi3rk6fqlgladxplotjptdk8auykb64,http://idhd.ahs.uic.edu/profiles/vocational-rehabilitation-of-transition-age-youth-with-disabilities-a-propensity-score-matched-study/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2016), Individual, parent and social-environmental correlates of caregiving experiences among parents of adults with autism spectrum disorder: Caregiving for adults with ASD (Field: about)",https://app.box.com/s/fcapicezlpxgi4nxe1rvtwecfgjho69l,http://idhd.ahs.uic.edu/profiles/individual-parent-and-social-environmental-correlates-of-caregiving-experiences-among-parents-of-adults-with-autism-spectrum-disorder-caregiving-for-adults-with-asd/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), Human Rights and Neoliberalism in Australian Welfare to Work Policy: Experiences and Perceptions of People with Disabilities and Disability Stakeholders (Field: about)",https://app.box.com/s/f0hgntce6rqzhox0bb5u6ssitw6koy8g,http://idhd.ahs.uic.edu/profiles/human-rights-and-neoliberalism-in-australian-welfare-to-work-policy-experiences-and-perceptions-of-people-with-disabilities-and-disability-stakeholders/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2016), The State of Transportation for People With Intellectual and Developmental Disabilities in Medicaid Home and Community-Based Services 1915(c) Waivers (Field: about)",https://app.box.com/s/9id1ckyer5go6d7rhgex8bvb4n2tqn6j,http://idhd.ahs.uic.edu/profiles/the-state-of-transportation-for-people-with-intellectual-and-developmental-disabilities-in-medicaid-home-and-community-based-services-1915c-waivers/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2015), In the Voices of Parents Suggestions for the Next IDEA Reauthorization (Field: about)",https://app.box.com/s/3v6llng85xs4soywiqljh9vxaq0miu8a,http://idhd.ahs.uic.edu/profiles/in-the-voices-of-parents-suggestions-for-the-next-idea-reauthorization-meghan-burke/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"2019, Annual Report (Field: about)",http://idhd.ahs.uic.edu/wp-content/uploads/sites/438/2021/06/FINAL_DHD2019_AnnualReport.pdf,https://idhd.ahs.uic.edu/profiles/2019-annual-report/,6069288.0,16.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"(2015), Knowledge Utilization and ADA Technical Assistance Information: Latent class analysis of information market segments (Field: about)",https://app.box.com/s/swsb44xoehlrmn8gsd5jlsupnj36bv9b,https://idhd.ahs.uic.edu/profiles/utilization-and-ada-technical-assistance-information-latent-class-analysis-of-information-market-segments-knowledge/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), The political arithmetic of disability and the American family: A demographic perspective (Field: about)",https://app.box.com/s/pt5cwi5nmjnzsh8tbjqfxn002qkb99m8,https://idhd.ahs.uic.edu/profiles/political-arithmetic-of-disability-and-the-american-family-a-demographic-perspective-the/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2015), Fine motor and self‐care milestones for individuals with Down syndrome using a Retrospective Chart Review (Field: about)",https://app.box.com/s/lbozoyo1k8sks2llcj8hzw7p7jntt6sd,https://idhd.ahs.uic.edu/profiles/and-self%e2%80%90care-milestones-for-individuals-with-down-syndrome-using-a-retrospective-chart-review-fine-motor/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), &#8220;Remember our voices are our tools:” Sexual self-advocacy as defined by people with intellectual and developmental disabilities (Field: about)",https://app.box.com/s/8wk9pv17qd71va44acay2au9e7k4d1k1,https://idhd.ahs.uic.edu/profiles/remember-our-voices-are-our-tools-sexual-self-advocacy-as-defined-by-people-with-intellectual-and-developmental-disabilities/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2017), Vocational Rehabilitation of Transition-Age Youth with Disabilities: A Propensity-Score Matched Study (Field: about)",https://app.box.com/file/515749759358,https://idhd.ahs.uic.edu/profiles/vocational-rehabilitation-of-transition-age-youth-with-disabilities-a-propensity-score-matched-study/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2017), Vocational Rehabilitation of Transition-Age Youth with Disabilities: A Propensity-Score Matched Study (Field: about)",https://app.box.com/s/aqi3rk6fqlgladxplotjptdk8auykb64,https://idhd.ahs.uic.edu/profiles/vocational-rehabilitation-of-transition-age-youth-with-disabilities-a-propensity-score-matched-study/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2016), Individual, parent and social-environmental correlates of caregiving experiences among parents of adults with autism spectrum disorder: Caregiving for adults with ASD (Field: about)",https://app.box.com/s/fcapicezlpxgi4nxe1rvtwecfgjho69l,https://idhd.ahs.uic.edu/profiles/individual-parent-and-social-environmental-correlates-of-caregiving-experiences-among-parents-of-adults-with-autism-spectrum-disorder-caregiving-for-adults-with-asd/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2014), Human Rights and Neoliberalism in Australian Welfare to Work Policy: Experiences and Perceptions of People with Disabilities and Disability Stakeholders (Field: about)",https://app.box.com/s/f0hgntce6rqzhox0bb5u6ssitw6koy8g,https://idhd.ahs.uic.edu/profiles/human-rights-and-neoliberalism-in-australian-welfare-to-work-policy-experiences-and-perceptions-of-people-with-disabilities-and-disability-stakeholders/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2016), The State of Transportation for People With Intellectual and Developmental Disabilities in Medicaid Home and Community-Based Services 1915(c) Waivers (Field: about)",https://app.box.com/s/9id1ckyer5go6d7rhgex8bvb4n2tqn6j,https://idhd.ahs.uic.edu/profiles/the-state-of-transportation-for-people-with-intellectual-and-developmental-disabilities-in-medicaid-home-and-community-based-services-1915c-waivers/,,,,,Skipped: Box link
Box,Profile (ACF Field),"(2015), In the Voices of Parents Suggestions for the Next IDEA Reauthorization (Field: about)",https://app.box.com/s/3v6llng85xs4soywiqljh9vxaq0miu8a,https://idhd.ahs.uic.edu/profiles/in-the-voices-of-parents-suggestions-for-the-next-idea-reauthorization-meghan-burke/,,,,,Skipped: Box link
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),https://confidentparentsconfidentkids.files.wordpress.com/2012/10/parents-heart-and-head-report-card2.pdf,https://sel.lab.uic.edu/parent-resources/,452729.0,3.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://www2.ed.gov/documents/family-community/partners-education.pdf,https://sel.lab.uic.edu/parent-resources/,8021299.0,32.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://educationnorthwest.org/sites/default/files/pbd.pdf,https://sel.lab.uic.edu/parent-resources/,893098.0,56.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),https://www.psychologytoday.com/sites/default/files/Price-MitchellSpring2011.pdf,https://sel.lab.uic.edu/parent-resources/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.psychologytoday.com/sites/default/files/Price-MitchellSpring2011.pdf
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://www.pta.org/files/Common%20Core%20State%20Standards%20Resources/2013%20Guide%20Bundle_082213.pdf,https://sel.lab.uic.edu/parent-resources/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),https://confidentparentsconfidentkids.files.wordpress.com/2012/10/parents-heart-and-head-report-card2.pdf,https://sel.lab.uic.edu/parent-resources/,452729.0,3.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://www2.ed.gov/documents/family-community/partners-education.pdf,https://sel.lab.uic.edu/parent-resources/,8021299.0,32.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://educationnorthwest.org/sites/default/files/pbd.pdf,https://sel.lab.uic.edu/parent-resources/,893098.0,56.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),https://www.psychologytoday.com/sites/default/files/Price-MitchellSpring2011.pdf,https://sel.lab.uic.edu/parent-resources/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.psychologytoday.com/sites/default/files/Price-MitchellSpring2011.pdf
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://www.pta.org/files/Common%20Core%20State%20Standards%20Resources/2013%20Guide%20Bundle_082213.pdf,https://sel.lab.uic.edu/parent-resources/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),https://confidentparentsconfidentkids.files.wordpress.com/2012/10/parents-heart-and-head-report-card2.pdf,https://sel.lab.uic.edu/parent-resources/,452729.0,3.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://www2.ed.gov/documents/family-community/partners-education.pdf,https://sel.lab.uic.edu/parent-resources/,8021299.0,32.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://educationnorthwest.org/sites/default/files/pbd.pdf,https://sel.lab.uic.edu/parent-resources/,893098.0,56.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),https://www.psychologytoday.com/sites/default/files/Price-MitchellSpring2011.pdf,https://sel.lab.uic.edu/parent-resources/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.psychologytoday.com/sites/default/files/Price-MitchellSpring2011.pdf
PDF,Page (ACF Field),Parent Resources (Field: intro_text_body),http://www.pta.org/files/Common%20Core%20State%20Standards%20Resources/2013%20Guide%20Bundle_082213.pdf,https://sel.lab.uic.edu/parent-resources/,,,,,Download failed: Not a PDF based on Content-Type
Box,Page (ACF Field),AARCC Search (Field: intro_text_body),https://uofi.box.com/s/0gf6mbh03lrak3yp7vkziou4qoduy3tb,https://aarcc.uic.edu/aarccsearch/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/x2kb75nnhy4crr95xtbd17o1ns8mr7vb,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/cqrr0zmiiipke7gjvnpdo0dr8wllxea7,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/pq3m1mz4iwhwnmpex7zw02br96u2yetf,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/d934dt3tl84l9ukzova0shd1mysxnnww,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/49n6ztsym05l8jxe2lkgztm452s0lx1d,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/5ex40cdz5henuv9zfw7injw5ivayryue,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/3j7zmki86a382i87cm6bzlboaj37se3z,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/yf3mvx7mg17zn7bim4c1l597on7oyvmx,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/4gtj25f56noi6nj6glgts82c9h3c4t09,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/50sykvmx11boxio6oaa5dm59v7ws2q67,https://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
PDF,Page (ACF Field),Asian American Resource Book (Field: intro_text_body),http://aarcc.uic.edu/wp-content/uploads/sites/223/2018/12/web-resource-book.pdf,https://aarcc.uic.edu/resources-2/asian-american-resource-book/,725757.0,56.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),AARCC Search (Field: intro_text_body),https://uofi.box.com/s/0gf6mbh03lrak3yp7vkziou4qoduy3tb,http://aarcc.uic.edu/aarccsearch/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/x2kb75nnhy4crr95xtbd17o1ns8mr7vb,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/cqrr0zmiiipke7gjvnpdo0dr8wllxea7,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/pq3m1mz4iwhwnmpex7zw02br96u2yetf,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/d934dt3tl84l9ukzova0shd1mysxnnww,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/49n6ztsym05l8jxe2lkgztm452s0lx1d,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/5ex40cdz5henuv9zfw7injw5ivayryue,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/3j7zmki86a382i87cm6bzlboaj37se3z,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/yf3mvx7mg17zn7bim4c1l597on7oyvmx,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/4gtj25f56noi6nj6glgts82c9h3c4t09,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/50sykvmx11boxio6oaa5dm59v7ws2q67,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
PDF,Page (ACF Field),Asian American Resource Book (Field: intro_text_body),http://aarcc.uic.edu/wp-content/uploads/sites/223/2018/12/web-resource-book.pdf,http://aarcc.uic.edu/resources-2/asian-american-resource-book/,725757.0,56.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),AARCC Search (Field: intro_text_body),https://uofi.box.com/s/0gf6mbh03lrak3yp7vkziou4qoduy3tb,http://aarcc.uic.edu/aarccsearch/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/x2kb75nnhy4crr95xtbd17o1ns8mr7vb,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/cqrr0zmiiipke7gjvnpdo0dr8wllxea7,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/pq3m1mz4iwhwnmpex7zw02br96u2yetf,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/d934dt3tl84l9ukzova0shd1mysxnnww,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/49n6ztsym05l8jxe2lkgztm452s0lx1d,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/5ex40cdz5henuv9zfw7injw5ivayryue,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/3j7zmki86a382i87cm6bzlboaj37se3z,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/yf3mvx7mg17zn7bim4c1l597on7oyvmx,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/4gtj25f56noi6nj6glgts82c9h3c4t09,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
Box,Page (ACF Field),Annual Reports (Field: intro_text_body),https://uofi.box.com/s/50sykvmx11boxio6oaa5dm59v7ws2q67,http://aarcc.uic.edu/annual-reports/,,,,,Skipped: Box link
PDF,Page (ACF Field),Asian American Resource Book (Field: intro_text_body),http://aarcc.uic.edu/wp-content/uploads/sites/223/2018/12/web-resource-book.pdf,http://aarcc.uic.edu/resources-2/asian-american-resource-book/,725757.0,56.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),Stewardship Science Today June 2021 Issue (Field: intro_text_body),https://uofi.box.com/v/DOENNSAfellowship,https://cdac.phys.uic.edu/doe-nnsa-fellowship-programs/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/StishovRussianArticle,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/StishovPopova,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/ChaoStishovite,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/memoirstishov1,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/Stishov10112011,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/Stishovite50thAnniversary,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Hemley, Russell J. (Field: cv_link)",https://chem.uic.edu/wp-content/uploads/sites/146/2023/04/Hemley-CV.pdf,https://cdac.phys.uic.edu/profiles/hemley-russell/,571975.0,51.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Hemley, Russell J. (Field: presentations)",https://chem.uic.edu/wp-content/uploads/sites/146/2023/06/Hemley-Ashcroft-Talk-SCCM-2023.pdf,https://cdac.phys.uic.edu/profiles/hemley-russell/,10171531.0,23.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Stewardship Science Today June 2021 Issue (Field: intro_text_body),https://uofi.box.com/v/DOENNSAfellowship,https://cdac.phys.uic.edu/doe-nnsa-fellowship-programs/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/StishovRussianArticle,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/StishovPopova,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/ChaoStishovite,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/memoirstishov1,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/Stishov10112011,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/Stishovite50thAnniversary,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Hemley, Russell J. (Field: cv_link)",https://chem.uic.edu/wp-content/uploads/sites/146/2023/04/Hemley-CV.pdf,https://cdac.phys.uic.edu/profiles/hemley-russell/,571975.0,51.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Hemley, Russell J. (Field: presentations)",https://chem.uic.edu/wp-content/uploads/sites/146/2023/06/Hemley-Ashcroft-Talk-SCCM-2023.pdf,https://cdac.phys.uic.edu/profiles/hemley-russell/,10171531.0,23.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Stewardship Science Today June 2021 Issue (Field: intro_text_body),https://uofi.box.com/v/DOENNSAfellowship,https://cdac.phys.uic.edu/doe-nnsa-fellowship-programs/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/StishovRussianArticle,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/StishovPopova,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/ChaoStishovite,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/memoirstishov1,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/Stishov10112011,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
Box,Page (ACF Field),60th Anniversary of the Discovery of &#8216;Dense Silica&#8217;:  Stishovite (Field: intro_text_body),https://uofi.box.com/v/Stishovite50thAnniversary,https://cdac.phys.uic.edu/60th-anniversary-of-the-discovery-of-dense-silica-stishovite/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Hemley, Russell J. (Field: cv_link)",https://chem.uic.edu/wp-content/uploads/sites/146/2023/04/Hemley-CV.pdf,https://cdac.phys.uic.edu/profiles/hemley-russell/,571975.0,51.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Hemley, Russell J. (Field: presentations)",https://chem.uic.edu/wp-content/uploads/sites/146/2023/06/Hemley-Ashcroft-Talk-SCCM-2023.pdf,https://cdac.phys.uic.edu/profiles/hemley-russell/,10171531.0,23.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),Nov. 13: Talk on Aronofsky&#8217;s BLACK SWAN (Field: description),https://uofi.box.com/s/ehr3t5woenvsnp2muw04mf9np31e0nxo,http://movi.uic.edu/events/nov-13-talk-on-aronofskys-black-swan/,,,,,Skipped: Box link
Box,Event (ACF Field),Reflexivity and the Small Form: A Symposium (Nov. 8) (Field: description),https://uofi.box.com/s/5sr2umt1hwlzh3xr9khu2wcl6n3vi5j1,http://movi.uic.edu/events/reflexivity-and-the-small-form-a-symposium-nov-8/,,,,,Skipped: Box link
Box,Event (ACF Field),4th annual In/Between Conference (Field: description),https://uofi.box.com/s/fyugmijajyx3185a9t69lc6bfbg8sxuo,http://movi.uic.edu/events/4th-annual-in-between-conference/,,,,,Skipped: Box link
PDF,Notification (ACF Field),MOVI 331 &#8211; Fall 2022 (Field: action_url),http://movi.uic.edu/wp-content/uploads/sites/311/2022/04/RUSS-321-MOVI-331-ENGL-331-flyer-Fall-2022_print.pdf,http://movi.uic.edu/?notification=movi-331-fall-2022,,,,,Download failed: 404 Client Error: Not Found for url: https://movi.uic.edu/wp-content/uploads/sites/311/2022/04/RUSS-321-MOVI-331-ENGL-331-flyer-Fall-2022_print.pdf
Box,Event (ACF Field),Nov. 13: Talk on Aronofsky&#8217;s BLACK SWAN (Field: description),https://uofi.box.com/s/ehr3t5woenvsnp2muw04mf9np31e0nxo,http://movi.uic.edu/events/nov-13-talk-on-aronofskys-black-swan/,,,,,Skipped: Box link
Box,Event (ACF Field),Reflexivity and the Small Form: A Symposium (Nov. 8) (Field: description),https://uofi.box.com/s/5sr2umt1hwlzh3xr9khu2wcl6n3vi5j1,http://movi.uic.edu/events/reflexivity-and-the-small-form-a-symposium-nov-8/,,,,,Skipped: Box link
Box,Event (ACF Field),4th annual In/Between Conference (Field: description),https://uofi.box.com/s/fyugmijajyx3185a9t69lc6bfbg8sxuo,http://movi.uic.edu/events/4th-annual-in-between-conference/,,,,,Skipped: Box link
PDF,Notification (ACF Field),MOVI 331 &#8211; Fall 2022 (Field: action_url),http://movi.uic.edu/wp-content/uploads/sites/311/2022/04/RUSS-321-MOVI-331-ENGL-331-flyer-Fall-2022_print.pdf,http://movi.uic.edu/?notification=movi-331-fall-2022,,,,,Download failed: 404 Client Error: Not Found for url: https://movi.uic.edu/wp-content/uploads/sites/311/2022/04/RUSS-321-MOVI-331-ENGL-331-flyer-Fall-2022_print.pdf
Box,Event (ACF Field),Nov. 13: Talk on Aronofsky&#8217;s BLACK SWAN (Field: description),https://uofi.box.com/s/ehr3t5woenvsnp2muw04mf9np31e0nxo,https://movi.uic.edu/events/nov-13-talk-on-aronofskys-black-swan/,,,,,Skipped: Box link
Box,Event (ACF Field),Reflexivity and the Small Form: A Symposium (Nov. 8) (Field: description),https://uofi.box.com/s/5sr2umt1hwlzh3xr9khu2wcl6n3vi5j1,https://movi.uic.edu/events/reflexivity-and-the-small-form-a-symposium-nov-8/,,,,,Skipped: Box link
Box,Event (ACF Field),4th annual In/Between Conference (Field: description),https://uofi.box.com/s/fyugmijajyx3185a9t69lc6bfbg8sxuo,https://movi.uic.edu/events/4th-annual-in-between-conference/,,,,,Skipped: Box link
PDF,Notification (ACF Field),MOVI 331 &#8211; Fall 2022 (Field: action_url),http://movi.uic.edu/wp-content/uploads/sites/311/2022/04/RUSS-321-MOVI-331-ENGL-331-flyer-Fall-2022_print.pdf,https://movi.uic.edu/?notification=movi-331-fall-2022,,,,,Download failed: 404 Client Error: Not Found for url: https://movi.uic.edu/wp-content/uploads/sites/311/2022/04/RUSS-321-MOVI-331-ENGL-331-flyer-Fall-2022_print.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demosetal2019CogSci_withSI.pdf,https://mad.psch.uic.edu/sample-page/publications/,887471.0,34.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demos_2018_MP.pdf,https://mad.psch.uic.edu/sample-page/publications/,,,,,"Download failed: HTTPSConnectionPool(host='red.uic.edu', port=443): Read timed out. (read timeout=15)"
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demos_2018_POM.pdf,https://mad.psch.uic.edu/sample-page/publications/,854555.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demosetal2019CogSci_withSI.pdf,https://mad.psch.uic.edu/sample-page/publications/,887471.0,34.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demos_2018_MP.pdf,https://mad.psch.uic.edu/sample-page/publications/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demos_2018_POM.pdf,https://mad.psch.uic.edu/sample-page/publications/,854555.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demosetal2019CogSci_withSI.pdf,https://mad.psch.uic.edu/sample-page/publications/,887471.0,34.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demos_2018_MP.pdf,https://mad.psch.uic.edu/sample-page/publications/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mad.red.uic.edu/wp-content/uploads/sites/482/2020/06/Demos_2018_POM.pdf,https://mad.psch.uic.edu/sample-page/publications/,854555.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Sun Safety (Field: intro_text_body),https://www.hhs.gov/sites/default/files/call-to-action-prevent-skin-cancer.pdf,https://wellnesscenter.uic.edu/self-care-resources/university-of-illinois-chicago-ultraviolet-protection-initiative/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.hhs.gov/sites/default/files/call-to-action-prevent-skin-cancer.pdf
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2020/01/DOS_Student-Disciplinary-Policy-2020.pdf,https://wellnesscenter.uic.edu/policies/e-scooter/,,,,,Download failed: 404 Client Error: Not Found for url: https://dos.uic.edu/wp-content/uploads/sites/262/2020/01/DOS_Student-Disciplinary-Policy-2020.pdf
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),http://police.uic.edu/wp-content/uploads/sites/25/2021/01/Skateboard-and-Scooter-Dock-Locations.pdf,https://wellnesscenter.uic.edu/policies/e-scooter/,1033695.0,1.0,False,False,No tags detected via pdfminer3
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),http://police.uic.edu/wp-content/uploads/sites/25/2021/01/SkateDock-Board-and-Scooter-Rack-Info-Sheet-with-Specs.pdf,https://wellnesscenter.uic.edu/policies/e-scooter/,824167.0,3.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Relationships and Sex (Field: intro_text_body),http://wellnesscenter.uic.edu/wp-content/uploads/sites/100/2021/12/When-You-Are-Ready.-People-and-Place-for-info-and-support.pdf,https://wellnesscenter.uic.edu/resources-and-services/sexual-health/,2557060.0,32.0,True,True,Tags detected via pdfminer3
PDF,Billboard (ACF Field),When You&#8217;re Ready (Field: external_url),https://police.uic.edu/wp-content/uploads/sites/25/2022/02/When-You-are-Ready.pdf,https://wellnesscenter.uic.edu/?billboard=when-youre-ready,,,,,Download failed: 404 Client Error: Not Found for url: https://police.uic.edu/wp-content/uploads/sites/25/2022/02/When-You-are-Ready.pdf
PDF,Page (ACF Field),Sun Safety (Field: intro_text_body),https://www.hhs.gov/sites/default/files/call-to-action-prevent-skin-cancer.pdf,http://wellnesscenter.uic.edu/self-care-resources/university-of-illinois-chicago-ultraviolet-protection-initiative/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.hhs.gov/sites/default/files/call-to-action-prevent-skin-cancer.pdf
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2020/01/DOS_Student-Disciplinary-Policy-2020.pdf,http://wellnesscenter.uic.edu/policies/e-scooter/,,,,,Download failed: 404 Client Error: Not Found for url: https://dos.uic.edu/wp-content/uploads/sites/262/2020/01/DOS_Student-Disciplinary-Policy-2020.pdf
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),http://police.uic.edu/wp-content/uploads/sites/25/2021/01/Skateboard-and-Scooter-Dock-Locations.pdf,http://wellnesscenter.uic.edu/policies/e-scooter/,1033695.0,1.0,False,False,No tags detected via pdfminer3
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),http://police.uic.edu/wp-content/uploads/sites/25/2021/01/SkateDock-Board-and-Scooter-Rack-Info-Sheet-with-Specs.pdf,http://wellnesscenter.uic.edu/policies/e-scooter/,824167.0,3.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Relationships and Sex (Field: intro_text_body),http://wellnesscenter.uic.edu/wp-content/uploads/sites/100/2021/12/When-You-Are-Ready.-People-and-Place-for-info-and-support.pdf,http://wellnesscenter.uic.edu/resources-and-services/sexual-health/,2557060.0,32.0,True,True,Tags detected via pdfminer3
PDF,Billboard (ACF Field),When You&#8217;re Ready (Field: external_url),https://police.uic.edu/wp-content/uploads/sites/25/2022/02/When-You-are-Ready.pdf,http://wellnesscenter.uic.edu/?billboard=when-youre-ready,,,,,Download failed: 404 Client Error: Not Found for url: https://police.uic.edu/wp-content/uploads/sites/25/2022/02/When-You-are-Ready.pdf
PDF,Page (ACF Field),Sun Safety (Field: intro_text_body),https://www.hhs.gov/sites/default/files/call-to-action-prevent-skin-cancer.pdf,http://wellnesscenter.uic.edu/self-care-resources/university-of-illinois-chicago-ultraviolet-protection-initiative/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.hhs.gov/sites/default/files/call-to-action-prevent-skin-cancer.pdf
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2020/01/DOS_Student-Disciplinary-Policy-2020.pdf,http://wellnesscenter.uic.edu/policies/e-scooter/,,,,,Download failed: 404 Client Error: Not Found for url: https://dos.uic.edu/wp-content/uploads/sites/262/2020/01/DOS_Student-Disciplinary-Policy-2020.pdf
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),http://police.uic.edu/wp-content/uploads/sites/25/2021/01/Skateboard-and-Scooter-Dock-Locations.pdf,http://wellnesscenter.uic.edu/policies/e-scooter/,1033695.0,1.0,False,False,No tags detected via pdfminer3
PDF,Page (ACF Field),E-Scooters On-Campus (Field: intro_text_body),http://police.uic.edu/wp-content/uploads/sites/25/2021/01/SkateDock-Board-and-Scooter-Rack-Info-Sheet-with-Specs.pdf,http://wellnesscenter.uic.edu/policies/e-scooter/,824167.0,3.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Relationships and Sex (Field: intro_text_body),http://wellnesscenter.uic.edu/wp-content/uploads/sites/100/2021/12/When-You-Are-Ready.-People-and-Place-for-info-and-support.pdf,http://wellnesscenter.uic.edu/resources-and-services/sexual-health/,2557060.0,32.0,True,True,Tags detected via pdfminer3
PDF,Billboard (ACF Field),When You&#8217;re Ready (Field: external_url),https://police.uic.edu/wp-content/uploads/sites/25/2022/02/When-You-are-Ready.pdf,http://wellnesscenter.uic.edu/?billboard=when-youre-ready,,,,,Download failed: 404 Client Error: Not Found for url: https://police.uic.edu/wp-content/uploads/sites/25/2022/02/When-You-are-Ready.pdf
PDF,News (ACF Field),Living Off Campus: Your Rights as a Tenant (Field: intro_text_body),https://illinoisattorneygeneral.gov/Page-Attachments/LandlordAndTenantRightsLaws.pdf,http://life.uic.edu/news-stories/living-off-campus-your-rights-as-a-tenant/,310533.0,3.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),How to Make the Best of Your Online Classes (Field: intro_text_body),https://uofi.app.box.com/s/uqgy4d29j05we8fnb6uizscgu2dttpf6,http://life.uic.edu/news-stories/online-classes-blog/,,,,,Skipped: Box link
PDF,Event (ACF Field),Disability Recruiting: Corporate Recruiters Talk to Students with Disabilities (Field: description),https://files.webservices.illinois.edu/9096/aconversationwithcorporaterecruitersstudentswithdisabilities.pdf,http://life.uic.edu/events/disability-recruiting-corporate-recruiters-talk-to-students-with-disabilities/,204409.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),National Geospatial-Intelligence Agency (NGA) Virtual Information Session (Field: description),https://files.webservices.illinois.edu/9096/studentinternbrochure002.pdf,http://life.uic.edu/events/national-geospatial-intelligence-agency-nga-virtual-information-session/,748233.0,5.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Living Off Campus: Your Rights as a Tenant (Field: intro_text_body),https://illinoisattorneygeneral.gov/Page-Attachments/LandlordAndTenantRightsLaws.pdf,http://life.uic.edu/news-stories/living-off-campus-your-rights-as-a-tenant/,310533.0,3.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),How to Make the Best of Your Online Classes (Field: intro_text_body),https://uofi.app.box.com/s/uqgy4d29j05we8fnb6uizscgu2dttpf6,http://life.uic.edu/news-stories/online-classes-blog/,,,,,Skipped: Box link
PDF,Event (ACF Field),Disability Recruiting: Corporate Recruiters Talk to Students with Disabilities (Field: description),https://files.webservices.illinois.edu/9096/aconversationwithcorporaterecruitersstudentswithdisabilities.pdf,http://life.uic.edu/events/disability-recruiting-corporate-recruiters-talk-to-students-with-disabilities/,204409.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),National Geospatial-Intelligence Agency (NGA) Virtual Information Session (Field: description),https://files.webservices.illinois.edu/9096/studentinternbrochure002.pdf,http://life.uic.edu/events/national-geospatial-intelligence-agency-nga-virtual-information-session/,748233.0,5.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Living Off Campus: Your Rights as a Tenant (Field: intro_text_body),https://illinoisattorneygeneral.gov/Page-Attachments/LandlordAndTenantRightsLaws.pdf,https://life.uic.edu/news-stories/living-off-campus-your-rights-as-a-tenant/,310533.0,3.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),How to Make the Best of Your Online Classes (Field: intro_text_body),https://uofi.app.box.com/s/uqgy4d29j05we8fnb6uizscgu2dttpf6,https://life.uic.edu/news-stories/online-classes-blog/,,,,,Skipped: Box link
PDF,Event (ACF Field),Disability Recruiting: Corporate Recruiters Talk to Students with Disabilities (Field: description),https://files.webservices.illinois.edu/9096/aconversationwithcorporaterecruitersstudentswithdisabilities.pdf,https://life.uic.edu/events/disability-recruiting-corporate-recruiters-talk-to-students-with-disabilities/,204409.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),National Geospatial-Intelligence Agency (NGA) Virtual Information Session (Field: description),https://files.webservices.illinois.edu/9096/studentinternbrochure002.pdf,https://life.uic.edu/events/national-geospatial-intelligence-agency-nga-virtual-information-session/,748233.0,5.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),"Abigail Echo-Hawk, MMIW Keynote Speaker (Field: description)",http://www.uihi.org/wp-content/uploads/2018/11/Missing-and-Murdered-Indigenous-Women-and-Girls-Report.pdf,https://nasp.uic.edu/events/abigail-echo-hawk-keynote-speaker/,,,,,Download failed: 406 Client Error: Not Acceptable for url: http://www.uihi.org/wp-content/uploads/2018/11/Missing-and-Murdered-Indigenous-Women-and-Girls-Report.pdf
PDF,Profile (ACF Field),"Walden, Angela (Field: about)",https://nasp.uic.edu/wp-content/uploads/sites/327/2021/05/NATF-1-Final-Report.pdf,https://nasp.uic.edu/profiles/walden-angela/,1954682.0,54.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),"Abigail Echo-Hawk, MMIW Keynote Speaker (Field: description)",http://www.uihi.org/wp-content/uploads/2018/11/Missing-and-Murdered-Indigenous-Women-and-Girls-Report.pdf,https://nasp.uic.edu/events/abigail-echo-hawk-keynote-speaker/,,,,,Download failed: 406 Client Error: Not Acceptable for url: http://www.uihi.org/wp-content/uploads/2018/11/Missing-and-Murdered-Indigenous-Women-and-Girls-Report.pdf
PDF,Profile (ACF Field),"Walden, Angela (Field: about)",https://nasp.uic.edu/wp-content/uploads/sites/327/2021/05/NATF-1-Final-Report.pdf,https://nasp.uic.edu/profiles/walden-angela/,1954682.0,54.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),"Abigail Echo-Hawk, MMIW Keynote Speaker (Field: description)",http://www.uihi.org/wp-content/uploads/2018/11/Missing-and-Murdered-Indigenous-Women-and-Girls-Report.pdf,https://nasp.uic.edu/events/abigail-echo-hawk-keynote-speaker/,,,,,Download failed: 406 Client Error: Not Acceptable for url: http://www.uihi.org/wp-content/uploads/2018/11/Missing-and-Murdered-Indigenous-Women-and-Girls-Report.pdf
PDF,Profile (ACF Field),"Walden, Angela (Field: about)",https://nasp.uic.edu/wp-content/uploads/sites/327/2021/05/NATF-1-Final-Report.pdf,https://nasp.uic.edu/profiles/walden-angela/,1954682.0,54.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CV (Field: intro_text_body),https://uofi.box.com/shared/static/s4sadz0qdvrrch6h52bqem9vihyy5u09.pdf,https://devroye.lab.uic.edu/cv/,202569.0,26.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://devroye.lab.red.uic.edu/wp-content/uploads/sites/570/2019/09/Transfer-Student-ECE-115-Approval-Form.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,,,,,"Download failed: HTTPSConnectionPool(host='devroye.lab.red.uic.edu', port=443): Max retries exceeded with url: /wp-content/uploads/sites/570/2019/09/Transfer-Student-ECE-115-Approval-Form.pdf (Caused by SSLError(SSLCertVerificationError(1, ""[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'devroye.lab.red.uic.edu'. (_ssl.c:1028)"")))"
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2018/10/DOS-Student-Disciplinary-Policy-2018-2019-FINAL.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,1822451.0,38.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://devroye.lab.uic.edu/wp-content/uploads/sites/570/2019/09/Petition-to-take-an-ECE-course-without-prerequisites.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,64101.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://engineering.uic.edu/wp-content/uploads/sites/217/2019/07/Form_UG_Research-1.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,137500.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://engineering.uic.edu/wp-content/uploads/sites/217/2019/07/modmajor.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,238772.0,2.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Research (Field: intro_text_body),https://uofi.box.com/s/z9jmxsa5v62zlixd0af8crxjwomzog2i,https://devroye.lab.uic.edu/research-2/,,,,,Skipped: Box link
PDF,Page (ACF Field),CV (Field: intro_text_body),https://uofi.box.com/shared/static/s4sadz0qdvrrch6h52bqem9vihyy5u09.pdf,https://devroye.lab.uic.edu/cv/,202569.0,26.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://devroye.lab.red.uic.edu/wp-content/uploads/sites/570/2019/09/Transfer-Student-ECE-115-Approval-Form.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,,,,,"Download failed: HTTPSConnectionPool(host='devroye.lab.red.uic.edu', port=443): Max retries exceeded with url: /wp-content/uploads/sites/570/2019/09/Transfer-Student-ECE-115-Approval-Form.pdf (Caused by SSLError(SSLCertVerificationError(1, ""[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'devroye.lab.red.uic.edu'. (_ssl.c:1028)"")))"
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2018/10/DOS-Student-Disciplinary-Policy-2018-2019-FINAL.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,1822451.0,38.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://devroye.lab.uic.edu/wp-content/uploads/sites/570/2019/09/Petition-to-take-an-ECE-course-without-prerequisites.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,64101.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://engineering.uic.edu/wp-content/uploads/sites/217/2019/07/Form_UG_Research-1.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,137500.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://engineering.uic.edu/wp-content/uploads/sites/217/2019/07/modmajor.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,238772.0,2.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Research (Field: intro_text_body),https://uofi.box.com/s/z9jmxsa5v62zlixd0af8crxjwomzog2i,https://devroye.lab.uic.edu/research-2/,,,,,Skipped: Box link
PDF,Page (ACF Field),CV (Field: intro_text_body),https://uofi.box.com/shared/static/s4sadz0qdvrrch6h52bqem9vihyy5u09.pdf,https://devroye.lab.uic.edu/cv/,202569.0,26.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://devroye.lab.red.uic.edu/wp-content/uploads/sites/570/2019/09/Transfer-Student-ECE-115-Approval-Form.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,,,,,"Download failed: HTTPSConnectionPool(host='devroye.lab.red.uic.edu', port=443): Max retries exceeded with url: /wp-content/uploads/sites/570/2019/09/Transfer-Student-ECE-115-Approval-Form.pdf (Caused by SSLError(SSLCertVerificationError(1, ""[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'devroye.lab.red.uic.edu'. (_ssl.c:1028)"")))"
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2018/10/DOS-Student-Disciplinary-Policy-2018-2019-FINAL.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,1822451.0,38.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://devroye.lab.uic.edu/wp-content/uploads/sites/570/2019/09/Petition-to-take-an-ECE-course-without-prerequisites.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,64101.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://engineering.uic.edu/wp-content/uploads/sites/217/2019/07/Form_UG_Research-1.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,137500.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Director of Undergraduate Studies (Field: intro_text_body),https://engineering.uic.edu/wp-content/uploads/sites/217/2019/07/modmajor.pdf,https://devroye.lab.uic.edu/teaching/director-of-undergraduate-studies/,238772.0,2.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Research (Field: intro_text_body),https://uofi.box.com/s/z9jmxsa5v62zlixd0af8crxjwomzog2i,https://devroye.lab.uic.edu/research-2/,,,,,Skipped: Box link
PDF,Page (ACF Field),Resources (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf,http://chem342.class.uic.edu/resources/,,,,,Download failed: 410 Client Error: Gone for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf
PDF,Page (ACF Field),Syllabus (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf,http://chem342.class.uic.edu/syllabus/,,,,,Download failed: 404 Client Error: Not Found for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf,http://chem342.class.uic.edu/resources/,,,,,Download failed: 410 Client Error: Gone for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf
PDF,Page (ACF Field),Syllabus (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf,http://chem342.class.uic.edu/syllabus/,,,,,Download failed: 404 Client Error: Not Found for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf,https://chem342.class.uic.edu/resources/,,,,,Download failed: 410 Client Error: Gone for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf
PDF,Page (ACF Field),Syllabus (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf,https://chem342.class.uic.edu/syllabus/,,,,,Download failed: 404 Client Error: Not Found for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf,http://chem342.class.uic.edu/resources/,,,,,Download failed: 404 Client Error: Not Found for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/10/ThermoCheatSheet_LARGE.pdf
PDF,Page (ACF Field),Syllabus (Field: intro_text_body),http://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf,http://chem342.class.uic.edu/syllabus/,,,,,Download failed: 404 Client Error: Not Found for url: https://chem342.class.uic.edu/wp-content/uploads/sites/407/2023/08/Syllabus_342.pdf
PDF,Billboard (ACF Field),Full Activity Announcement (Field: external_url),http://hpdil2019.red.uic.edu/wp-content/uploads/sites/558/2018/09/AnnouncementITPA.pdf,https://2020summit.pharmacy.uic.edu/?billboard=view-full-activity-announcement,112335.0,4.0,True,False,No tags detected via pdfminer3
PDF,Billboard (ACF Field),Full Activity Announcement (Field: external_url),http://hpdil2019.red.uic.edu/wp-content/uploads/sites/558/2018/09/AnnouncementITPA.pdf,https://2020summit.pharmacy.uic.edu/?billboard=view-full-activity-announcement,112335.0,4.0,True,False,No tags detected via pdfminer3
PDF,Billboard (ACF Field),Full Activity Announcement (Field: external_url),http://hpdil2019.red.uic.edu/wp-content/uploads/sites/558/2018/09/AnnouncementITPA.pdf,https://2020summit.pharmacy.uic.edu/?billboard=view-full-activity-announcement,112335.0,4.0,True,False,No tags detected via pdfminer3
PDF,Billboard (ACF Field),Full Activity Announcement (Field: external_url),http://hpdil2019.red.uic.edu/wp-content/uploads/sites/558/2018/09/AnnouncementITPA.pdf,https://2020summit.pharmacy.uic.edu/?billboard=view-full-activity-announcement,112335.0,4.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Fall 2023: GLAS 242—Introduction to Arab American Studies (Field: intro_text_body),https://uofi.box.com/s/nyf07yily25qomxbp1h65fcm8uhpdu1x,http://glas.uic.edu/fall-2023-glas-242-introduction-to-arab-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/x429okatqy0baqhj6hywqid64rkos2qi,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/udnmkp57wjurnkkc8pwbc3pnyg2so8r4,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/afctezyd2od7ej48l7h3eb1kgkv4h2j8,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/e2fh2vv349t39j5llp5v3t42rvy796me,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/m8c3wi0or5ubinil08c3di84djv3264y,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/edtuvd7k34olfpnneoqi3wl03afgwrll,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/o6z55a3gx731xsscj6lxx7rsi05w8kew,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c55uvn0yhd3z9k90fw1txifidbdy19qk,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/4low6z7rcbjzehi9plczpskaihpuipw7,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c903675phf093vz4j4d0kt1g4hbh3gsn,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/1m8tuze8vruki2mv8lvfuh6illga6qxb,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/9d9qbhi72mkjx46e348qd9knhi8yae3v,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/xobmzy5j9osh0y15otqmt6yzfadwjqrw,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/601lf7wr887l4by4y2j934olt86goqiw,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/bsw6ypb1gl1dgfpmu3hfww0f5ryood7j,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/0sdseghihhs3kj98x84ad8hkbvfh8upv,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/i9ezwhmbyq6pk7gkokzb2qvokxlxt3l2,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/60zpgeb86tjuogakpokuu965755o0yw7,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/zi2gl9bago3a15g497ya88108hdcv1e2,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/yduuefzaiefgfdun9jzvmbb83nlvlrle,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),Requirements for the GLAS Major (Field: intro_text_body),https://uofi.box.com/s/87vrbpqxn5jwhuen0elft8nhu2sbe3wn,http://glas.uic.edu/academics/glas-major-and-minor/major-requirements/,,,,,Skipped: Box link
Box,Page (ACF Field),GLAS 123: Introduction to Asian American Literature (Field: intro_text_body),https://uofi.box.com/s/fu3gdjoqu1axglygvg3sipuxv4y3nz1r,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2021-student-project-exhibit/glas-123-introduction-to-asian-american-literature/,,,,,Skipped: Box link
Box,Page (ACF Field),UIC Community Quaran-Zine (Field: intro_text_body),https://uofi.box.com/s/t0cq3hz6pgnsjvb3y4pjjblo9qd5mdoc,http://glas.uic.edu/initiatives-community/co-sponsored-projects/uic-community-quaran-zine/,,,,,Skipped: Box link
PDF,Page (ACF Field),Kamal Kishore Kapur Memorial Prize (Field: intro_text_body),http://glas.red.uic.edu/wp-content/uploads/sites/269/2019/01/Asian-American-Studies-Essay-Contest-2015.pdf,http://glas.uic.edu/career-and-resources/asian-american-studies-archive/kamal-kishore-kapur-memorial-prize/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),"OpEd on &#8220;Bring Chicago Home&#8221; Referendum Co-authored by Kenneth Allen, Gayatri Reddy and Anna Guevarra (Field: intro_text_body)",https://occprodstoragev1.blob.core.usgovcloudapi.net/matterattachmentspublic/db8b5770-b37a-4b55-9625-7c0f55538927.pdf,http://glas.uic.edu/news-stories/oped-on-bring-chicago-home-co-authored-by-kenneth-allen-gayatri-reddy-and-anna-guevarra/,135812.0,3.0,False,False,No tags detected via pdfminer3
PDF,News (ACF Field),Justin Phan&#8217;s Essay Featured in an Exhibit in Glasglow (Field: intro_text_body),https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf,http://glas.uic.edu/news-stories/justin-phans-essay-featured-in-an-exhibit-in-glasglow/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/opz0f3893r16l2zlrfj46x0zz7b7tsv6,http://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/q6vh4tzpgzxdwbmqnfvqhyv60iz0lgne,http://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,Event (ACF Field),“This Poison Broke the World”: Remapping Nuclear Colonialism in the Cold War Pacific by Aanchal Saraf (Field: description),https://uofi.box.com/s/m5g972rptba8dwmmypumna4rlunjm0gv,http://glas.uic.edu/events/this-poison-broke-the-world-remapping-nuclear-colonialism-in-the-cold-war-pacific/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hostetler, Laura (Field: cv_link)",https://uofi.box.com/s/4948rwz4bjwf9bwko0746rscvr52oqdi,http://glas.uic.edu/profiles/hostetler-laura/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023: GLAS 242—Introduction to Arab American Studies (Field: intro_text_body),https://uofi.box.com/s/nyf07yily25qomxbp1h65fcm8uhpdu1x,https://glas.uic.edu/fall-2023-glas-242-introduction-to-arab-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/x429okatqy0baqhj6hywqid64rkos2qi,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/udnmkp57wjurnkkc8pwbc3pnyg2so8r4,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/afctezyd2od7ej48l7h3eb1kgkv4h2j8,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/e2fh2vv349t39j5llp5v3t42rvy796me,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/m8c3wi0or5ubinil08c3di84djv3264y,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/edtuvd7k34olfpnneoqi3wl03afgwrll,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/o6z55a3gx731xsscj6lxx7rsi05w8kew,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c55uvn0yhd3z9k90fw1txifidbdy19qk,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/4low6z7rcbjzehi9plczpskaihpuipw7,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c903675phf093vz4j4d0kt1g4hbh3gsn,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/1m8tuze8vruki2mv8lvfuh6illga6qxb,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/9d9qbhi72mkjx46e348qd9knhi8yae3v,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/xobmzy5j9osh0y15otqmt6yzfadwjqrw,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/601lf7wr887l4by4y2j934olt86goqiw,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/bsw6ypb1gl1dgfpmu3hfww0f5ryood7j,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/0sdseghihhs3kj98x84ad8hkbvfh8upv,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/i9ezwhmbyq6pk7gkokzb2qvokxlxt3l2,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/60zpgeb86tjuogakpokuu965755o0yw7,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/zi2gl9bago3a15g497ya88108hdcv1e2,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/yduuefzaiefgfdun9jzvmbb83nlvlrle,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),Requirements for the GLAS Major (Field: intro_text_body),https://uofi.box.com/s/87vrbpqxn5jwhuen0elft8nhu2sbe3wn,https://glas.uic.edu/academics/glas-major-and-minor/major-requirements/,,,,,Skipped: Box link
Box,Page (ACF Field),GLAS 123: Introduction to Asian American Literature (Field: intro_text_body),https://uofi.box.com/s/fu3gdjoqu1axglygvg3sipuxv4y3nz1r,https://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2021-student-project-exhibit/glas-123-introduction-to-asian-american-literature/,,,,,Skipped: Box link
Box,Page (ACF Field),UIC Community Quaran-Zine (Field: intro_text_body),https://uofi.box.com/s/t0cq3hz6pgnsjvb3y4pjjblo9qd5mdoc,https://glas.uic.edu/initiatives-community/co-sponsored-projects/uic-community-quaran-zine/,,,,,Skipped: Box link
PDF,Page (ACF Field),Kamal Kishore Kapur Memorial Prize (Field: intro_text_body),http://glas.red.uic.edu/wp-content/uploads/sites/269/2019/01/Asian-American-Studies-Essay-Contest-2015.pdf,https://glas.uic.edu/career-and-resources/asian-american-studies-archive/kamal-kishore-kapur-memorial-prize/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),"OpEd on &#8220;Bring Chicago Home&#8221; Referendum Co-authored by Kenneth Allen, Gayatri Reddy and Anna Guevarra (Field: intro_text_body)",https://occprodstoragev1.blob.core.usgovcloudapi.net/matterattachmentspublic/db8b5770-b37a-4b55-9625-7c0f55538927.pdf,https://glas.uic.edu/news-stories/oped-on-bring-chicago-home-co-authored-by-kenneth-allen-gayatri-reddy-and-anna-guevarra/,135812.0,3.0,False,False,No tags detected via pdfminer3
PDF,News (ACF Field),Justin Phan&#8217;s Essay Featured in an Exhibit in Glasglow (Field: intro_text_body),https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf,https://glas.uic.edu/news-stories/justin-phans-essay-featured-in-an-exhibit-in-glasglow/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/opz0f3893r16l2zlrfj46x0zz7b7tsv6,https://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/q6vh4tzpgzxdwbmqnfvqhyv60iz0lgne,https://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,Event (ACF Field),“This Poison Broke the World”: Remapping Nuclear Colonialism in the Cold War Pacific by Aanchal Saraf (Field: description),https://uofi.box.com/s/m5g972rptba8dwmmypumna4rlunjm0gv,https://glas.uic.edu/events/this-poison-broke-the-world-remapping-nuclear-colonialism-in-the-cold-war-pacific/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hostetler, Laura (Field: cv_link)",https://uofi.box.com/s/4948rwz4bjwf9bwko0746rscvr52oqdi,https://glas.uic.edu/profiles/hostetler-laura/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023: GLAS 242—Introduction to Arab American Studies (Field: intro_text_body),https://uofi.box.com/s/nyf07yily25qomxbp1h65fcm8uhpdu1x,http://glas.uic.edu/fall-2023-glas-242-introduction-to-arab-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/x429okatqy0baqhj6hywqid64rkos2qi,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/udnmkp57wjurnkkc8pwbc3pnyg2so8r4,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/afctezyd2od7ej48l7h3eb1kgkv4h2j8,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/e2fh2vv349t39j5llp5v3t42rvy796me,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/m8c3wi0or5ubinil08c3di84djv3264y,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/edtuvd7k34olfpnneoqi3wl03afgwrll,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/o6z55a3gx731xsscj6lxx7rsi05w8kew,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c55uvn0yhd3z9k90fw1txifidbdy19qk,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/4low6z7rcbjzehi9plczpskaihpuipw7,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c903675phf093vz4j4d0kt1g4hbh3gsn,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/1m8tuze8vruki2mv8lvfuh6illga6qxb,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/9d9qbhi72mkjx46e348qd9knhi8yae3v,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/xobmzy5j9osh0y15otqmt6yzfadwjqrw,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/601lf7wr887l4by4y2j934olt86goqiw,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/bsw6ypb1gl1dgfpmu3hfww0f5ryood7j,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/0sdseghihhs3kj98x84ad8hkbvfh8upv,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/i9ezwhmbyq6pk7gkokzb2qvokxlxt3l2,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/60zpgeb86tjuogakpokuu965755o0yw7,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/zi2gl9bago3a15g497ya88108hdcv1e2,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/yduuefzaiefgfdun9jzvmbb83nlvlrle,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),Requirements for the GLAS Major (Field: intro_text_body),https://uofi.box.com/s/87vrbpqxn5jwhuen0elft8nhu2sbe3wn,http://glas.uic.edu/academics/glas-major-and-minor/major-requirements/,,,,,Skipped: Box link
Box,Page (ACF Field),GLAS 123: Introduction to Asian American Literature (Field: intro_text_body),https://uofi.box.com/s/fu3gdjoqu1axglygvg3sipuxv4y3nz1r,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2021-student-project-exhibit/glas-123-introduction-to-asian-american-literature/,,,,,Skipped: Box link
Box,Page (ACF Field),UIC Community Quaran-Zine (Field: intro_text_body),https://uofi.box.com/s/t0cq3hz6pgnsjvb3y4pjjblo9qd5mdoc,http://glas.uic.edu/initiatives-community/co-sponsored-projects/uic-community-quaran-zine/,,,,,Skipped: Box link
PDF,Page (ACF Field),Kamal Kishore Kapur Memorial Prize (Field: intro_text_body),http://glas.red.uic.edu/wp-content/uploads/sites/269/2019/01/Asian-American-Studies-Essay-Contest-2015.pdf,http://glas.uic.edu/career-and-resources/asian-american-studies-archive/kamal-kishore-kapur-memorial-prize/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),"OpEd on &#8220;Bring Chicago Home&#8221; Referendum Co-authored by Kenneth Allen, Gayatri Reddy and Anna Guevarra (Field: intro_text_body)",https://occprodstoragev1.blob.core.usgovcloudapi.net/matterattachmentspublic/db8b5770-b37a-4b55-9625-7c0f55538927.pdf,http://glas.uic.edu/news-stories/oped-on-bring-chicago-home-co-authored-by-kenneth-allen-gayatri-reddy-and-anna-guevarra/,135812.0,3.0,False,False,No tags detected via pdfminer3
PDF,News (ACF Field),Justin Phan&#8217;s Essay Featured in an Exhibit in Glasglow (Field: intro_text_body),https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf,http://glas.uic.edu/news-stories/justin-phans-essay-featured-in-an-exhibit-in-glasglow/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/opz0f3893r16l2zlrfj46x0zz7b7tsv6,http://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/q6vh4tzpgzxdwbmqnfvqhyv60iz0lgne,http://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,Event (ACF Field),“This Poison Broke the World”: Remapping Nuclear Colonialism in the Cold War Pacific by Aanchal Saraf (Field: description),https://uofi.box.com/s/m5g972rptba8dwmmypumna4rlunjm0gv,http://glas.uic.edu/events/this-poison-broke-the-world-remapping-nuclear-colonialism-in-the-cold-war-pacific/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hostetler, Laura (Field: cv_link)",https://uofi.box.com/s/4948rwz4bjwf9bwko0746rscvr52oqdi,http://glas.uic.edu/profiles/hostetler-laura/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023: GLAS 242—Introduction to Arab American Studies (Field: intro_text_body),https://uofi.box.com/s/nyf07yily25qomxbp1h65fcm8uhpdu1x,http://glas.uic.edu/fall-2023-glas-242-introduction-to-arab-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/x429okatqy0baqhj6hywqid64rkos2qi,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/udnmkp57wjurnkkc8pwbc3pnyg2so8r4,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/afctezyd2od7ej48l7h3eb1kgkv4h2j8,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/e2fh2vv349t39j5llp5v3t42rvy796me,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/m8c3wi0or5ubinil08c3di84djv3264y,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/edtuvd7k34olfpnneoqi3wl03afgwrll,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/o6z55a3gx731xsscj6lxx7rsi05w8kew,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c55uvn0yhd3z9k90fw1txifidbdy19qk,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/4low6z7rcbjzehi9plczpskaihpuipw7,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/c903675phf093vz4j4d0kt1g4hbh3gsn,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Spring 2024: GLAS 290—Asian American Life Stories (Field: intro_text_body),https://uofi.box.com/s/1m8tuze8vruki2mv8lvfuh6illga6qxb,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/spring-2024-glas-290-asian-american-life-stories/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/9d9qbhi72mkjx46e348qd9knhi8yae3v,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/xobmzy5j9osh0y15otqmt6yzfadwjqrw,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),Fall 2023 and Spring 2024: GLAS 120—Intro to Asian American Studies (Field: intro_text_body),https://uofi.box.com/s/601lf7wr887l4by4y2j934olt86goqiw,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2024-student-project-exhibit/ay24-glas-120-intro-to-asian-american-studies/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/bsw6ypb1gl1dgfpmu3hfww0f5ryood7j,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/0sdseghihhs3kj98x84ad8hkbvfh8upv,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/i9ezwhmbyq6pk7gkokzb2qvokxlxt3l2,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/60zpgeb86tjuogakpokuu965755o0yw7,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/zi2gl9bago3a15g497ya88108hdcv1e2,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),SPR &#8217;22: GLAS 300—Global Asia in Chicago (Field: intro_text_body),https://uofi.box.com/s/yduuefzaiefgfdun9jzvmbb83nlvlrle,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2022-student-project-exhibit/spr-22-glas-300-global-asia-in-chicago/,,,,,Skipped: Box link
Box,Page (ACF Field),Requirements for the GLAS Major (Field: intro_text_body),https://uofi.box.com/s/87vrbpqxn5jwhuen0elft8nhu2sbe3wn,http://glas.uic.edu/academics/glas-major-and-minor/major-requirements/,,,,,Skipped: Box link
Box,Page (ACF Field),GLAS 123: Introduction to Asian American Literature (Field: intro_text_body),https://uofi.box.com/s/fu3gdjoqu1axglygvg3sipuxv4y3nz1r,http://glas.uic.edu/academics/glasapalooza-student-project-exhibit/glasapalooza-2021-student-project-exhibit/glas-123-introduction-to-asian-american-literature/,,,,,Skipped: Box link
Box,Page (ACF Field),UIC Community Quaran-Zine (Field: intro_text_body),https://uofi.box.com/s/t0cq3hz6pgnsjvb3y4pjjblo9qd5mdoc,http://glas.uic.edu/initiatives-community/co-sponsored-projects/uic-community-quaran-zine/,,,,,Skipped: Box link
PDF,Page (ACF Field),Kamal Kishore Kapur Memorial Prize (Field: intro_text_body),http://glas.red.uic.edu/wp-content/uploads/sites/269/2019/01/Asian-American-Studies-Essay-Contest-2015.pdf,http://glas.uic.edu/career-and-resources/asian-american-studies-archive/kamal-kishore-kapur-memorial-prize/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),"OpEd on &#8220;Bring Chicago Home&#8221; Referendum Co-authored by Kenneth Allen, Gayatri Reddy and Anna Guevarra (Field: intro_text_body)",https://occprodstoragev1.blob.core.usgovcloudapi.net/matterattachmentspublic/db8b5770-b37a-4b55-9625-7c0f55538927.pdf,http://glas.uic.edu/news-stories/oped-on-bring-chicago-home-co-authored-by-kenneth-allen-gayatri-reddy-and-anna-guevarra/,135812.0,3.0,False,False,No tags detected via pdfminer3
PDF,News (ACF Field),Justin Phan&#8217;s Essay Featured in an Exhibit in Glasglow (Field: intro_text_body),https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf,http://glas.uic.edu/news-stories/justin-phans-essay-featured-in-an-exhibit-in-glasglow/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cca-glasgow.com/media/documents/Tuan-Handout_Extended_Web.pdf
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/opz0f3893r16l2zlrfj46x0zz7b7tsv6,http://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,News (ACF Field),Available: Teaching and Graduate Assistant Positions in GLAS Starting Fall 2021 (Field: intro_text_body),https://uofi.box.com/s/q6vh4tzpgzxdwbmqnfvqhyv60iz0lgne,http://glas.uic.edu/news-stories/available-teaching-and-graduate-assistant-positions-in-glas-starting-fall-2021/,,,,,Skipped: Box link
Box,Event (ACF Field),“This Poison Broke the World”: Remapping Nuclear Colonialism in the Cold War Pacific by Aanchal Saraf (Field: description),https://uofi.box.com/s/m5g972rptba8dwmmypumna4rlunjm0gv,http://glas.uic.edu/events/this-poison-broke-the-world-remapping-nuclear-colonialism-in-the-cold-war-pacific/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hostetler, Laura (Field: cv_link)",https://uofi.box.com/s/4948rwz4bjwf9bwko0746rscvr52oqdi,http://glas.uic.edu/profiles/hostetler-laura/,,,,,Skipped: Box link
Box,Page (ACF Field),Building Standards (Field: raw_code),https://uofi.app.box.com/embed/s/usjncv5s13axrxrw5faa0v8cseep8gv7?sortColumn=name&sortDirection=asc&showItemFeedActions=false&showParentPath=false&view=list%22%20width=%22800%22%20height=%221250%22%20frameborder=%220%22%20allowfullscreen%20webkitallowfullscreen%20msallowfullscreen,https://cppm.uic.edu/construction/construction-codes-building-standards/building-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Building Standards (Field: raw_code),https://uofi.app.box.com/embed/s/usjncv5s13axrxrw5faa0v8cseep8gv7?sortColumn=name&sortDirection=asc&showItemFeedActions=false&showParentPath=false&view=list%22%20width=%22800%22%20height=%221250%22%20frameborder=%220%22%20allowfullscreen%20webkitallowfullscreen%20msallowfullscreen,https://cppm.uic.edu/construction/construction-codes-building-standards/building-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Building Standards (Field: raw_code),https://uofi.app.box.com/embed/s/usjncv5s13axrxrw5faa0v8cseep8gv7?sortColumn=name&sortDirection=asc&showItemFeedActions=false&showParentPath=false&view=list%22%20width=%22800%22%20height=%221250%22%20frameborder=%220%22%20allowfullscreen%20webkitallowfullscreen%20msallowfullscreen,https://cppm.uic.edu/construction/construction-codes-building-standards/building-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Building Standards (Field: raw_code),https://uofi.app.box.com/embed/s/usjncv5s13axrxrw5faa0v8cseep8gv7?sortColumn=name&sortDirection=asc&showItemFeedActions=false&showParentPath=false&view=list%22%20width=%22800%22%20height=%221250%22%20frameborder=%220%22%20allowfullscreen%20webkitallowfullscreen%20msallowfullscreen,https://cppm.uic.edu/construction/construction-codes-building-standards/building-standards/,,,,,Skipped: Box link
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/templates-cpp24.pdf,https://mansky.lab.uic.edu/publications/,630893.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/vst-on-iris.pdf,https://mansky.lab.uic.edu/publications/,768575.0,27.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2022/07/conc-bst.pdf,https://mansky.lab.uic.edu/publications/,207630.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://drops.dagstuhl.de/opus/volltexte/2021/13927/pdf/LIPIcs-ITP-2021-32.pdf,https://mansky.lab.uic.edu/publications/,770230.0,19.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf,https://mansky.lab.uic.edu/publications/,,,,,Download failed: 404 Client Error: Not Found for url: https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/2.-deepweb-overview.pdf,https://mansky.lab.uic.edu/publications/,671213.0,14.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/3.-messaging.pdf,https://mansky.lab.uic.edu/publications/,910141.0,28.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/4.-barracuda.pdf,https://mansky.lab.uic.edu/publications/,618127.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/5.-rd.pdf,https://mansky.lab.uic.edu/publications/,378751.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/6.-memspec.pdf,https://mansky.lab.uic.edu/publications/,335336.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/7.-intptrcast.pdf,https://mansky.lab.uic.edu/publications/,457282.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/8.-ICTAC2014.pdf,https://mansky.lab.uic.edu/publications/,371560.0,18.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/9.-lola14.pdf,https://mansky.lab.uic.edu/publications/,392950.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/10.-p015-03-mansky.pdf,https://mansky.lab.uic.edu/publications/,452512.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/11.-thesis.pdf,https://mansky.lab.uic.edu/publications/,1403686.0,405.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/12.-1407.7932.pdf,https://mansky.lab.uic.edu/publications/,251169.0,13.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/14.-rgtl.pdf,https://mansky.lab.uic.edu/publications/,310918.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/15.-Bass2011.pdf,https://mansky.lab.uic.edu/publications/,481992.0,8.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/16.-ITP2010.pdf,https://mansky.lab.uic.edu/publications/,231897.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Research (Field: intro_text_body),https://github.com/PrincetonUniversity/VST/blob/master/doc/concurrency.pdf,https://mansky.lab.uic.edu/research-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/templates-cpp24.pdf,https://mansky.lab.uic.edu/publications/,630893.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/vst-on-iris.pdf,https://mansky.lab.uic.edu/publications/,768575.0,27.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2022/07/conc-bst.pdf,https://mansky.lab.uic.edu/publications/,207630.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://drops.dagstuhl.de/opus/volltexte/2021/13927/pdf/LIPIcs-ITP-2021-32.pdf,https://mansky.lab.uic.edu/publications/,770230.0,19.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf,https://mansky.lab.uic.edu/publications/,,,,,Download failed: 404 Client Error: Not Found for url: https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/2.-deepweb-overview.pdf,https://mansky.lab.uic.edu/publications/,671213.0,14.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/3.-messaging.pdf,https://mansky.lab.uic.edu/publications/,910141.0,28.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/4.-barracuda.pdf,https://mansky.lab.uic.edu/publications/,618127.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/5.-rd.pdf,https://mansky.lab.uic.edu/publications/,378751.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/6.-memspec.pdf,https://mansky.lab.uic.edu/publications/,335336.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/7.-intptrcast.pdf,https://mansky.lab.uic.edu/publications/,457282.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/8.-ICTAC2014.pdf,https://mansky.lab.uic.edu/publications/,371560.0,18.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/9.-lola14.pdf,https://mansky.lab.uic.edu/publications/,392950.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/10.-p015-03-mansky.pdf,https://mansky.lab.uic.edu/publications/,452512.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/11.-thesis.pdf,https://mansky.lab.uic.edu/publications/,1403686.0,405.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/12.-1407.7932.pdf,https://mansky.lab.uic.edu/publications/,251169.0,13.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/14.-rgtl.pdf,https://mansky.lab.uic.edu/publications/,310918.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/15.-Bass2011.pdf,https://mansky.lab.uic.edu/publications/,481992.0,8.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/16.-ITP2010.pdf,https://mansky.lab.uic.edu/publications/,231897.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Research (Field: intro_text_body),https://github.com/PrincetonUniversity/VST/blob/master/doc/concurrency.pdf,https://mansky.lab.uic.edu/research-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/templates-cpp24.pdf,https://mansky.lab.uic.edu/publications/,630893.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/vst-on-iris.pdf,https://mansky.lab.uic.edu/publications/,768575.0,27.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2022/07/conc-bst.pdf,https://mansky.lab.uic.edu/publications/,207630.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://drops.dagstuhl.de/opus/volltexte/2021/13927/pdf/LIPIcs-ITP-2021-32.pdf,https://mansky.lab.uic.edu/publications/,770230.0,19.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf,https://mansky.lab.uic.edu/publications/,,,,,Download failed: 404 Client Error: Not Found for url: https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/2.-deepweb-overview.pdf,https://mansky.lab.uic.edu/publications/,671213.0,14.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/3.-messaging.pdf,https://mansky.lab.uic.edu/publications/,910141.0,28.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/4.-barracuda.pdf,https://mansky.lab.uic.edu/publications/,618127.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/5.-rd.pdf,https://mansky.lab.uic.edu/publications/,378751.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/6.-memspec.pdf,https://mansky.lab.uic.edu/publications/,335336.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/7.-intptrcast.pdf,https://mansky.lab.uic.edu/publications/,457282.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/8.-ICTAC2014.pdf,https://mansky.lab.uic.edu/publications/,371560.0,18.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/9.-lola14.pdf,https://mansky.lab.uic.edu/publications/,392950.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/10.-p015-03-mansky.pdf,https://mansky.lab.uic.edu/publications/,452512.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/11.-thesis.pdf,https://mansky.lab.uic.edu/publications/,1403686.0,405.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/12.-1407.7932.pdf,https://mansky.lab.uic.edu/publications/,251169.0,13.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/14.-rgtl.pdf,https://mansky.lab.uic.edu/publications/,310918.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/15.-Bass2011.pdf,https://mansky.lab.uic.edu/publications/,481992.0,8.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/16.-ITP2010.pdf,https://mansky.lab.uic.edu/publications/,231897.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Research (Field: intro_text_body),https://github.com/PrincetonUniversity/VST/blob/master/doc/concurrency.pdf,https://mansky.lab.uic.edu/research-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/templates-cpp24.pdf,https://mansky.lab.uic.edu/publications/,630893.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2023/12/vst-on-iris.pdf,https://mansky.lab.uic.edu/publications/,768575.0,27.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky.lab.uic.edu/wp-content/uploads/sites/862/2022/07/conc-bst.pdf,https://mansky.lab.uic.edu/publications/,207630.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://drops.dagstuhl.de/opus/volltexte/2021/13927/pdf/LIPIcs-ITP-2021-32.pdf,https://mansky.lab.uic.edu/publications/,770230.0,19.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf,https://mansky.lab.uic.edu/publications/,,,,,Download failed: 404 Client Error: Not Found for url: https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/1.-connecting-esop.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/2.-deepweb-overview.pdf,https://mansky.lab.uic.edu/publications/,671213.0,14.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/3.-messaging.pdf,https://mansky.lab.uic.edu/publications/,910141.0,28.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/4.-barracuda.pdf,https://mansky.lab.uic.edu/publications/,618127.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/5.-rd.pdf,https://mansky.lab.uic.edu/publications/,378751.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/6.-memspec.pdf,https://mansky.lab.uic.edu/publications/,335336.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/7.-intptrcast.pdf,https://mansky.lab.uic.edu/publications/,457282.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/8.-ICTAC2014.pdf,https://mansky.lab.uic.edu/publications/,371560.0,18.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/9.-lola14.pdf,https://mansky.lab.uic.edu/publications/,392950.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/10.-p015-03-mansky.pdf,https://mansky.lab.uic.edu/publications/,452512.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/11.-thesis.pdf,https://mansky.lab.uic.edu/publications/,1403686.0,405.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/12.-1407.7932.pdf,https://mansky.lab.uic.edu/publications/,251169.0,13.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/14.-rgtl.pdf,https://mansky.lab.uic.edu/publications/,310918.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/15.-Bass2011.pdf,https://mansky.lab.uic.edu/publications/,481992.0,8.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),https://mansky-cs.red.uic.edu/wp-content/uploads/sites/862/2021/08/16.-ITP2010.pdf,https://mansky.lab.uic.edu/publications/,231897.0,16.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Research (Field: intro_text_body),https://github.com/PrincetonUniversity/VST/blob/master/doc/concurrency.pdf,https://mansky.lab.uic.edu/research-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Profile (ACF Field),"Walsh, Susan M. (Field: about)",http://www.who.int/publications/almaata_declaration_en.pdf,http://nursing-backup.red.uic.edu/profiles/susan-walsh/,,,,,Download failed: 404 Client Error: not found for url: https://www.who.int/publications/almaata_declaration_en.pdf
PDF,Profile (ACF Field),"Walsh, Susan M. (Field: about)",http://www.who.int/publications/almaata_declaration_en.pdf,http://nursing-backup.red.uic.edu/profiles/susan-walsh/,,,,,Download failed: 404 Client Error: not found for url: https://www.who.int/publications/almaata_declaration_en.pdf
PDF,Profile (ACF Field),"Walsh, Susan M. (Field: about)",http://www.who.int/publications/almaata_declaration_en.pdf,https://nursing-backup.red.uic.edu/profiles/susan-walsh/,,,,,Download failed: 404 Client Error: not found for url: https://www.who.int/publications/almaata_declaration_en.pdf
PDF,Profile (ACF Field),"Walsh, Susan M. (Field: about)",http://www.who.int/publications/almaata_declaration_en.pdf,http://nursing-backup.red.uic.edu/profiles/susan-walsh/,,,,,Download failed: 404 Client Error: not found for url: https://www.who.int/publications/almaata_declaration_en.pdf
PDF,Page (ACF Field),Tech Career Fair Registration (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2018/02/Spring2018-enrollment.pdf,http://ecc.uic.edu/tech-career-fair-registration/,106257.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-Graphic-for-website-2024.pdf,http://ecc.uic.edu/career-tools/networking/,391494.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-ECC-Website-2024-1.pdf,http://ecc.uic.edu/career-tools/networking/,173537.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2020/08/Informational-Interviewing.pdf,http://ecc.uic.edu/career-tools/networking/,87906.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Tech Career Fair Registration (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2018/02/Spring2018-enrollment.pdf,https://ecc.uic.edu/tech-career-fair-registration/,106257.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-Graphic-for-website-2024.pdf,https://ecc.uic.edu/career-tools/networking/,391494.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-ECC-Website-2024-1.pdf,https://ecc.uic.edu/career-tools/networking/,173537.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2020/08/Informational-Interviewing.pdf,https://ecc.uic.edu/career-tools/networking/,87906.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Tech Career Fair Registration (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2018/02/Spring2018-enrollment.pdf,http://ecc.uic.edu/tech-career-fair-registration/,106257.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-Graphic-for-website-2024.pdf,http://ecc.uic.edu/career-tools/networking/,391494.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-ECC-Website-2024-1.pdf,http://ecc.uic.edu/career-tools/networking/,173537.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2020/08/Informational-Interviewing.pdf,http://ecc.uic.edu/career-tools/networking/,87906.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Tech Career Fair Registration (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2018/02/Spring2018-enrollment.pdf,http://ecc.uic.edu/tech-career-fair-registration/,106257.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-Graphic-for-website-2024.pdf,http://ecc.uic.edu/career-tools/networking/,391494.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2024/08/Elevator-Pitch-ECC-Website-2024-1.pdf,http://ecc.uic.edu/career-tools/networking/,173537.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Professional Introduction &amp; Networking (Field: intro_text_body),http://ecc.uic.edu/wp-content/uploads/sites/78/2020/08/Informational-Interviewing.pdf,http://ecc.uic.edu/career-tools/networking/,87906.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),The Search Process &#8211; Tips and Steps (Field: intro_text_body),https://www.cityofchicago.org/content/dam/city/depts/dcd/general/housing/RTLOEnglish.pdf,http://csrc.uic.edu/off-campus-housing/the-search-process-tips-and-steps/,2087174.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),The Search Process &#8211; Tips and Steps (Field: intro_text_body),https://www.cityofchicago.org/content/dam/city/depts/dcd/general/housing/RTLOEnglish.pdf,http://csrc.uic.edu/off-campus-housing/the-search-process-tips-and-steps/,2087174.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),The Search Process &#8211; Tips and Steps (Field: intro_text_body),https://www.cityofchicago.org/content/dam/city/depts/dcd/general/housing/RTLOEnglish.pdf,http://csrc.uic.edu/off-campus-housing/the-search-process-tips-and-steps/,2087174.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),The Search Process &#8211; Tips and Steps (Field: intro_text_body),https://www.cityofchicago.org/content/dam/city/depts/dcd/general/housing/RTLOEnglish.pdf,https://csrc.uic.edu/off-campus-housing/the-search-process-tips-and-steps/,2087174.0,2.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/ugm2dwtm85she2xo8r0qadp261ama4by,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/320swb2ahikwicurfcxudpx63ft85dz5,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/37g5re8xwi7p6w3vsge3x0s1sw3zxc89,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/9zb3eprpza2rnrodr9jbii8bg004eemx,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/v/DiscussingPoliticsLovedOnes,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
PDF,News (ACF Field),"Support for our Community Amid Violence in Gaza, Israel, and the West Bank (Field: intro_text_body)",https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf,http://counseling.uic.edu/news-stories/support-for-our-community-amid-violence-in-gaza-israel-and-the-west-bank/,,,,,Download failed: 403 Client Error: Forbidden for url: https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2023/12/20.4.30-Counseling-Center-E-Newsletter.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,185983.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/parents_guidelines_for_helping_youth_after_the_recent_shooting.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,80525.0,3.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/fact-sheet/pause_reset_nourish_to_promote_wellbeing_use_as_needed_to_care_for_your_wellness.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,209068.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Coping with Violence on College Campus (Field: intro_text_body),https://counseling.red.uic.edu/wp-content/uploads/sites/329/2018/10/Tips-for-Managing-Distress-in-the-Aftermath-of-Campus-Tragedies.pdf,http://counseling.uic.edu/news-stories/coping-with-violence-on-college-campuses/,75976.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In the Aftermath of Gun Violence (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/06/20.6.5-Counseling-Center-E-Newsletter.pdf,http://counseling.uic.edu/news-stories/in-the-aftermath-of-gun-violence/,470771.0,6.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://uofi.box.com/s/bs50vvohl27mq668m7pgnhhbwgxvg2n1,http://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,,,,,Skipped: Box link
PDF,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2020/05/Grief-Journaling-Prompts.pdf,http://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,233903.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Black History Month (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2021/05/20.6.5-Resource-Page.pdf,http://counseling.uic.edu/news-stories/black-history-month/,360477.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Anti-Semitism (Field: intro_text_body),https://www.nctsn.org/sites/default/files/resources/fact-sheet/talking_to_kids_about_hate_crimes_anti-semitism_final.pdf,http://counseling.uic.edu/news-stories/in-response-to-anti-semitism/,69715.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf,http://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Download failed: 404 Client Error: Not Found for url: https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf
Box,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://uofi.box.com/s/4gunvo9goak2cxod1r2gim4wzo8l4vju,http://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Skipped: Box link
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf,http://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf,http://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://thethrivecenter.org/wp-content/uploads/2018/10/WAIT-A-Patience-Training-Guide.pdf,http://counseling.uic.edu/help-articles/persevering-through-current-events/,299197.0,15.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x1068d2840>
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://self-compassion.org/wp-content/uploads/2019/03/The-Transformative-Effects-of-Mindful-Self-Compassion-Mindful.pdf,http://counseling.uic.edu/help-articles/persevering-through-current-events/,568653.0,9.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/ugm2dwtm85she2xo8r0qadp261ama4by,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/320swb2ahikwicurfcxudpx63ft85dz5,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/37g5re8xwi7p6w3vsge3x0s1sw3zxc89,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/9zb3eprpza2rnrodr9jbii8bg004eemx,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/v/DiscussingPoliticsLovedOnes,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
PDF,News (ACF Field),"Support for our Community Amid Violence in Gaza, Israel, and the West Bank (Field: intro_text_body)",https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf,http://counseling.uic.edu/news-stories/support-for-our-community-amid-violence-in-gaza-israel-and-the-west-bank/,,,,,Download failed: 403 Client Error: Forbidden for url: https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2023/12/20.4.30-Counseling-Center-E-Newsletter.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,185983.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/parents_guidelines_for_helping_youth_after_the_recent_shooting.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,80525.0,3.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/fact-sheet/pause_reset_nourish_to_promote_wellbeing_use_as_needed_to_care_for_your_wellness.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,209068.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Coping with Violence on College Campus (Field: intro_text_body),https://counseling.red.uic.edu/wp-content/uploads/sites/329/2018/10/Tips-for-Managing-Distress-in-the-Aftermath-of-Campus-Tragedies.pdf,http://counseling.uic.edu/news-stories/coping-with-violence-on-college-campuses/,75976.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In the Aftermath of Gun Violence (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/06/20.6.5-Counseling-Center-E-Newsletter.pdf,http://counseling.uic.edu/news-stories/in-the-aftermath-of-gun-violence/,470771.0,6.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://uofi.box.com/s/bs50vvohl27mq668m7pgnhhbwgxvg2n1,http://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,,,,,Skipped: Box link
PDF,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2020/05/Grief-Journaling-Prompts.pdf,http://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,233903.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Black History Month (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2021/05/20.6.5-Resource-Page.pdf,http://counseling.uic.edu/news-stories/black-history-month/,360477.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Anti-Semitism (Field: intro_text_body),https://www.nctsn.org/sites/default/files/resources/fact-sheet/talking_to_kids_about_hate_crimes_anti-semitism_final.pdf,http://counseling.uic.edu/news-stories/in-response-to-anti-semitism/,69715.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf,http://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Download failed: 404 Client Error: Not Found for url: https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf
Box,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://uofi.box.com/s/4gunvo9goak2cxod1r2gim4wzo8l4vju,http://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Skipped: Box link
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf,http://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf,http://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://thethrivecenter.org/wp-content/uploads/2018/10/WAIT-A-Patience-Training-Guide.pdf,http://counseling.uic.edu/help-articles/persevering-through-current-events/,299197.0,15.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x10f2e1ee0>
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://self-compassion.org/wp-content/uploads/2019/03/The-Transformative-Effects-of-Mindful-Self-Compassion-Mindful.pdf,http://counseling.uic.edu/help-articles/persevering-through-current-events/,568653.0,9.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/ugm2dwtm85she2xo8r0qadp261ama4by,https://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/320swb2ahikwicurfcxudpx63ft85dz5,https://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/37g5re8xwi7p6w3vsge3x0s1sw3zxc89,https://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/9zb3eprpza2rnrodr9jbii8bg004eemx,https://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/v/DiscussingPoliticsLovedOnes,https://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
PDF,News (ACF Field),"Support for our Community Amid Violence in Gaza, Israel, and the West Bank (Field: intro_text_body)",https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf,https://counseling.uic.edu/news-stories/support-for-our-community-amid-violence-in-gaza-israel-and-the-west-bank/,,,,,Download failed: 403 Client Error: Forbidden for url: https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2023/12/20.4.30-Counseling-Center-E-Newsletter.pdf,https://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,185983.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/parents_guidelines_for_helping_youth_after_the_recent_shooting.pdf,https://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,80525.0,3.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/fact-sheet/pause_reset_nourish_to_promote_wellbeing_use_as_needed_to_care_for_your_wellness.pdf,https://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,209068.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Coping with Violence on College Campus (Field: intro_text_body),https://counseling.red.uic.edu/wp-content/uploads/sites/329/2018/10/Tips-for-Managing-Distress-in-the-Aftermath-of-Campus-Tragedies.pdf,https://counseling.uic.edu/news-stories/coping-with-violence-on-college-campuses/,75976.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In the Aftermath of Gun Violence (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/06/20.6.5-Counseling-Center-E-Newsletter.pdf,https://counseling.uic.edu/news-stories/in-the-aftermath-of-gun-violence/,470771.0,6.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://uofi.box.com/s/bs50vvohl27mq668m7pgnhhbwgxvg2n1,https://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,,,,,Skipped: Box link
PDF,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2020/05/Grief-Journaling-Prompts.pdf,https://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,233903.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Black History Month (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2021/05/20.6.5-Resource-Page.pdf,https://counseling.uic.edu/news-stories/black-history-month/,360477.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Anti-Semitism (Field: intro_text_body),https://www.nctsn.org/sites/default/files/resources/fact-sheet/talking_to_kids_about_hate_crimes_anti-semitism_final.pdf,https://counseling.uic.edu/news-stories/in-response-to-anti-semitism/,69715.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf,https://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Download failed: 404 Client Error: Not Found for url: https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf
Box,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://uofi.box.com/s/4gunvo9goak2cxod1r2gim4wzo8l4vju,https://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Skipped: Box link
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf,https://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf,https://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://thethrivecenter.org/wp-content/uploads/2018/10/WAIT-A-Patience-Training-Guide.pdf,https://counseling.uic.edu/help-articles/persevering-through-current-events/,299197.0,15.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x11ab725c0>
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://self-compassion.org/wp-content/uploads/2019/03/The-Transformative-Effects-of-Mindful-Self-Compassion-Mindful.pdf,https://counseling.uic.edu/help-articles/persevering-through-current-events/,568653.0,9.0,True,False,No tags detected via pdfminer3
Box,Menu,"Internship Admissions, Support, and Initial Placement Data",https://uofi.box.com/v/2024internshiptrainingdata,,,,,,Skipped: Box link
Box,Menu,"Internship Admissions, Support, and Initial Placement Data",https://uofi.box.com/v/2024internshiptrainingdata,,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/ugm2dwtm85she2xo8r0qadp261ama4by,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/320swb2ahikwicurfcxudpx63ft85dz5,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/37g5re8xwi7p6w3vsge3x0s1sw3zxc89,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/s/9zb3eprpza2rnrodr9jbii8bg004eemx,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
Box,News (ACF Field),Support and Resources for Post Election Stress (Field: intro_text_body),https://uofi.box.com/v/DiscussingPoliticsLovedOnes,http://counseling.uic.edu/news-stories/support-and-resources-for-post-election-stress/,,,,,Skipped: Box link
PDF,News (ACF Field),"Support for our Community Amid Violence in Gaza, Israel, and the West Bank (Field: intro_text_body)",https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf,http://counseling.uic.edu/news-stories/support-for-our-community-amid-violence-in-gaza-israel-and-the-west-bank/,,,,,Download failed: 403 Client Error: Forbidden for url: https://jedfoundation.org/wp-content/uploads/2022/04/jed-higher-education-faculty-guide-1.pdf
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2023/12/20.4.30-Counseling-Center-E-Newsletter.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,185983.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/parents_guidelines_for_helping_youth_after_the_recent_shooting.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,80525.0,3.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"Managing the End of the Semester Amid Violence in Iran, toward LGBTQIA+ Community (Field: intro_text_body)",https://www.nctsn.org/sites/default/files/resources/fact-sheet/pause_reset_nourish_to_promote_wellbeing_use_as_needed_to_care_for_your_wellness.pdf,http://counseling.uic.edu/news-stories/managing-the-end-of-the-semester-amid-violence-in-iran-toward-lgbtqia-community/,209068.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Coping with Violence on College Campus (Field: intro_text_body),https://counseling.red.uic.edu/wp-content/uploads/sites/329/2018/10/Tips-for-Managing-Distress-in-the-Aftermath-of-Campus-Tragedies.pdf,http://counseling.uic.edu/news-stories/coping-with-violence-on-college-campuses/,75976.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In the Aftermath of Gun Violence (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/06/20.6.5-Counseling-Center-E-Newsletter.pdf,http://counseling.uic.edu/news-stories/in-the-aftermath-of-gun-violence/,470771.0,6.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://uofi.box.com/s/bs50vvohl27mq668m7pgnhhbwgxvg2n1,http://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,,,,,Skipped: Box link
PDF,News (ACF Field),"Coping with Grief, Tragedy, and Loss (Field: intro_text_body)",https://counseling.uic.edu/wp-content/uploads/sites/329/2020/05/Grief-Journaling-Prompts.pdf,http://counseling.uic.edu/news-stories/coping-with-grief-and-loss/,233903.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Black History Month (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2021/05/20.6.5-Resource-Page.pdf,http://counseling.uic.edu/news-stories/black-history-month/,360477.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Anti-Semitism (Field: intro_text_body),https://www.nctsn.org/sites/default/files/resources/fact-sheet/talking_to_kids_about_hate_crimes_anti-semitism_final.pdf,http://counseling.uic.edu/news-stories/in-response-to-anti-semitism/,69715.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf,http://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Download failed: 404 Client Error: Not Found for url: https://counseling.uic.edu/wp-content/uploads/sites/329/2020/04/20.4.9-counseling-center-e-newsletter.pdf
Box,News (ACF Field),In Response to Violence Against Asian Americans (Field: intro_text_body),https://uofi.box.com/s/4gunvo9goak2cxod1r2gim4wzo8l4vju,http://counseling.uic.edu/news-stories/in-response-to-violence-against-asian-americans/,,,,,Skipped: Box link
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf,http://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cdc.gov/coronavirus/2019-ncov/about/share-facts-h.pdf
PDF,News (ACF Field),Managing Anxiety and Fear about the Coronavirus (Field: intro_text_body),https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf,http://counseling.uic.edu/news-stories/response-to-coronavirus/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.samhsa.gov/sites/default/files/tips-social-distancing-quarantine-isolation-031620.pdf
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://thethrivecenter.org/wp-content/uploads/2018/10/WAIT-A-Patience-Training-Guide.pdf,http://counseling.uic.edu/help-articles/persevering-through-current-events/,299197.0,15.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x106afe0c0>
PDF,Help Article (ACF Field),Persevering Through Current Events (Field: intro_text_body),https://self-compassion.org/wp-content/uploads/2019/03/The-Transformative-Effects-of-Mindful-Self-Compassion-Mindful.pdf,http://counseling.uic.edu/help-articles/persevering-through-current-events/,568653.0,9.0,True,False,No tags detected via pdfminer3
Box,Menu,"Internship Admissions, Support, and Initial Placement Data",https://uofi.box.com/v/2024internshiptrainingdata,,,,,,Skipped: Box link
Box,Menu,"Internship Admissions, Support, and Initial Placement Data",https://uofi.box.com/v/2024internshiptrainingdata,,,,,,Skipped: Box link
PDF,Page (ACF Field),Housing Resources (Field: intro_text_body),https://s6624.pcdn.co/wp-content/uploads/2020/04/Covid-19-Resoures.pdf,https://stemscholars-erc.uic.edu/housing-resources/,991090.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Algebra_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,189999.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Trig_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,188189.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://www.newpaltz.k12.ny.us/cms/lib/NY01000611/Centricity/Domain/132/Cheat%20sheet%20for%202020%20exam.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,1403777.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Housing Resources (Field: intro_text_body),https://s6624.pcdn.co/wp-content/uploads/2020/04/Covid-19-Resoures.pdf,https://stemscholars-erc.uic.edu/housing-resources/,991090.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Algebra_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,189999.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Trig_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,188189.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://www.newpaltz.k12.ny.us/cms/lib/NY01000611/Centricity/Domain/132/Cheat%20sheet%20for%202020%20exam.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,1403777.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Housing Resources (Field: intro_text_body),https://s6624.pcdn.co/wp-content/uploads/2020/04/Covid-19-Resoures.pdf,https://stemscholars-erc.uic.edu/housing-resources/,991090.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Algebra_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,189999.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Trig_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,188189.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://www.newpaltz.k12.ny.us/cms/lib/NY01000611/Centricity/Domain/132/Cheat%20sheet%20for%202020%20exam.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,1403777.0,10.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Housing Resources (Field: intro_text_body),https://s6624.pcdn.co/wp-content/uploads/2020/04/Covid-19-Resoures.pdf,https://stemscholars-erc.uic.edu/housing-resources/,991090.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Algebra_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,189999.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://tutorial.math.lamar.edu/pdf/Trig_Cheat_Sheet.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,188189.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Resources (Field: intro_text_body),https://www.newpaltz.k12.ny.us/cms/lib/NY01000611/Centricity/Domain/132/Cheat%20sheet%20for%202020%20exam.pdf,https://stemscholars-erc.uic.edu/resource-library/academic-resources/,1403777.0,10.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),James J. Thielke (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/thielkej/pci/cv-thielkej-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/thielkej/,21691.0,5.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x1075c8bd0>
PDF,Profile (ACF Field),Shree  Patel (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/spatel64/pci/PatelShree_CV_asofMar2019-3.pdf,https://dpp.pharmacy.uic.edu/profiles/spatel64/,451628.0,11.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Louise  Parent-Stevens (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/lstevens/pci/CV__LParentStevens-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/lstevens/,134972.0,6.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Donna M. Kraus (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/dkraus/pci/cv-krausd-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/dkraus/,5861.0,1.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Dr. Thomas Dean Chiampas (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/tchiamp2/pci/Thomas_D_Chiampas_CV_5-17-19_WorkInfo-1.pdf,https://dpp.pharmacy.uic.edu/profiles/tchiamp2/,819488.0,8.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),James J. Thielke (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/thielkej/pci/cv-thielkej-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/thielkej/,21691.0,5.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x10f3601d0>
PDF,Profile (ACF Field),Shree  Patel (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/spatel64/pci/PatelShree_CV_asofMar2019-3.pdf,https://dpp.pharmacy.uic.edu/profiles/spatel64/,451628.0,11.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Louise  Parent-Stevens (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/lstevens/pci/CV__LParentStevens-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/lstevens/,134972.0,6.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Donna M. Kraus (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/dkraus/pci/cv-krausd-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/dkraus/,5861.0,1.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Dr. Thomas Dean Chiampas (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/tchiamp2/pci/Thomas_D_Chiampas_CV_5-17-19_WorkInfo-1.pdf,https://dpp.pharmacy.uic.edu/profiles/tchiamp2/,819488.0,8.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),James J. Thielke (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/thielkej/pci/cv-thielkej-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/thielkej/,21691.0,5.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x10f214a90>
PDF,Profile (ACF Field),Shree  Patel (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/spatel64/pci/PatelShree_CV_asofMar2019-3.pdf,https://dpp.pharmacy.uic.edu/profiles/spatel64/,451628.0,11.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Louise  Parent-Stevens (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/lstevens/pci/CV__LParentStevens-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/lstevens/,134972.0,6.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Donna M. Kraus (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/dkraus/pci/cv-krausd-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/dkraus/,5861.0,1.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Dr. Thomas Dean Chiampas (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/tchiamp2/pci/Thomas_D_Chiampas_CV_5-17-19_WorkInfo-1.pdf,https://dpp.pharmacy.uic.edu/profiles/tchiamp2/,819488.0,8.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),James J. Thielke (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/thielkej/pci/cv-thielkej-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/thielkej/,21691.0,5.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x1068b79c0>
PDF,Profile (ACF Field),Shree  Patel (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/spatel64/pci/PatelShree_CV_asofMar2019-3.pdf,https://dpp.pharmacy.uic.edu/profiles/spatel64/,451628.0,11.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Louise  Parent-Stevens (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/lstevens/pci/CV__LParentStevens-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/lstevens/,134972.0,6.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Professor Donna M. Kraus (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/dkraus/pci/cv-krausd-1-2.pdf,https://dpp.pharmacy.uic.edu/profiles/dkraus/,5861.0,1.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),Dr. Thomas Dean Chiampas (Field: cv_link),http://web-prod-2.pharm.uic.edu/webdav/tchiamp2/pci/Thomas_D_Chiampas_CV_5-17-19_WorkInfo-1.pdf,https://dpp.pharmacy.uic.edu/profiles/tchiamp2/,819488.0,8.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748914001783/1-s2.0-S1540748914001783-main.pdf?_tid=9b95e394-f9af-45d9-980d-36d3abf8c3e3&amp;acdnat=1533916322_ba0144a9e66b33ae86ce3e8cdbd6b9ee,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912000089/1-s2.0-S1540748912000089-main.pdf?_tid=957502ab-547b-4207-ad91-372ea776c81c&amp;acdnat=1533916605_0eb1699daade990a5db8e651bca6bb02,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0010218011002987/1-s2.0-S0010218011002987-main.pdf?_tid=beb9b371-ab00-4ea4-b1d6-06bbe5bf5326&amp;acdnat=1533916706_d11a3e5ddb5ede2bfa58f40b15c6f472,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S001021801200274X/1-s2.0-S001021801200274X-main.pdf?_tid=82e74478-d95f-449b-be46-b525bd2478e1&amp;acdnat=1533916950_d52b4e57dc3be19fd72dcbae1c0e68c9,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912002647/1-s2.0-S1540748912002647-main.pdf?_tid=f76a5113-a172-4360-87dc-be10f2029aa3&amp;acdnat=1533919369_7348404a1dc2bd6712614d84a8ef0f2c,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912002453/1-s2.0-S1540748912002453-main.pdf?_tid=6ebcd3ae-3f81-4e54-b7fd-c30805b1d847&amp;acdnat=1533919407_00c2622cfa9a06c8e94e8195cd49a2e8,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0010218010003664/1-s2.0-S0010218010003664-main.pdf?_tid=81b09343-10db-481c-aeb7-033c155f4e1c&amp;acdnat=1533916738_08178082cb4c23c28201fa9715899746,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S001021801100191X/1-s2.0-S001021801100191X-main.pdf?_tid=34f5c5ff-7071-4944-b327-faec72778fec&amp;acdnat=1533921791_c750dac9e9bf292c41db10a80b8dbd6e,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0082078404001808/1-s2.0-S0082078404001808-main.pdf?_tid=e98fb17d-e6dd-4c32-8b73-521aed25d238&amp;acdnat=1533933234_48d12745f850d536337411cc6909bc6a,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748902801560/1-s2.0-S1540748902801560-main.pdf?_tid=450c7026-9ccc-4dd6-846f-668df7281928&amp;acdnat=1533931607_371d2ab237277d5bb497cb3a660014eb,https://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Gas Chromatography (Field: intro_text_body),https://www.agilent.com/cs/library/brochures/5991-1836EN.pdf,https://hpst.lab.uic.edu/analytical-instruments/gas-chromatograph/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.agilent.com/cs/library/brochures/5991-1836EN.pdf
PDF,Page (ACF Field),Gas Chromatography (Field: intro_text_body),https://www.gmu.edu/depts/SRIF/equipment/GC7890A_Features.pdf,https://hpst.lab.uic.edu/analytical-instruments/gas-chromatograph/,,,,,Download failed: 403 Client Error: Forbidden for url: https://srif.science.gmu.edu?gmuw-rd=ji&gmuw-rdm=rc/equipment/GC7890A_Features.pdf
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748914001783/1-s2.0-S1540748914001783-main.pdf?_tid=9b95e394-f9af-45d9-980d-36d3abf8c3e3&amp;acdnat=1533916322_ba0144a9e66b33ae86ce3e8cdbd6b9ee,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912000089/1-s2.0-S1540748912000089-main.pdf?_tid=957502ab-547b-4207-ad91-372ea776c81c&amp;acdnat=1533916605_0eb1699daade990a5db8e651bca6bb02,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0010218011002987/1-s2.0-S0010218011002987-main.pdf?_tid=beb9b371-ab00-4ea4-b1d6-06bbe5bf5326&amp;acdnat=1533916706_d11a3e5ddb5ede2bfa58f40b15c6f472,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S001021801200274X/1-s2.0-S001021801200274X-main.pdf?_tid=82e74478-d95f-449b-be46-b525bd2478e1&amp;acdnat=1533916950_d52b4e57dc3be19fd72dcbae1c0e68c9,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912002647/1-s2.0-S1540748912002647-main.pdf?_tid=f76a5113-a172-4360-87dc-be10f2029aa3&amp;acdnat=1533919369_7348404a1dc2bd6712614d84a8ef0f2c,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912002453/1-s2.0-S1540748912002453-main.pdf?_tid=6ebcd3ae-3f81-4e54-b7fd-c30805b1d847&amp;acdnat=1533919407_00c2622cfa9a06c8e94e8195cd49a2e8,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0010218010003664/1-s2.0-S0010218010003664-main.pdf?_tid=81b09343-10db-481c-aeb7-033c155f4e1c&amp;acdnat=1533916738_08178082cb4c23c28201fa9715899746,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S001021801100191X/1-s2.0-S001021801100191X-main.pdf?_tid=34f5c5ff-7071-4944-b327-faec72778fec&amp;acdnat=1533921791_c750dac9e9bf292c41db10a80b8dbd6e,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0082078404001808/1-s2.0-S0082078404001808-main.pdf?_tid=e98fb17d-e6dd-4c32-8b73-521aed25d238&amp;acdnat=1533933234_48d12745f850d536337411cc6909bc6a,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748902801560/1-s2.0-S1540748902801560-main.pdf?_tid=450c7026-9ccc-4dd6-846f-668df7281928&amp;acdnat=1533931607_371d2ab237277d5bb497cb3a660014eb,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Gas Chromatography (Field: intro_text_body),https://www.agilent.com/cs/library/brochures/5991-1836EN.pdf,http://hpst.lab.uic.edu/analytical-instruments/gas-chromatograph/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.agilent.com/cs/library/brochures/5991-1836EN.pdf
PDF,Page (ACF Field),Gas Chromatography (Field: intro_text_body),https://www.gmu.edu/depts/SRIF/equipment/GC7890A_Features.pdf,http://hpst.lab.uic.edu/analytical-instruments/gas-chromatograph/,,,,,Download failed: 403 Client Error: Forbidden for url: https://srif.science.gmu.edu?gmuw-rd=ji&gmuw-rdm=rc/equipment/GC7890A_Features.pdf
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748914001783/1-s2.0-S1540748914001783-main.pdf?_tid=9b95e394-f9af-45d9-980d-36d3abf8c3e3&amp;acdnat=1533916322_ba0144a9e66b33ae86ce3e8cdbd6b9ee,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912000089/1-s2.0-S1540748912000089-main.pdf?_tid=957502ab-547b-4207-ad91-372ea776c81c&amp;acdnat=1533916605_0eb1699daade990a5db8e651bca6bb02,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0010218011002987/1-s2.0-S0010218011002987-main.pdf?_tid=beb9b371-ab00-4ea4-b1d6-06bbe5bf5326&amp;acdnat=1533916706_d11a3e5ddb5ede2bfa58f40b15c6f472,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S001021801200274X/1-s2.0-S001021801200274X-main.pdf?_tid=82e74478-d95f-449b-be46-b525bd2478e1&amp;acdnat=1533916950_d52b4e57dc3be19fd72dcbae1c0e68c9,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912002647/1-s2.0-S1540748912002647-main.pdf?_tid=f76a5113-a172-4360-87dc-be10f2029aa3&amp;acdnat=1533919369_7348404a1dc2bd6712614d84a8ef0f2c,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748912002453/1-s2.0-S1540748912002453-main.pdf?_tid=6ebcd3ae-3f81-4e54-b7fd-c30805b1d847&amp;acdnat=1533919407_00c2622cfa9a06c8e94e8195cd49a2e8,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0010218010003664/1-s2.0-S0010218010003664-main.pdf?_tid=81b09343-10db-481c-aeb7-033c155f4e1c&amp;acdnat=1533916738_08178082cb4c23c28201fa9715899746,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S001021801100191X/1-s2.0-S001021801100191X-main.pdf?_tid=34f5c5ff-7071-4944-b327-faec72778fec&amp;acdnat=1533921791_c750dac9e9bf292c41db10a80b8dbd6e,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S0082078404001808/1-s2.0-S0082078404001808-main.pdf?_tid=e98fb17d-e6dd-4c32-8b73-521aed25d238&amp;acdnat=1533933234_48d12745f850d536337411cc6909bc6a,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Research Papers (Field: intro_text_body),https://ac.els-cdn.com/S1540748902801560/1-s2.0-S1540748902801560-main.pdf?_tid=450c7026-9ccc-4dd6-846f-668df7281928&amp;acdnat=1533931607_371d2ab237277d5bb497cb3a660014eb,http://hpst.lab.uic.edu/publications/research-papers/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Gas Chromatography (Field: intro_text_body),https://www.agilent.com/cs/library/brochures/5991-1836EN.pdf,http://hpst.lab.uic.edu/analytical-instruments/gas-chromatograph/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.agilent.com/cs/library/brochures/5991-1836EN.pdf
PDF,Page (ACF Field),Gas Chromatography (Field: intro_text_body),https://www.gmu.edu/depts/SRIF/equipment/GC7890A_Features.pdf,http://hpst.lab.uic.edu/analytical-instruments/gas-chromatograph/,,,,,Download failed: 403 Client Error: Forbidden for url: https://srif.science.gmu.edu?gmuw-rd=ji&gmuw-rdm=rc/equipment/GC7890A_Features.pdf
Box,Profile (ACF Field),"Hudson, Anita (Field: about)",https://uofi.app.box.com/folder/276285596425,https://bestbme.lab.uic.edu/profiles/hudson-anita/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reed, Geneva (Field: about)",https://uofi.app.box.com/folder/275631640265,https://bestbme.lab.uic.edu/profiles/reed-geneva/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jan, Jazmine (Field: about)",https://uofi.app.box.com/folder/275636212579,https://bestbme.lab.uic.edu/profiles/jan-jazmine/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Park, Jae (Field: about)",https://uofi.app.box.com/folder/275599141495,https://bestbme.lab.uic.edu/profiles/park-jae/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reyes, Javier (Field: about)",https://uofi.app.box.com/folder/275766435711,https://bestbme.lab.uic.edu/profiles/reyes-javier/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Boctor, Samuel (Field: about)",https://uofi.app.box.com/folder/275412109854,https://bestbme.lab.uic.edu/profiles/boctor-samuel/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Collins, Darrin (Field: about)",https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Furldefense.com%2Fv3%2F__https%3A%2F%2Fuofi.box.com%2Fs%2Fcimgkv9t1k6rfj9bjlqo6528uve863l0__%3B!!DZ3fjg!-FCy2Wjhm6pA6M1OBaQ6Km6qCweeORf25nlXAfXAsqK-3BaN9Km0HEDpQGLvn_mCf_rDJs9zWqKb5WjlDs3QDFf-%24&amp;data=05%7C01%7Ctmatthes%40uic.edu%7C99ed123599f54d56fe8908db9cf3e50b%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C638276343539479594%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=XXZ7oyQuogFfyjDZBtIJW6hNP2ttnfFRtnrnTtM7%2F6A%3D&amp;reserved=0,https://bestbme.lab.uic.edu/profiles/collins-darrin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Delaney, Madison (Field: about)",https://uofi.box.com/s/443c6ei1u9d4mbnp3j9xphclfgri1sy2,https://bestbme.lab.uic.edu/profiles/delaney-madison/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mendez, Julio (Field: about)",https://uofi.box.com/s/fzy73sajllt978dv7zy5h2nwe2y8ad04,https://bestbme.lab.uic.edu/profiles/mendez-julio-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Tulla, Ibrahim (Field: about)",https://uofi.box.com/s/h0e1qhv0guq29iqgdh6rv13xm2379ce6,https://bestbme.lab.uic.edu/profiles/tulla-ibrahim/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zhao, Fengdan (Field: about)",https://uofi.box.com/s/mqjs33qm61e87iwvz8c5ugmx48cilavj,https://bestbme.lab.uic.edu/profiles/zhao-fengdan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gibson, David J. (Field: about)",https://uofi.box.com/s/7cc6m55zc3i79lrij4n2t113cuee6r5d,https://bestbme.lab.uic.edu/profiles/gibson-david/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Washington, Mechelle (Field: about)",https://uofi.box.com/s/53v9uyh04pw0urlw0tpza7z28l63e3v0,https://bestbme.lab.uic.edu/profiles/washington-mechelle/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Wohler, Sarah (Field: about)",https://uofi.box.com/s/n3dkr9r17i7xq95j743of0v9vttmqgkx,https://bestbme.lab.uic.edu/profiles/wohler-sarah/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fox, Sylvia (Field: about)",https://uofi.box.com/s/xf2boyic8lo61u2bo1rjdhx25287rp6n,https://bestbme.lab.uic.edu/profiles/fox-sylvia/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Emeterio, Deysi (Field: about)",https://uofi.box.com/s/8xbe3k82f4mbmkxribu3wzgznjpzf428,https://bestbme.lab.uic.edu/profiles/emeterio-deysi/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hernandez, Irving (Field: about)",https://uofi.box.com/s/mip29j4on2rrz35zwiwrtwofel7zdacu,https://bestbme.lab.uic.edu/profiles/hernandez-irving/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Malik, Shabana (Field: about)",https://uofi.box.com/s/s7nyfv827z7a8gl37poizfz3320dnjgk,https://bestbme.lab.uic.edu/profiles/malik-shabana/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Carlsen, Anthony (Field: about)",https://uofi.box.com/s/q5wufonkeaskzbes7bh0dicbjtx7yd9i,https://bestbme.lab.uic.edu/profiles/anthony-carlsen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fimmel, Anna (Field: about)",https://uofi.box.com/s/tvgv29pcmg7cq255ehdl266jhkk9hlv7,https://bestbme.lab.uic.edu/profiles/fimmel-anna/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Perez, Jonathan (Field: about)",https://uofi.box.com/s/sz53930gcw9q2h2eq8ra1d6m86ylp6cq,https://bestbme.lab.uic.edu/profiles/perez-jonathan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Kuenster, Ann (Field: about)",https://uofi.box.com/s/mmw3zg11wrsrnoc0s8b8b8m17dlw2rfh,https://bestbme.lab.uic.edu/profiles/kuenster-ann/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gross, Michael (Field: about)",https://uofi.box.com/s/jesrjsvg24d44o8m3feos7w82qtzbet8,https://bestbme.lab.uic.edu/profiles/gross-michael/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Pheuphong, Tammy (Field: about)",https://uofi.box.com/s/o6azxtmjlwdo8rtdsnqqksqthz0jerbv,https://bestbme.lab.uic.edu/profiles/pheuphong-tammy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reiser, Lindsey (Field: about)",https://uofi.box.com/s/fn7spnw7llbw9b2plfdxj8gej4riz7sm,https://bestbme.lab.uic.edu/profiles/reiser-lindsey/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mendez, Julio (Field: about)",https://uofi.box.com/s/kpowvb0ad5kamwqwx70grjbnldyb2jv0,https://bestbme.lab.uic.edu/profiles/mendez-julio/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Wang, Lillian (Field: about)",https://uofi.box.com/s/bezgrrbzjc45ay7oigmy7i00625a5fec,https://bestbme.lab.uic.edu/profiles/wang-lillian/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Dodson, JaNay (Field: about)",https://uofi.box.com/s/bd19t7pvjaknwt0hc5ar4zpetqvewta1,https://bestbme.lab.uic.edu/profiles/dodson-janay/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Taylor, Eddie (Field: about)",https://uofi.box.com/s/8xb4ft699j6n5w1fc57h0p80pqj0epm6,https://bestbme.lab.uic.edu/profiles/taylor-eddie/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Nguyen, Lien (Field: about)",https://uofi.box.com/s/29en99fvjtcngw7pif5gzj6gqza22s5i,https://bestbme.lab.uic.edu/profiles/nguyen-lien/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zagorski, Melissa (Field: about)",https://uofi.box.com/s/8jbvr4detnhh61pk2l9g99t9jtjmsmql,https://bestbme.lab.uic.edu/profiles/zagorski-melissa/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Cannon, Michael (Field: about)",https://uofi.box.com/s/z4du8qsv5lh7j0tg5kng44do70ov7lta,https://bestbme.lab.uic.edu/profiles/cannon-michael-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Morris, Michelle (Field: about)",https://uofi.box.com/s/ivoxgkgjlidqnibalogsvivyv3gmsnpq,https://bestbme.lab.uic.edu/profiles/morris-michelle/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Connolly, Kevin (Field: about)",https://uofi.box.com/s/9z14npfaat8w4tm679f9lesnnsgivifb,https://bestbme.lab.uic.edu/profiles/connolly-kevin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Frye, Russell (Field: about)",https://uofi.box.com/s/7zv6vp3xag14ntoqyl85wr8xose3n6xt,https://bestbme.lab.uic.edu/profiles/frye-russell/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Joshi, Vyjayanti (Field: about)",https://uofi.box.com/s/wzle0qrn4yfft6dyupxny07fve4v8xue,https://bestbme.lab.uic.edu/profiles/joshi-vyjayanti/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Nelson, Susan (Field: about)",https://uofi.box.com/s/pai9jjnvk7lhbz81nz1n4zu2eklkqi5l,https://bestbme.lab.uic.edu/profiles/nelson-susan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Smit, Lindsey (Field: about)",https://uofi.box.com/s/wcikb3dx7aunzhnvf17emyudot1z271n,https://bestbme.lab.uic.edu/profiles/smit-lindsey/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Clayton, Steven (Field: about)",https://uofi.box.com/s/bbsdmrrcbedvp2gryjmg4maet1tjyviw,https://bestbme.lab.uic.edu/profiles/clayton-steven/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Coerper, Kristian (Field: about)",https://uofi.box.com/s/c9mux2jz2sevvfvfzkat7zkm2c0hi2o5,https://bestbme.lab.uic.edu/profiles/coerper-kristian/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jung, Katy (Field: about)",https://uofi.box.com/s/p2083y47mjzz8tozy1wootf9mfgoq8wu,https://bestbme.lab.uic.edu/profiles/jung-katy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"McBride, LaToya (Field: about)",https://uofi.box.com/s/667ktpiz4yozxq2u77gfqrg3390f1jbd,https://bestbme.lab.uic.edu/profiles/mcbride-latoya/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Torres, Valentin (Field: about)",https://uofi.box.com/s/ehdc8jhnoqy6cnm3sigwyq5f7p1gpbr0,https://bestbme.lab.uic.edu/profiles/torres-valentin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"O’Brien, John (Field: about)",https://uofi.box.com/s/sn2hz1z7bt0531k1rq8pb4648t2r8c5f,https://bestbme.lab.uic.edu/profiles/obrien-john/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Shi, Jianan (Field: about)",https://uofi.box.com/s/fsdl2a6r1y8ulx2fmwdzsf7ox2eu4qlo,https://bestbme.lab.uic.edu/profiles/shi-jianan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hu, Howard (Field: about)",https://uofi.box.com/s/xhhh1p7vj7c6atop73seqs7hn3cjsrg9,https://bestbme.lab.uic.edu/profiles/hu-howard/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Sarhan, Eman (Field: about)",https://uofi.box.com/s/2mddc56jzxd0b9ntxdvm2kwg7j6vl883,https://bestbme.lab.uic.edu/profiles/sarhan-eman/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Larrieu, Donna (Field: about)",https://uofi.box.com/s/4ts8o4nbg9ri727p586kzp20njhrux1x,https://bestbme.lab.uic.edu/profiles/larrieu-donna/,,,,,Skipped: Box link
Box,Profile (ACF Field),"McDaniel, Christopher (Field: about)",https://uofi.box.com/s/7p20v5kk2sx87yhonk1sxep1de7rt9xl,https://bestbme.lab.uic.edu/profiles/mcdaniel-christopher/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fluharty, Allan (Field: about)",https://uofi.box.com/s/0rildi2oiu5n7lttnu4ytnw7bncx4gyp,https://bestbme.lab.uic.edu/profiles/fluharty-allan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Seifert, Alexander (Field: about)",https://uofi.box.com/s/w3n7bgbz3e2rjgnnd3xfjrtoa2xisfgv,https://bestbme.lab.uic.edu/profiles/seifert-alexander/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hudson, Anita (Field: about)",https://uofi.app.box.com/folder/276285596425,https://bestbme.lab.uic.edu/profiles/hudson-anita/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reed, Geneva (Field: about)",https://uofi.app.box.com/folder/275631640265,https://bestbme.lab.uic.edu/profiles/reed-geneva/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jan, Jazmine (Field: about)",https://uofi.app.box.com/folder/275636212579,https://bestbme.lab.uic.edu/profiles/jan-jazmine/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Park, Jae (Field: about)",https://uofi.app.box.com/folder/275599141495,https://bestbme.lab.uic.edu/profiles/park-jae/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reyes, Javier (Field: about)",https://uofi.app.box.com/folder/275766435711,https://bestbme.lab.uic.edu/profiles/reyes-javier/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Boctor, Samuel (Field: about)",https://uofi.app.box.com/folder/275412109854,https://bestbme.lab.uic.edu/profiles/boctor-samuel/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Collins, Darrin (Field: about)",https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Furldefense.com%2Fv3%2F__https%3A%2F%2Fuofi.box.com%2Fs%2Fcimgkv9t1k6rfj9bjlqo6528uve863l0__%3B!!DZ3fjg!-FCy2Wjhm6pA6M1OBaQ6Km6qCweeORf25nlXAfXAsqK-3BaN9Km0HEDpQGLvn_mCf_rDJs9zWqKb5WjlDs3QDFf-%24&amp;data=05%7C01%7Ctmatthes%40uic.edu%7C99ed123599f54d56fe8908db9cf3e50b%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C638276343539479594%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=XXZ7oyQuogFfyjDZBtIJW6hNP2ttnfFRtnrnTtM7%2F6A%3D&amp;reserved=0,https://bestbme.lab.uic.edu/profiles/collins-darrin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Delaney, Madison (Field: about)",https://uofi.box.com/s/443c6ei1u9d4mbnp3j9xphclfgri1sy2,https://bestbme.lab.uic.edu/profiles/delaney-madison/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mendez, Julio (Field: about)",https://uofi.box.com/s/fzy73sajllt978dv7zy5h2nwe2y8ad04,https://bestbme.lab.uic.edu/profiles/mendez-julio-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Tulla, Ibrahim (Field: about)",https://uofi.box.com/s/h0e1qhv0guq29iqgdh6rv13xm2379ce6,https://bestbme.lab.uic.edu/profiles/tulla-ibrahim/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zhao, Fengdan (Field: about)",https://uofi.box.com/s/mqjs33qm61e87iwvz8c5ugmx48cilavj,https://bestbme.lab.uic.edu/profiles/zhao-fengdan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gibson, David J. (Field: about)",https://uofi.box.com/s/7cc6m55zc3i79lrij4n2t113cuee6r5d,https://bestbme.lab.uic.edu/profiles/gibson-david/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Washington, Mechelle (Field: about)",https://uofi.box.com/s/53v9uyh04pw0urlw0tpza7z28l63e3v0,https://bestbme.lab.uic.edu/profiles/washington-mechelle/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Wohler, Sarah (Field: about)",https://uofi.box.com/s/n3dkr9r17i7xq95j743of0v9vttmqgkx,https://bestbme.lab.uic.edu/profiles/wohler-sarah/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fox, Sylvia (Field: about)",https://uofi.box.com/s/xf2boyic8lo61u2bo1rjdhx25287rp6n,https://bestbme.lab.uic.edu/profiles/fox-sylvia/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Emeterio, Deysi (Field: about)",https://uofi.box.com/s/8xbe3k82f4mbmkxribu3wzgznjpzf428,https://bestbme.lab.uic.edu/profiles/emeterio-deysi/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hernandez, Irving (Field: about)",https://uofi.box.com/s/mip29j4on2rrz35zwiwrtwofel7zdacu,https://bestbme.lab.uic.edu/profiles/hernandez-irving/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Malik, Shabana (Field: about)",https://uofi.box.com/s/s7nyfv827z7a8gl37poizfz3320dnjgk,https://bestbme.lab.uic.edu/profiles/malik-shabana/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Carlsen, Anthony (Field: about)",https://uofi.box.com/s/q5wufonkeaskzbes7bh0dicbjtx7yd9i,https://bestbme.lab.uic.edu/profiles/anthony-carlsen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fimmel, Anna (Field: about)",https://uofi.box.com/s/tvgv29pcmg7cq255ehdl266jhkk9hlv7,https://bestbme.lab.uic.edu/profiles/fimmel-anna/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Perez, Jonathan (Field: about)",https://uofi.box.com/s/sz53930gcw9q2h2eq8ra1d6m86ylp6cq,https://bestbme.lab.uic.edu/profiles/perez-jonathan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Kuenster, Ann (Field: about)",https://uofi.box.com/s/mmw3zg11wrsrnoc0s8b8b8m17dlw2rfh,https://bestbme.lab.uic.edu/profiles/kuenster-ann/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gross, Michael (Field: about)",https://uofi.box.com/s/jesrjsvg24d44o8m3feos7w82qtzbet8,https://bestbme.lab.uic.edu/profiles/gross-michael/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Pheuphong, Tammy (Field: about)",https://uofi.box.com/s/o6azxtmjlwdo8rtdsnqqksqthz0jerbv,https://bestbme.lab.uic.edu/profiles/pheuphong-tammy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reiser, Lindsey (Field: about)",https://uofi.box.com/s/fn7spnw7llbw9b2plfdxj8gej4riz7sm,https://bestbme.lab.uic.edu/profiles/reiser-lindsey/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mendez, Julio (Field: about)",https://uofi.box.com/s/kpowvb0ad5kamwqwx70grjbnldyb2jv0,https://bestbme.lab.uic.edu/profiles/mendez-julio/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Wang, Lillian (Field: about)",https://uofi.box.com/s/bezgrrbzjc45ay7oigmy7i00625a5fec,https://bestbme.lab.uic.edu/profiles/wang-lillian/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Dodson, JaNay (Field: about)",https://uofi.box.com/s/bd19t7pvjaknwt0hc5ar4zpetqvewta1,https://bestbme.lab.uic.edu/profiles/dodson-janay/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Taylor, Eddie (Field: about)",https://uofi.box.com/s/8xb4ft699j6n5w1fc57h0p80pqj0epm6,https://bestbme.lab.uic.edu/profiles/taylor-eddie/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Nguyen, Lien (Field: about)",https://uofi.box.com/s/29en99fvjtcngw7pif5gzj6gqza22s5i,https://bestbme.lab.uic.edu/profiles/nguyen-lien/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zagorski, Melissa (Field: about)",https://uofi.box.com/s/8jbvr4detnhh61pk2l9g99t9jtjmsmql,https://bestbme.lab.uic.edu/profiles/zagorski-melissa/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Cannon, Michael (Field: about)",https://uofi.box.com/s/z4du8qsv5lh7j0tg5kng44do70ov7lta,https://bestbme.lab.uic.edu/profiles/cannon-michael-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Morris, Michelle (Field: about)",https://uofi.box.com/s/ivoxgkgjlidqnibalogsvivyv3gmsnpq,https://bestbme.lab.uic.edu/profiles/morris-michelle/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Connolly, Kevin (Field: about)",https://uofi.box.com/s/9z14npfaat8w4tm679f9lesnnsgivifb,https://bestbme.lab.uic.edu/profiles/connolly-kevin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Frye, Russell (Field: about)",https://uofi.box.com/s/7zv6vp3xag14ntoqyl85wr8xose3n6xt,https://bestbme.lab.uic.edu/profiles/frye-russell/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Joshi, Vyjayanti (Field: about)",https://uofi.box.com/s/wzle0qrn4yfft6dyupxny07fve4v8xue,https://bestbme.lab.uic.edu/profiles/joshi-vyjayanti/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Nelson, Susan (Field: about)",https://uofi.box.com/s/pai9jjnvk7lhbz81nz1n4zu2eklkqi5l,https://bestbme.lab.uic.edu/profiles/nelson-susan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Smit, Lindsey (Field: about)",https://uofi.box.com/s/wcikb3dx7aunzhnvf17emyudot1z271n,https://bestbme.lab.uic.edu/profiles/smit-lindsey/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Clayton, Steven (Field: about)",https://uofi.box.com/s/bbsdmrrcbedvp2gryjmg4maet1tjyviw,https://bestbme.lab.uic.edu/profiles/clayton-steven/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Coerper, Kristian (Field: about)",https://uofi.box.com/s/c9mux2jz2sevvfvfzkat7zkm2c0hi2o5,https://bestbme.lab.uic.edu/profiles/coerper-kristian/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jung, Katy (Field: about)",https://uofi.box.com/s/p2083y47mjzz8tozy1wootf9mfgoq8wu,https://bestbme.lab.uic.edu/profiles/jung-katy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"McBride, LaToya (Field: about)",https://uofi.box.com/s/667ktpiz4yozxq2u77gfqrg3390f1jbd,https://bestbme.lab.uic.edu/profiles/mcbride-latoya/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Torres, Valentin (Field: about)",https://uofi.box.com/s/ehdc8jhnoqy6cnm3sigwyq5f7p1gpbr0,https://bestbme.lab.uic.edu/profiles/torres-valentin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"O’Brien, John (Field: about)",https://uofi.box.com/s/sn2hz1z7bt0531k1rq8pb4648t2r8c5f,https://bestbme.lab.uic.edu/profiles/obrien-john/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Shi, Jianan (Field: about)",https://uofi.box.com/s/fsdl2a6r1y8ulx2fmwdzsf7ox2eu4qlo,https://bestbme.lab.uic.edu/profiles/shi-jianan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hu, Howard (Field: about)",https://uofi.box.com/s/xhhh1p7vj7c6atop73seqs7hn3cjsrg9,https://bestbme.lab.uic.edu/profiles/hu-howard/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Sarhan, Eman (Field: about)",https://uofi.box.com/s/2mddc56jzxd0b9ntxdvm2kwg7j6vl883,https://bestbme.lab.uic.edu/profiles/sarhan-eman/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Larrieu, Donna (Field: about)",https://uofi.box.com/s/4ts8o4nbg9ri727p586kzp20njhrux1x,https://bestbme.lab.uic.edu/profiles/larrieu-donna/,,,,,Skipped: Box link
Box,Profile (ACF Field),"McDaniel, Christopher (Field: about)",https://uofi.box.com/s/7p20v5kk2sx87yhonk1sxep1de7rt9xl,https://bestbme.lab.uic.edu/profiles/mcdaniel-christopher/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fluharty, Allan (Field: about)",https://uofi.box.com/s/0rildi2oiu5n7lttnu4ytnw7bncx4gyp,https://bestbme.lab.uic.edu/profiles/fluharty-allan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Seifert, Alexander (Field: about)",https://uofi.box.com/s/w3n7bgbz3e2rjgnnd3xfjrtoa2xisfgv,https://bestbme.lab.uic.edu/profiles/seifert-alexander/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hudson, Anita (Field: about)",https://uofi.app.box.com/folder/276285596425,https://bestbme.lab.uic.edu/profiles/hudson-anita/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reed, Geneva (Field: about)",https://uofi.app.box.com/folder/275631640265,https://bestbme.lab.uic.edu/profiles/reed-geneva/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jan, Jazmine (Field: about)",https://uofi.app.box.com/folder/275636212579,https://bestbme.lab.uic.edu/profiles/jan-jazmine/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Park, Jae (Field: about)",https://uofi.app.box.com/folder/275599141495,https://bestbme.lab.uic.edu/profiles/park-jae/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reyes, Javier (Field: about)",https://uofi.app.box.com/folder/275766435711,https://bestbme.lab.uic.edu/profiles/reyes-javier/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Boctor, Samuel (Field: about)",https://uofi.app.box.com/folder/275412109854,https://bestbme.lab.uic.edu/profiles/boctor-samuel/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Collins, Darrin (Field: about)",https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Furldefense.com%2Fv3%2F__https%3A%2F%2Fuofi.box.com%2Fs%2Fcimgkv9t1k6rfj9bjlqo6528uve863l0__%3B!!DZ3fjg!-FCy2Wjhm6pA6M1OBaQ6Km6qCweeORf25nlXAfXAsqK-3BaN9Km0HEDpQGLvn_mCf_rDJs9zWqKb5WjlDs3QDFf-%24&amp;data=05%7C01%7Ctmatthes%40uic.edu%7C99ed123599f54d56fe8908db9cf3e50b%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C638276343539479594%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=XXZ7oyQuogFfyjDZBtIJW6hNP2ttnfFRtnrnTtM7%2F6A%3D&amp;reserved=0,https://bestbme.lab.uic.edu/profiles/collins-darrin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Delaney, Madison (Field: about)",https://uofi.box.com/s/443c6ei1u9d4mbnp3j9xphclfgri1sy2,https://bestbme.lab.uic.edu/profiles/delaney-madison/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mendez, Julio (Field: about)",https://uofi.box.com/s/fzy73sajllt978dv7zy5h2nwe2y8ad04,https://bestbme.lab.uic.edu/profiles/mendez-julio-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Tulla, Ibrahim (Field: about)",https://uofi.box.com/s/h0e1qhv0guq29iqgdh6rv13xm2379ce6,https://bestbme.lab.uic.edu/profiles/tulla-ibrahim/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zhao, Fengdan (Field: about)",https://uofi.box.com/s/mqjs33qm61e87iwvz8c5ugmx48cilavj,https://bestbme.lab.uic.edu/profiles/zhao-fengdan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gibson, David J. (Field: about)",https://uofi.box.com/s/7cc6m55zc3i79lrij4n2t113cuee6r5d,https://bestbme.lab.uic.edu/profiles/gibson-david/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Washington, Mechelle (Field: about)",https://uofi.box.com/s/53v9uyh04pw0urlw0tpza7z28l63e3v0,https://bestbme.lab.uic.edu/profiles/washington-mechelle/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Wohler, Sarah (Field: about)",https://uofi.box.com/s/n3dkr9r17i7xq95j743of0v9vttmqgkx,https://bestbme.lab.uic.edu/profiles/wohler-sarah/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fox, Sylvia (Field: about)",https://uofi.box.com/s/xf2boyic8lo61u2bo1rjdhx25287rp6n,https://bestbme.lab.uic.edu/profiles/fox-sylvia/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Emeterio, Deysi (Field: about)",https://uofi.box.com/s/8xbe3k82f4mbmkxribu3wzgznjpzf428,https://bestbme.lab.uic.edu/profiles/emeterio-deysi/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hernandez, Irving (Field: about)",https://uofi.box.com/s/mip29j4on2rrz35zwiwrtwofel7zdacu,https://bestbme.lab.uic.edu/profiles/hernandez-irving/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Malik, Shabana (Field: about)",https://uofi.box.com/s/s7nyfv827z7a8gl37poizfz3320dnjgk,https://bestbme.lab.uic.edu/profiles/malik-shabana/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Carlsen, Anthony (Field: about)",https://uofi.box.com/s/q5wufonkeaskzbes7bh0dicbjtx7yd9i,https://bestbme.lab.uic.edu/profiles/anthony-carlsen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fimmel, Anna (Field: about)",https://uofi.box.com/s/tvgv29pcmg7cq255ehdl266jhkk9hlv7,https://bestbme.lab.uic.edu/profiles/fimmel-anna/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Perez, Jonathan (Field: about)",https://uofi.box.com/s/sz53930gcw9q2h2eq8ra1d6m86ylp6cq,https://bestbme.lab.uic.edu/profiles/perez-jonathan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Kuenster, Ann (Field: about)",https://uofi.box.com/s/mmw3zg11wrsrnoc0s8b8b8m17dlw2rfh,https://bestbme.lab.uic.edu/profiles/kuenster-ann/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gross, Michael (Field: about)",https://uofi.box.com/s/jesrjsvg24d44o8m3feos7w82qtzbet8,https://bestbme.lab.uic.edu/profiles/gross-michael/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Pheuphong, Tammy (Field: about)",https://uofi.box.com/s/o6azxtmjlwdo8rtdsnqqksqthz0jerbv,https://bestbme.lab.uic.edu/profiles/pheuphong-tammy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Reiser, Lindsey (Field: about)",https://uofi.box.com/s/fn7spnw7llbw9b2plfdxj8gej4riz7sm,https://bestbme.lab.uic.edu/profiles/reiser-lindsey/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mendez, Julio (Field: about)",https://uofi.box.com/s/kpowvb0ad5kamwqwx70grjbnldyb2jv0,https://bestbme.lab.uic.edu/profiles/mendez-julio/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Wang, Lillian (Field: about)",https://uofi.box.com/s/bezgrrbzjc45ay7oigmy7i00625a5fec,https://bestbme.lab.uic.edu/profiles/wang-lillian/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Dodson, JaNay (Field: about)",https://uofi.box.com/s/bd19t7pvjaknwt0hc5ar4zpetqvewta1,https://bestbme.lab.uic.edu/profiles/dodson-janay/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Taylor, Eddie (Field: about)",https://uofi.box.com/s/8xb4ft699j6n5w1fc57h0p80pqj0epm6,https://bestbme.lab.uic.edu/profiles/taylor-eddie/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Nguyen, Lien (Field: about)",https://uofi.box.com/s/29en99fvjtcngw7pif5gzj6gqza22s5i,https://bestbme.lab.uic.edu/profiles/nguyen-lien/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zagorski, Melissa (Field: about)",https://uofi.box.com/s/8jbvr4detnhh61pk2l9g99t9jtjmsmql,https://bestbme.lab.uic.edu/profiles/zagorski-melissa/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Cannon, Michael (Field: about)",https://uofi.box.com/s/z4du8qsv5lh7j0tg5kng44do70ov7lta,https://bestbme.lab.uic.edu/profiles/cannon-michael-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Morris, Michelle (Field: about)",https://uofi.box.com/s/ivoxgkgjlidqnibalogsvivyv3gmsnpq,https://bestbme.lab.uic.edu/profiles/morris-michelle/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Connolly, Kevin (Field: about)",https://uofi.box.com/s/9z14npfaat8w4tm679f9lesnnsgivifb,https://bestbme.lab.uic.edu/profiles/connolly-kevin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Frye, Russell (Field: about)",https://uofi.box.com/s/7zv6vp3xag14ntoqyl85wr8xose3n6xt,https://bestbme.lab.uic.edu/profiles/frye-russell/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Joshi, Vyjayanti (Field: about)",https://uofi.box.com/s/wzle0qrn4yfft6dyupxny07fve4v8xue,https://bestbme.lab.uic.edu/profiles/joshi-vyjayanti/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Nelson, Susan (Field: about)",https://uofi.box.com/s/pai9jjnvk7lhbz81nz1n4zu2eklkqi5l,https://bestbme.lab.uic.edu/profiles/nelson-susan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Smit, Lindsey (Field: about)",https://uofi.box.com/s/wcikb3dx7aunzhnvf17emyudot1z271n,https://bestbme.lab.uic.edu/profiles/smit-lindsey/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Clayton, Steven (Field: about)",https://uofi.box.com/s/bbsdmrrcbedvp2gryjmg4maet1tjyviw,https://bestbme.lab.uic.edu/profiles/clayton-steven/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Coerper, Kristian (Field: about)",https://uofi.box.com/s/c9mux2jz2sevvfvfzkat7zkm2c0hi2o5,https://bestbme.lab.uic.edu/profiles/coerper-kristian/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jung, Katy (Field: about)",https://uofi.box.com/s/p2083y47mjzz8tozy1wootf9mfgoq8wu,https://bestbme.lab.uic.edu/profiles/jung-katy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"McBride, LaToya (Field: about)",https://uofi.box.com/s/667ktpiz4yozxq2u77gfqrg3390f1jbd,https://bestbme.lab.uic.edu/profiles/mcbride-latoya/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Torres, Valentin (Field: about)",https://uofi.box.com/s/ehdc8jhnoqy6cnm3sigwyq5f7p1gpbr0,https://bestbme.lab.uic.edu/profiles/torres-valentin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"O’Brien, John (Field: about)",https://uofi.box.com/s/sn2hz1z7bt0531k1rq8pb4648t2r8c5f,https://bestbme.lab.uic.edu/profiles/obrien-john/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Shi, Jianan (Field: about)",https://uofi.box.com/s/fsdl2a6r1y8ulx2fmwdzsf7ox2eu4qlo,https://bestbme.lab.uic.edu/profiles/shi-jianan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hu, Howard (Field: about)",https://uofi.box.com/s/xhhh1p7vj7c6atop73seqs7hn3cjsrg9,https://bestbme.lab.uic.edu/profiles/hu-howard/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Sarhan, Eman (Field: about)",https://uofi.box.com/s/2mddc56jzxd0b9ntxdvm2kwg7j6vl883,https://bestbme.lab.uic.edu/profiles/sarhan-eman/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Larrieu, Donna (Field: about)",https://uofi.box.com/s/4ts8o4nbg9ri727p586kzp20njhrux1x,https://bestbme.lab.uic.edu/profiles/larrieu-donna/,,,,,Skipped: Box link
Box,Profile (ACF Field),"McDaniel, Christopher (Field: about)",https://uofi.box.com/s/7p20v5kk2sx87yhonk1sxep1de7rt9xl,https://bestbme.lab.uic.edu/profiles/mcdaniel-christopher/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Fluharty, Allan (Field: about)",https://uofi.box.com/s/0rildi2oiu5n7lttnu4ytnw7bncx4gyp,https://bestbme.lab.uic.edu/profiles/fluharty-allan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Seifert, Alexander (Field: about)",https://uofi.box.com/s/w3n7bgbz3e2rjgnnd3xfjrtoa2xisfgv,https://bestbme.lab.uic.edu/profiles/seifert-alexander/,,,,,Skipped: Box link
PDF,Event (ACF Field),Pharmacy Resident Seminar: Alternative Agents for Continuous Sedation in the Intensive Care Unit (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.23.18_Rujevcan_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-alternative-agents-for-continuous-sedation-in-the-intensive-care-unit/,459705.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: Dethroning King’s College Criteria: An Update on Prognostic Models in Acetaminophen-Induced Hepatic Failure (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.18.18_Reticker_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-dethroning-kings-college-criteria-an-update-on-prognostic-models-in-acetaminophen-induced-hepatic-failure/,,,,,Download failed: 404 Client Error: Not Found for url: https://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.18.18_Reticker_Announcement.pdf
PDF,Event (ACF Field),Pharmacy Resident Seminar: Chronic Lymphocytic Leukemia (CLL) Treatment Updates: iGen and Beyond (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.16.18_Valdepenas_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-chronic-lymphocytic-leukemia-cll-treatment-updates-igen-and-beyond/,261272.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: It’s Finally Here: The New Reversal Agent on the Block (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.11.18_Siela_-Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-its-finally-here-the-new-reversal-agent-on-the-block/,81568.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Community Pharmacy Residency Seminar Series Part 1 (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/Finalwebsite__11.8.18-Community-Resident-Seminar-Announcement.pdf,https://cemedicine.uic.edu/events/community-pharmacy-residency-seminar-series-part-1/,12709657.0,1.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: Alternative Agents for Continuous Sedation in the Intensive Care Unit (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.23.18_Rujevcan_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-alternative-agents-for-continuous-sedation-in-the-intensive-care-unit/,459705.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: Dethroning King’s College Criteria: An Update on Prognostic Models in Acetaminophen-Induced Hepatic Failure (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.18.18_Reticker_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-dethroning-kings-college-criteria-an-update-on-prognostic-models-in-acetaminophen-induced-hepatic-failure/,,,,,Download failed: 404 Client Error: Not Found for url: https://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.18.18_Reticker_Announcement.pdf
PDF,Event (ACF Field),Pharmacy Resident Seminar: Chronic Lymphocytic Leukemia (CLL) Treatment Updates: iGen and Beyond (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.16.18_Valdepenas_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-chronic-lymphocytic-leukemia-cll-treatment-updates-igen-and-beyond/,261272.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: It’s Finally Here: The New Reversal Agent on the Block (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.11.18_Siela_-Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-its-finally-here-the-new-reversal-agent-on-the-block/,81568.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Community Pharmacy Residency Seminar Series Part 1 (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/Finalwebsite__11.8.18-Community-Resident-Seminar-Announcement.pdf,https://cemedicine.uic.edu/events/community-pharmacy-residency-seminar-series-part-1/,12709657.0,1.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: Alternative Agents for Continuous Sedation in the Intensive Care Unit (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.23.18_Rujevcan_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-alternative-agents-for-continuous-sedation-in-the-intensive-care-unit/,459705.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: Dethroning King’s College Criteria: An Update on Prognostic Models in Acetaminophen-Induced Hepatic Failure (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.18.18_Reticker_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-dethroning-kings-college-criteria-an-update-on-prognostic-models-in-acetaminophen-induced-hepatic-failure/,,,,,Download failed: 404 Client Error: Not Found for url: https://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.18.18_Reticker_Announcement.pdf
PDF,Event (ACF Field),Pharmacy Resident Seminar: Chronic Lymphocytic Leukemia (CLL) Treatment Updates: iGen and Beyond (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.16.18_Valdepenas_Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-chronic-lymphocytic-leukemia-cll-treatment-updates-igen-and-beyond/,261272.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Pharmacy Resident Seminar: It’s Finally Here: The New Reversal Agent on the Block (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/10.11.18_Siela_-Announcement.pdf,https://cemedicine.uic.edu/events/pharmacy-resident-seminar-its-finally-here-the-new-reversal-agent-on-the-block/,81568.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Community Pharmacy Residency Seminar Series Part 1 (Field: description),http://medicinece.red.uic.edu/wp-content/uploads/sites/541/2018/10/Finalwebsite__11.8.18-Community-Resident-Seminar-Announcement.pdf,https://cemedicine.uic.edu/events/community-pharmacy-residency-seminar-series-part-1/,12709657.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CPS Field Experience Process (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/10/CPSFieldExperienceGuideRevised09.2023.pdf,http://cte.uic.edu/field-experience/cps-field-experience-process/,143351.0,3.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/CTE-Bylaws_New-Letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,315928.0,6.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/cf_new-letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,733811.0,79.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/cf_execsum_new-letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,486377.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/liability_new-letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,351445.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/UIC-Work-Stoppages-Policy.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,174145.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Field Work (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2024/11/Courses-with-Field-Experience-2024.pdf,http://cte.uic.edu/field-experience/,179916.0,1.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Job Opening: Director of K-8 Mathematics for SY 25-26 (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2025/04/K-8-Math-Director.pdf,http://cte.uic.edu/news-stories/job-opening-director-of-k-8-mathematics-for-sy-25-26/,339053.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CPS Field Experience Process (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/10/CPSFieldExperienceGuideRevised09.2023.pdf,http://cte.uic.edu/field-experience/cps-field-experience-process/,143351.0,3.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/CTE-Bylaws_New-Letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,315928.0,6.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/cf_new-letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,733811.0,79.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/cf_execsum_new-letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,486377.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/liability_new-letterhead.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,351445.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/UIC-Work-Stoppages-Policy.pdf,http://cte.uic.edu/contact-us/cte-responsibilities/,174145.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Field Work (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2024/11/Courses-with-Field-Experience-2024.pdf,http://cte.uic.edu/field-experience/,179916.0,1.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Job Opening: Director of K-8 Mathematics for SY 25-26 (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2025/04/K-8-Math-Director.pdf,http://cte.uic.edu/news-stories/job-opening-director-of-k-8-mathematics-for-sy-25-26/,339053.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CPS Field Experience Process (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/10/CPSFieldExperienceGuideRevised09.2023.pdf,https://cte.uic.edu/field-experience/cps-field-experience-process/,143351.0,3.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/CTE-Bylaws_New-Letterhead.pdf,https://cte.uic.edu/contact-us/cte-responsibilities/,315928.0,6.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/cf_new-letterhead.pdf,https://cte.uic.edu/contact-us/cte-responsibilities/,733811.0,79.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/cf_execsum_new-letterhead.pdf,https://cte.uic.edu/contact-us/cte-responsibilities/,486377.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/liability_new-letterhead.pdf,https://cte.uic.edu/contact-us/cte-responsibilities/,351445.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),CTE Responsibilities (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2023/09/UIC-Work-Stoppages-Policy.pdf,https://cte.uic.edu/contact-us/cte-responsibilities/,174145.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Field Work (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2024/11/Courses-with-Field-Experience-2024.pdf,https://cte.uic.edu/field-experience/,179916.0,1.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Job Opening: Director of K-8 Mathematics for SY 25-26 (Field: intro_text_body),http://cte.uic.edu/wp-content/uploads/sites/51/2025/04/K-8-Math-Director.pdf,https://cte.uic.edu/news-stories/job-opening-director-of-k-8-mathematics-for-sy-25-26/,339053.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),We&#8217;re HIRING: Join the Social Justice Team (Field: intro_text_body),https://sji.uic.edu/wp-content/uploads/sites/39/2023/08/Preparator-Install-2023-1.pdf,https://sji.uic.edu/news-stories/sji-hiring-2023/,140485.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),SJI Releases Resource Guide on Haiti (Field: intro_text_body),https://mcusercontent.com/9a96db4cd726251e4b6594f18/files/2e5db5d3-54b0-8fda-ec32-78e1d9fbb5d5/All_Eyes_on_Haiti_Deep_Dive.pdf,https://sji.uic.edu/news-stories/sji-releases-resource-guide-on-haiti/,2777845.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),We&#8217;re HIRING: Join the Social Justice Team (Field: intro_text_body),https://sji.uic.edu/wp-content/uploads/sites/39/2023/08/Preparator-Install-2023-1.pdf,https://sji.uic.edu/news-stories/sji-hiring-2023/,140485.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),SJI Releases Resource Guide on Haiti (Field: intro_text_body),https://mcusercontent.com/9a96db4cd726251e4b6594f18/files/2e5db5d3-54b0-8fda-ec32-78e1d9fbb5d5/All_Eyes_on_Haiti_Deep_Dive.pdf,https://sji.uic.edu/news-stories/sji-releases-resource-guide-on-haiti/,2777845.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),We&#8217;re HIRING: Join the Social Justice Team (Field: intro_text_body),https://sji.uic.edu/wp-content/uploads/sites/39/2023/08/Preparator-Install-2023-1.pdf,https://sji.uic.edu/news-stories/sji-hiring-2023/,140485.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),SJI Releases Resource Guide on Haiti (Field: intro_text_body),https://mcusercontent.com/9a96db4cd726251e4b6594f18/files/2e5db5d3-54b0-8fda-ec32-78e1d9fbb5d5/All_Eyes_on_Haiti_Deep_Dive.pdf,https://sji.uic.edu/news-stories/sji-releases-resource-guide-on-haiti/,2777845.0,7.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/otysmqubv39nvpzdq17cdz5trpm5mqoh,http://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/swaqfto40a3p234e7vkl6npoj8qyl2fo,http://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/9jggf6ixewtpt4dy132l35ymhyx8yswo,http://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/4mrfej278b3kv4smoi0pd627skxoax8s,http://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/ite2wl98cq0gqv1o4wj59iwpkg19djm5,http://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/3yd4zk1h5025wdyzysm00s6e8vjlowea,http://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/m8p8h5wkl5ewlngexjg0j2y9wxsaig4w,http://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.box.com/s/49290jvsgofgkyoc12q9p43crj4lqeqz,http://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
PDF,Page (ACF Field),The Plan to Voucher Out Public Housing (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Voucher-out-public-housing-analysis-of-the-chicago-experience.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/plan-voucher-public-housing/,,,,,Download failed: 404 Client Error: Not Found for url: https://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Voucher-out-public-housing-analysis-of-the-chicago-experience.pdf
PDF,Page (ACF Field),Central Advisory Council 2012 Strategies and Recommendations Report (Field: intro_text_body),http://www.thecha.org/assets/1/22/2013-04-19_Plan_Forward.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/central-advisory-council-2012-strategies-recommendations-report/,,,,,Download failed: 404 Client Error: Not Found for url: http://www.thecha.org/assets/1/22/2013-04-19_Plan_Forward.pdf
PDF,Page (ACF Field),Central Advisory Council 2012 Strategies and Recommendations Report (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/CAC-2012-strategies-and-recommendations-report.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/central-advisory-council-2012-strategies-recommendations-report/,4334559.0,124.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Deepening Divide (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/The-Deepening-Divide-in-Chicagoland.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/deepening-divide/,5163134.0,36.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Deepening Divide (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Torontos-Growing-Socio-Spatial-Divide.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/deepening-divide/,4890413.0,13.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Helpful Tools for Communities (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Gentrification-and-Neighborhood-Change-Toolkit.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/gentrification-index/helpful-tools-communities/,695498.0,19.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Affordable Housing Fact Book (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/CRN-chicago_community_areas_locator_map.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/housing/affordable-housing-fact-book/,296012.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Affordable Housing Fact Book (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/All-CA-Fact-Sheets.pdf,http://voorheescenter.uic.edu/what-we-do/areas-of-research/housing/affordable-housing-fact-book/,12815620.0,77.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Affordable Housing Fact Book (Field: intro_text_body),https://uofi.box.com/v/CA-FactSheets,http://voorheescenter.uic.edu/what-we-do/areas-of-research/housing/affordable-housing-fact-book/,,,,,Skipped: Box link
Box,News (ACF Field),Measuring Gentrification in Chicago Community Areas: 2024 Update (Field: intro_text_body),https://uofi.box.com/s/kwvb7cusmzc2s7a07i08ldcjlejz0dob,http://voorheescenter.uic.edu/news-stories/measuring-gentrification-in-chicago-community-areas-2024-update/,,,,,Skipped: Box link
Box,News (ACF Field),Measuring Gentrification in Chicago Community Areas: 2024 Update (Field: intro_text_body),https://uofi.box.com/s/304zh62o1qu7hkiuf2v32h076q633mec,http://voorheescenter.uic.edu/news-stories/measuring-gentrification-in-chicago-community-areas-2024-update/,,,,,Skipped: Box link
Box,News (ACF Field),The Chicago Metropolitan Area’s Green Economy: Occupation One-Pagers (Field: intro_text_body),https://uofi.app.box.com/file/959547746188?s=otysmqubv39nvpzdq17cdz5trpm5mqoh,http://voorheescenter.uic.edu/news-stories/the-chicago-metropolitan-areas-green-economy-occupation-one-pagers/,,,,,Skipped: Box link
Box,News (ACF Field),Climate Legislation That Could Brighten Our Future (Field: intro_text_body),https://uofi.app.box.com/s/e01x6tr3enee747comlvurqc34ibe6yp,http://voorheescenter.uic.edu/news-stories/voorhees-blog-climate-legislation-that-could-brighten-our-future/,,,,,Skipped: Box link
Box,News (ACF Field),A Just Transition For Chicago (Field: intro_text_body),https://uofi.box.com/s/e01x6tr3enee747comlvurqc34ibe6yp,http://voorheescenter.uic.edu/news-stories/a-just-transition-for-chicago/,,,,,Skipped: Box link
PDF,News (ACF Field),A Just Transition for All of Us (Field: intro_text_body),https://e2.org/wp-content/uploads/2020/10/Clean-Jobs-Better-Jobs.-October-2020.-E2-ACORE-CELI.pdf,http://voorheescenter.uic.edu/news-stories/a-just-transition-for-all-of-us/,,,,,Download failed: 403 Client Error: Forbidden for url: https://e2.org/wp-content/uploads/2020/10/Clean-Jobs-Better-Jobs.-October-2020.-E2-ACORE-CELI.pdf
PDF,News (ACF Field),EDA University Center @ UIC (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/Sizing-up-Our-Regions-Green-Economy-Final-1.pdf,http://voorheescenter.uic.edu/news-stories/eda-university-center-uic/,2272409.0,57.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Investment Without Displacement: Communities Gather to Discuss Gentrification at the Voorhees Center Symposium (Field: intro_text_body),https://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Voorhees-Center-Gentrification-Index-Oct-14.pdf,http://voorheescenter.uic.edu/news-stories/investment-without-displacement-communities-gather-to-discuss-gentrification-at-the-voorhees-center-symposium/,1980102.0,31.0,True,True,Tags detected via pdfminer3
Box,Research Project (ACF Field),Chicago’s Clean Energy Future (Field: abstract),https://uofi.box.com/s/otysmqubv39nvpzdq17cdz5trpm5mqoh,http://voorheescenter.uic.edu/research/chicagos-clean-energy-future/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Chicago’s Clean Energy Future (Field: abstract),https://uofi.app.box.com/file/767150540780?s=e01x6tr3enee747comlvurqc34ibe6yp,http://voorheescenter.uic.edu/research/chicagos-clean-energy-future/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/otysmqubv39nvpzdq17cdz5trpm5mqoh,https://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/swaqfto40a3p234e7vkl6npoj8qyl2fo,https://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/9jggf6ixewtpt4dy132l35ymhyx8yswo,https://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/4mrfej278b3kv4smoi0pd627skxoax8s,https://voorheescenter.uic.edu/eda/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/ite2wl98cq0gqv1o4wj59iwpkg19djm5,https://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/3yd4zk1h5025wdyzysm00s6e8vjlowea,https://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.app.box.com/s/m8p8h5wkl5ewlngexjg0j2y9wxsaig4w,https://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
Box,Page (ACF Field),EDA University Center: Recent Work (Field: intro_text_body),https://uofi.box.com/s/49290jvsgofgkyoc12q9p43crj4lqeqz,https://voorheescenter.uic.edu/what-we-do/featured-projects/eda-university-center-recent-work/,,,,,Skipped: Box link
PDF,Page (ACF Field),The Plan to Voucher Out Public Housing (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Voucher-out-public-housing-analysis-of-the-chicago-experience.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/plan-voucher-public-housing/,,,,,Download failed: 404 Client Error: Not Found for url: https://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Voucher-out-public-housing-analysis-of-the-chicago-experience.pdf
PDF,Page (ACF Field),Central Advisory Council 2012 Strategies and Recommendations Report (Field: intro_text_body),http://www.thecha.org/assets/1/22/2013-04-19_Plan_Forward.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/central-advisory-council-2012-strategies-recommendations-report/,,,,,Download failed: 404 Client Error: Not Found for url: http://www.thecha.org/assets/1/22/2013-04-19_Plan_Forward.pdf
PDF,Page (ACF Field),Central Advisory Council 2012 Strategies and Recommendations Report (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/CAC-2012-strategies-and-recommendations-report.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/central-advisory-council-2012-strategies-recommendations-report/,4334559.0,124.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Deepening Divide (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/The-Deepening-Divide-in-Chicagoland.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/deepening-divide/,5163134.0,36.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Deepening Divide (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Torontos-Growing-Socio-Spatial-Divide.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/deepening-divide/,4890413.0,13.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Helpful Tools for Communities (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Gentrification-and-Neighborhood-Change-Toolkit.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/gentrification-index/helpful-tools-communities/,695498.0,19.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Affordable Housing Fact Book (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/CRN-chicago_community_areas_locator_map.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/housing/affordable-housing-fact-book/,296012.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Affordable Housing Fact Book (Field: intro_text_body),http://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/All-CA-Fact-Sheets.pdf,https://voorheescenter.uic.edu/what-we-do/areas-of-research/housing/affordable-housing-fact-book/,12815620.0,77.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Affordable Housing Fact Book (Field: intro_text_body),https://uofi.box.com/v/CA-FactSheets,https://voorheescenter.uic.edu/what-we-do/areas-of-research/housing/affordable-housing-fact-book/,,,,,Skipped: Box link
Box,News (ACF Field),Measuring Gentrification in Chicago Community Areas: 2024 Update (Field: intro_text_body),https://uofi.box.com/s/kwvb7cusmzc2s7a07i08ldcjlejz0dob,https://voorheescenter.uic.edu/news-stories/measuring-gentrification-in-chicago-community-areas-2024-update/,,,,,Skipped: Box link
Box,News (ACF Field),Measuring Gentrification in Chicago Community Areas: 2024 Update (Field: intro_text_body),https://uofi.box.com/s/304zh62o1qu7hkiuf2v32h076q633mec,https://voorheescenter.uic.edu/news-stories/measuring-gentrification-in-chicago-community-areas-2024-update/,,,,,Skipped: Box link
Box,News (ACF Field),The Chicago Metropolitan Area’s Green Economy: Occupation One-Pagers (Field: intro_text_body),https://uofi.app.box.com/file/959547746188?s=otysmqubv39nvpzdq17cdz5trpm5mqoh,https://voorheescenter.uic.edu/news-stories/the-chicago-metropolitan-areas-green-economy-occupation-one-pagers/,,,,,Skipped: Box link
Box,News (ACF Field),Climate Legislation That Could Brighten Our Future (Field: intro_text_body),https://uofi.app.box.com/s/e01x6tr3enee747comlvurqc34ibe6yp,https://voorheescenter.uic.edu/news-stories/voorhees-blog-climate-legislation-that-could-brighten-our-future/,,,,,Skipped: Box link
Box,News (ACF Field),A Just Transition For Chicago (Field: intro_text_body),https://uofi.box.com/s/e01x6tr3enee747comlvurqc34ibe6yp,https://voorheescenter.uic.edu/news-stories/a-just-transition-for-chicago/,,,,,Skipped: Box link
PDF,News (ACF Field),A Just Transition for All of Us (Field: intro_text_body),https://e2.org/wp-content/uploads/2020/10/Clean-Jobs-Better-Jobs.-October-2020.-E2-ACORE-CELI.pdf,https://voorheescenter.uic.edu/news-stories/a-just-transition-for-all-of-us/,,,,,Download failed: 403 Client Error: Forbidden for url: https://e2.org/wp-content/uploads/2020/10/Clean-Jobs-Better-Jobs.-October-2020.-E2-ACORE-CELI.pdf
PDF,News (ACF Field),EDA University Center @ UIC (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/Sizing-up-Our-Regions-Green-Economy-Final-1.pdf,https://voorheescenter.uic.edu/news-stories/eda-university-center-uic/,2272409.0,57.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Investment Without Displacement: Communities Gather to Discuss Gentrification at the Voorhees Center Symposium (Field: intro_text_body),https://voorheescenter.red.uic.edu/wp-content/uploads/sites/122/2017/10/Voorhees-Center-Gentrification-Index-Oct-14.pdf,https://voorheescenter.uic.edu/news-stories/investment-without-displacement-communities-gather-to-discuss-gentrification-at-the-voorhees-center-symposium/,1980102.0,31.0,True,True,Tags detected via pdfminer3
Box,Research Project (ACF Field),Chicago’s Clean Energy Future (Field: abstract),https://uofi.box.com/s/otysmqubv39nvpzdq17cdz5trpm5mqoh,https://voorheescenter.uic.edu/research/chicagos-clean-energy-future/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Chicago’s Clean Energy Future (Field: abstract),https://uofi.app.box.com/file/767150540780?s=e01x6tr3enee747comlvurqc34ibe6yp,https://voorheescenter.uic.edu/research/chicagos-clean-energy-future/,,,,,Skipped: Box link
PDF,Page (ACF Field),Graduate Job Outcomes &amp; Job Information (Field: intro_text_body),http://engl.red.uic.edu/wp-content/uploads/sites/288/2018/06/going-on-the-job-market-a-preview.pdf,http://engl.uic.edu/graduate-studies/outcomes/,54488.0,3.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Teaching Assistants in the English Department (Field: intro_text_body),https://uofi.box.com/s/tc9jwabjeo0v3yzdl45x0zckylb9riao,http://engl.uic.edu/resources-2/current-students/tas-in-english/,,,,,Skipped: Box link
Box,Page (ACF Field),Teaching Assistants in the English Department (Field: intro_text_body),https://uofi.box.com/s/rgrejzxjoc3c0thjva4wqq66pz2oz13k,http://engl.uic.edu/resources-2/current-students/tas-in-english/,,,,,Skipped: Box link
PDF,News (ACF Field),"Daniel Borzutzky, Mary Anne Moahnraj receive Artist Fellowship Awards (Field: intro_text_body)",https://arts.illinois.gov/sites/default/files/content/FY21%20Fellowship%20Recipients.pdf,http://engl.uic.edu/news-stories/daniel-borzutzky-mary-anne-moahnraj-receive-artist-fellowship-awards/,,,,,Download failed: 404 Client Error: Not Found for url: https://arts.illinois.gov/sites/default/files/content/FY21%20Fellowship%20Recipients.pdf
Box,News (ACF Field),U of I Press Announces Summer 2020 Internship for Grad Students (Field: intro_text_body),https://uofi.box.com/s/k2qkk5hxp5zioxv922gv5zfwxp3pc8xq,http://engl.uic.edu/news-stories/u-of-i-press-announces-summer-2020-internship-for-grad-students/,,,,,Skipped: Box link
PDF,News (ACF Field),"Tyler Mills, Ph.D. wins 2015 Graduate College Outstanding Thesis Award (Field: intro_text_body)",http://grad.uic.edu/sites/default/files/pdfs/GCweb_OT_FA15_Winners.pdf,http://engl.uic.edu/news-stories/tyler-mills-ph-d-wins-2015-graduate-college-outstanding-thesis-award/,,,,,Download failed: 404 Client Error: Not Found for url: https://grad.uic.edu/sites/default/files/pdfs/GCweb_OT_FA15_Winners.pdf
Box,Event (ACF Field),Materials due for W. Ann and Rachel Reynolds Dissertation Fellowship application (Field: description),https://uofi.box.com/s/jkgt07ew7bvh56xp1ngki5u3echkedvh,http://engl.uic.edu/events/materials-due-for-w-ann-and-rachel-reynolds-dissertation-fellowship-application/,,,,,Skipped: Box link
Box,Event (ACF Field),Program for Writers Reading Series with Raquel Salas Rivera and student readings (Field: description),https://uofi.box.com/s/z5a6s0jkqoltbxdlfq5hfwezvn7azt2i,http://engl.uic.edu/events/program-for-writers-reading-series-raquel-salas-rivera/,,,,,Skipped: Box link
PDF,Event (ACF Field),Political Futures Conference (Institute for the Humanities) (Field: description),https://huminst.uic.edu/docs/default-source/default-document-library/political-futures-reading-list.pdf?sfvrsn=ea780d13_2,http://engl.uic.edu/events/political-futures-conference/,,,,,Skipped: Not a PDF link
PDF,Event (ACF Field),Colloquium: Michael Fried (Johns Hopkins) (Field: description),http://engl.uic.edu/wp-content/uploads/sites/288/2019/04/Michael-Fried-No-Problem-2016.pdf,http://engl.uic.edu/events/colloquium-michael-fried/,102925.0,10.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Clarke, Ainsworth A. (Field: cv_link)",https://uofi.box.com/s/60np7bp75jj8n2zmgiopr6mtrygkpomu,http://engl.uic.edu/profiles/clarke-ainsworth-a/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gore, Jeffery (Field: cv_link)",https://uofi.app.box.com/file/831444054120,http://engl.uic.edu/profiles/gore-jeffery/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Grey, Robin (Field: cv_link)",https://uofi.box.com/s/0rr5sovby3gifmc3lb0yrif2a1bqp5c4,http://engl.uic.edu/profiles/grey-robin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Leick, Karen (Field: cv_link)",https://uofi.box.com/s/qj1naoutce3cffqmka7442m61xrlvgnr,http://engl.uic.edu/profiles/leick-karen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Urrea, Luis (Field: cv_link)",https://uofi.box.com/s/nsdf0xpbjp0kc5j7jdewkvyt6gbp44na,http://engl.uic.edu/profiles/urrea-luis/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Barnes, Natasha (Field: cv_link)",https://uofi.box.com/s/4gdj10mef510ffx6fz898470q4is9kqm,http://engl.uic.edu/profiles/barnes-natasha/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Ashton, Jennifer (Field: cv_link)",https://uofi.box.com/s/truzpzvgo6ak3jhkb6hdzacvmlgg7xhd,http://engl.uic.edu/profiles/ashton-jennifer/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Davis, Lennard (Field: cv_link)",https://uofi.box.com/s/h89qo2mhietncy0vcfipie39v3wokjdw,http://engl.uic.edu/profiles/davis-lennard/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hulse, Clark (Field: cv_link)",https://uofi.box.com/s/b6z5ndc2rr30ywcmnclrr35bddwrd361,http://engl.uic.edu/profiles/hulse-clark/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mazza, Cris (Field: cv_link)",https://uofi.box.com/s/7jqmaypf86r7b5mg8nie240vvijthpn4,http://engl.uic.edu/profiles/mazza-cris/,,,,,Skipped: Box link
PDF,Page (ACF Field),Graduate Job Outcomes &amp; Job Information (Field: intro_text_body),http://engl.red.uic.edu/wp-content/uploads/sites/288/2018/06/going-on-the-job-market-a-preview.pdf,https://engl.uic.edu/graduate-studies/outcomes/,54488.0,3.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Teaching Assistants in the English Department (Field: intro_text_body),https://uofi.box.com/s/tc9jwabjeo0v3yzdl45x0zckylb9riao,https://engl.uic.edu/resources-2/current-students/tas-in-english/,,,,,Skipped: Box link
Box,Page (ACF Field),Teaching Assistants in the English Department (Field: intro_text_body),https://uofi.box.com/s/rgrejzxjoc3c0thjva4wqq66pz2oz13k,https://engl.uic.edu/resources-2/current-students/tas-in-english/,,,,,Skipped: Box link
PDF,News (ACF Field),"Daniel Borzutzky, Mary Anne Moahnraj receive Artist Fellowship Awards (Field: intro_text_body)",https://arts.illinois.gov/sites/default/files/content/FY21%20Fellowship%20Recipients.pdf,https://engl.uic.edu/news-stories/daniel-borzutzky-mary-anne-moahnraj-receive-artist-fellowship-awards/,,,,,Download failed: 404 Client Error: Not Found for url: https://arts.illinois.gov/sites/default/files/content/FY21%20Fellowship%20Recipients.pdf
Box,News (ACF Field),U of I Press Announces Summer 2020 Internship for Grad Students (Field: intro_text_body),https://uofi.box.com/s/k2qkk5hxp5zioxv922gv5zfwxp3pc8xq,https://engl.uic.edu/news-stories/u-of-i-press-announces-summer-2020-internship-for-grad-students/,,,,,Skipped: Box link
PDF,News (ACF Field),"Tyler Mills, Ph.D. wins 2015 Graduate College Outstanding Thesis Award (Field: intro_text_body)",http://grad.uic.edu/sites/default/files/pdfs/GCweb_OT_FA15_Winners.pdf,https://engl.uic.edu/news-stories/tyler-mills-ph-d-wins-2015-graduate-college-outstanding-thesis-award/,,,,,Download failed: 404 Client Error: Not Found for url: https://grad.uic.edu/sites/default/files/pdfs/GCweb_OT_FA15_Winners.pdf
Box,Event (ACF Field),Materials due for W. Ann and Rachel Reynolds Dissertation Fellowship application (Field: description),https://uofi.box.com/s/jkgt07ew7bvh56xp1ngki5u3echkedvh,https://engl.uic.edu/events/materials-due-for-w-ann-and-rachel-reynolds-dissertation-fellowship-application/,,,,,Skipped: Box link
Box,Event (ACF Field),Program for Writers Reading Series with Raquel Salas Rivera and student readings (Field: description),https://uofi.box.com/s/z5a6s0jkqoltbxdlfq5hfwezvn7azt2i,https://engl.uic.edu/events/program-for-writers-reading-series-raquel-salas-rivera/,,,,,Skipped: Box link
PDF,Event (ACF Field),Political Futures Conference (Institute for the Humanities) (Field: description),https://huminst.uic.edu/docs/default-source/default-document-library/political-futures-reading-list.pdf?sfvrsn=ea780d13_2,https://engl.uic.edu/events/political-futures-conference/,,,,,Skipped: Not a PDF link
PDF,Event (ACF Field),Colloquium: Michael Fried (Johns Hopkins) (Field: description),http://engl.uic.edu/wp-content/uploads/sites/288/2019/04/Michael-Fried-No-Problem-2016.pdf,https://engl.uic.edu/events/colloquium-michael-fried/,102925.0,10.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Clarke, Ainsworth A. (Field: cv_link)",https://uofi.box.com/s/60np7bp75jj8n2zmgiopr6mtrygkpomu,https://engl.uic.edu/profiles/clarke-ainsworth-a/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Gore, Jeffery (Field: cv_link)",https://uofi.app.box.com/file/831444054120,https://engl.uic.edu/profiles/gore-jeffery/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Grey, Robin (Field: cv_link)",https://uofi.box.com/s/0rr5sovby3gifmc3lb0yrif2a1bqp5c4,https://engl.uic.edu/profiles/grey-robin/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Leick, Karen (Field: cv_link)",https://uofi.box.com/s/qj1naoutce3cffqmka7442m61xrlvgnr,https://engl.uic.edu/profiles/leick-karen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Urrea, Luis (Field: cv_link)",https://uofi.box.com/s/nsdf0xpbjp0kc5j7jdewkvyt6gbp44na,https://engl.uic.edu/profiles/urrea-luis/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Barnes, Natasha (Field: cv_link)",https://uofi.box.com/s/4gdj10mef510ffx6fz898470q4is9kqm,https://engl.uic.edu/profiles/barnes-natasha/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Ashton, Jennifer (Field: cv_link)",https://uofi.box.com/s/truzpzvgo6ak3jhkb6hdzacvmlgg7xhd,https://engl.uic.edu/profiles/ashton-jennifer/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Davis, Lennard (Field: cv_link)",https://uofi.box.com/s/h89qo2mhietncy0vcfipie39v3wokjdw,https://engl.uic.edu/profiles/davis-lennard/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Hulse, Clark (Field: cv_link)",https://uofi.box.com/s/b6z5ndc2rr30ywcmnclrr35bddwrd361,https://engl.uic.edu/profiles/hulse-clark/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mazza, Cris (Field: cv_link)",https://uofi.box.com/s/7jqmaypf86r7b5mg8nie240vvijthpn4,https://engl.uic.edu/profiles/mazza-cris/,,,,,Skipped: Box link
Box,Page (ACF Field),Council of Councils Program (Field: intro_text_body),https://uofi.box.com/s/k9nq83m0jmtthkg804pjn1655gmrm8jd,http://sac.uic.edu/councils-of-councils-program/,,,,,Skipped: Box link
PDF,Page (ACF Field),About the in-person EXPO (Field: intro_text_body),https://ccslgbtqpa.uic.edu/files/2016/06/Attendance-At-Approved-Events-Policy.pdf,http://sac.uic.edu/expo-homepage/about-expo/,,,,,"Download failed: HTTPSConnectionPool(host='ccslgbtqpa.uic.edu', port=443): Max retries exceeded with url: /files/2016/06/Attendance-At-Approved-Events-Policy.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,Page (ACF Field),About the in-person EXPO (Field: intro_text_body),https://nessie.uihr.uillinois.edu/pdf/policy/rules/pr11r12.pdf,http://sac.uic.edu/expo-homepage/about-expo/,23244.0,3.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Examples of Professional Development Activities @ UIC (Field: intro_text_body),https://www.hr.uic.edu/UserFiles/Servers/Server_2716/File/d_HR_forms/d_05_org_effectiveness/goals_exp_form.pdf,http://sac.uic.edu/staff-advisory-council-professional-development-program/examples-of-professional-development-activities-uic/,,,,,"Download failed: HTTPSConnectionPool(host='www.hr.uic.edu', port=443): Max retries exceeded with url: /UserFiles/Servers/Server_2716/File/d_HR_forms/d_05_org_effectiveness/goals_exp_form.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,Page (ACF Field),2019 Election Results (Field: intro_text_body),https://www.chicago.gov/content/dam/city/depts/zlup/Historic_Preservation/Publications/Claremont_Cottage_District_Prelim_Sum.pdf,http://sac.uic.edu/election/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.chicago.gov/content/dam/city/depts/zlup/Historic_Preservation/Publications/Claremont_Cottage_District_Prelim_Sum.pdf
PDF,Page (ACF Field),General Questions (Field: intro_text_body),http://www.surs.com/pdfs/counseling.pdf,http://sac.uic.edu/general-questions/,,,,,Download failed: 403 Client Error: Forbidden for url: http://www.surs.org/pdfs/counseling.pdf
Box,Page (ACF Field),Janice Watkins Award Criteria (Field: intro_text_body),https://uofi.app.box.com/s/dzvxfvrojndfyno2n4iormg6ywsz8vkb,http://sac.uic.edu/janice-watkins-award/criteria/,,,,,Skipped: Box link
PDF,Page (ACF Field),pdf test (Field: intro_text_body),http://sac.red.uic.edu/wp-content/uploads/sites/331/2020/04/Sai-Manish-resume-.pdf,http://sac.uic.edu/pdf-test/,,,,,Download failed: Not a PDF based on Content-Type
Box,Page (ACF Field),Become a member of UIC SAC today! (Field: intro_text_body),https://uofi.box.com/s/j6rqg8le07w890nqonf7d7j940p1nqz4,http://sac.uic.edu/member/,,,,,Skipped: Box link
Box,Event (ACF Field),You and UIC: Mental Health Resources at UIC (Field: description),https://uofi.app.box.com/s/z54ms8nl194wfyj3771avk3u9s0at3tx,http://sac.uic.edu/events/you-and-uic-mental-health-resources-at-uic/,,,,,Skipped: Box link
PDF,Event (ACF Field),From Here to Retirement (Field: description),https://surs.org/wp-content/uploads/From_Here_To_Retirement.pdf,http://sac.uic.edu/events/from-here-to-retirement-2/,,,,,Download failed: 403 Client Error: Forbidden for url: https://surs.org/wp-content/uploads/From_Here_To_Retirement.pdf
PDF,Event (ACF Field),Understanding Your SURS Benefits (Field: description),https://surs.org/wp-content/uploads/Understanding-Your-SURS-Benefits-Webinar.pdf,http://sac.uic.edu/events/understanding-your-surs-benefits-2/,,,,,Download failed: 403 Client Error: Forbidden for url: https://surs.org/wp-content/uploads/Understanding-Your-SURS-Benefits-Webinar.pdf
PDF,Event (ACF Field),Secretary of State Mobile Services (Field: description),https://www.ilsos.gov/publications/pdf_publications/dsd_x173.pdf,http://sac.uic.edu/events/secretary-of-state-mobile-services-2/,,,,,"Download failed: HTTPSConnectionPool(host='www.ilsos.gov', port=443): Read timed out. (read timeout=15)"
Box,Page (ACF Field),Council of Councils Program (Field: intro_text_body),https://uofi.box.com/s/k9nq83m0jmtthkg804pjn1655gmrm8jd,https://sac.uic.edu/councils-of-councils-program/,,,,,Skipped: Box link
PDF,Page (ACF Field),About the in-person EXPO (Field: intro_text_body),https://ccslgbtqpa.uic.edu/files/2016/06/Attendance-At-Approved-Events-Policy.pdf,https://sac.uic.edu/expo-homepage/about-expo/,,,,,"Download failed: HTTPSConnectionPool(host='ccslgbtqpa.uic.edu', port=443): Max retries exceeded with url: /files/2016/06/Attendance-At-Approved-Events-Policy.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,Page (ACF Field),About the in-person EXPO (Field: intro_text_body),https://nessie.uihr.uillinois.edu/pdf/policy/rules/pr11r12.pdf,https://sac.uic.edu/expo-homepage/about-expo/,23244.0,3.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Examples of Professional Development Activities @ UIC (Field: intro_text_body),https://www.hr.uic.edu/UserFiles/Servers/Server_2716/File/d_HR_forms/d_05_org_effectiveness/goals_exp_form.pdf,https://sac.uic.edu/staff-advisory-council-professional-development-program/examples-of-professional-development-activities-uic/,,,,,"Download failed: HTTPSConnectionPool(host='www.hr.uic.edu', port=443): Max retries exceeded with url: /UserFiles/Servers/Server_2716/File/d_HR_forms/d_05_org_effectiveness/goals_exp_form.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,Page (ACF Field),2019 Election Results (Field: intro_text_body),https://www.chicago.gov/content/dam/city/depts/zlup/Historic_Preservation/Publications/Claremont_Cottage_District_Prelim_Sum.pdf,https://sac.uic.edu/election/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.chicago.gov/content/dam/city/depts/zlup/Historic_Preservation/Publications/Claremont_Cottage_District_Prelim_Sum.pdf
PDF,Page (ACF Field),General Questions (Field: intro_text_body),http://www.surs.com/pdfs/counseling.pdf,https://sac.uic.edu/general-questions/,,,,,Download failed: 403 Client Error: Forbidden for url: http://www.surs.org/pdfs/counseling.pdf
Box,Page (ACF Field),Janice Watkins Award Criteria (Field: intro_text_body),https://uofi.app.box.com/s/dzvxfvrojndfyno2n4iormg6ywsz8vkb,https://sac.uic.edu/janice-watkins-award/criteria/,,,,,Skipped: Box link
PDF,Page (ACF Field),pdf test (Field: intro_text_body),http://sac.red.uic.edu/wp-content/uploads/sites/331/2020/04/Sai-Manish-resume-.pdf,https://sac.uic.edu/pdf-test/,,,,,Download failed: Not a PDF based on Content-Type
Box,Page (ACF Field),Become a member of UIC SAC today! (Field: intro_text_body),https://uofi.box.com/s/j6rqg8le07w890nqonf7d7j940p1nqz4,https://sac.uic.edu/member/,,,,,Skipped: Box link
Box,Event (ACF Field),You and UIC: Mental Health Resources at UIC (Field: description),https://uofi.app.box.com/s/z54ms8nl194wfyj3771avk3u9s0at3tx,https://sac.uic.edu/events/you-and-uic-mental-health-resources-at-uic/,,,,,Skipped: Box link
PDF,Event (ACF Field),From Here to Retirement (Field: description),https://surs.org/wp-content/uploads/From_Here_To_Retirement.pdf,https://sac.uic.edu/events/from-here-to-retirement-2/,,,,,Download failed: 403 Client Error: Forbidden for url: https://surs.org/wp-content/uploads/From_Here_To_Retirement.pdf
PDF,Event (ACF Field),Understanding Your SURS Benefits (Field: description),https://surs.org/wp-content/uploads/Understanding-Your-SURS-Benefits-Webinar.pdf,https://sac.uic.edu/events/understanding-your-surs-benefits-2/,,,,,Download failed: 403 Client Error: Forbidden for url: https://surs.org/wp-content/uploads/Understanding-Your-SURS-Benefits-Webinar.pdf
PDF,Event (ACF Field),Secretary of State Mobile Services (Field: description),https://www.ilsos.gov/publications/pdf_publications/dsd_x173.pdf,https://sac.uic.edu/events/secretary-of-state-mobile-services-2/,,,,,"Download failed: HTTPSConnectionPool(host='www.ilsos.gov', port=443): Read timed out. (read timeout=15)"
Box,Page (ACF Field),Library Materials (Field: intro_text_body),https://uofi.box.com/s/bgbm1k1sx15sih4rrxihmehoee1cfann,http://arabamcc.uic.edu/resources/library-materials/,,,,,Skipped: Box link
Box,Page (ACF Field),Points of Unity (Field: intro_text_body),https://uofi.box.com/s/nw24thhhs64cp4epprhf8xce846jurz6,http://arabamcc.uic.edu/about-us/points-of-unity/,,,,,Skipped: Box link
Box,Event (ACF Field),Call for Artists: Rooted in Resilience غارس في عناد الحياة (Field: description),https://uofi.box.com/s/iwdnoh7s7i13gn8xytxhozdm7qyyxhmg,http://arabamcc.uic.edu/events/call-for-artists-rooted-in-resilience-%d8%ba%d8%a7%d8%b1%d8%b3-%d9%81%d9%8a-%d8%b9%d9%86%d8%a7%d8%af-%d8%a7%d9%84%d8%ad%d9%8a%d8%a7%d8%a9/,,,,,Skipped: Box link
Box,Event (ACF Field),War and Visual Politics in Palestine/Israel: A Conversation with Rebecca Stein (Field: description),https://uofi.app.box.com/s/7ajizftckb0or31dlkujfji9li1zwgmy,http://arabamcc.uic.edu/events/war-and-visual-politics-in-palestine-israel-a-conversation-with-rebecca-stein/,,,,,Skipped: Box link
PDF,Event (ACF Field),Anti-Black Racism in the Arab Region: Historical Roots and Current Struggles (Field: description),http://haasinstitute.berkeley.edu/sites/default/files/haasinstitute_tpp_updated_republishedmay2016_0.pdf,http://arabamcc.uic.edu/events/anti-black-racism-in-the-arab-region-historical-roots-and-current-manifestations/,701668.0,32.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Anti-Black Racism in the Arab Region: Historical Roots and Current Struggles (Field: description),http://haasinstitute.berkeley.edu/sites/default/files/Structural%20Racialization%20%20%26%20Food%20Insecurity%20in%20the%20US-%28Final%29.pdf,http://arabamcc.uic.edu/events/anti-black-racism-in-the-arab-region-historical-roots-and-current-manifestations/,862613.0,12.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),Getting Comfortable Dealing with the Uncomfortable (Field: description),https://uofi.box.com/s/w5vyjy816xusso5dwxzubus52nlvhmkr,http://arabamcc.uic.edu/events/getting-comfortable-dealing-with-the-uncomfortable/,,,,,Skipped: Box link
Box,Event (ACF Field),Layali Al-Fan (Art Nights): Dances for the Winds with Huda Asfour and Irina Solinas (Field: description),https://uofi.box.com/s/leitd39k3so6a6ouorn7as1avhbki2wa,http://arabamcc.uic.edu/events/layali-al-fan-art-nights-dances-for-the-winds-with-huda-asfour-and-irina-solinas/,,,,,Skipped: Box link
Box,Page (ACF Field),Library Materials (Field: intro_text_body),https://uofi.box.com/s/bgbm1k1sx15sih4rrxihmehoee1cfann,https://arabamcc.uic.edu/resources/library-materials/,,,,,Skipped: Box link
Box,Page (ACF Field),Points of Unity (Field: intro_text_body),https://uofi.box.com/s/nw24thhhs64cp4epprhf8xce846jurz6,https://arabamcc.uic.edu/about-us/points-of-unity/,,,,,Skipped: Box link
Box,Event (ACF Field),Call for Artists: Rooted in Resilience غارس في عناد الحياة (Field: description),https://uofi.box.com/s/iwdnoh7s7i13gn8xytxhozdm7qyyxhmg,https://arabamcc.uic.edu/events/call-for-artists-rooted-in-resilience-%d8%ba%d8%a7%d8%b1%d8%b3-%d9%81%d9%8a-%d8%b9%d9%86%d8%a7%d8%af-%d8%a7%d9%84%d8%ad%d9%8a%d8%a7%d8%a9/,,,,,Skipped: Box link
Box,Event (ACF Field),War and Visual Politics in Palestine/Israel: A Conversation with Rebecca Stein (Field: description),https://uofi.app.box.com/s/7ajizftckb0or31dlkujfji9li1zwgmy,https://arabamcc.uic.edu/events/war-and-visual-politics-in-palestine-israel-a-conversation-with-rebecca-stein/,,,,,Skipped: Box link
PDF,Event (ACF Field),Anti-Black Racism in the Arab Region: Historical Roots and Current Struggles (Field: description),http://haasinstitute.berkeley.edu/sites/default/files/haasinstitute_tpp_updated_republishedmay2016_0.pdf,https://arabamcc.uic.edu/events/anti-black-racism-in-the-arab-region-historical-roots-and-current-manifestations/,701668.0,32.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Anti-Black Racism in the Arab Region: Historical Roots and Current Struggles (Field: description),http://haasinstitute.berkeley.edu/sites/default/files/Structural%20Racialization%20%20%26%20Food%20Insecurity%20in%20the%20US-%28Final%29.pdf,https://arabamcc.uic.edu/events/anti-black-racism-in-the-arab-region-historical-roots-and-current-manifestations/,862613.0,12.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),Getting Comfortable Dealing with the Uncomfortable (Field: description),https://uofi.box.com/s/w5vyjy816xusso5dwxzubus52nlvhmkr,https://arabamcc.uic.edu/events/getting-comfortable-dealing-with-the-uncomfortable/,,,,,Skipped: Box link
Box,Event (ACF Field),Layali Al-Fan (Art Nights): Dances for the Winds with Huda Asfour and Irina Solinas (Field: description),https://uofi.box.com/s/leitd39k3so6a6ouorn7as1avhbki2wa,https://arabamcc.uic.edu/events/layali-al-fan-art-nights-dances-for-the-winds-with-huda-asfour-and-irina-solinas/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zhou, Huan-Xiang (Field: cv_link)",https://uofi.app.box.com/file/1652551058193,https://zhou.uic.edu/profiles/zhou-huan-xiang/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Zhou, Huan-Xiang (Field: cv_link)",https://uofi.app.box.com/file/1652551058193,https://zhou.uic.edu/profiles/zhou-huan-xiang/,,,,,Skipped: Box link
Box,News (ACF Field),2019 Regional EDA University Showcase (Field: intro_text_body),https://www.dropbox.com/sh/p5zp3p74zvve863/AACueHzFyz9lKv1nlTWErp9Ra?dl=0,https://edauniversitycenter.uic.edu/news-stories/2019-regional-eda-university-showcase/,,,,,Skipped: Box link
PDF,News (ACF Field),2018 Regional EDA University Showcase (Field: intro_text_body),https://blogs.ces.uwex.edu/cced/files/2018/03/2018-Chicago-Region-EDA-University-Center-Showcase-Invite.pdf,https://edauniversitycenter.uic.edu/news-stories/2018-regional-eda-university-showcase/,,,,,Download failed: 404 Client Error: Not Found for url: https://economicdevelopment.extension.wisc.edu/files/2018/03/2018-Chicago-Region-EDA-University-Center-Showcase-Invite.pdf
PDF,News (ACF Field),2017 Regional EDA University Showcase (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/09/2017-Showcase-agenda-and-details.pdf,https://edauniversitycenter.uic.edu/news-stories/2017-regional-eda-university-showcase/,714254.0,6.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),2017 Regional EDA University Showcase (Field: intro_text_body),https://uofi.box.com/v/2017Showcase,https://edauniversitycenter.uic.edu/news-stories/2017-regional-eda-university-showcase/,,,,,Skipped: Box link
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/EDA-MAY-1-w-Notes.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,2854808.0,31.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/Highlights_Handout_Final.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,160978.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/EDA-5-1-handout.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,109288.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/Sizing-up-Our-Regions-Green-Economy-Final-1.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,2272409.0,57.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),2019 Regional EDA University Showcase (Field: intro_text_body),https://www.dropbox.com/sh/p5zp3p74zvve863/AACueHzFyz9lKv1nlTWErp9Ra?dl=0,https://edauniversitycenter.uic.edu/news-stories/2019-regional-eda-university-showcase/,,,,,Skipped: Box link
PDF,News (ACF Field),2018 Regional EDA University Showcase (Field: intro_text_body),https://blogs.ces.uwex.edu/cced/files/2018/03/2018-Chicago-Region-EDA-University-Center-Showcase-Invite.pdf,https://edauniversitycenter.uic.edu/news-stories/2018-regional-eda-university-showcase/,,,,,Download failed: 404 Client Error: Not Found for url: https://economicdevelopment.extension.wisc.edu/files/2018/03/2018-Chicago-Region-EDA-University-Center-Showcase-Invite.pdf
PDF,News (ACF Field),2017 Regional EDA University Showcase (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/09/2017-Showcase-agenda-and-details.pdf,https://edauniversitycenter.uic.edu/news-stories/2017-regional-eda-university-showcase/,714254.0,6.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),2017 Regional EDA University Showcase (Field: intro_text_body),https://uofi.box.com/v/2017Showcase,https://edauniversitycenter.uic.edu/news-stories/2017-regional-eda-university-showcase/,,,,,Skipped: Box link
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/EDA-MAY-1-w-Notes.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,2854808.0,31.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/Highlights_Handout_Final.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,160978.0,2.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/EDA-5-1-handout.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,109288.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Sizing up our Region’s Green Economy (Field: intro_text_body),https://edauniversitycenter.uic.edu/wp-content/uploads/sites/16/2017/05/Sizing-up-Our-Regions-Green-Economy-Final-1.pdf,https://edauniversitycenter.uic.edu/news-stories/sizing-regions-green-economy/,2272409.0,57.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPFall2012Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPFall2012Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978f30>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPSpring2012Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPSpring2012Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x1059789e0>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPFall2011Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPFall2011Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979590>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPSpring2011Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPSpring2011Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979370>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESP-Fall-2010-Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESP-Fall-2010-Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978f30>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/WinterNewsletter2010.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/WinterNewsletter2010.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x1059789e0>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/Summer2009.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/Summer2009.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979590>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/September2008newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/September2008newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979370>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/Winter-newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/Winter-newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978f30>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/Summer-newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/Summer-newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x1059789e0>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/report.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/report.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979590>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPFall2012Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPFall2012Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979370>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPSpring2012Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPSpring2012Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978f30>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPFall2011Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPFall2011Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x1059789e0>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESPSpring2011Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESPSpring2011Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979590>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/IESP-Fall-2010-Newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/IESP-Fall-2010-Newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979370>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/WinterNewsletter2010.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/WinterNewsletter2010.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978f30>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/Summer2009.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/Summer2009.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x1059789e0>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/September2008newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/September2008newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979590>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/Winter-newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/Winter-newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105979370>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/Summer-newsletter.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/Summer-newsletter.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978f30>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
PDF,Page (ACF Field),Departmental Publications (Field: intro_text_body),http://iesp.publish.uic.edu/files/2015/07/report.pdf,https://iesp.uic.edu/research-publications/departmental-publications/,,,,,"Download failed: HTTPConnectionPool(host='iesp.publish.uic.edu', port=80): Max retries exceeded with url: /files/2015/07/report.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x1059789e0>: Failed to resolve 'iesp.publish.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
Box,Page (ACF Field),Awards &amp; Scholarships (Field: intro_text_body),https://uofi.box.com/s/log4khqbtpdhpumgowrsp1116vyfe1c7,http://ihs.uic.edu/resources/scholarships/,,,,,Skipped: Box link
Box,Page (ACF Field),Awards &amp; Scholarships (Field: intro_text_body),https://uofi.box.com/s/log4khqbtpdhpumgowrsp1116vyfe1c7,https://ihs.uic.edu/resources/scholarships/,,,,,Skipped: Box link
PDF,News (ACF Field),Register now for the 2019 Food Summit! (Field: intro_text_body),https://www.cookcountypublichealth.org/wp-content/uploads/2019/08/2019-Food-Summit_AgendaAtAGlance_FINAL.pdf,http://mcphp.uic.edu/news-stories/register-now-for-the-2019-food-summit/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.cookcountypublichealth.org/wp-content/uploads/2019/08/2019-Food-Summit_AgendaAtAGlance_FINAL.pdf
PDF,News (ACF Field),Register now for the 2019 Food Summit! (Field: intro_text_body),https://www.cookcountypublichealth.org/wp-content/uploads/2019/08/2019-Food-Summit_AgendaAtAGlance_FINAL.pdf,https://mcphp.uic.edu/news-stories/register-now-for-the-2019-food-summit/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.cookcountypublichealth.org/wp-content/uploads/2019/08/2019-Food-Summit_AgendaAtAGlance_FINAL.pdf
Box,News (ACF Field),SHIELD Illinois announces funding opportunity (Field: intro_text_body),https://uofi.box.com/s/9sim5t8ve5mvmt5flojh7w3u1bp2uobn,https://innovation.uic.edu/news-stories/shield-illinois-announces-funding-opportunity/,,,,,Skipped: Box link
Box,News (ACF Field),IIN announces new seed funding opportunity (Field: intro_text_body),https://uofi.box.com/s/gslg0froczth1kwng5rgq36ubfz84g4g,https://innovation.uic.edu/news-stories/iin-seed-funding-spring-2022/,,,,,Skipped: Box link
Box,News (ACF Field),SHIELD Illinois announces funding opportunity (Field: intro_text_body),https://uofi.box.com/s/9sim5t8ve5mvmt5flojh7w3u1bp2uobn,https://innovation.uic.edu/news-stories/shield-illinois-announces-funding-opportunity/,,,,,Skipped: Box link
Box,News (ACF Field),IIN announces new seed funding opportunity (Field: intro_text_body),https://uofi.box.com/s/gslg0froczth1kwng5rgq36ubfz84g4g,https://innovation.uic.edu/news-stories/iin-seed-funding-spring-2022/,,,,,Skipped: Box link
Box,Page (ACF Field),2007-2012 (Field: intro_text_body),https://uofi.box.com/s/cv4m9j3q40fvy0liihs3xn20mxautf56,https://senateedpolicy.uic.edu/src/src-proposal-archive/2007-2012/,,,,,Skipped: Box link
Box,Page (ACF Field),2007-2012 (Field: intro_text_body),https://uofi.box.com/s/4gqslota5a6dkx81nkhqh5hquvw8jzma,https://senateedpolicy.uic.edu/src/src-proposal-archive/2007-2012/,,,,,Skipped: Box link
Box,Page (ACF Field),2007-2012 (Field: intro_text_body),https://uofi.box.com/s/cv4m9j3q40fvy0liihs3xn20mxautf56,https://senateedpolicy.uic.edu/src/src-proposal-archive/2007-2012/,,,,,Skipped: Box link
Box,Page (ACF Field),2007-2012 (Field: intro_text_body),https://uofi.box.com/s/4gqslota5a6dkx81nkhqh5hquvw8jzma,https://senateedpolicy.uic.edu/src/src-proposal-archive/2007-2012/,,,,,Skipped: Box link
Box,Event (ACF Field),Interventions in the Post-Colonial World (Field: description),https://uofi.box.com/s/mqbsjnc81ozavt61lp2p42qpqc20avaq,http://inst.uic.edu/events/interventions-in-the-post-colonial-world/,,,,,Skipped: Box link
Box,Event (ACF Field),Interventions in the Post-Colonial World (Field: description),https://uofi.box.com/s/mqbsjnc81ozavt61lp2p42qpqc20avaq,https://inst.uic.edu/events/interventions-in-the-post-colonial-world/,,,,,Skipped: Box link
PDF,Page (ACF Field),Featured Program: Machine Learning (Field: intro_text_body),http://meng.uic.edu/wp-content/uploads/sites/92/2020/05/Machine-Learning-Flier.pdf,https://meng-old.red.uic.edu/coursework/machine-learning/,1033902.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Helpful Information (Field: intro_text_body),http://meng.uic.edu/pdfs/APMagazine.pdf,https://meng-old.red.uic.edu/helpful-information/,,,,,Download failed: 404 Client Error: Not Found for url: https://meng.uic.edu/pdfs/APMagazine.pdf
PDF,Page (ACF Field),Helpful Information (Field: intro_text_body),http://meng.uic.edu/pdfs/che494.pdf,https://meng-old.red.uic.edu/helpful-information/,,,,,Download failed: 404 Client Error: Not Found for url: https://meng.uic.edu/pdfs/che494.pdf
PDF,Page (ACF Field),Helpful Information (Field: intro_text_body),http://meng.uic.edu/pdfs/compsac2001.pdf,https://meng-old.red.uic.edu/helpful-information/,,,,,Download failed: 404 Client Error: Not Found for url: https://meng.uic.edu/pdfs/compsac2001.pdf
PDF,Page (ACF Field),Featured Program: Machine Learning (Field: intro_text_body),http://meng.uic.edu/wp-content/uploads/sites/92/2020/05/Machine-Learning-Flier.pdf,https://meng-old.red.uic.edu/coursework/machine-learning/,1033902.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Helpful Information (Field: intro_text_body),http://meng.uic.edu/pdfs/APMagazine.pdf,https://meng-old.red.uic.edu/helpful-information/,,,,,Download failed: 404 Client Error: Not Found for url: https://meng.uic.edu/pdfs/APMagazine.pdf
PDF,Page (ACF Field),Helpful Information (Field: intro_text_body),http://meng.uic.edu/pdfs/che494.pdf,https://meng-old.red.uic.edu/helpful-information/,,,,,Download failed: 404 Client Error: Not Found for url: https://meng.uic.edu/pdfs/che494.pdf
PDF,Page (ACF Field),Helpful Information (Field: intro_text_body),http://meng.uic.edu/pdfs/compsac2001.pdf,https://meng-old.red.uic.edu/helpful-information/,,,,,Download failed: 404 Client Error: Not Found for url: https://meng.uic.edu/pdfs/compsac2001.pdf
PDF,Page (ACF Field),"Essay, Writing, and Creative Contests (Field: intro_text_body)",https://www.mutualofomaha.com/documents/careers/actuarial_minority_scholarship.pdf,http://scholarships.uic.edu/scholarships/external-scholarships/essay-writing-creative-contests/,127336.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),"Essay, Writing, and Creative Contests (Field: intro_text_body)",https://www.mutualofomaha.com/documents/careers/actuarial_minority_scholarship.pdf,https://scholarships.uic.edu/scholarships/external-scholarships/essay-writing-creative-contests/,127336.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Prof. Haghighi has organized a symposium on Smart Additive Manufacturing at 2024 ASME International Manufacturing Science and Engineering Conference (Field: intro_text_body),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2024/03/MSEC-2024.pdf,https://smarture.lab.uic.edu/news-stories/prof-haghighi-has-organized-a-symposium-on-smart-additive-manufacturing-at-2024-asme-international-manufacturing-science-and-engineering-conference/,102579.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Prof. Haghighi has organized two symposiums at 2023 ASME International Manufacturing Science and Engineering Conference (Field: intro_text_body),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2022/09/Smart_manufacturing-symposium.pdf,https://smarture.lab.uic.edu/news-stories/prof-haghighi-has-organized-two-symposiums-at-2023-asme-international-manufacturing-science-and-engineering-conference/,87268.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Prof. Haghighi has organized two symposiums at 2023 ASME International Manufacturing Science and Engineering Conference (Field: intro_text_body),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2022/09/Human-automation-symposium.pdf,https://smarture.lab.uic.edu/news-stories/prof-haghighi-has-organized-two-symposiums-at-2023-asme-international-manufacturing-science-and-engineering-conference/,85735.0,1.0,True,False,No tags detected via pdfminer3
PDF,Notification (ACF Field),Recruitment Message (Field: action_url),https://smarture-lab.red.uic.edu/wp-content/uploads/sites/752/2020/11/PhD-Positions-Smarture-Lab.pdf,https://smarture.lab.uic.edu/?notification=recruitment-message,157176.0,1.0,True,False,No tags detected via pdfminer3
PDF,Notification (ACF Field),PhD Positions Recruit Message (Field: action_url),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2023/08/PhD-announcement-2023.pdf,https://smarture.lab.uic.edu/?notification=phd-positions-recruit-message,156930.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Prof. Haghighi has organized a symposium on Smart Additive Manufacturing at 2024 ASME International Manufacturing Science and Engineering Conference (Field: intro_text_body),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2024/03/MSEC-2024.pdf,https://smarture.lab.uic.edu/news-stories/prof-haghighi-has-organized-a-symposium-on-smart-additive-manufacturing-at-2024-asme-international-manufacturing-science-and-engineering-conference/,102579.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Prof. Haghighi has organized two symposiums at 2023 ASME International Manufacturing Science and Engineering Conference (Field: intro_text_body),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2022/09/Smart_manufacturing-symposium.pdf,https://smarture.lab.uic.edu/news-stories/prof-haghighi-has-organized-two-symposiums-at-2023-asme-international-manufacturing-science-and-engineering-conference/,87268.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Prof. Haghighi has organized two symposiums at 2023 ASME International Manufacturing Science and Engineering Conference (Field: intro_text_body),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2022/09/Human-automation-symposium.pdf,https://smarture.lab.uic.edu/news-stories/prof-haghighi-has-organized-two-symposiums-at-2023-asme-international-manufacturing-science-and-engineering-conference/,85735.0,1.0,True,False,No tags detected via pdfminer3
PDF,Notification (ACF Field),Recruitment Message (Field: action_url),https://smarture-lab.red.uic.edu/wp-content/uploads/sites/752/2020/11/PhD-Positions-Smarture-Lab.pdf,https://smarture.lab.uic.edu/?notification=recruitment-message,157176.0,1.0,True,False,No tags detected via pdfminer3
PDF,Notification (ACF Field),PhD Positions Recruit Message (Field: action_url),https://smarture.lab.uic.edu/wp-content/uploads/sites/752/2023/08/PhD-announcement-2023.pdf,https://smarture.lab.uic.edu/?notification=phd-positions-recruit-message,156930.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Code Reviews (Field: intro_text_body),https://www.dropbox.com/s/y7bv6bzd8k3rsr4/checklist.pdf?dl=0,https://cs211sm19.class.uic.edu/code-review/,,,,,Skipped: Not a PDF link
Box,Page (ACF Field),Code Reviews (Field: intro_text_body),https://www.dropbox.com/s/piwc2x974g7nso0/Code%20Review%20Form.docx?dl=0,https://cs211sm19.class.uic.edu/code-review/,,,,,Skipped: Box link
PDF,Page (ACF Field),Code Reviews (Field: intro_text_body),https://www.dropbox.com/s/edr85pat6fmk40j/Submission%20Guidelines.pdf?dl=0,https://cs211sm19.class.uic.edu/code-review/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Resources (Field: intro_text_body),https://www.cs.uic.edu/pub/CS211/CS211F18/CS-Account-HOWTO.pdf,https://cs211sm19.class.uic.edu/resources/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/pub/CS211/CS211F18/CS-Account-HOWTO.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),https://www.cs.uic.edu/pub/CS211/CS211F18/UNIX-INTRO-lab.pdf,https://cs211sm19.class.uic.edu/resources/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/pub/CS211/CS211F18/UNIX-INTRO-lab.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),http://users.ece.utexas.edu/~adnan/gdb-refcard.pdf,https://cs211sm19.class.uic.edu/resources/,76590.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Code Reviews (Field: intro_text_body),https://www.dropbox.com/s/y7bv6bzd8k3rsr4/checklist.pdf?dl=0,https://cs211sm19.class.uic.edu/code-review/,,,,,Skipped: Not a PDF link
Box,Page (ACF Field),Code Reviews (Field: intro_text_body),https://www.dropbox.com/s/piwc2x974g7nso0/Code%20Review%20Form.docx?dl=0,https://cs211sm19.class.uic.edu/code-review/,,,,,Skipped: Box link
PDF,Page (ACF Field),Code Reviews (Field: intro_text_body),https://www.dropbox.com/s/edr85pat6fmk40j/Submission%20Guidelines.pdf?dl=0,https://cs211sm19.class.uic.edu/code-review/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Resources (Field: intro_text_body),https://www.cs.uic.edu/pub/CS211/CS211F18/CS-Account-HOWTO.pdf,https://cs211sm19.class.uic.edu/resources/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/pub/CS211/CS211F18/CS-Account-HOWTO.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),https://www.cs.uic.edu/pub/CS211/CS211F18/UNIX-INTRO-lab.pdf,https://cs211sm19.class.uic.edu/resources/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/pub/CS211/CS211F18/UNIX-INTRO-lab.pdf
PDF,Page (ACF Field),Resources (Field: intro_text_body),http://users.ece.utexas.edu/~adnan/gdb-refcard.pdf,https://cs211sm19.class.uic.edu/resources/,76590.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Resources (Field: intro_text_body),https://www2.chem.uic.edu/sneep/www/AppliedMathematics.pdf,https://chem542.class.uic.edu/resources/,,,,,"Download failed: HTTPSConnectionPool(host='www2.chem.uic.edu', port=443): Max retries exceeded with url: /sneep/www/AppliedMathematics.pdf (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x106875e50>, 'Connection to www2.chem.uic.edu timed out. (connect timeout=15)'))"
PDF,Page (ACF Field),Resources (Field: intro_text_body),https://www2.chem.uic.edu/sneep/www/AppliedMathematics.pdf,https://chem542.class.uic.edu/resources/,,,,,"Download failed: HTTPSConnectionPool(host='www2.chem.uic.edu', port=443): Max retries exceeded with url: /sneep/www/AppliedMathematics.pdf (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x106877110>, 'Connection to www2.chem.uic.edu timed out. (connect timeout=15)'))"
PDF,Page (ACF Field),FLYER (Field: intro_text_body),http://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREPFlyer2025.pdf,http://pbrc-prep.uic.edu/flyer/,,,,,Download failed: 404 Client Error: Not Found for url: https://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREPFlyer2025.pdf
PDF,Page (ACF Field),APPLY (Field: intro_text_body),http://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREP2025-26Application.pdf,http://pbrc-prep.uic.edu/apply/,,,,,Download failed: 404 Client Error: Not Found for url: https://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREP2025-26Application.pdf
PDF,Page (ACF Field),About PBRC PREP (Field: intro_text_body),http://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2022/02/UIC-PBRC-PREP-FacultyMentors2022.pdf,http://pbrc-prep.uic.edu/about/,,,,,Download failed: 404 Client Error: Not Found for url: https://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2022/02/UIC-PBRC-PREP-FacultyMentors2022.pdf
PDF,Page (ACF Field),FLYER (Field: intro_text_body),http://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREPFlyer2025.pdf,https://pbrc-prep.uic.edu/flyer/,,,,,Download failed: 404 Client Error: Not Found for url: https://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREPFlyer2025.pdf
PDF,Page (ACF Field),APPLY (Field: intro_text_body),http://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREP2025-26Application.pdf,https://pbrc-prep.uic.edu/apply/,,,,,Download failed: 404 Client Error: Not Found for url: https://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2025/01/UIC-PBRC-PREP2025-26Application.pdf
PDF,Page (ACF Field),About PBRC PREP (Field: intro_text_body),http://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2022/02/UIC-PBRC-PREP-FacultyMentors2022.pdf,https://pbrc-prep.uic.edu/about/,,,,,Download failed: 404 Client Error: Not Found for url: https://pbrc-prep.uic.edu/wp-content/uploads/sites/199/2022/02/UIC-PBRC-PREP-FacultyMentors2022.pdf
PDF,Billboard (ACF Field),Full Activity Announcement (Field: external_url),http://surf.red.uic.edu/wp-content/uploads/sites/371/2018/09/AnnouncementITPA.pdf,https://surf.pharmacy.uic.edu/?billboard=view-full-activity-announcement,112335.0,4.0,True,False,No tags detected via pdfminer3
PDF,Billboard (ACF Field),Full Activity Announcement (Field: external_url),http://surf.red.uic.edu/wp-content/uploads/sites/371/2018/09/AnnouncementITPA.pdf,https://surf.pharmacy.uic.edu/?billboard=view-full-activity-announcement,112335.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Abstract Writing and Poster Preparation (Field: intro_text_body),https://ertc.chem.uic.edu/wp-content/uploads/sites/757/2022/03/ERTC_AbstractDiscussion.pdf,https://ertc.chem.uic.edu/resources/abstract-writing-and-poster-preparation/,464827.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Abstract Writing and Poster Preparation (Field: intro_text_body),https://ertc.chem.uic.edu/wp-content/uploads/sites/757/2022/03/ERTC_AbstractDiscussion.pdf,https://ertc.chem.uic.edu/resources/abstract-writing-and-poster-preparation/,464827.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Research Day Workshops (Field: intro_text_body),https://www.docdroid.net/NQCPXFy/how-to-be-an-effective-pre-med-student.pdf,https://lasganas.uic.edu/research-day-workshops/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Research Day Workshops (Field: intro_text_body),https://www.pathwaystoscience.org/pdf/Applying_LettersOfRecommendation.pdf,https://lasganas.uic.edu/research-day-workshops/,765287.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Undocumented Student Scholarships (Field: intro_text_body),https://immigrantsrising.org/wp-content/uploads/2018/06/Immigrants-Rising-2018-Graduate-Scholarships.pdf,https://lasganas.uic.edu/scholarships-internships-research-programs/undocumented-student-scholarships/,,,,,Download failed: 404 Client Error: Not Found for url: https://immigrantsrising.org/wp-content/uploads/2018/06/Immigrants-Rising-2018-Graduate-Scholarships.pdf
PDF,Page (ACF Field),Research Day Workshops (Field: intro_text_body),https://www.docdroid.net/NQCPXFy/how-to-be-an-effective-pre-med-student.pdf,https://lasganas.uic.edu/research-day-workshops/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Research Day Workshops (Field: intro_text_body),https://www.pathwaystoscience.org/pdf/Applying_LettersOfRecommendation.pdf,https://lasganas.uic.edu/research-day-workshops/,765287.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Undocumented Student Scholarships (Field: intro_text_body),https://immigrantsrising.org/wp-content/uploads/2018/06/Immigrants-Rising-2018-Graduate-Scholarships.pdf,https://lasganas.uic.edu/scholarships-internships-research-programs/undocumented-student-scholarships/,,,,,Download failed: 404 Client Error: Not Found for url: https://immigrantsrising.org/wp-content/uploads/2018/06/Immigrants-Rising-2018-Graduate-Scholarships.pdf
PDF,Page (ACF Field),Tuition and Financial Aid (Field: intro_text_body),https://publichealth.uic.edu/wp-content/uploads/sites/302/2019/06/admissions-financial-aid-tuition-table-online-19-20.pdf,https://emergencymanagement.uic.edu/tuition-financial-aid/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2019/06/admissions-financial-aid-tuition-table-online-19-20.pdf
PDF,Profile (ACF Field),"McCorkle, Hugh W. (Field: cv_link)",http://emergencymanagement.uic.edu/wp-content/uploads/sites/18/2025/01/McCorkle-Resume-January-2025-compressed.pdf,https://emergencymanagement.uic.edu/profiles/mccorkle-hugh/,,,,,Download failed: 404 Client Error: Not Found for url: https://emergencymanagement.uic.edu/wp-content/uploads/sites/18/2025/01/McCorkle-Resume-January-2025-compressed.pdf
PDF,News (ACF Field),Prof. Shadmand gives invited Distinguished Webinar on Empowering Power Electronics Dominated Grid Resilience and Cybersecurity (Field: intro_text_body),https://ipeg.lab.uic.edu/wp-content/uploads/sites/733/2024/02/speaker-presentation_Shadmand.pdf,https://ipeg.lab.uic.edu/news-stories/prof_shadmand_gives_invited_distinguished_webinar_on_empowering_power_electronics_dominated_grid_resilience_and_cybersecurity/,197580.0,1.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),"Prof. Shadmand will serve as Co-organizer for Special Session on &#8220;Next generation grid-forming inverters – from microgrids to transmission systems&#8221; at the 18th IEEE CPE-POWERENG 2024 Conference, June 24 &#8211; 26, 2024 – GDYNIA, Poland. (Field: intro_text_body)",https://cpe-powereng2024.umg.edu.pl/files/SS4%20Next%20generation%20grid-forming%20inverters%20-%20from%20microgrids%20to%20transmission%20systems.pdf,https://ipeg.lab.uic.edu/news-stories/prof-shadmand-serves-as-co-organizer-special-sessiion-18th-international-conference-of-ieee-cpe-powereng-2024/,,,,,"Download failed: HTTPSConnectionPool(host='cpe-powereng2024.umg.edu.pl', port=443): Max retries exceeded with url: /files/SS4%20Next%20generation%20grid-forming%20inverters%20-%20from%20microgrids%20to%20transmission%20systems.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,News (ACF Field),Prof. Shadmand will serve as Technical Program Co-Chair of the 4th International Conference of Smart Grid and Renewable Energy (SGRE24). (Field: intro_text_body),https://www.sgre-qa.org/wp-content/uploads/2023/06/SGRE2024_CFP.pdf,https://ipeg.lab.uic.edu/news-stories/prof-shadmand-serves-as-techincal-program-co-chair-in-4th-international-conference-of-smart-grid-and-renewable-energy-sgre24/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.sgre-qa.org/wp-content/uploads/2023/06/SGRE2024_CFP.pdf
PDF,News (ACF Field),Prof. Shadmand serves as the organizer and co-chair of a special session in 3rd International Conference of Smart Grid and Renewable Energy (SGRE22). (Field: intro_text_body),https://www.sgre-qa.org/wp-content/uploads/2021/11/12-Special-session-on-Cybersecurity-SGRE-2022.pdf,https://ipeg.lab.uic.edu/news-stories/prof-shadmand-serves-as-organizer-and-co-chair-of-the-a-special-session-in-3rd-international-conference-of-smart-grid-and-renewable-energy-sgre22/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.sgre-qa.org/wp-content/uploads/2021/11/12-Special-session-on-Cybersecurity-SGRE-2022.pdf
Box,Page (ACF Field),Video 2024 (Field: intro_text_body),https://uofi.box.com/s/7pukubl10z5127ujdfr9ojufk6vvdjao,https://che.uic.edu/video-2024/,,,,,Skipped: Box link
PDF,Page (ACF Field),China 3+2 Program (Field: intro_text_body),https://che.uic.edu/wp-content/uploads/sites/340/2021/08/ChE-MS-Booklet.pdf,https://che.uic.edu/graduate-programs/china-32-program/,2285566.0,3.0,True,,"pdfminer3 tag check failed: Unsupported revision: param={'CF': {'StdCF': {'AuthEvent': /'DocOpen', 'CFM': /'AESV3', 'Length': 32}}, 'Filter': /'Standard', 'Length': 256, 'O': b'\x99\xe2\x00\xa6\xb2n\xacr\xa9y!\x19@f\x840Bqy\xeb\x17\xa7\xeb\xf8\xfb\xc3aF\xba\xe8g\xfc\x8ed\xc3\xfc. \x84\xfazC\x1f\x1b\tK#\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', 'OE': b'\x85~\xe6\xcb\xae\xdaM\xe0O\x0f\xa7\t\xce\xf9\x05)\x19\xdc\xce\x9c?b\xdd\xe0\x9c\x98b\x12\xf1\x9bW\xa8', 'P': -1340, 'Perms': b'\xb8\x10\x1cj\x9b\xd9\xf7\xee\x05J\xc4\xc6\xdb\xdcB\x9f', 'R': 6, 'StmF': /'StdCF', 'StrF': /'StdCF', 'U': b'~=\xcc""C\xc6\xf9n\x9dF\xdf\xef\xb3\xe1o\xbf\xf4\xe7S\x85\xec\xaa\xb5\xdf\xbd\xfe\xa5\xa5x\x83\x17t\t\xe7\x17\x11S\xb8+\xe6\x9b\xa9\x8a\xa0\x95\xa4\x07\xc8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', 'UE': b'Q}\x82y\xf3\xb0\xd5(\xe6\xcb\x02\x96\xc9UL\xcd\x80\xae\x9ff-*\x98\x1f\xf6\x06\xed\xfey\xbd\x97P', 'V': 5}"
PDF,Page (ACF Field),Post-Election Events and Resources (Field: intro_text_body),https://dos.uic.edu/wp-content/uploads/sites/262/2019/09/DOS-Resource-List.pdf,https://slce.uic.edu/civic-engagement/participation/post-election-events-and-resources/,146981.0,4.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Civic Engagement (Field: intro_text_body),https://uofi.box.com/s/i48qozzl77sa2ljx8mf5nyzzsjq32d9g,https://slce.uic.edu/civic-engagement/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/a4wor0ipt4tlbmy8u2v68mp2bdrrnvi5,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/i39dxug0n6kuu7u5z332bes3a4ktntyb,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/18ew244391i2smmf5c0vlp23j3gp77em,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/etu0eibywa3827yip61xfss160m1gcxd,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/q9taon0nor2puw76fwq6588iejxrzavw,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/m7ow2c5yk7e54vyywzs6egexi66gw2j8,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/mhgw9fckzfdowfsidnwtku4uoqv0ecvd,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/lw4fvi1lj73a0ulry466oohk40xryau4,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/8kdr2rl9ai748skpoujux3h08unhji5z,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/5vuiib8vql89m7r1bhqty10zhtbz7ros,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/uq92rullijavwai00ecpjjdnh87rdxjg,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/edfeoxpuv9pxk0qxm2q17o53cubyvmlu,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/0y965uy32bb9z9i6087sxtc40wpawcp5,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/y4580s0wj4bjnxxa24syij6zz79wwyat,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/a2pg1dnf8di2evqnykimnlj0zodaztks,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/6c0vufw5qytk760ol0uja125t58j43og,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/xlo7y8bi2i4gh3miutjemyf7dd97lhhu,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/7sjhtxau79bf0y5vge0o3p92vhp0wk7l,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/tivrf09sjwfjfmwltbuexiq56cgbmwwi,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
Box,News (ACF Field),Honoring outstanding students (Field: intro_text_body),https://uofi.box.com/s/1crx03it5gn62u26yp1s3zlrakb0fueq,https://slce.uic.edu/news-stories/honoring-outstanding-students/,,,,,Skipped: Box link
PDF,News (ACF Field),UIC Named &#8220;Most Engaged Campus&#8221; (Field: intro_text_body),http://clce.red.uic.edu/wp-content/uploads/sites/184/2018/01/2012-and-2016-NSLVE-Report-University-of-Illinois-at-Chicago-.pdf,https://slce.uic.edu/news-stories/clce-news-item-3/,,,,,Download failed: Not a PDF based on Content-Type
Box,Page (ACF Field),Procedures for managing access to public spaces assigned to  the Office of the Vice Chancellor for Administrative Services (OVCAS) (Field: intro_text_body),https://uofi.app.box.com/s/bmgl8hqks8xj5n4efsoxa8wk56d8fk6p,https://vcas.uic.edu/procedures-public-spaces/,,,,,Skipped: Box link
PDF,Page (ACF Field),Academic Calendar (Field: intro_text_body),https://dentistry.uic.edu/wp-content/uploads/sites/741/2025/04/UIC-COD-Academic-Calendar-2025-2029.pdf,https://dentistry.uic.edu/academics/students/academic-affairs/academic-calendar/,241153.0,10.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Faculty and Staff Handbook (Field: intro_text_body),https://uofi.box.com/s/5a19gstsw4no5e848g21b5rdpp1zb275,https://dentistry.uic.edu/about/college-resources/intranet/administration/human-resources-intranet-page/faculty-and-staff-handbook/,,,,,Skipped: Box link
Box,Page (ACF Field),Strategic Planning &#8211; Intranet Page (Field: intro_text_body),https://uofi.box.com/s/3rbqwu606j1i3asbwejawgicq0u9tqbk,https://dentistry.uic.edu/about/college-resources/intranet/administration/strategic-planning-intranet-page/,,,,,Skipped: Box link
PDF,Page (ACF Field),Requesting Patient Records (Field: intro_text_body),https://dentistry.uic.edu/wp-content/uploads/sites/741/2020/11/Patient-Records-Release-En1-2016.pdf,https://dentistry.uic.edu/requesting-patient-records/,94031.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Requesting Patient Records (Field: intro_text_body),https://dentistry.uic.edu/wp-content/uploads/sites/741/2020/11/Patient-Records-Release-Sp1-2017-2.pdf,https://dentistry.uic.edu/requesting-patient-records/,114406.0,1.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),Requesting Patient Records (Field: intro_text_body),https://uofi.box.com/s/szvlvmgqt2ac4k9p23fghw78cm7bl3jg,https://dentistry.uic.edu/requesting-patient-records/,,,,,Skipped: Box link
Box,Page (ACF Field),Requesting Patient Records (Field: intro_text_body),https://uofi.box.com/s/hsxjsujnpp66ph7rjiqj4vtf4jb6k6px,https://dentistry.uic.edu/requesting-patient-records/,,,,,Skipped: Box link
PDF,News (ACF Field),Incorporating Wellness Into Your Routine (Field: intro_text_body),https://www.ada.org/-/media/project/ada-organization/ada/ada-org/files/resources/practice/health-and-wellness/ada_org_state_well_being_program_directory.pdf?rev=65530a7603aa4ff1a653a7cf477e326f&amp;hash=5F18A5695D64F3638C04B8A3A46574FD,https://dentistry.uic.edu/news-stories/incorporating-wellness-into-your-routine/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),Incorporating Wellness Into Your Routine (Field: intro_text_body),https://ebusiness.ada.org/Assets/docs/101863.pdf,https://dentistry.uic.edu/news-stories/incorporating-wellness-into-your-routine/,,,,,"Download failed: HTTPSConnectionPool(host='ebusiness.ada.org', port=443): Read timed out. (read timeout=15)"
Box,News (ACF Field),Incorporating Wellness Into Your Routine (Field: intro_text_body),https://uofi.app.box.com/s/t3xoloto2k9q41gkdcunxi5ujh6lz1wi,https://dentistry.uic.edu/news-stories/incorporating-wellness-into-your-routine/,,,,,Skipped: Box link
Box,News (ACF Field),Incorporating Wellness Into Your Routine (Field: intro_text_body),https://uofi.app.box.com/s/t3xoloto2k9q41gkdcunxi5ujh6lz1wi</a></p>,https://dentistry.uic.edu/news-stories/incorporating-wellness-into-your-routine/,,,,,Skipped: Box link
PDF,News (ACF Field),UIC Orthodontics to MSO July 2020 &#8211; March 2021 (Field: intro_text_body),https://dentistry.uic.edu/wp-content/uploads/sites/741/2021/03/UIC-Orthodontics-2020-2021.pdf,https://dentistry.uic.edu/news-stories/uic-orthodontics-to-mso-the-midwestern-society-of-orthodontics-july-2020-march-2021/,624792.0,9.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),The College of Dentistry Clinics will be re-opened in June (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/IMCE/patient-care/COD_COVID-19_Safety-Measures_Patients_0.pdf,https://dentistry.uic.edu/news-stories/the-college-of-dentistry-clinics-will-be-re-opened-in-june/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/patient-care/COD_COVID-19_Safety-Measures_Patients_0.pdf
PDF,News (ACF Field),The College of Dentistry Clinics will be re-opened in June (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/IMCE/patient-care/COD_COVID-19_Safety-Measures_Patients%20SPANISH.pdf,https://dentistry.uic.edu/news-stories/the-college-of-dentistry-clinics-will-be-re-opened-in-june/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/patient-care/COD_COVID-19_Safety-Measures_Patients%20SPANISH.pdf
PDF,News (ACF Field),The Many Costs (Financial and Well-Being) of Poor Oral Health (Field: intro_text_body),https://oralhealthillinois.org/wp-content/uploads/2016/11/Oral-Health-in-Illinois.pdf,https://dentistry.uic.edu/news-stories/the-many-costs-financial-and-well-being-of-poor-oral-health/,2648022.0,48.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),The Many Costs (Financial and Well-Being) of Poor Oral Health (Field: intro_text_body),https://www.ada.org/~/media/ADA/Science%20and%20Research/HPI/OralHealthWell-Being-StateFacts/US-Oral-Health-Well-Being.pdf?la=en,https://dentistry.uic.edu/news-stories/the-many-costs-financial-and-well-being-of-poor-oral-health/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),The Many Costs (Financial and Well-Being) of Poor Oral Health (Field: intro_text_body),https://www.cigna.com/static/www-cigna-com/docs/employers-brokers/dental-white-paper.pdf,https://dentistry.uic.edu/news-stories/the-many-costs-financial-and-well-being-of-poor-oral-health/,784069.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),The Many Costs (Financial and Well-Being) of Poor Oral Health (Field: intro_text_body),https://www.ada.org/en/science-research/health-policy-institute/oral-health-and-well-beinghttps:/www.ada.org/~/media/ADA/Science%20and%20Research/HPI/OralHealthWell-Being-StateFacts/US-Oral-Health-Well-Being.pdf?la=en,https://dentistry.uic.edu/news-stories/the-many-costs-financial-and-well-being-of-poor-oral-health/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),Preparing a Competitive Application for the Advanced Standing Foreign Trained Dentist Program (Field: intro_text_body),http://www.ada.org/~/media/ADA/Science%20and%20Research/HPI/Files/HPIgraphic_0416_1.pdf?la=en,https://dentistry.uic.edu/news-stories/preparing-a-competitive-application-for-the-advanced-standing-foreign-trained-dentist-program/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),Preparing a Competitive Application for the Advanced Standing Foreign Trained Dentist Program (Field: intro_text_body),http://www.ada.org/~/media/ADA/Science%20and%20Research/HPI/Files/HPIGraphic_1215_4.pdf?la=en,https://dentistry.uic.edu/news-stories/preparing-a-competitive-application-for-the-advanced-standing-foreign-trained-dentist-program/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),Alumni Leading Organized Dentistry Associations (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/Alumni%20Leading%20Organized%20Dentistry%20Associations%20Roster.pdf,https://dentistry.uic.edu/news-stories/alumni-leading-organized-dentistry-associations/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/Alumni%20Leading%20Organized%20Dentistry%20Associations%20Roster.pdf
PDF,News (ACF Field),The Warning Signs of Gum Disease (Field: intro_text_body),http://stopobesityalliance.org/wp-content/themes/stopobesityalliance/pdfs/Fast%20Facts%20Chronic%20Disease%201-2012.pdf,https://dentistry.uic.edu/news-stories/the-warning-signs-of-gum-disease/,,,,,"Download failed: HTTPConnectionPool(host='stopobesityalliance.org', port=80): Max retries exceeded with url: /wp-content/themes/stopobesityalliance/pdfs/Fast%20Facts%20Chronic%20Disease%201-2012.pdf (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x105978e20>, 'Connection to stopobesityalliance.org timed out. (connect timeout=15)'))"
PDF,News (ACF Field),The Surprising Connections Between Oral Health and Well Being (Field: intro_text_body),https://familiesusa.org/sites/default/files/product_documents/Care-Coordination.pdf,https://dentistry.uic.edu/news-stories/the-surprising-connections-between-oral-health-and-well-being/,,,,,Download failed: 404 Client Error: Not Found for url: https://familiesusa.org/sites/default/files/product_documents/Care-Coordination.pdf
PDF,News (ACF Field),Five Secret Weapons to Fight Cavities (Field: intro_text_body),https://www.adha.org/resources-docs/7168_Saliva_Stimulation_Patient_Pamphlet.pdf,https://dentistry.uic.edu/news-stories/five-secret-weapons-to-fight-cavities/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.adha.org/resources-docs/7168_Saliva_Stimulation_Patient_Pamphlet.pdf
PDF,News (ACF Field),Five Secret Weapons to Fight Cavities (Field: intro_text_body),http://www.wrigleyoralcare.com/content/docs/WOHP_Clinical_Booklet.pdf,https://dentistry.uic.edu/news-stories/five-secret-weapons-to-fight-cavities/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.wrigleyoralcare.com/content/docs/WOHP_Clinical_Booklet.pdf
PDF,News (ACF Field),Dr. Charles Greene Appointed as Clinical Emeritus Professor (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/IMCE/departments/Orthodontics/Ball%20on%20the%20Hill%20-%20INTRODUCTION.pdf,https://dentistry.uic.edu/news-stories/dr-charles-greene-appointed-as-clinical-emeritus-professor/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/departments/Orthodontics/Ball%20on%20the%20Hill%20-%20INTRODUCTION.pdf
PDF,News (ACF Field),Dr. Charles Greene Appointed as Clinical Emeritus Professor (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/IMCE/departments/Orthodontics/Ball%20on%20the%20Hill%20-%202018%20-%20Published.pdf,https://dentistry.uic.edu/news-stories/dr-charles-greene-appointed-as-clinical-emeritus-professor/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/departments/Orthodontics/Ball%20on%20the%20Hill%20-%202018%20-%20Published.pdf
PDF,News (ACF Field),Interested in Becoming a Dental Specialist? Check Out Our Post-Graduate Residency Programs (Field: intro_text_body),http://www.ada.org/~/media/ADA/Science%20and%20Research/HPI/Files/HPIBrief_0217_1.pdf,https://dentistry.uic.edu/news-stories/interested-in-becoming-a-dental-specialist-check-out-our-post-graduate-residency-programs/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.ada.org/~/media/ADA/Science%20and%20Research/HPI/Files/HPIBrief_0217_1.pdf
PDF,News (ACF Field),The Best Foods For A Healthy Smile and Whole Body (Field: intro_text_body),http://dentistry.uic.edu/sites/default/files/IMCE/general-news-events/Healthy-foods-teeth-whole-body2018.pdf,https://dentistry.uic.edu/news-stories/the-best-foods-for-a-healthy-smile-and-whole-body/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/general-news-events/Healthy-foods-teeth-whole-body2018.pdf
PDF,News (ACF Field),Why Dental Students Choose UIC (Field: intro_text_body),http://dentistry.uic.edu/sites/default/files/IMCE/academics-training/COD-StudentServices-Mentor-Program.pdf,https://dentistry.uic.edu/news-stories/why-dental-students-choose-uic/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/academics-training/COD-StudentServices-Mentor-Program.pdf
PDF,News (ACF Field),College of Dentistry Strongly Represented at AADR Annual Meeting (Field: intro_text_body),http://www.iadr.org/Portals/69/docs/AADR%20Annual%20Meeting/AADR_HOW.pdf,https://dentistry.uic.edu/news-stories/college-of-dentistry-strongly-represented-at-aadr-annual-meeting/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.iadr.org/Portals/69/docs/AADR%20Annual%20Meeting/AADR_HOW.pdf
PDF,News (ACF Field),Good Oral Health: Parents and Kids Learning Together (Field: intro_text_body),https://www.heartlandalliance.org/oralhealth/wp-content/uploads/sites/19/2016/07/the-burden-of-oral-disease-in-chicago.pdf,https://dentistry.uic.edu/news-stories/good-oral-health-parents-and-kids-learning-together/,,,,,"Download failed: HTTPSConnectionPool(host='www.heartlandalliance.org', port=443): Read timed out. (read timeout=15)"
PDF,News (ACF Field),Good Oral Health: Parents and Kids Learning Together (Field: intro_text_body),http://www.mouthhealthy.org/~/media/MouthHealthy/Files/Kids_Section/ADAPrimaryToothDev_Eng.pdf?la=en,https://dentistry.uic.edu/news-stories/good-oral-health-parents-and-kids-learning-together/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),Good Oral Health: Parents and Kids Learning Together (Field: intro_text_body),http://www.mouthhealthy.org/~/media/MouthHealthy/Files/Kids_Section/ADAPermanentTeethDev_Eng.pdf?la=en,https://dentistry.uic.edu/news-stories/good-oral-health-parents-and-kids-learning-together/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),Good Oral Health: Parents and Kids Learning Together (Field: intro_text_body),http://www.aapd.org/media/Policies_Guidelines/P_ECCClassifications.pdf,https://dentistry.uic.edu/news-stories/good-oral-health-parents-and-kids-learning-together/,121333.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Good Oral Health: Parents and Kids Learning Together (Field: intro_text_body),https://www.isbe.net/Documents/dental_information.pdf,https://dentistry.uic.edu/news-stories/good-oral-health-parents-and-kids-learning-together/,,,,,Download failed: 404 Client Error: NOT FOUND for url: https://www.isbe.net/Documents/dental_information.pdf
PDF,News (ACF Field),What Every Parent Needs to Know About Baby Teeth (Field: intro_text_body),http://www.aapd.org/assets/1/7/fastfacts.pdf,https://dentistry.uic.edu/news-stories/what-every-parent-needs-to-know-about-baby-teeth/,390344.0,45.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),What Every Parent Needs to Know About Baby Teeth (Field: intro_text_body),http://www.ncbi.nlm.nih.gov/pubmedhealth/PMH0010196/pdf/PubMedHealth_PMH0010196.pdf,https://dentistry.uic.edu/news-stories/what-every-parent-needs-to-know-about-baby-teeth/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.ncbi.nlm.nih.gov/pubmedhealth/PMH0010196/pdf/PubMedHealth_PMH0010196.pdf
PDF,News (ACF Field),Student Organization Spotlight: Pan-Asian Student Dental Association (PASDA) (Field: intro_text_body),http://oralhealthillinois.org/wp-content/uploads/2016/11/Oral-Health-in-Illinois.pdf,https://dentistry.uic.edu/news-stories/student-organization-spotlight-pan-asian-student-dental-association-pasda/,2648022.0,48.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),UI Health Shows its Pride (Field: intro_text_body),https://uofi.app.box.com/s/n9is56cm7obvyv5ftzng9m1j2vjjmkko,https://dentistry.uic.edu/news-stories/ui-health-shows-its-pride/,,,,,Skipped: Box link
PDF,News (ACF Field),My Service Learning Experience: Tanzania (Field: intro_text_body),http://media.aicommunity.net/2015/12/TICC-Introduction-2012-for-all.pdf,https://dentistry.uic.edu/news-stories/my-service-learning-experience-tanzania/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),Periodontal Disease Treatment at UIC (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/IMCE/patient-care/Periodontics-referral.pdf,https://dentistry.uic.edu/news-stories/periodontal-disease-treatment-at-uic/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/patient-care/Periodontics-referral.pdf
PDF,News (ACF Field),What Older Adults Need to Know About Oral Health (Field: intro_text_body),https://www.heart.org/idc/groups/heart-public/@wcm/@sop/@smd/documents/downloadable/ucm_319574.pdf,https://dentistry.uic.edu/news-stories/what-older-adults-need-to-know-about-oral-health/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.heart.org/idc/groups/heart-public/@wcm/@sop/@smd/documents/downloadable/ucm_319574.pdf
PDF,News (ACF Field),How To Get Involved in Research As An Undergraduate Student (Field: intro_text_body),http://dentistry.uic.edu/sites/default/files/IMCE/research/SRG-Newletter-Fall-2016.pdf,https://dentistry.uic.edu/news-stories/how-to-get-involved-in-research-as-an-undergraduate-student/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/research/SRG-Newletter-Fall-2016.pdf
PDF,News (ACF Field),Give Kids A Smile: Helping Chicago&#8217;s Underserved Children With Access to Dental Care (Field: intro_text_body),https://www.cityofchicago.org/content/dam/city/depts/cdph/CDPH/HC2.0Plan_3252016.pdf,https://dentistry.uic.edu/news-stories/give-kids-a-smile-helping-chicagos-underserved-children-with-access-to-dental-care/,16121472.0,86.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Give Kids A Smile: Helping Chicago&#8217;s Underserved Children With Access to Dental Care (Field: intro_text_body),http://www.cdc.gov/chronicdisease/pdf/aag-oral-health.pdf,https://dentistry.uic.edu/news-stories/give-kids-a-smile-helping-chicagos-underserved-children-with-access-to-dental-care/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cdc.gov/chronicdisease/pdf/aag-oral-health.pdf
PDF,News (ACF Field),Give Kids A Smile: Helping Chicago&#8217;s Underserved Children With Access to Dental Care (Field: intro_text_body),https://www.deltadental.com/AmericaOralHealthRoleDentalBenefits.pdf,https://dentistry.uic.edu/news-stories/give-kids-a-smile-helping-chicagos-underserved-children-with-access-to-dental-care/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.deltadental.com/americaoralhealthroledentalbenefits.pdf
PDF,News (ACF Field),Give Kids A Smile: Helping Chicago&#8217;s Underserved Children With Access to Dental Care (Field: intro_text_body),http://www.mchoralhealth.org/PDFs/learningfactsheet.pdf,https://dentistry.uic.edu/news-stories/give-kids-a-smile-helping-chicagos-underserved-children-with-access-to-dental-care/,576633.0,4.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x10f20d170>
PDF,News (ACF Field),Give Kids A Smile: Helping Chicago&#8217;s Underserved Children With Access to Dental Care (Field: intro_text_body),http://www.cigna.com/assets/docs/life-wall-library/Whygooddentalcareisimportant_whitepaper.pdf,https://dentistry.uic.edu/news-stories/give-kids-a-smile-helping-chicagos-underserved-children-with-access-to-dental-care/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),NIH awards $17.7M in funding to UIC&#8217;s Center for Clinical and Translational Science (Field: intro_text_body),https://dentistry.uic.edu/sites/default/files/IMCE/research/CCTS%20Fact%20Sheet.pdf,https://dentistry.uic.edu/news-stories/nih-awards-17-7m-in-funding-to-uics-center-for-clinical-and-translational-science/,,,,,Download failed: 404 Client Error: Not Found for url: https://dentistry.uic.edu/sites/default/files/IMCE/research/CCTS%20Fact%20Sheet.pdf
PDF,News (ACF Field),NIH awards $17.7M in funding to UIC&#8217;s Center for Clinical and Translational Science (Field: intro_text_body),http://www.ccts.uic.edu/sites/default/files/uploads/CCTS%20Fact%20Sheetv2.pdf,https://dentistry.uic.edu/news-stories/nih-awards-17-7m-in-funding-to-uics-center-for-clinical-and-translational-science/,,,,,"Download failed: HTTPSConnectionPool(host='www.ccts.uic.edu', port=443): Max retries exceeded with url: /sites/default/files/uploads/CCTS%20Fact%20Sheetv2.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,Menu,Privacy Practices,https://dentistry.uic.edu/wp-content/uploads/sites/741/2021/05/Patient-Privacy-Practices.pdf,,209809.0,4.0,True,True,Tags detected via pdfminer3
PDF,Menu,Privacy Practices-Spanish,https://dentistry.uic.edu/wp-content/uploads/sites/741/2021/08/Notice-of-Privacy-Practices-SPANISH_PDF.pdf,,143551.0,3.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/ayrt4mcdpkabavupzkivuuylj9anxdt0,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
PDF,Page (ACF Field),Technical Standards (Field: intro_text_body),https://dentistry.uic.edu/wp-content/uploads/sites/741/2022/12/Final-SAFETY-AND-TECHNICAL-Revised-12-1-2022.pdf,https://drc.uic.edu/technical-standards/,193853.0,3.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/oih5zpkthfovo13x9anaesjdcodc5q52,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
PDF,Page (ACF Field),Technical Standards (Field: intro_text_body),https://medicine.uic.edu/wp-content/uploads/sites/999/2023/03/Functional-and-Behavioral-Standards.pdf,https://drc.uic.edu/technical-standards/,,,,,Download failed: Not a PDF based on Content-Type
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/9bgh4fi0biaa5j7uts5yjox7f6kh89b6,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/len91vzda52howhu3vnh3snw1q4kqqot,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/upukr35r7x7sj9blgbh3etbklkbsk9je,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/47bj8wq8t7hev9ei34n8ysaq6jjhs21p,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.box.com/s/dop6o0mu5gftz9fykjdyic8cs8rorfbk,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
Box,Page (ACF Field),Technical Standards (Field: intro_text_body),https://uofi.app.box.com/file/1545056799604,https://drc.uic.edu/technical-standards/,,,,,Skipped: Box link
PDF,Page (ACF Field),About Disability Documentation (Field: intro_text_body),http://drc.uic.edu/wp-content/uploads/sites/17/2020/10/Fillable-DRC-Vertification-Form.pdf,https://drc.uic.edu/about-disability-documentation/,238241.0,3.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),About Disability Documentation (Field: intro_text_body),https://uofi.app.box.com/f/aa44b4d6733a43a1a0f56b9a9c366db6,https://drc.uic.edu/about-disability-documentation/,,,,,Skipped: Box link
Box,Page (ACF Field),Get Registered with DRS Counselor! (Field: intro_text_body),https://uofi.app.box.com/file/1277921159763?s=0v6xh7a7h30tvzgdo7ld2g6hvpwrnb96,https://drc.uic.edu/get-registered-with-a-dedicated-uic-drs-counselor/,,,,,Skipped: Box link
PDF,Page (ACF Field),UIC Student Accommodation Policy (Field: intro_text_body),https://drc.uic.edu/wp-content/uploads/sites/17/2018/03/UIC-DRC-Disability-Verification-Form.pdf,https://drc.uic.edu/uic-student-accommodation-policy/,397253.0,3.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),When You Receive an LOA&#8230; (Field: intro_text_body),https://uofi.box.com/s/e3ctiqvtnei9isdprbp33y3yxmrh8e4v,https://drc.uic.edu/when-you-receive-an-loa/,,,,,Skipped: Box link
Box,Page (ACF Field),When You Receive an LOA&#8230; (Field: intro_text_body),https://uofi.box.com/s/oulax66wshtvli0kun6ypsqq5z5v1m7o,https://drc.uic.edu/when-you-receive-an-loa/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/qvhm2jt97d673wqbmilmo6htzrabo320,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/76fr5hqm7fse3oamm37d2d0kvzp4k9q8,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/5zu98gnru75gku2s4itv0oasgohb1qtu,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/spuswue479ihomu34bqdjeqz8vlw0am9,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/msgqfmuxc4kz03p3xnuub7p15f7fjdgk,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/hf69fhihs44f8e47m6xbzwqflrdjma8l,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/mso53qd4f5fdzxn2siye3da8lt707wow,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/mxuuopgof8r3h384c1n1y2b01s7tvpuw,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/58lfgt6a9dock08eiyn80i0drm4rwtqi,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/6pfett6x3ls9fm7qr00asyk9iotd7ofb,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.app.box.com/file/1423892558281?s=p9pvhxonmxttv93vnsg67rnlaq8552by,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/8xb3abyeo3t6mg1i23l64nwftxzhniso,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/vrzl2f95fuherdbybcd9k3czw9t68y8c,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/hxwuthymdtyv0xhi0i4zlrzo6ogodmte,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/suhk5jfvk8cz8y330966gcoocrh5dy38,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),Presentations (Field: intro_text_body),https://uofi.box.com/s/cwyiol8faofad4f1umvpv8kwasciyvuw,https://drc.uic.edu/presentations/,,,,,Skipped: Box link
Box,Page (ACF Field),DRC Referral Materials (Field: intro_text_body),https://uofi.box.com/s/iehoyefldye2fuakrk32fi7x6eaz0ec9,https://drc.uic.edu/facultystaff/drc-referral-materials/,,,,,Skipped: Box link
Box,Page (ACF Field),DRC Referral Materials (Field: intro_text_body),https://uofi.box.com/s/cm08oh900yn0l5kg2ic0rw5ie3hhwbuj,https://drc.uic.edu/facultystaff/drc-referral-materials/,,,,,Skipped: Box link
Box,Page (ACF Field),DRC Referral Materials (Field: intro_text_body),https://uofi.box.com/s/p0h0gmc08sgay11k4bbjn3ferzbx21ks,https://drc.uic.edu/facultystaff/drc-referral-materials/,,,,,Skipped: Box link
PDF,Page (ACF Field),Documentation Guidelines (Field: intro_text_body),http://drc.uic.edu/wp-content/uploads/sites/17/2018/03/UIC-DRC-Disability-Verification-Form.pdf,https://drc.uic.edu/documentation-guidelines/,397253.0,3.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),TRIO Fire Start Session 2 (Field: description),http://drc.uic.edu/wp-content/uploads/sites/17/2018/06/TFS-Flyer-2018.pdf,https://drc.uic.edu/events/trio-fire-start-session-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://drc.uic.edu/wp-content/uploads/sites/17/2018/06/TFS-Flyer-2018.pdf
Box,Menu,DRC Basics for Instructors (Link to Quick Guide),https://uofi.box.com/s/e3ctiqvtnei9isdprbp33y3yxmrh8e4v,,,,,,Skipped: Box link
Box,Menu,Instructor LOA Memo Template (Link to TDoc),https://uofi.box.com/s/oulax66wshtvli0kun6ypsqq5z5v1m7o,,,,,,Skipped: Box link
Box,Menu,DRC and DCC Guide to Accessible Teaching and Accommodations (Link to Quick Guide),https://uofi.box.com/s/3zjl215plqyr6qsavzf74y4t8bdhvwmv,,,,,,Skipped: Box link
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2025/04/Program-Advance-Request_updated.pdf,http://psch.uic.edu/resources/forms-2/,702943.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2025/04/STA-Application-Form.pdf,http://psch.uic.edu/resources/forms-2/,1362092.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2022/03/Program-Advance-Replenishment-form.pdf,http://psch.uic.edu/resources/forms-2/,158023.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2023/08/Program-Advance-Closeout-form.pdf,http://psch.uic.edu/resources/forms-2/,147739.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2024/01/Program-Closeout-Extra-Funds.pdf,http://psch.uic.edu/resources/forms-2/,123187.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2021/09/LA-SGR_Fillable.pdf,http://psch.uic.edu/resources/forms-2/,79891.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"Dan Cervone Edits Albert Bandura&#8217;s final (posthumous) publication, Social Cognitive Theory: An Agentic Perspective on Human Nature (Field: intro_text_body)",https://emails.uofi.uic.edu/files/76/1829839076/bandurapressrelease.pdf,http://psch.uic.edu/news-stories/dan-cervone-edits-albert-banduras-final-posthumous-publication-social-cognitive-theory-an-agentic-perspective-on-human-nature/,178831.0,1.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Gutierrez, Felicia (Field: cv_link)",http://psch.uic.edu/wp-content/uploads/sites/259/2022/06/F.-Gutierrez-CV.pdf,http://psch.uic.edu/profiles/gutierrez-felicia/,170361.0,9.0,True,False,No tags detected via pdfminer3
PDF,Menu,2024 Graduate Awards Ceremony,http://psch.uic.edu/wp-content/uploads/sites/259/2024/04/2024-Grad-Awards-Program-Updated.pdf,,368999.0,16.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),How to Request a Course Waiver (Field: intro_text_body),https://uofi.app.box.com/s/7mi9ucwn4491xn7oics4pu87jk4946i2,http://udv.lab.uic.edu/resources/uic-resources/how-to-request-a-course-waiver/,,,,,Skipped: Box link
Box,Page (ACF Field),How to Request a Course Waiver (Field: intro_text_body),https://uofi.app.box.com/s/7mi9ucwn4491xn7oics4pu87jk4946i2</a></li>,http://udv.lab.uic.edu/resources/uic-resources/how-to-request-a-course-waiver/,,,,,Skipped: Box link
PDF,Page (ACF Field),Metropolitan Chicago Accessibility Explorer (Field: intro_text_body),http://urbanaccessibility.com/accessibility/final_report.pdf,http://udv.lab.uic.edu/our-work/collaborations/metropolitan-chicago-accessibility-explorer/,,,,,Download failed: Not a PDF based on Content-Type
Box,News (ACF Field),UIC GIS Day 2018 celebrates innovation with hands-on application of new technologies. (Field: intro_text_body),https://uofi.box.com/s/r2qjj5but05rp4kmau7kuk84sh6ztagw,http://udv.lab.uic.edu/news-stories/uic-gis-day-2018-celebrates-innovation-with-hands-on-application-of-new-technologies/,,,,,Skipped: Box link
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2012-UIC-CS-Member-Spotlight.pdf,https://ai.uic.edu/publication/,717503.0,7.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2011-Developing-Travel-Reliability-Inventory-for-the-Chicago-Region.pdf,https://ai.uic.edu/publication/,2713180.0,79.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2010-TDI_DraftPaper_SLv33_accepted_SLcs_10012010-ck_SL2-1-rev.pdf,https://ai.uic.edu/publication/,288956.0,10.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2009-Providing-Reliable-Route-Guidance-Nie-Wu-Nelson-Dillenburg.pdf,https://ai.uic.edu/publication/,1303383.0,24.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/~piotr/papers/hicss02-language.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/~piotr/papers/hicss02-language.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/~piotr/papers/hicss02-portfolio.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/~piotr/papers/hicss02-portfolio.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/~piotr/papers/ieee2000.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/~piotr/papers/ieee2000.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/LearningModels.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cs.uic.edu/LearningModels.pdf
Box,Page (ACF Field),Course Requirements (Field: intro_text_body),https://uofi.app.box.com/s/dm2k9ve4oeke6hwt11km294vvagxswe2,https://pharmacy.uic.edu/programs/bsps-program/requirements/,,,,,Skipped: Box link
PDF,News (ACF Field),UIC College of Pharmacy and College of Medicine teach students how to be “Good Neighbors” (Field: intro_text_body),https://ageguide.org/wp-content/uploads/2020/07/AgeGuide-Tablet-Notice-and-Application.pdf,https://pharmacy.uic.edu/news-stories/uic-college-of-pharmacy-and-college-of-medicine-teach-student-pharmacists-how-to-be-good-neighbors/,221101.0,2.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),"CPR Health Outcomes Seminar- Arden Handler, PhD (Field: description)",https://pharmacy.uic.edu/sites/default/files/CPR_Health_Outcomes_Seminar_Arden.Handler_2018.3.8.pdf,https://pharmacy.uic.edu/events/cpr-health-outcomes-seminar-arden-handler-phd/,,,,,Download failed: 404 Client Error: Not Found for url: https://pharmacy.uic.edu/sites/default/files/CPR_Health_Outcomes_Seminar_Arden.Handler_2018.3.8.pdf
Box,Menu,Anti-Racism Resource Guide,https://uofi.app.box.com/s/2tbg09dur5oou34zexacjxbq63u8ge71,,,,,,Skipped: Box link
Box,Menu,Small Group Dialogues,https://uofi.app.box.com/s/cbrb8cs7bzha6460z09ruxg2qzzf6o38,,,,,,Skipped: Box link
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2025/04/Program-Advance-Request_updated.pdf,https://psch.uic.edu/resources/forms-2/,702943.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2025/04/STA-Application-Form.pdf,https://psch.uic.edu/resources/forms-2/,1362092.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2022/03/Program-Advance-Replenishment-form.pdf,https://psch.uic.edu/resources/forms-2/,158023.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2023/08/Program-Advance-Closeout-form.pdf,https://psch.uic.edu/resources/forms-2/,147739.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2024/01/Program-Closeout-Extra-Funds.pdf,https://psch.uic.edu/resources/forms-2/,123187.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Forms (Field: intro_text_body),http://psch.uic.edu/wp-content/uploads/sites/259/2021/09/LA-SGR_Fillable.pdf,https://psch.uic.edu/resources/forms-2/,79891.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"Dan Cervone Edits Albert Bandura&#8217;s final (posthumous) publication, Social Cognitive Theory: An Agentic Perspective on Human Nature (Field: intro_text_body)",https://emails.uofi.uic.edu/files/76/1829839076/bandurapressrelease.pdf,https://psch.uic.edu/news-stories/dan-cervone-edits-albert-banduras-final-posthumous-publication-social-cognitive-theory-an-agentic-perspective-on-human-nature/,178831.0,1.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Gutierrez, Felicia (Field: cv_link)",http://psch.uic.edu/wp-content/uploads/sites/259/2022/06/F.-Gutierrez-CV.pdf,https://psch.uic.edu/profiles/gutierrez-felicia/,170361.0,9.0,True,False,No tags detected via pdfminer3
PDF,Menu,2024 Graduate Awards Ceremony,http://psch.uic.edu/wp-content/uploads/sites/259/2024/04/2024-Grad-Awards-Program-Updated.pdf,,368999.0,16.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),How to Request a Course Waiver (Field: intro_text_body),https://uofi.app.box.com/s/7mi9ucwn4491xn7oics4pu87jk4946i2,https://udv.lab.uic.edu/resources/uic-resources/how-to-request-a-course-waiver/,,,,,Skipped: Box link
Box,Page (ACF Field),How to Request a Course Waiver (Field: intro_text_body),https://uofi.app.box.com/s/7mi9ucwn4491xn7oics4pu87jk4946i2</a></li>,https://udv.lab.uic.edu/resources/uic-resources/how-to-request-a-course-waiver/,,,,,Skipped: Box link
PDF,Page (ACF Field),Metropolitan Chicago Accessibility Explorer (Field: intro_text_body),http://urbanaccessibility.com/accessibility/final_report.pdf,https://udv.lab.uic.edu/our-work/collaborations/metropolitan-chicago-accessibility-explorer/,,,,,Download failed: Not a PDF based on Content-Type
Box,News (ACF Field),UIC GIS Day 2018 celebrates innovation with hands-on application of new technologies. (Field: intro_text_body),https://uofi.box.com/s/r2qjj5but05rp4kmau7kuk84sh6ztagw,https://udv.lab.uic.edu/news-stories/uic-gis-day-2018-celebrates-innovation-with-hands-on-application-of-new-technologies/,,,,,Skipped: Box link
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2012-UIC-CS-Member-Spotlight.pdf,https://ai.uic.edu/publication/,717503.0,7.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2011-Developing-Travel-Reliability-Inventory-for-the-Chicago-Region.pdf,https://ai.uic.edu/publication/,2713180.0,79.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2010-TDI_DraftPaper_SLv33_accepted_SLcs_10012010-ck_SL2-1-rev.pdf,https://ai.uic.edu/publication/,288956.0,10.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://ai.uic.edu/wp-content/uploads/sites/111/2017/08/2009-Providing-Reliable-Route-Guidance-Nie-Wu-Nelson-Dillenburg.pdf,https://ai.uic.edu/publication/,1303383.0,24.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/~piotr/papers/hicss02-language.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/~piotr/papers/hicss02-language.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/~piotr/papers/hicss02-portfolio.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/~piotr/papers/hicss02-portfolio.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/~piotr/papers/ieee2000.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 503 Server Error: Service Unavailable for url: https://www.cs.uic.edu/~piotr/papers/ieee2000.pdf
PDF,Page (ACF Field),Publications (Field: intro_text_body),http://www.cs.uic.edu/LearningModels.pdf,https://ai.uic.edu/publication/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.cs.uic.edu/LearningModels.pdf
PDF,News (ACF Field),Free Activities for UIC PIP Students! (Field: intro_text_body),https://pip.uic.edu/wp-content/uploads/sites/261/2022/08/UIC-Chicago-Events831915.pdf,https://pip.uic.edu/news-stories/free-activities-for-uic-pip-students/,824967.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Free Activities for UIC PIP Students! (Field: intro_text_body),https://pip.uic.edu/wp-content/uploads/sites/261/2022/08/UIC-Chicago-Events831915.pdf,https://pip.uic.edu/news-stories/free-activities-for-uic-pip-students/,824967.0,1.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Careers in Linguistics and Computational Linguistics (Field: intro_text_body),https://uofi.app.box.com/s/h8lllgca9vvq8vchr86pm5nu1gg63cx5,https://ling.uic.edu/programs/acad/resources/careers-in-linguistics-and-computational-linguistics/,,,,,Skipped: Box link
Box,Page (ACF Field),Careers in Linguistics and Computational Linguistics (Field: intro_text_body),https://uofi.box.com/s/8abagv0ib3tgkovv6mcp2mo7aii5ejsj,https://ling.uic.edu/programs/acad/resources/careers-in-linguistics-and-computational-linguistics/,,,,,Skipped: Box link
PDF,Page (ACF Field),Ethical Linguistics (Field: intro_text_body),https://aclanthology.org/2021.eacl-main.186.pdf,https://ling.uic.edu/programs/acad/resources/decolonizing-linguistics-and-linguistics-justice/,1603043.0,14.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Ethical Linguistics (Field: intro_text_body),https://aclanthology.org/2020.acl-main.485.pdf,https://ling.uic.edu/programs/acad/resources/decolonizing-linguistics-and-linguistics-justice/,1439786.0,23.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),FAQs for Undergraduate Research (Field: intro_text_body),https://www.linguisticsociety.org/sites/default/files/style-sheet.pdf,https://ling.uic.edu/programs/acad/resources/academic-opportunities-in-cslinguistics/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),FAQs for Undergraduate Research (Field: intro_text_body),https://www.eva.mpg.de/lingua/pdf/GenericStyleRules.pdf,https://ling.uic.edu/programs/acad/resources/academic-opportunities-in-cslinguistics/,280146.0,14.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),New linguistics courses in summer and fall 2023! (Field: intro_text_body),https://uofi.box.com/s/lt97unwm7fb9sevz6o78v7p7x1sm6oly,https://ling.uic.edu/news-stories/new-linguistics-courses-in-summer-and-fall-2023/,,,,,Skipped: Box link
PDF,News (ACF Field),Congratulations to Megan Herrera for publication on Tagalog-English code-switching data processing (Field: intro_text_body),http://www.lrec-conf.org/proceedings/lrec2022/pdf/2022.lrec-1.225.pdf,https://ling.uic.edu/news-stories/congratulations-to-megan-herrera-on-new-publication-on-tagalog-english-code-switching-data-processing/,247119.0,8.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Students Presenting at 2022 Undergraduate Research Forum (Field: intro_text_body),https://uofi.app.box.com/v/URF22AbstractBook,https://ling.uic.edu/news-stories/students-presenting-at-2022-undergraduate-research-forum/,,,,,Skipped: Box link
Box,News (ACF Field),"Call for applications: James H. Dunn, Jr. Memorial Fellowship (Field: intro_text_body)",https://uofi.box.com/s/coqcdphj1hprhgfl9rx1mbqaxwj2dd17,https://ling.uic.edu/news-stories/call-for-applications-james-h-dunn-jr-memorial-fellowship/,,,,,Skipped: Box link
Box,News (ACF Field),Paid summer internships (Field: intro_text_body),https://uofi.app.box.com/s/zp1y7wrx2tc9ysy1iqqenh7klgjyjqqz,https://ling.uic.edu/news-stories/paid-summer-internships/,,,,,Skipped: Box link
Box,News (ACF Field),New linguistics course in spring 2022 (Field: intro_text_body),https://uofi.box.com/s/vk5ojfpeugdvcesssa84jo5dqyk7v9gr,https://ling.uic.edu/news-stories/new-course-in-spring-2022-2/,,,,,Skipped: Box link
Box,News (ACF Field),New Chinese Course in Spring 2022! (Field: intro_text_body),https://uofi.box.com/s/3bbdlal4abbgpwdm0mgex1wa8egh4k18,https://ling.uic.edu/news-stories/new-course-in-spring-2022/,,,,,Skipped: Box link
Box,News (ACF Field),CFP – 2015 LCSL Graduate Student Conference (Field: intro_text_body),https://uofi.box.com/s/m55cy9g2eddvfhyjizz8n4560o0kl14m,https://ling.uic.edu/news-stories/cfp-2015-lcsl-grad-conference/,,,,,Skipped: Box link
Box,Event (ACF Field),Guest Lecture: Acoustic phonetic research in Hawaiian: Challenges and opportunities (Field: description),https://uofi.box.com/s/b6nlm084msi5o3c51gvdko3whbh0qggp,https://ling.uic.edu/events/acoustic-phonetic-research-in-hawaiian/,,,,,Skipped: Box link
Box,Event (ACF Field),Guest Lecture: Stranger in the Shogun’s City: From the Archive to the Page (Field: description),https://uofi.box.com/s/mgukyxj3noo8fcrz6k1ltrq1nhj6haon,https://ling.uic.edu/events/stranger-in-the-shoguns-city-from-the-archive-to-the-page-east-asian-humanities-and-cultures-talk-series/,,,,,Skipped: Box link
Box,Event (ACF Field),North American Computational Linguistics Open Competition (NACLO) 2025 @ UIC (Field: description),https://uofi.box.com/s/fso4ah192jvtzxfifaoaedwafpsykjel,https://ling.uic.edu/events/uic-naclo-2025/,,,,,Skipped: Box link
Box,Event (ACF Field),North American Computational Linguistics Open Competition (NACLO) 2025 @ UIC (Field: description),https://uofi.box.com/s/fso4ah192jvtzxfifaoaedwafpsykjel</a></li>,https://ling.uic.edu/events/uic-naclo-2025/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Learn Through K-pop (Field: description),https://uofi.box.com/s/5fhhxp7xcc4wrh0k5xsxbygum1v5hh3l,https://ling.uic.edu/events/learnthroughkpop/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Learn Through K-pop (Field: description),https://uofi.box.com/s/5fhhxp7xcc4wrh0k5xsxbygum1v5hh3l </a></p>,https://ling.uic.edu/events/learnthroughkpop/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Impacts of Linguistic Diversity on Language Technology (Field: description),https://uofi.box.com/s/53l5wr896cttqbb3erkcpumgp7itd8iy,https://ling.uic.edu/events/public-lecture-impacts-of-linguistic-diversity-on-language-technology/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Impacts of Linguistic Diversity on Language Technology (Field: description),https://uofi.box.com/s/53l5wr896cttqbb3erkcpumgp7itd8iy </a></p>,https://ling.uic.edu/events/public-lecture-impacts-of-linguistic-diversity-on-language-technology/,,,,,Skipped: Box link
PDF,Event (ACF Field),North American Computational Linguistics Open Competition (NACLO) 2024 @ UIC (Field: description),https://www.naclo.org/2024/2024NACLOStudenthandbook.pdf,https://ling.uic.edu/events/uic-naclo-2024/,278650.0,16.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),&#8220;Computation-informed research on language science: Focusing on language acquisition/development&#8221; (Field: description),https://uofi.box.com/s/a94ywnw4tulkb5mm097mtmij2rrh64ri,https://ling.uic.edu/events/talk-computation-informed-research-on-language-science/,,,,,Skipped: Box link
Box,Event (ACF Field),&#8220;Leveraging computational and behavioral evidence to jointly inform usage-based language models: The case study of multiword units&#8221; (Field: description),https://uofi.box.com/s/xewg25k2dl1ibh0prcik4nmkf4ft07hl,https://ling.uic.edu/events/talk-leveraging-computational-and-behavioral-evidence-to-jointly-inform-usage-based-language-models-the-case-study-of-multiword-units/,,,,,Skipped: Box link
Box,Event (ACF Field),"&#8220;Understanding Language: Meaning, Form and the Mapping Across Different Representational Systems&#8221; (Field: description)",https://uofi.box.com/s/kdy1xxa7fhqm3imu2uejhkkt0f41hi43,https://ling.uic.edu/events/understanding-language-meaning-form-and-the-mapping-across-different-representational-systems/,,,,,Skipped: Box link
Box,Event (ACF Field),Peer Tutoring for Chinese Starts Jan 23 (Field: description),https://uofi.box.com/s/gk8yfk3lazjwbacbrhtszf2ahf0cmtz0,https://ling.uic.edu/events/peer-tutoring-for-chinese-starts-jan-23/,,,,,Skipped: Box link
Box,Event (ACF Field),Q&amp;A with Director of Engineering Career Center (Field: description),https://uofi.box.com/s/gla81buka2hif1z03e69s25671munuub,https://ling.uic.edu/events/qa-with-director-of-engineering-career-center/,,,,,Skipped: Box link
Box,Event (ACF Field),Guest Lecture: Languaging Art and Design (Field: description),https://uofi.box.com/s/25r6kzr3nk56jkld83gcuw371a1ewlbd,https://ling.uic.edu/events/languaging-art-and-design/,,,,,Skipped: Box link
Box,Event (ACF Field),Chinese Moon Festival Celebration 中秋节联欢 (Field: description),https://uofi.app.box.com/file/1003652323021?s=3febbyunu6j9x8zqnnl64t0evt2ap1bu,https://ling.uic.edu/events/chinese-moon-festival-celebration-%e4%b8%ad%e7%a7%8b%e8%8a%82%e8%81%94%e6%ac%a2/,,,,,Skipped: Box link
PDF,Event (ACF Field),Julie Sedivy- What if we admit we love our languages? (Field: description),https://bilingualism-matters.northwestern.edu/event_pdfs/Sedivy_flyer_06-02-22.pdf,https://ling.uic.edu/events/julie-sedivy-distinguished-lecture-in-multilingualism-and-language-learning/,877413.0,1.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),A Conversation with Photographer Jie Zhang |对话摄影师张捷 (Field: description),https://uofi.box.com/s/vfxgxxkq7ucjl0snfywl2h7oeabklc0j,https://ling.uic.edu/events/a-conversation-with-photographer-jie-zhang-%e5%af%b9%e8%af%9d%e6%91%84%e5%bd%b1%e5%b8%88%e5%bc%a0%e6%8d%b7/,,,,,Skipped: Box link
Box,Event (ACF Field),Careers in Linguistics- Alumni Panel (Field: description),https://uofi.box.com/s/msyzmeihz7czh6vyyooce5f5nh2iy9rw,https://ling.uic.edu/events/career-in-linguistics-alumni-panel/,,,,,Skipped: Box link
Box,Event (ACF Field),Linguistics 150 Tutoring Starts in Week 3 (Field: description),https://uofi.box.com/s/5ppcuk37tpw27z1gqlab2f6nry7jub0y,https://ling.uic.edu/events/linguistics-150-tutoring-starts-in-week-3/,,,,,Skipped: Box link
Box,Event (ACF Field),Mandarin Chinese Tutoring Starts in Week 3 (Field: description),https://uofi.box.com/s/amkkivciw2yh7f2ymhej4bdsp1dzkax6,https://ling.uic.edu/events/mandarin-chinese-tutoring-starts-in-week-3/,,,,,Skipped: Box link
Box,Event (ACF Field),Gameful L2 learning design: Implications from the wilds (Field: description),https://uofi.box.com/s/wrduewon3thcqwyb2xoy53vd276p5136,https://ling.uic.edu/events/gameful-l2-learning-design-implications-from-the-wilds/,,,,,Skipped: Box link
Box,Event (ACF Field),"Ling+ MEETUP | Guest: Amita Shetty, Director of Break Through Tech Chicago (Field: description)",https://uofi.box.com/s/zp1y7wrx2tc9ysy1iqqenh7klgjyjqqz,https://ling.uic.edu/events/ling-meetup-guest-amita-shetty-director-of-break-through-tech-chicago/,,,,,Skipped: Box link
Box,Event (ACF Field),Language data: What is it? How do we analyze it? What can it tell us? (Field: description),https://uofi.box.com/s/3j9nepsdsr6ys77w93wrstcu8bllxgdo,https://ling.uic.edu/events/language-data-what-is-it-how-do-we-analyze-it-what-can-it-tell-us/,,,,,Skipped: Box link
Box,Event (ACF Field),Japanese Reading Games (Field: description),https://uofi.box.com/s/km1osoq2jcynew8rj24ds29mashe50do,https://ling.uic.edu/events/japanese-reading-game/,,,,,Skipped: Box link
Box,Event (ACF Field),Japanese Reading Games (Field: description),https://uofi.box.com/s/0ypvk30s717j24taendke1uvmv592tox,https://ling.uic.edu/events/japanese-reading-game/,,,,,Skipped: Box link
Box,Event (ACF Field),"Chinese Tea Time (茶话会 Conversation Hour) Starts Monday, Sept 13 (note the variable time) (Field: description)",https://uofi.box.com/s/zmr22melo2zn5vhbqpa4g0avkseocazu,https://ling.uic.edu/events/chinese-teatime-starts-monday-sept-13/,,,,,Skipped: Box link
Box,Event (ACF Field),Chinese Tutoring Starts September 7 (Field: description),https://uofi.box.com/s/v3p7auderqxjaorh28begz0jb6z2d2sh,https://ling.uic.edu/events/mandarin-chinese-tutoring-starts-september-8/,,,,,Skipped: Box link
Box,Event (ACF Field),Lunar New Year Virtual Party (Field: description),https://uofi.box.com/s/8skjtzr5cau7q78glfv7ayjpknpisw5u,https://ling.uic.edu/events/lunar-new-year-virtual-party/,,,,,Skipped: Box link
Box,Profile (ACF Field),"López, Luis (Field: cv_link)",https://uofi.box.com/s/ab6ke8m99aoxht15fg5nkxet91omib9y,https://ling.uic.edu/profiles/lopez-luis/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Cameron, Richard (Field: cv_link)",https://uofi.box.com/s/n0hncq7lch02otkcfdgqs41tudp1931a,https://ling.uic.edu/profiles/richard-cameron/,,,,,Skipped: Box link
Box,Page (ACF Field),Careers in Linguistics and Computational Linguistics (Field: intro_text_body),https://uofi.app.box.com/s/h8lllgca9vvq8vchr86pm5nu1gg63cx5,https://ling.uic.edu/programs/acad/resources/careers-in-linguistics-and-computational-linguistics/,,,,,Skipped: Box link
Box,Page (ACF Field),Careers in Linguistics and Computational Linguistics (Field: intro_text_body),https://uofi.box.com/s/8abagv0ib3tgkovv6mcp2mo7aii5ejsj,https://ling.uic.edu/programs/acad/resources/careers-in-linguistics-and-computational-linguistics/,,,,,Skipped: Box link
PDF,Page (ACF Field),Ethical Linguistics (Field: intro_text_body),https://aclanthology.org/2021.eacl-main.186.pdf,https://ling.uic.edu/programs/acad/resources/decolonizing-linguistics-and-linguistics-justice/,1603043.0,14.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Ethical Linguistics (Field: intro_text_body),https://aclanthology.org/2020.acl-main.485.pdf,https://ling.uic.edu/programs/acad/resources/decolonizing-linguistics-and-linguistics-justice/,1439786.0,23.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),FAQs for Undergraduate Research (Field: intro_text_body),https://www.linguisticsociety.org/sites/default/files/style-sheet.pdf,https://ling.uic.edu/programs/acad/resources/academic-opportunities-in-cslinguistics/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),FAQs for Undergraduate Research (Field: intro_text_body),https://www.eva.mpg.de/lingua/pdf/GenericStyleRules.pdf,https://ling.uic.edu/programs/acad/resources/academic-opportunities-in-cslinguistics/,280146.0,14.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),New linguistics courses in summer and fall 2023! (Field: intro_text_body),https://uofi.box.com/s/lt97unwm7fb9sevz6o78v7p7x1sm6oly,https://ling.uic.edu/news-stories/new-linguistics-courses-in-summer-and-fall-2023/,,,,,Skipped: Box link
PDF,News (ACF Field),Congratulations to Megan Herrera for publication on Tagalog-English code-switching data processing (Field: intro_text_body),http://www.lrec-conf.org/proceedings/lrec2022/pdf/2022.lrec-1.225.pdf,https://ling.uic.edu/news-stories/congratulations-to-megan-herrera-on-new-publication-on-tagalog-english-code-switching-data-processing/,247119.0,8.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Students Presenting at 2022 Undergraduate Research Forum (Field: intro_text_body),https://uofi.app.box.com/v/URF22AbstractBook,https://ling.uic.edu/news-stories/students-presenting-at-2022-undergraduate-research-forum/,,,,,Skipped: Box link
Box,News (ACF Field),"Call for applications: James H. Dunn, Jr. Memorial Fellowship (Field: intro_text_body)",https://uofi.box.com/s/coqcdphj1hprhgfl9rx1mbqaxwj2dd17,https://ling.uic.edu/news-stories/call-for-applications-james-h-dunn-jr-memorial-fellowship/,,,,,Skipped: Box link
Box,News (ACF Field),Paid summer internships (Field: intro_text_body),https://uofi.app.box.com/s/zp1y7wrx2tc9ysy1iqqenh7klgjyjqqz,https://ling.uic.edu/news-stories/paid-summer-internships/,,,,,Skipped: Box link
Box,News (ACF Field),New linguistics course in spring 2022 (Field: intro_text_body),https://uofi.box.com/s/vk5ojfpeugdvcesssa84jo5dqyk7v9gr,https://ling.uic.edu/news-stories/new-course-in-spring-2022-2/,,,,,Skipped: Box link
Box,News (ACF Field),New Chinese Course in Spring 2022! (Field: intro_text_body),https://uofi.box.com/s/3bbdlal4abbgpwdm0mgex1wa8egh4k18,https://ling.uic.edu/news-stories/new-course-in-spring-2022/,,,,,Skipped: Box link
Box,News (ACF Field),CFP – 2015 LCSL Graduate Student Conference (Field: intro_text_body),https://uofi.box.com/s/m55cy9g2eddvfhyjizz8n4560o0kl14m,https://ling.uic.edu/news-stories/cfp-2015-lcsl-grad-conference/,,,,,Skipped: Box link
Box,Event (ACF Field),Guest Lecture: Acoustic phonetic research in Hawaiian: Challenges and opportunities (Field: description),https://uofi.box.com/s/b6nlm084msi5o3c51gvdko3whbh0qggp,https://ling.uic.edu/events/acoustic-phonetic-research-in-hawaiian/,,,,,Skipped: Box link
Box,Event (ACF Field),Guest Lecture: Stranger in the Shogun’s City: From the Archive to the Page (Field: description),https://uofi.box.com/s/mgukyxj3noo8fcrz6k1ltrq1nhj6haon,https://ling.uic.edu/events/stranger-in-the-shoguns-city-from-the-archive-to-the-page-east-asian-humanities-and-cultures-talk-series/,,,,,Skipped: Box link
Box,Event (ACF Field),North American Computational Linguistics Open Competition (NACLO) 2025 @ UIC (Field: description),https://uofi.box.com/s/fso4ah192jvtzxfifaoaedwafpsykjel,https://ling.uic.edu/events/uic-naclo-2025/,,,,,Skipped: Box link
Box,Event (ACF Field),North American Computational Linguistics Open Competition (NACLO) 2025 @ UIC (Field: description),https://uofi.box.com/s/fso4ah192jvtzxfifaoaedwafpsykjel</a></li>,https://ling.uic.edu/events/uic-naclo-2025/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Learn Through K-pop (Field: description),https://uofi.box.com/s/5fhhxp7xcc4wrh0k5xsxbygum1v5hh3l,https://ling.uic.edu/events/learnthroughkpop/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Learn Through K-pop (Field: description),https://uofi.box.com/s/5fhhxp7xcc4wrh0k5xsxbygum1v5hh3l </a></p>,https://ling.uic.edu/events/learnthroughkpop/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Impacts of Linguistic Diversity on Language Technology (Field: description),https://uofi.box.com/s/53l5wr896cttqbb3erkcpumgp7itd8iy,https://ling.uic.edu/events/public-lecture-impacts-of-linguistic-diversity-on-language-technology/,,,,,Skipped: Box link
Box,Event (ACF Field),Public Lecture: Impacts of Linguistic Diversity on Language Technology (Field: description),https://uofi.box.com/s/53l5wr896cttqbb3erkcpumgp7itd8iy </a></p>,https://ling.uic.edu/events/public-lecture-impacts-of-linguistic-diversity-on-language-technology/,,,,,Skipped: Box link
PDF,Event (ACF Field),North American Computational Linguistics Open Competition (NACLO) 2024 @ UIC (Field: description),https://www.naclo.org/2024/2024NACLOStudenthandbook.pdf,https://ling.uic.edu/events/uic-naclo-2024/,278650.0,16.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),&#8220;Computation-informed research on language science: Focusing on language acquisition/development&#8221; (Field: description),https://uofi.box.com/s/a94ywnw4tulkb5mm097mtmij2rrh64ri,https://ling.uic.edu/events/talk-computation-informed-research-on-language-science/,,,,,Skipped: Box link
Box,Event (ACF Field),&#8220;Leveraging computational and behavioral evidence to jointly inform usage-based language models: The case study of multiword units&#8221; (Field: description),https://uofi.box.com/s/xewg25k2dl1ibh0prcik4nmkf4ft07hl,https://ling.uic.edu/events/talk-leveraging-computational-and-behavioral-evidence-to-jointly-inform-usage-based-language-models-the-case-study-of-multiword-units/,,,,,Skipped: Box link
Box,Event (ACF Field),"&#8220;Understanding Language: Meaning, Form and the Mapping Across Different Representational Systems&#8221; (Field: description)",https://uofi.box.com/s/kdy1xxa7fhqm3imu2uejhkkt0f41hi43,https://ling.uic.edu/events/understanding-language-meaning-form-and-the-mapping-across-different-representational-systems/,,,,,Skipped: Box link
Box,Event (ACF Field),Peer Tutoring for Chinese Starts Jan 23 (Field: description),https://uofi.box.com/s/gk8yfk3lazjwbacbrhtszf2ahf0cmtz0,https://ling.uic.edu/events/peer-tutoring-for-chinese-starts-jan-23/,,,,,Skipped: Box link
Box,Event (ACF Field),Q&amp;A with Director of Engineering Career Center (Field: description),https://uofi.box.com/s/gla81buka2hif1z03e69s25671munuub,https://ling.uic.edu/events/qa-with-director-of-engineering-career-center/,,,,,Skipped: Box link
Box,Event (ACF Field),Guest Lecture: Languaging Art and Design (Field: description),https://uofi.box.com/s/25r6kzr3nk56jkld83gcuw371a1ewlbd,https://ling.uic.edu/events/languaging-art-and-design/,,,,,Skipped: Box link
Box,Event (ACF Field),Chinese Moon Festival Celebration 中秋节联欢 (Field: description),https://uofi.app.box.com/file/1003652323021?s=3febbyunu6j9x8zqnnl64t0evt2ap1bu,https://ling.uic.edu/events/chinese-moon-festival-celebration-%e4%b8%ad%e7%a7%8b%e8%8a%82%e8%81%94%e6%ac%a2/,,,,,Skipped: Box link
PDF,Event (ACF Field),Julie Sedivy- What if we admit we love our languages? (Field: description),https://bilingualism-matters.northwestern.edu/event_pdfs/Sedivy_flyer_06-02-22.pdf,https://ling.uic.edu/events/julie-sedivy-distinguished-lecture-in-multilingualism-and-language-learning/,877413.0,1.0,True,False,No tags detected via pdfminer3
Box,Event (ACF Field),A Conversation with Photographer Jie Zhang |对话摄影师张捷 (Field: description),https://uofi.box.com/s/vfxgxxkq7ucjl0snfywl2h7oeabklc0j,https://ling.uic.edu/events/a-conversation-with-photographer-jie-zhang-%e5%af%b9%e8%af%9d%e6%91%84%e5%bd%b1%e5%b8%88%e5%bc%a0%e6%8d%b7/,,,,,Skipped: Box link
Box,Event (ACF Field),Careers in Linguistics- Alumni Panel (Field: description),https://uofi.box.com/s/msyzmeihz7czh6vyyooce5f5nh2iy9rw,https://ling.uic.edu/events/career-in-linguistics-alumni-panel/,,,,,Skipped: Box link
Box,Event (ACF Field),Linguistics 150 Tutoring Starts in Week 3 (Field: description),https://uofi.box.com/s/5ppcuk37tpw27z1gqlab2f6nry7jub0y,https://ling.uic.edu/events/linguistics-150-tutoring-starts-in-week-3/,,,,,Skipped: Box link
Box,Event (ACF Field),Mandarin Chinese Tutoring Starts in Week 3 (Field: description),https://uofi.box.com/s/amkkivciw2yh7f2ymhej4bdsp1dzkax6,https://ling.uic.edu/events/mandarin-chinese-tutoring-starts-in-week-3/,,,,,Skipped: Box link
Box,Event (ACF Field),Gameful L2 learning design: Implications from the wilds (Field: description),https://uofi.box.com/s/wrduewon3thcqwyb2xoy53vd276p5136,https://ling.uic.edu/events/gameful-l2-learning-design-implications-from-the-wilds/,,,,,Skipped: Box link
Box,Event (ACF Field),"Ling+ MEETUP | Guest: Amita Shetty, Director of Break Through Tech Chicago (Field: description)",https://uofi.box.com/s/zp1y7wrx2tc9ysy1iqqenh7klgjyjqqz,https://ling.uic.edu/events/ling-meetup-guest-amita-shetty-director-of-break-through-tech-chicago/,,,,,Skipped: Box link
Box,Event (ACF Field),Language data: What is it? How do we analyze it? What can it tell us? (Field: description),https://uofi.box.com/s/3j9nepsdsr6ys77w93wrstcu8bllxgdo,https://ling.uic.edu/events/language-data-what-is-it-how-do-we-analyze-it-what-can-it-tell-us/,,,,,Skipped: Box link
Box,Event (ACF Field),Japanese Reading Games (Field: description),https://uofi.box.com/s/km1osoq2jcynew8rj24ds29mashe50do,https://ling.uic.edu/events/japanese-reading-game/,,,,,Skipped: Box link
Box,Event (ACF Field),Japanese Reading Games (Field: description),https://uofi.box.com/s/0ypvk30s717j24taendke1uvmv592tox,https://ling.uic.edu/events/japanese-reading-game/,,,,,Skipped: Box link
Box,Event (ACF Field),"Chinese Tea Time (茶话会 Conversation Hour) Starts Monday, Sept 13 (note the variable time) (Field: description)",https://uofi.box.com/s/zmr22melo2zn5vhbqpa4g0avkseocazu,https://ling.uic.edu/events/chinese-teatime-starts-monday-sept-13/,,,,,Skipped: Box link
Box,Event (ACF Field),Chinese Tutoring Starts September 7 (Field: description),https://uofi.box.com/s/v3p7auderqxjaorh28begz0jb6z2d2sh,https://ling.uic.edu/events/mandarin-chinese-tutoring-starts-september-8/,,,,,Skipped: Box link
Box,Event (ACF Field),Lunar New Year Virtual Party (Field: description),https://uofi.box.com/s/8skjtzr5cau7q78glfv7ayjpknpisw5u,https://ling.uic.edu/events/lunar-new-year-virtual-party/,,,,,Skipped: Box link
Box,Profile (ACF Field),"López, Luis (Field: cv_link)",https://uofi.box.com/s/ab6ke8m99aoxht15fg5nkxet91omib9y,https://ling.uic.edu/profiles/lopez-luis/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Cameron, Richard (Field: cv_link)",https://uofi.box.com/s/n0hncq7lch02otkcfdgqs41tudp1931a,https://ling.uic.edu/profiles/richard-cameron/,,,,,Skipped: Box link
Box,News (ACF Field),Congratulations!!! Yi-Chien Wu (PhD candidate) received a Charles Wesley Petranek Memorial Scholarship for UIC College of Pharmacy. (Field: intro_text_body),https://uofi.app.box.com/s/fsygprsvioub8pzr0s0s0a3eihnsjqm5</p>,https://stevelee.lab.uic.edu/news-stories/congratulations-yi-chien-wu-phd-candidate-received-a-charles-wesley-petranek-memorial-scholarship-for-uic-college-of-pharmacy/,,,,,Skipped: Box link
Box,News (ACF Field),Congratulations!!! Yi-Chien Wu (PhD candidate) received a Charles Wesley Petranek Memorial Scholarship for UIC College of Pharmacy. (Field: intro_text_body),https://uofi.app.box.com/s/fsygprsvioub8pzr0s0s0a3eihnsjqm5</p>,https://stevelee.lab.uic.edu/news-stories/congratulations-yi-chien-wu-phd-candidate-received-a-charles-wesley-petranek-memorial-scholarship-for-uic-college-of-pharmacy/,,,,,Skipped: Box link
Box,Page (ACF Field),Scholarship Administrators (Field: intro_text_body),https://uofi.box.com/s/axvngcpdsxc05sufi7jck51ih3uprbrp,http://snap.uic.edu/scholarship-administrators/,,,,,Skipped: Box link
Box,Page (ACF Field),Scholarship Administrators (Field: intro_text_body),https://uofi.box.com/s/axvngcpdsxc05sufi7jck51ih3uprbrp,https://snap.uic.edu/scholarship-administrators/,,,,,Skipped: Box link
PDF,Page (ACF Field),Protected: Syllabus (Field: intro_text_body),https://me308-siow.class.uic.edu/wp-content/uploads/sites/783/2025/01/syllabus_vibration_s25.pdf,https://me308-siow.class.uic.edu/syllabus/,581114.0,5.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Protected: Syllabus (Field: intro_text_body),https://me308-siow.class.uic.edu/wp-content/uploads/sites/783/2025/01/HLC_syllabus_me308-siow_S25.pdf,https://me308-siow.class.uic.edu/syllabus/,270561.0,7.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),A Spring Wrap Up from IPCE Director Joseph Hoereth (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2025/01/2025.01.27-IMT-Community-Survey-Report-DRAFT-March18-2024-%E2%80%93-April-22-2024-filed.pdf,https://ipce.uic.edu/news-stories/a-spring-wrap-up-from-ipce-director-joseph-hoereth/,15867116.0,168.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),“COVID Conversations: A Public History project of Chicago’s History Corps” &#8211; A Civic Engagement Lunch Talk Follow-Up (Field: intro_text_body),https://uofi.box.com/s/gx1d3txpudgetx6i66ter3s213af5k4c,https://ipce.uic.edu/news-stories/covid-conversations-civic-engagement-lunch-talk-2023/,,,,,Skipped: Box link
Box,News (ACF Field),&#8220;Inclusive Open Government Data for Environmental Justice: Enhancing Community Stakeholders’ Voices” &#8211; A Civic Engagement Lunch Talk Follow-Up (Field: intro_text_body),https://uofi.box.com/s/e2k7cz0jk0foaw3iv536bxog6wc11l3n,https://ipce.uic.edu/news-stories/inclusive-open-government-data-for-ej/,,,,,Skipped: Box link
PDF,News (ACF Field),Community Focus Group Special Report for the Chicago Police Consent Decree Released (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-IMT-Special-Report-Focus-Groups-with-Black-and-Latino-Men-.._.pdf,https://ipce.uic.edu/news-stories/community-focus-group-special-report-for-the-chicago-police-consent-decree-released-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-IMT-Special-Report-Focus-Groups-with-Black-and-Latino-Men-.._.pdf
PDF,News (ACF Field),Community Focus Group Special Report for the Chicago Police Consent Decree Released (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-News-Release-Focus-Group-Report_final.pdf,https://ipce.uic.edu/news-stories/community-focus-group-special-report-for-the-chicago-police-consent-decree-released-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-News-Release-Focus-Group-Report_final.pdf
PDF,News (ACF Field),Master of City Design&#8217;s Chicago Charrette (Field: intro_text_body),https://www.jennapollack.com/_files/ugd/26ed5a_5c4abdef77384e72949c1d40d1028779.pdf,https://ipce.uic.edu/news-stories/master-of-city-designs-chicago-charrette/,113516980.0,110.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Social Autopsy of COVID-19 in Chicago: A Civic Engagement Lunch Talk Follow-Up (Field: intro_text_body),https://uofi.app.box.com/s/lkryglfwldi022glxcq0aggnvmfr0l01/file/890375119164,https://ipce.uic.edu/news-stories/social-autopsy-of-covid-19-in-chicago-a-civic-engagement-lunch-talk-follow-up/,,,,,Skipped: Box link
Box,News (ACF Field),UPPF 2022-23 Informational Sessions (Field: intro_text_body),https://uofi.box.com/s/gedwfv72077ppysfhzv3gc24vqne2p19,https://ipce.uic.edu/news-stories/uppf-2022-23-informational-sessions/,,,,,Skipped: Box link
Box,News (ACF Field),Climate Justice through a Circular Economy Event Follow-Up (Field: intro_text_body),https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fuofi.box.com%2Fs%2F7ekt1gknq93vc0dlvqdet4ujxx0dzx7d&amp;data=04%7C01%7Ccander71%40groute.uic.edu%7C53b1037a85594cdaa61a08d9092f5faa%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C637550921338079238%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=ktAiKbT9RCLm5a8rKWRTSlXPbkErsr12GjUGat8Iusk%3D&amp;reserved=0,https://ipce.uic.edu/news-stories/climate-justice/,,,,,Skipped: Box link
Box,News (ACF Field),Climate Justice through a Circular Economy Event Follow-Up (Field: intro_text_body),https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fuofi.box.com%2Fs%2Fuyllvdcbxgmb0njq8yloaaox8se7p0sd&amp;data=04%7C01%7Ccander71%40groute.uic.edu%7C53b1037a85594cdaa61a08d9092f5faa%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C637550921338079238%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=fVmnV7bFLV%2BEpeoA1f5AyzEXs17EFLb7eyyvactf6w0%3D&amp;reserved=0,https://ipce.uic.edu/news-stories/climate-justice/,,,,,Skipped: Box link
PDF,News (ACF Field),Seven Years after Shelby County V Holder (Field: intro_text_body),http://ipce.uic.edu/wp-content/uploads/sites/41/2020/10/Seven-Years-After-Shelby-County-v-Holder_IPCE.pdf,https://ipce.uic.edu/news-stories/seven-years-after-shelby-county-v-holder/,181955.0,12.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Community Survey Report for the Chicago Police Consent Decree Released (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2020/08/2020_08_26-Community-Survey-Filed.pdf,https://ipce.uic.edu/news-stories/community-survey-report-for-the-chicago-police-consent-decree-released/,,,,,Download failed: 404 Client Error: Not Found for url: https://cpdmonitoringteam.com/wp-content/uploads/2020/08/2020_08_26-Community-Survey-Filed.pdf
PDF,News (ACF Field),A Chicago That Works For All &#8211; Initial Reflections on the CUE Equity Fellowship (Field: intro_text_body),https://53c551a8-4838-492d-8db1-97596b256886.filesusr.com/ugd/05f795_56e1136834f1486596b3f2a6c2a010d3.pdf,https://ipce.uic.edu/news-stories/a-chicago-that-works-for-all-initial-reflections-on-the-cue-equity-fellowship/,147459.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),2017-18 UPPF Alum wins Student Employment Essay Contest (Field: intro_text_body),https://studentemployment.uic.edu/wp-content/uploads/sites/27/2019/04/NSEW-2019-Publication-2.pdf,https://ipce.uic.edu/news-stories/2017-18-uppf-alum-wins-student-employment-essay-contest/,1609627.0,20.0,False,False,No tags detected via pdfminer3
PDF,News (ACF Field),IPCE publishes Consent Decree Community Engagement Report (Field: intro_text_body),https://www.chicagopoliceconsentdecree.org/Page-Attachments/CPCD/Resources/Community/IPCE-Community-Engagement-Report_Final.pdf,https://ipce.uic.edu/news-stories/ipce-publishes-consent-decree-community-engagement-report/,3261457.0,241.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"March 25, 2019 &#8211; Dr. Yao is inducted into Medical and Biological Engineering Elite (Field: intro_text_body)",https://aimbe.org/press/Yao-COF-4145.pdf,https://yaolab.bioe.uic.edu/news-stories/march-25-2019-dr-yao-is-inducted-into-medical-and-biological-engineering-elite/,,,,,Download failed: 403 Client Error: Forbidden for url: https://aimbe.org/press/Yao-COF-4145.pdf
Box,Page (ACF Field),TA Hiring Process (Field: intro_text_body),https://uofi.box.com/s/630pf6iuiprddedgoma7ozwtqgf7sgu1,https://publichealth.uic.edu/academics/divisions/epidemiology-biostatistics/ta-hiring-process/,,,,,Skipped: Box link
Box,Page (ACF Field),TA Hiring Process (Field: intro_text_body),https://uofi.app.box.com/f/0d2e96d76c194b399ed0130b42abe833,https://publichealth.uic.edu/academics/divisions/epidemiology-biostatistics/ta-hiring-process/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/pxqyzfccid9vl5pjvzepkup4rt0liz5b,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/oqnfqbofr9xsy21wzb9qvpuffqhr9p49,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/1v9m0cd84o59145v6jxko42mrny1ur8x,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/06ujdami3ooe5z4dno2nd99ffeq8tww2,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/djbkg1mgosqycel6j6lg3f22hazmfjgx,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/v16p3nefkmn6idjonhjzb7a0ylrlv828,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/sbd6wmkinjssjq21jm25bc3ikjculhnu,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/yc8s1dkhwh3igzxe0jil7qffjifidfpx,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/wfw5ta4vedbfrro0n9vuwaiklol0a4lp,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Chicago Community Based Contact Tracing (Field: intro_text_body),https://uofi.box.com/v/ChiTracingY1Update,https://publichealth.uic.edu/community-engagement/collaboratory-for-health-justice/chicago-community-based-contact-tracing/,,,,,Skipped: Box link
PDF,Page (ACF Field),Facilities Usage Regulations (Field: intro_text_body),http://www.trustees.uillinois.edu/trustees/agenda/January-15-2009/023a-jan-Alcohol-Policy.pdf,https://publichealth.uic.edu/room-reservations/facilities-usage-regulations/,93693.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),UIC Report Finds Significant Health Inequities For People Experiencing Homelessness (Field: intro_text_body),https://dph.illinois.gov/content/dam/soi/en/web/idph/publications/idph/topics-and-services/life-stages-populations/ihmm-summary-201722.pdf,https://publichealth.uic.edu/news-stories/uic-report-finds-significant-health-inequities-for-people-experiencing-homelessness/,71013.0,6.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),UIC Report Finds Significant Health Inequities For People Experiencing Homelessness (Field: intro_text_body),https://dph.illinois.gov/content/dam/soi/en/web/idph/publications/idph/topics-and-services/life-stages-populations/hmmr-report-201722.pdf,https://publichealth.uic.edu/news-stories/uic-report-finds-significant-health-inequities-for-people-experiencing-homelessness/,1707872.0,82.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),IL HFS Announces Equity-Centric Healthcare Transformation Plan (Field: intro_text_body),https://www2.illinois.gov/IISNews/22338-IDHFS_Announces_Equity-Centric_Healthcare_Transformation_Plan.pdf,https://publichealth.uic.edu/news-stories/il-department-of-healthcare-and-family-services-announces-equity-centric-healthcare-transformation-plan/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),Planning for Flu Season During the Pandemic (Field: intro_text_body),https://p3rc.uic.edu/wp-content/uploads/sites/561/2020/08/Analyzing_COVID-19_Methods_508-1.pdf,https://publichealth.uic.edu/news-stories/planning-for-flu-season-during-the-pandemic/,1267120.0,7.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),"Faculty Blackboard Collaborate Workshops &#8211; March 11, 2020 (Field: intro_text_body)",https://uofi.box.com/s/ll9dp00t37jzzxloe2iq907es6o0hrm2,https://publichealth.uic.edu/news-stories/faculty-blackboard-collaborate-workshops-march-11-2020/,,,,,Skipped: Box link
PDF,News (ACF Field),"COVID-19 Building Cleaning Procedures (March 12, 2020) (Field: intro_text_body)",https://publichealth.uic.edu/wp-content/uploads/sites/302/2020/03/coronavirus-key-touchpoint-surfaces.pdf,https://publichealth.uic.edu/news-stories/covid-19-building-cleaning-procedures-march-12-2020/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2020/03/coronavirus-key-touchpoint-surfaces.pdf
PDF,News (ACF Field),Coronavirus and Children (Field: intro_text_body),https://rems.ed.gov/docs/REMS_K-12_Guide_508.pdf,https://publichealth.uic.edu/news-stories/coronavirus-and-children/,,,,,Download failed: 403 Client Error: Forbidden for url: https://rems.ed.gov/docs/REMS_K-12_Guide_508.pdf
PDF,News (ACF Field),A ‘how to’ guide for communities concerned about pollution (Field: intro_text_body),https://publichealth.uic.edu/wp-content/uploads/sites/302/2019/06/great-lakes-children-community-resource-guide-min.pdf,https://publichealth.uic.edu/news-stories/a-how-to-guide-for-communities-concerned-about-pollution/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2019/06/great-lakes-children-community-resource-guide-min.pdf
Box,Event (ACF Field),Unleash the Power of Data: Understanding the Chicago and Cook County Health Atlases (Field: description),https://uofi.box.com/s/9508lvgpfevvw2i8igcy5ulqzpuyv7i8,https://publichealth.uic.edu/events/unleash-the-power-of-data-understanding-the-chicago-and-cook-county-health-atlases/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Tran, Nathaniel M. (Field: about)",https://www.hhs.gov/sites/default/files/aces-lgbtq-plus.pdf,https://publichealth.uic.edu/profiles/tran-nathaniel/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.hhs.gov/sites/default/files/aces-lgbtq-plus.pdf
PDF,Profile (ACF Field),"Hill, Ashley Victoria (Field: cv_link)",https://maternalchild.uic.edu/wp-content/uploads/sites/614/2024/06/Hill_CV_UIC_2024.pdf,https://publichealth.uic.edu/profiles/hill-ashley/,371421.0,23.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Waterman, Fanta (Field: cv_link)",https://uofi.box.com/s/o785gfo3smx3bu6i0oot5zuyql1sskf2,https://publichealth.uic.edu/profiles/waterman-fanta/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Moore, Kayla T. (Field: cv_link)",https://uchicago.box.com/s/jov3knxxdp77bzji6yrvp90egmdnyg6p,https://publichealth.uic.edu/profiles/moore-kayla/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Florestal-Kevelier, Raphael D. (Field: cv_link)",https://uofi.box.com/s/w45pu3h1r5lvv9na07sk9mxa0mwbqcdi,https://publichealth.uic.edu/profiles/florestal-kevelier-raphael/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Amouei Torkmahalleh, Mehdi (Field: cv_link)",https://apps.sph.uic.edu/webdocs/pdf/profiles/mehdi-cv.pdf,https://publichealth.uic.edu/profiles/amouei-mehdi/,152733.0,7.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"Katumba, Angelo (Field: cv_link)",https://uofi.box.com/s/88nq8710cwr1uh8mwmwsfci7kgwu3ule,https://publichealth.uic.edu/profiles/katumba-angelo/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Harris, Zoë M. (Field: cv_link)",https://uofi.box.com/s/i011d359poq4knpjmsdrd4o8a9x1numn,https://publichealth.uic.edu/profiles/harris-zoe/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Harris, Zoë M. (Field: presentations)",https://uofi.box.com/s/svjt1ljb2avcg2s5noe7u6p64mw0br1c,https://publichealth.uic.edu/profiles/harris-zoe/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Reda, Domenic (Field: cv_link)",https://apps.sph.uic.edu/webdocs/pdf/profiles/reda-cv.pdf,https://publichealth.uic.edu/profiles/reda-domenic/,454866.0,45.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Lowry-Warnock, Amy (Field: about)",https://www.cdc.gov/obesity/downloads/guidelines_for_federal_concessions_and_vending_operations.pdf,https://publichealth.uic.edu/profiles/warnock-amy/,3508618.0,30.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"Ma, Hong (Field: cv_link)",https://uofi.box.com/s/isz26swid2prhrk5n40x637cmp4tyi1d,https://publichealth.uic.edu/profiles/ma-hong/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Bacon, Zachary (Field: cv_link)",https://uofi.box.com/s/tdmokmf0yyngy6zgc1gx9pikueuuko4c,https://publichealth.uic.edu/profiles/bacon-zachary/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Lin, Yu Chen (Jimmy) (Field: cv_link)",https://uofi.box.com/s/k005g7a4wqpfdx8bfpyik68o992jds6r,https://publichealth.uic.edu/profiles/lin-yu-chen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Grant, Alexis (Field: cv_link)",https://uofi.app.box.com/file/855340427676,https://publichealth.uic.edu/profiles/grant-alexis-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Bergeron, Nyahne (Field: cv_link)",https://uofi.box.com/s/qqrryhzev424531ttflyhomrzn1v6sk0,https://publichealth.uic.edu/profiles/bergeron-nyahne/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Kwok, Jennifer Helen (Field: cv_link)",https://www.jenniferkwok.com/s/JenniferKwok_CV.pdf,https://publichealth.uic.edu/profiles/kwok-jennifer/,250232.0,3.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Campbell, Rebecca Kramer (Field: cv_link)",https://uofi.box.com/s/ptwczdvklq9fa90r2zqhx7t58uv1hrez,https://publichealth.uic.edu/profiles/campbell-rebecca/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",http://www.cste.org/resource/resmgr/ps/ps2022/22-INJ-01_LEIFE.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: http://www.cste.org/resource/resmgr/ps/ps2022/22-INJ-01_LEIFE.pdf
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",https://cookcountypublichealth.org/wp-content/uploads/2021/10/Opioid-Epidemic-in-Suburban-Cook-County-Report.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: https://cookcountypublichealth.org/wp-content/uploads/2021/10/Opioid-Epidemic-in-Suburban-Cook-County-Report.pdf
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",https://cookcountypublichealth.org/wp-content/uploads/2021/09/2019-Joint-Report-Opioid_Deaths_CC_Final-Approved.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: https://cookcountypublichealth.org/wp-content/uploads/2021/09/2019-Joint-Report-Opioid_Deaths_CC_Final-Approved.pdf
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",https://cookcountypublichealth.org/wp-content/uploads/2020/09/2017_2018-Joint-Opioid-Brief.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: https://cookcountypublichealth.org/wp-content/uploads/2020/09/2017_2018-Joint-Opioid-Brief.pdf
Box,Profile (ACF Field),"Conroy, Lorraine M (Field: cv_link)",https://uofi.app.box.com/file/427582459388,https://publichealth.uic.edu/profiles/lorraine-conroy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Buchanan, Susan (Field: cv_link)",https://uofi.box.com/s/nubirfm1vkfec4dnk9bgx3folrll8zbb,https://publichealth.uic.edu/profiles/susan-buchanan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Muramatsu, Naoko (Field: cv_link)",https://uofi.box.com/s/9o7hchjotx6cpa5gkah6buf3k8uiiqte,https://publichealth.uic.edu/profiles/naoko-muramatsu/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Krishnan, Jerry A. (Field: cv_link)",https://publichealth.uic.edu/wp-content/uploads/sites/302/2024/01/Krishnan.CV_.2024.01.04.pdf,https://publichealth.uic.edu/profiles/jerry-krishnan/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2024/01/Krishnan.CV_.2024.01.04.pdf
Box,Profile (ACF Field),"Hebert-Beirne, Jeni (Field: cv_link)",https://uofi.box.com/s/ml3soyy8lfj2i17ub3wpl7rj7alh66dr,https://publichealth.uic.edu/profiles/jeni-hebert-beirne/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Velonis, Alisa J (Field: cv_link)",https://uofi.box.com/s/qoyki0sjyinubfowdzjfse5qwvzc2q7c,https://publichealth.uic.edu/profiles/alisa-velonis/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mackesy-Amiti, Mary Ellen (Field: cv_link)",https://uofi.box.com/s/50iul6uoxdm8xh55cnrwguixhc0ulwnt,https://publichealth.uic.edu/profiles/mary-ellen-mackesy-amiti/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Seweryn, Steven M (Field: cv_link)",https://uofi.box.com/s/413wvpimldy95q9ox3d5jenpxancejiu,https://publichealth.uic.edu/profiles/steven-seweryn/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Sietsema, Margaret (Field: cv_link)",https://uofi.app.box.com/file/1151596366666,https://publichealth.uic.edu/profiles/sietsema-margaret/,,,,,Skipped: Box link
PDF,Billboard (ACF Field),WHO brochure on HiAP (Field: external_url),https://iris.who.int/bitstream/handle/10665/272711/WHO-CED-PHE-SDH-18.1-eng.pdf?sequence=1,https://publichealth.uic.edu/?billboard=who-brochure-on-hiap,,,,,Skipped: Not a PDF link
Box,Page (ACF Field),TA Hiring Process (Field: intro_text_body),https://uofi.box.com/s/630pf6iuiprddedgoma7ozwtqgf7sgu1,https://publichealth.uic.edu/academics/divisions/epidemiology-biostatistics/ta-hiring-process/,,,,,Skipped: Box link
Box,Page (ACF Field),TA Hiring Process (Field: intro_text_body),https://uofi.app.box.com/f/0d2e96d76c194b399ed0130b42abe833,https://publichealth.uic.edu/academics/divisions/epidemiology-biostatistics/ta-hiring-process/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/pxqyzfccid9vl5pjvzepkup4rt0liz5b,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/oqnfqbofr9xsy21wzb9qvpuffqhr9p49,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/1v9m0cd84o59145v6jxko42mrny1ur8x,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/06ujdami3ooe5z4dno2nd99ffeq8tww2,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/djbkg1mgosqycel6j6lg3f22hazmfjgx,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/v16p3nefkmn6idjonhjzb7a0ylrlv828,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/sbd6wmkinjssjq21jm25bc3ikjculhnu,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/yc8s1dkhwh3igzxe0jil7qffjifidfpx,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),APE Forms and Documents (Field: intro_text_body),https://uofi.box.com/s/wfw5ta4vedbfrro0n9vuwaiklol0a4lp,https://publichealth.uic.edu/applied-practice-experience/ape-forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Chicago Community Based Contact Tracing (Field: intro_text_body),https://uofi.box.com/v/ChiTracingY1Update,https://publichealth.uic.edu/community-engagement/collaboratory-for-health-justice/chicago-community-based-contact-tracing/,,,,,Skipped: Box link
PDF,Page (ACF Field),Facilities Usage Regulations (Field: intro_text_body),http://www.trustees.uillinois.edu/trustees/agenda/January-15-2009/023a-jan-Alcohol-Policy.pdf,https://publichealth.uic.edu/room-reservations/facilities-usage-regulations/,93693.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),UIC Report Finds Significant Health Inequities For People Experiencing Homelessness (Field: intro_text_body),https://dph.illinois.gov/content/dam/soi/en/web/idph/publications/idph/topics-and-services/life-stages-populations/ihmm-summary-201722.pdf,https://publichealth.uic.edu/news-stories/uic-report-finds-significant-health-inequities-for-people-experiencing-homelessness/,71013.0,6.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),UIC Report Finds Significant Health Inequities For People Experiencing Homelessness (Field: intro_text_body),https://dph.illinois.gov/content/dam/soi/en/web/idph/publications/idph/topics-and-services/life-stages-populations/hmmr-report-201722.pdf,https://publichealth.uic.edu/news-stories/uic-report-finds-significant-health-inequities-for-people-experiencing-homelessness/,1707872.0,82.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),IL HFS Announces Equity-Centric Healthcare Transformation Plan (Field: intro_text_body),https://www2.illinois.gov/IISNews/22338-IDHFS_Announces_Equity-Centric_Healthcare_Transformation_Plan.pdf,https://publichealth.uic.edu/news-stories/il-department-of-healthcare-and-family-services-announces-equity-centric-healthcare-transformation-plan/,,,,,Download failed: Not a PDF based on Content-Type
PDF,News (ACF Field),Planning for Flu Season During the Pandemic (Field: intro_text_body),https://p3rc.uic.edu/wp-content/uploads/sites/561/2020/08/Analyzing_COVID-19_Methods_508-1.pdf,https://publichealth.uic.edu/news-stories/planning-for-flu-season-during-the-pandemic/,1267120.0,7.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),"Faculty Blackboard Collaborate Workshops &#8211; March 11, 2020 (Field: intro_text_body)",https://uofi.box.com/s/ll9dp00t37jzzxloe2iq907es6o0hrm2,https://publichealth.uic.edu/news-stories/faculty-blackboard-collaborate-workshops-march-11-2020/,,,,,Skipped: Box link
PDF,News (ACF Field),"COVID-19 Building Cleaning Procedures (March 12, 2020) (Field: intro_text_body)",https://publichealth.uic.edu/wp-content/uploads/sites/302/2020/03/coronavirus-key-touchpoint-surfaces.pdf,https://publichealth.uic.edu/news-stories/covid-19-building-cleaning-procedures-march-12-2020/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2020/03/coronavirus-key-touchpoint-surfaces.pdf
PDF,News (ACF Field),Coronavirus and Children (Field: intro_text_body),https://rems.ed.gov/docs/REMS_K-12_Guide_508.pdf,https://publichealth.uic.edu/news-stories/coronavirus-and-children/,,,,,Download failed: 403 Client Error: Forbidden for url: https://rems.ed.gov/docs/REMS_K-12_Guide_508.pdf
PDF,News (ACF Field),A ‘how to’ guide for communities concerned about pollution (Field: intro_text_body),https://publichealth.uic.edu/wp-content/uploads/sites/302/2019/06/great-lakes-children-community-resource-guide-min.pdf,https://publichealth.uic.edu/news-stories/a-how-to-guide-for-communities-concerned-about-pollution/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2019/06/great-lakes-children-community-resource-guide-min.pdf
Box,Event (ACF Field),Unleash the Power of Data: Understanding the Chicago and Cook County Health Atlases (Field: description),https://uofi.box.com/s/9508lvgpfevvw2i8igcy5ulqzpuyv7i8,https://publichealth.uic.edu/events/unleash-the-power-of-data-understanding-the-chicago-and-cook-county-health-atlases/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Tran, Nathaniel M. (Field: about)",https://www.hhs.gov/sites/default/files/aces-lgbtq-plus.pdf,https://publichealth.uic.edu/profiles/tran-nathaniel/,,,,,Download failed: 403 Client Error: Forbidden for url: https://www.hhs.gov/sites/default/files/aces-lgbtq-plus.pdf
PDF,Profile (ACF Field),"Hill, Ashley Victoria (Field: cv_link)",https://maternalchild.uic.edu/wp-content/uploads/sites/614/2024/06/Hill_CV_UIC_2024.pdf,https://publichealth.uic.edu/profiles/hill-ashley/,371421.0,23.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Waterman, Fanta (Field: cv_link)",https://uofi.box.com/s/o785gfo3smx3bu6i0oot5zuyql1sskf2,https://publichealth.uic.edu/profiles/waterman-fanta/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Moore, Kayla T. (Field: cv_link)",https://uchicago.box.com/s/jov3knxxdp77bzji6yrvp90egmdnyg6p,https://publichealth.uic.edu/profiles/moore-kayla/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Florestal-Kevelier, Raphael D. (Field: cv_link)",https://uofi.box.com/s/w45pu3h1r5lvv9na07sk9mxa0mwbqcdi,https://publichealth.uic.edu/profiles/florestal-kevelier-raphael/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Amouei Torkmahalleh, Mehdi (Field: cv_link)",https://apps.sph.uic.edu/webdocs/pdf/profiles/mehdi-cv.pdf,https://publichealth.uic.edu/profiles/amouei-mehdi/,152733.0,7.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"Katumba, Angelo (Field: cv_link)",https://uofi.box.com/s/88nq8710cwr1uh8mwmwsfci7kgwu3ule,https://publichealth.uic.edu/profiles/katumba-angelo/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Harris, Zoë M. (Field: cv_link)",https://uofi.box.com/s/i011d359poq4knpjmsdrd4o8a9x1numn,https://publichealth.uic.edu/profiles/harris-zoe/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Harris, Zoë M. (Field: presentations)",https://uofi.box.com/s/svjt1ljb2avcg2s5noe7u6p64mw0br1c,https://publichealth.uic.edu/profiles/harris-zoe/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Reda, Domenic (Field: cv_link)",https://apps.sph.uic.edu/webdocs/pdf/profiles/reda-cv.pdf,https://publichealth.uic.edu/profiles/reda-domenic/,454866.0,45.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Lowry-Warnock, Amy (Field: about)",https://www.cdc.gov/obesity/downloads/guidelines_for_federal_concessions_and_vending_operations.pdf,https://publichealth.uic.edu/profiles/warnock-amy/,3508618.0,30.0,True,True,Tags detected via pdfminer3
Box,Profile (ACF Field),"Ma, Hong (Field: cv_link)",https://uofi.box.com/s/isz26swid2prhrk5n40x637cmp4tyi1d,https://publichealth.uic.edu/profiles/ma-hong/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Bacon, Zachary (Field: cv_link)",https://uofi.box.com/s/tdmokmf0yyngy6zgc1gx9pikueuuko4c,https://publichealth.uic.edu/profiles/bacon-zachary/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Lin, Yu Chen (Jimmy) (Field: cv_link)",https://uofi.box.com/s/k005g7a4wqpfdx8bfpyik68o992jds6r,https://publichealth.uic.edu/profiles/lin-yu-chen/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Grant, Alexis (Field: cv_link)",https://uofi.app.box.com/file/855340427676,https://publichealth.uic.edu/profiles/grant-alexis-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Bergeron, Nyahne (Field: cv_link)",https://uofi.box.com/s/qqrryhzev424531ttflyhomrzn1v6sk0,https://publichealth.uic.edu/profiles/bergeron-nyahne/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Kwok, Jennifer Helen (Field: cv_link)",https://www.jenniferkwok.com/s/JenniferKwok_CV.pdf,https://publichealth.uic.edu/profiles/kwok-jennifer/,250232.0,3.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Campbell, Rebecca Kramer (Field: cv_link)",https://uofi.box.com/s/ptwczdvklq9fa90r2zqhx7t58uv1hrez,https://publichealth.uic.edu/profiles/campbell-rebecca/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",http://www.cste.org/resource/resmgr/ps/ps2022/22-INJ-01_LEIFE.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: http://www.cste.org/resource/resmgr/ps/ps2022/22-INJ-01_LEIFE.pdf
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",https://cookcountypublichealth.org/wp-content/uploads/2021/10/Opioid-Epidemic-in-Suburban-Cook-County-Report.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: https://cookcountypublichealth.org/wp-content/uploads/2021/10/Opioid-Epidemic-in-Suburban-Cook-County-Report.pdf
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",https://cookcountypublichealth.org/wp-content/uploads/2021/09/2019-Joint-Report-Opioid_Deaths_CC_Final-Approved.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: https://cookcountypublichealth.org/wp-content/uploads/2021/09/2019-Joint-Report-Opioid_Deaths_CC_Final-Approved.pdf
PDF,Profile (ACF Field),"Holloway, Alfreda (Field: presentations)",https://cookcountypublichealth.org/wp-content/uploads/2020/09/2017_2018-Joint-Opioid-Brief.pdf,https://publichealth.uic.edu/profiles/alfreda-holloway/,,,,,Download failed: 403 Client Error: Forbidden for url: https://cookcountypublichealth.org/wp-content/uploads/2020/09/2017_2018-Joint-Opioid-Brief.pdf
Box,Profile (ACF Field),"Conroy, Lorraine M (Field: cv_link)",https://uofi.app.box.com/file/427582459388,https://publichealth.uic.edu/profiles/lorraine-conroy/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Buchanan, Susan (Field: cv_link)",https://uofi.box.com/s/nubirfm1vkfec4dnk9bgx3folrll8zbb,https://publichealth.uic.edu/profiles/susan-buchanan/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Muramatsu, Naoko (Field: cv_link)",https://uofi.box.com/s/9o7hchjotx6cpa5gkah6buf3k8uiiqte,https://publichealth.uic.edu/profiles/naoko-muramatsu/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Krishnan, Jerry A. (Field: cv_link)",https://publichealth.uic.edu/wp-content/uploads/sites/302/2024/01/Krishnan.CV_.2024.01.04.pdf,https://publichealth.uic.edu/profiles/jerry-krishnan/,,,,,Download failed: 404 Client Error: Not Found for url: https://publichealth.uic.edu/wp-content/uploads/sites/302/2024/01/Krishnan.CV_.2024.01.04.pdf
Box,Profile (ACF Field),"Hebert-Beirne, Jeni (Field: cv_link)",https://uofi.box.com/s/ml3soyy8lfj2i17ub3wpl7rj7alh66dr,https://publichealth.uic.edu/profiles/jeni-hebert-beirne/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Velonis, Alisa J (Field: cv_link)",https://uofi.box.com/s/qoyki0sjyinubfowdzjfse5qwvzc2q7c,https://publichealth.uic.edu/profiles/alisa-velonis/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Mackesy-Amiti, Mary Ellen (Field: cv_link)",https://uofi.box.com/s/50iul6uoxdm8xh55cnrwguixhc0ulwnt,https://publichealth.uic.edu/profiles/mary-ellen-mackesy-amiti/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Seweryn, Steven M (Field: cv_link)",https://uofi.box.com/s/413wvpimldy95q9ox3d5jenpxancejiu,https://publichealth.uic.edu/profiles/steven-seweryn/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Sietsema, Margaret (Field: cv_link)",https://uofi.app.box.com/file/1151596366666,https://publichealth.uic.edu/profiles/sietsema-margaret/,,,,,Skipped: Box link
PDF,Billboard (ACF Field),WHO brochure on HiAP (Field: external_url),https://iris.who.int/bitstream/handle/10665/272711/WHO-CED-PHE-SDH-18.1-eng.pdf?sequence=1,https://publichealth.uic.edu/?billboard=who-brochure-on-hiap,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Protected: Syllabus (Field: intro_text_body),https://me308-siow.class.uic.edu/wp-content/uploads/sites/783/2025/01/syllabus_vibration_s25.pdf,https://me308-siow.class.uic.edu/syllabus/,581114.0,5.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Protected: Syllabus (Field: intro_text_body),https://me308-siow.class.uic.edu/wp-content/uploads/sites/783/2025/01/HLC_syllabus_me308-siow_S25.pdf,https://me308-siow.class.uic.edu/syllabus/,270561.0,7.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),A Spring Wrap Up from IPCE Director Joseph Hoereth (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2025/01/2025.01.27-IMT-Community-Survey-Report-DRAFT-March18-2024-%E2%80%93-April-22-2024-filed.pdf,http://ipce.uic.edu/news-stories/a-spring-wrap-up-from-ipce-director-joseph-hoereth/,15867116.0,168.0,True,True,Tags detected via pdfminer3
Box,News (ACF Field),“COVID Conversations: A Public History project of Chicago’s History Corps” &#8211; A Civic Engagement Lunch Talk Follow-Up (Field: intro_text_body),https://uofi.box.com/s/gx1d3txpudgetx6i66ter3s213af5k4c,http://ipce.uic.edu/news-stories/covid-conversations-civic-engagement-lunch-talk-2023/,,,,,Skipped: Box link
Box,News (ACF Field),&#8220;Inclusive Open Government Data for Environmental Justice: Enhancing Community Stakeholders’ Voices” &#8211; A Civic Engagement Lunch Talk Follow-Up (Field: intro_text_body),https://uofi.box.com/s/e2k7cz0jk0foaw3iv536bxog6wc11l3n,http://ipce.uic.edu/news-stories/inclusive-open-government-data-for-ej/,,,,,Skipped: Box link
PDF,News (ACF Field),Community Focus Group Special Report for the Chicago Police Consent Decree Released (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-IMT-Special-Report-Focus-Groups-with-Black-and-Latino-Men-.._.pdf,http://ipce.uic.edu/news-stories/community-focus-group-special-report-for-the-chicago-police-consent-decree-released-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-IMT-Special-Report-Focus-Groups-with-Black-and-Latino-Men-.._.pdf
PDF,News (ACF Field),Community Focus Group Special Report for the Chicago Police Consent Decree Released (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-News-Release-Focus-Group-Report_final.pdf,http://ipce.uic.edu/news-stories/community-focus-group-special-report-for-the-chicago-police-consent-decree-released-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://cpdmonitoringteam.com/wp-content/uploads/2022/09/2022.09.01-News-Release-Focus-Group-Report_final.pdf
PDF,News (ACF Field),Master of City Design&#8217;s Chicago Charrette (Field: intro_text_body),https://www.jennapollack.com/_files/ugd/26ed5a_5c4abdef77384e72949c1d40d1028779.pdf,http://ipce.uic.edu/news-stories/master-of-city-designs-chicago-charrette/,113516980.0,110.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Social Autopsy of COVID-19 in Chicago: A Civic Engagement Lunch Talk Follow-Up (Field: intro_text_body),https://uofi.app.box.com/s/lkryglfwldi022glxcq0aggnvmfr0l01/file/890375119164,http://ipce.uic.edu/news-stories/social-autopsy-of-covid-19-in-chicago-a-civic-engagement-lunch-talk-follow-up/,,,,,Skipped: Box link
Box,News (ACF Field),UPPF 2022-23 Informational Sessions (Field: intro_text_body),https://uofi.box.com/s/gedwfv72077ppysfhzv3gc24vqne2p19,http://ipce.uic.edu/news-stories/uppf-2022-23-informational-sessions/,,,,,Skipped: Box link
Box,News (ACF Field),Climate Justice through a Circular Economy Event Follow-Up (Field: intro_text_body),https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fuofi.box.com%2Fs%2F7ekt1gknq93vc0dlvqdet4ujxx0dzx7d&amp;data=04%7C01%7Ccander71%40groute.uic.edu%7C53b1037a85594cdaa61a08d9092f5faa%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C637550921338079238%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=ktAiKbT9RCLm5a8rKWRTSlXPbkErsr12GjUGat8Iusk%3D&amp;reserved=0,http://ipce.uic.edu/news-stories/climate-justice/,,,,,Skipped: Box link
Box,News (ACF Field),Climate Justice through a Circular Economy Event Follow-Up (Field: intro_text_body),https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fuofi.box.com%2Fs%2Fuyllvdcbxgmb0njq8yloaaox8se7p0sd&amp;data=04%7C01%7Ccander71%40groute.uic.edu%7C53b1037a85594cdaa61a08d9092f5faa%7Ce202cd477a564baa99e3e3b71a7c77dd%7C0%7C0%7C637550921338079238%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=fVmnV7bFLV%2BEpeoA1f5AyzEXs17EFLb7eyyvactf6w0%3D&amp;reserved=0,http://ipce.uic.edu/news-stories/climate-justice/,,,,,Skipped: Box link
PDF,News (ACF Field),Seven Years after Shelby County V Holder (Field: intro_text_body),http://ipce.uic.edu/wp-content/uploads/sites/41/2020/10/Seven-Years-After-Shelby-County-v-Holder_IPCE.pdf,http://ipce.uic.edu/news-stories/seven-years-after-shelby-county-v-holder/,181955.0,12.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Community Survey Report for the Chicago Police Consent Decree Released (Field: intro_text_body),https://cpdmonitoringteam.com/wp-content/uploads/2020/08/2020_08_26-Community-Survey-Filed.pdf,http://ipce.uic.edu/news-stories/community-survey-report-for-the-chicago-police-consent-decree-released/,,,,,Download failed: 404 Client Error: Not Found for url: https://cpdmonitoringteam.com/wp-content/uploads/2020/08/2020_08_26-Community-Survey-Filed.pdf
PDF,News (ACF Field),A Chicago That Works For All &#8211; Initial Reflections on the CUE Equity Fellowship (Field: intro_text_body),https://53c551a8-4838-492d-8db1-97596b256886.filesusr.com/ugd/05f795_56e1136834f1486596b3f2a6c2a010d3.pdf,http://ipce.uic.edu/news-stories/a-chicago-that-works-for-all-initial-reflections-on-the-cue-equity-fellowship/,147459.0,3.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),2017-18 UPPF Alum wins Student Employment Essay Contest (Field: intro_text_body),https://studentemployment.uic.edu/wp-content/uploads/sites/27/2019/04/NSEW-2019-Publication-2.pdf,http://ipce.uic.edu/news-stories/2017-18-uppf-alum-wins-student-employment-essay-contest/,1609627.0,20.0,False,False,No tags detected via pdfminer3
PDF,News (ACF Field),IPCE publishes Consent Decree Community Engagement Report (Field: intro_text_body),https://www.chicagopoliceconsentdecree.org/Page-Attachments/CPCD/Resources/Community/IPCE-Community-Engagement-Report_Final.pdf,http://ipce.uic.edu/news-stories/ipce-publishes-consent-decree-community-engagement-report/,3261457.0,241.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),"March 25, 2019 &#8211; Dr. Yao is inducted into Medical and Biological Engineering Elite (Field: intro_text_body)",https://aimbe.org/press/Yao-COF-4145.pdf,http://yaolab.bioe.uic.edu/news-stories/march-25-2019-dr-yao-is-inducted-into-medical-and-biological-engineering-elite/,,,,,Download failed: 403 Client Error: Forbidden for url: https://aimbe.org/press/Yao-COF-4145.pdf
Box,Page (ACF Field),PhD in Statistics (Field: intro_text_body),https://uofi.app.box.com/s/9tvsaqgiqpnffvps2095hnx61b4forta,https://mscs.uic.edu/graduate/degree-programs/phd-in-statistics/,,,,,Skipped: Box link
Box,Page (ACF Field),Handbooks (Field: intro_text_body),https://uofi.box.com/s/9tvsaqgiqpnffvps2095hnx61b4forta,https://mscs.uic.edu/graduate/forms-2/,,,,,Skipped: Box link
Box,Page (ACF Field),Handbooks (Field: intro_text_body),https://uofi.box.com/s/lfg85zsdn6lxet614h62efylzuabmtiq,https://mscs.uic.edu/graduate/forms-2/,,,,,Skipped: Box link
Box,Page (ACF Field),MS Degree (Field: intro_text_body),https://uofi.app.box.com/s/bblc253pu8ogmsiyjlyddd5pyf5eyxyz,https://mscs.uic.edu/graduate/current-students/ms-degree/,,,,,Skipped: Box link
Box,Page (ACF Field),Defense Paperwork (Field: intro_text_body),https://uofi.app.box.com/s/lqoh181bm8ihv0thg8cbb9f1ozdspn1f,https://mscs.uic.edu/graduate/current-students/graduation/defense-paperwork/,,,,,Skipped: Box link
Box,Page (ACF Field),Preliminary Exams (Field: intro_text_body),https://uofi.app.box.com/file/1625849161263?s=9tvsaqgiqpnffvps2095hnx61b4forta,https://mscs.uic.edu/graduate/current-students/preliminary-exams/,,,,,Skipped: Box link
PDF,Page (ACF Field),Qualifying Exams (Field: intro_text_body),https://www.math.uic.edu/graduate/current/forms/courses/GraduateHandbook.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/qualifying-exams-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Qualifying Exams (Field: intro_text_body),http://www.math.uic.edu/graduate/forms/exams/ms%20exam%20regrade%20policy.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/qualifying-exams-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Qualifying Exams (Field: intro_text_body),http://www.math.uic.edu/graduate/forms/courses/GraduateHandbook.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/qualifying-exams-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Transfer within UIC (Field: intro_text_body),http://grad.uic.edu/sites/default/files/legacy/pdfs/grad_appt.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/transfer-within-uic/,,,,,Download failed: 404 Client Error: Not Found for url: https://grad.uic.edu/sites/default/files/legacy/pdfs/grad_appt.pdf
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/rjc1xib18gtvdholg7vz7c9ifmts2pu1,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/u4t57apymwjyo5g7wdivnq6b45zbcsel,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/mubwm7ldwny4cv3wr3yxrg0l1abhrhqc,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/bblc253pu8ogmsiyjlyddd5pyf5eyxyz,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/zbeby2gfrunofa94pyct70nr197uyzq7,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/dh9ul3xy1yko1yi7ryk73090jn1uy84z,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/pg83dspqmwrv478foxn2yr5nxdvde4v8,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/yixfutr6hwaxcbptktnf0qize52giocw,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/qn3hk5g44snzpqss7ohgnpqma8fluxah,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/h50zkac7wiwg38wjwyx5v7v62il5cjo3,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/d0178bmmc8wxqsbcefkidbm5gsxjetaz,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/wvv9dpgrljss52rz8fzk5hw8qy8rlepb,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/25n5uswwa0owu15gv2m8tu1iqprk7mc2,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/l5pel99r7zvw2nmizvz1nc549369wje0,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/cx9jutu34ldsdtuts1xvet9bqtkp7h6k,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/sios94cc4z9f0zfim5ghs0y3cygcl7cm,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/qu58uy4ronm5yelq2u8b9q5tnmd66dfd,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/3dskc0r6aj64akatxlk5lkzomgldo4dp,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.app.box.com/s/ttg6w9dsx8bnawif4fn4tjlobvoazj0t,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.app.box.com/file/845283409815?s=bblc253pu8ogmsiyjlyddd5pyf5eyxyz,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/bs04zfv3ogktm389w1pe48nay5706j1h,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Enrollment Polices &amp; TA/RA Contracts (Field: intro_text_body),https://uofi.app.box.com/s/qu58uy4ronm5yelq2u8b9q5tnmd66dfd,https://mscs.uic.edu/graduate/current-students/academic-support/,,,,,Skipped: Box link
Box,Page (ACF Field),Assistantships and Other Funding (Field: intro_text_body),https://uofi.box.com/s/zvtu3aieqx9gmwdgp4tf80i8mferi3vs,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/assistantships/,,,,,Skipped: Box link
PDF,News (ACF Field),Vali Siadat Receives AMS Impact Award (Field: intro_text_body),http://www.ams.org/journals/notices/201905/rnoti-p733.pdf,https://mscs.uic.edu/news-stories/vali-siadat-receives-ams-impact-award/,2065291.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Christopher Perez in AMS Notices (Field: intro_text_body),http://www.ams.org/journals/notices/201808/rnoti-p939.pdf,https://mscs.uic.edu/news-stories/christopher-perez-in-ams-notices/,2885272.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Math Computing Lab featured in AMS Notices (Field: intro_text_body),https://www.ams.org/journals/notices/201809/rnoti-p1088.pdf,https://mscs.uic.edu/news-stories/math-computing-lab-featured-in-ams-notices/,1087100.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Midwest PDE seminar at UIC Sept 14-17 (Field: intro_text_body),http://homepages.math.uic.edu/~hongy/MWPDE%202017%20Schedule-2.pdf,https://mscs.uic.edu/news-stories/midwest-pde-seminar-at-uic-sept-14-17/,174410.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Avi Wigderson to give UIC Distinguished Lectures (Field: intro_text_body),http://www.math.uic.edu/~marker/aviposter.pdf,https://mscs.uic.edu/news-stories/avi-wigderson-to-give-uic-distinguished-lectures/,307825.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Michael Hopkins gives MSCS Distinguished Lectures March 5-7 (Field: intro_text_body),http://www.math.uic.edu/dls/HopkinsMarch567poster.pdf,https://mscs.uic.edu/news-stories/michael-hopkins-gives-mscs-distinguished-lectures-march-5-7/,,,,,Download failed: Not a PDF based on Content-Type
Box,Event (ACF Field),Award for Graduate Research (AGR) Spring 2020 Applications Due (Field: description),https://uofi.app.box.com/s/4octcvedfurg46la6nurx558q2xng6dz,https://mscs.uic.edu/events/agr-spring-2020-applications-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Dean’s Scholar Fellowship 2020 Applications Due (Field: description),https://uofi.app.box.com/s/i60r2sm7ghtbabwbs7tiu9oezdc3ho6u,https://mscs.uic.edu/events/ds-2020-applications-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Spring 2020 TA Schedule Requests Due (Field: description),https://uofi.app.box.com/s/koehxxnjilqfzdtthx6f9g9qkgvnc7yo,https://mscs.uic.edu/events/spring-2020-ta-schedule-requests-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Provost’s Graduate Research Award 2019 Applications Due (Field: description),https://uofi.box.com/s/ibbr1qq1yabeysfps4geoevn5brosyol,https://mscs.uic.edu/events/pgra-2019-applications-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Provost’s Graduate Research Award 2019 Applications Due (Field: description),https://uofi.box.com/s/go1jduvebcjsgk9hcsek4wed4u0yb0c8,https://mscs.uic.edu/events/pgra-2019-applications-due/,,,,,Skipped: Box link
Box,Page (ACF Field),PhD in Statistics (Field: intro_text_body),https://uofi.app.box.com/s/9tvsaqgiqpnffvps2095hnx61b4forta,https://mscs.uic.edu/graduate/degree-programs/phd-in-statistics/,,,,,Skipped: Box link
Box,Page (ACF Field),Handbooks (Field: intro_text_body),https://uofi.box.com/s/9tvsaqgiqpnffvps2095hnx61b4forta,https://mscs.uic.edu/graduate/forms-2/,,,,,Skipped: Box link
Box,Page (ACF Field),Handbooks (Field: intro_text_body),https://uofi.box.com/s/lfg85zsdn6lxet614h62efylzuabmtiq,https://mscs.uic.edu/graduate/forms-2/,,,,,Skipped: Box link
Box,Page (ACF Field),MS Degree (Field: intro_text_body),https://uofi.app.box.com/s/bblc253pu8ogmsiyjlyddd5pyf5eyxyz,https://mscs.uic.edu/graduate/current-students/ms-degree/,,,,,Skipped: Box link
Box,Page (ACF Field),Defense Paperwork (Field: intro_text_body),https://uofi.app.box.com/s/lqoh181bm8ihv0thg8cbb9f1ozdspn1f,https://mscs.uic.edu/graduate/current-students/graduation/defense-paperwork/,,,,,Skipped: Box link
Box,Page (ACF Field),Preliminary Exams (Field: intro_text_body),https://uofi.app.box.com/file/1625849161263?s=9tvsaqgiqpnffvps2095hnx61b4forta,https://mscs.uic.edu/graduate/current-students/preliminary-exams/,,,,,Skipped: Box link
PDF,Page (ACF Field),Qualifying Exams (Field: intro_text_body),https://www.math.uic.edu/graduate/current/forms/courses/GraduateHandbook.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/qualifying-exams-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Qualifying Exams (Field: intro_text_body),http://www.math.uic.edu/graduate/forms/exams/ms%20exam%20regrade%20policy.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/qualifying-exams-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Qualifying Exams (Field: intro_text_body),http://www.math.uic.edu/graduate/forms/courses/GraduateHandbook.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/qualifying-exams-2/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Transfer within UIC (Field: intro_text_body),http://grad.uic.edu/sites/default/files/legacy/pdfs/grad_appt.pdf,https://mscs.uic.edu/graduate/admissions-and-financial-aid/transfer-within-uic/,,,,,Download failed: 404 Client Error: Not Found for url: https://grad.uic.edu/sites/default/files/legacy/pdfs/grad_appt.pdf
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/rjc1xib18gtvdholg7vz7c9ifmts2pu1,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/u4t57apymwjyo5g7wdivnq6b45zbcsel,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/mubwm7ldwny4cv3wr3yxrg0l1abhrhqc,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/bblc253pu8ogmsiyjlyddd5pyf5eyxyz,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/zbeby2gfrunofa94pyct70nr197uyzq7,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/dh9ul3xy1yko1yi7ryk73090jn1uy84z,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/pg83dspqmwrv478foxn2yr5nxdvde4v8,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/yixfutr6hwaxcbptktnf0qize52giocw,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/qn3hk5g44snzpqss7ohgnpqma8fluxah,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/h50zkac7wiwg38wjwyx5v7v62il5cjo3,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/d0178bmmc8wxqsbcefkidbm5gsxjetaz,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/wvv9dpgrljss52rz8fzk5hw8qy8rlepb,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/25n5uswwa0owu15gv2m8tu1iqprk7mc2,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/l5pel99r7zvw2nmizvz1nc549369wje0,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/cx9jutu34ldsdtuts1xvet9bqtkp7h6k,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/sios94cc4z9f0zfim5ghs0y3cygcl7cm,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/qu58uy4ronm5yelq2u8b9q5tnmd66dfd,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/3dskc0r6aj64akatxlk5lkzomgldo4dp,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.app.box.com/s/ttg6w9dsx8bnawif4fn4tjlobvoazj0t,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.app.box.com/file/845283409815?s=bblc253pu8ogmsiyjlyddd5pyf5eyxyz,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Forms (Field: intro_text_body),https://uofi.box.com/s/bs04zfv3ogktm389w1pe48nay5706j1h,https://mscs.uic.edu/graduate/forms/,,,,,Skipped: Box link
Box,Page (ACF Field),Enrollment Polices &amp; TA/RA Contracts (Field: intro_text_body),https://uofi.app.box.com/s/qu58uy4ronm5yelq2u8b9q5tnmd66dfd,https://mscs.uic.edu/graduate/current-students/academic-support/,,,,,Skipped: Box link
Box,Page (ACF Field),Assistantships and Other Funding (Field: intro_text_body),https://uofi.box.com/s/zvtu3aieqx9gmwdgp4tf80i8mferi3vs,https://mscs.uic.edu/graduate/admissions-and-financial-aid/financial-aid/assistantships/,,,,,Skipped: Box link
PDF,News (ACF Field),Vali Siadat Receives AMS Impact Award (Field: intro_text_body),http://www.ams.org/journals/notices/201905/rnoti-p733.pdf,https://mscs.uic.edu/news-stories/vali-siadat-receives-ams-impact-award/,2065291.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Christopher Perez in AMS Notices (Field: intro_text_body),http://www.ams.org/journals/notices/201808/rnoti-p939.pdf,https://mscs.uic.edu/news-stories/christopher-perez-in-ams-notices/,2885272.0,4.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Math Computing Lab featured in AMS Notices (Field: intro_text_body),https://www.ams.org/journals/notices/201809/rnoti-p1088.pdf,https://mscs.uic.edu/news-stories/math-computing-lab-featured-in-ams-notices/,1087100.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Midwest PDE seminar at UIC Sept 14-17 (Field: intro_text_body),http://homepages.math.uic.edu/~hongy/MWPDE%202017%20Schedule-2.pdf,https://mscs.uic.edu/news-stories/midwest-pde-seminar-at-uic-sept-14-17/,174410.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Avi Wigderson to give UIC Distinguished Lectures (Field: intro_text_body),http://www.math.uic.edu/~marker/aviposter.pdf,https://mscs.uic.edu/news-stories/avi-wigderson-to-give-uic-distinguished-lectures/,307825.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Michael Hopkins gives MSCS Distinguished Lectures March 5-7 (Field: intro_text_body),http://www.math.uic.edu/dls/HopkinsMarch567poster.pdf,https://mscs.uic.edu/news-stories/michael-hopkins-gives-mscs-distinguished-lectures-march-5-7/,,,,,Download failed: Not a PDF based on Content-Type
Box,Event (ACF Field),Award for Graduate Research (AGR) Spring 2020 Applications Due (Field: description),https://uofi.app.box.com/s/4octcvedfurg46la6nurx558q2xng6dz,https://mscs.uic.edu/events/agr-spring-2020-applications-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Dean’s Scholar Fellowship 2020 Applications Due (Field: description),https://uofi.app.box.com/s/i60r2sm7ghtbabwbs7tiu9oezdc3ho6u,https://mscs.uic.edu/events/ds-2020-applications-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Spring 2020 TA Schedule Requests Due (Field: description),https://uofi.app.box.com/s/koehxxnjilqfzdtthx6f9g9qkgvnc7yo,https://mscs.uic.edu/events/spring-2020-ta-schedule-requests-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Provost’s Graduate Research Award 2019 Applications Due (Field: description),https://uofi.box.com/s/ibbr1qq1yabeysfps4geoevn5brosyol,https://mscs.uic.edu/events/pgra-2019-applications-due/,,,,,Skipped: Box link
Box,Event (ACF Field),Provost’s Graduate Research Award 2019 Applications Due (Field: description),https://uofi.box.com/s/go1jduvebcjsgk9hcsek4wed4u0yb0c8,https://mscs.uic.edu/events/pgra-2019-applications-due/,,,,,Skipped: Box link
PDF,Page (ACF Field),TA Appointment Guidelines (Field: intro_text_body),https://phil.uic.edu/wp-content/uploads/sites/281/2021/05/TA-Appointment-Guidelines.pdf,https://phil.uic.edu/graduate/graduate-studies/ta-appointment-guidelines/,18059.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),LAS Department Travel Award (Field: intro_text_body),http://www.las.uic.edu/docs/default-source/pdf-forms/las_graduatestudenttravelawardapp.pdf?sfvrsn=4,https://phil.uic.edu/las-department-travel-award-instructions/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Graduate Handbook (Field: intro_text_body),https://phil.uic.edu/wp-content/uploads/sites/281/2020/08/Graduate-Handbook-6.20.pdf,https://phil.uic.edu/graduate/graduate-studies/graduate-handbook/,1671084.0,28.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Hadisi Wins Herz Prize (Field: intro_text_body),http://northamericankantsociety.onefireplace.org/Resources/Documents/Newsletters%202011-2/NAKS%20Newsletter-Sept.%2012.pdf,https://phil.uic.edu/news-stories/hadisi-wins-herz-prize/,,,,,Download failed: 404 Client Error: Not Found for url: http://northamericankantsociety.onefireplace.org/Resources/Documents/Newsletters%202011-2/NAKS%20Newsletter-Sept.%2012.pdf
PDF,Page (ACF Field),TA Appointment Guidelines (Field: intro_text_body),https://phil.uic.edu/wp-content/uploads/sites/281/2021/05/TA-Appointment-Guidelines.pdf,https://phil.uic.edu/graduate/graduate-studies/ta-appointment-guidelines/,18059.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),LAS Department Travel Award (Field: intro_text_body),http://www.las.uic.edu/docs/default-source/pdf-forms/las_graduatestudenttravelawardapp.pdf?sfvrsn=4,https://phil.uic.edu/las-department-travel-award-instructions/,,,,,Skipped: Not a PDF link
PDF,Page (ACF Field),Graduate Handbook (Field: intro_text_body),https://phil.uic.edu/wp-content/uploads/sites/281/2020/08/Graduate-Handbook-6.20.pdf,https://phil.uic.edu/graduate/graduate-studies/graduate-handbook/,1671084.0,28.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Hadisi Wins Herz Prize (Field: intro_text_body),http://northamericankantsociety.onefireplace.org/Resources/Documents/Newsletters%202011-2/NAKS%20Newsletter-Sept.%2012.pdf,https://phil.uic.edu/news-stories/hadisi-wins-herz-prize/,,,,,Download failed: 404 Client Error: Not Found for url: http://northamericankantsociety.onefireplace.org/Resources/Documents/Newsletters%202011-2/NAKS%20Newsletter-Sept.%2012.pdf
PDF,Page (ACF Field),Value Capture Coordination Best Practices and Case Studies for Transit Capital Projects (Field: intro_text_body),http://www.cutr.usf.edu/wp-content/uploads/2014/05/CUTR-Webcast-Handout-7.24.14.pdf,https://utc.uic.edu/news-2/webinars/value-capture-coordination-best-practices-and-case-studies-for-transit-capital-projects/,864333.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CUTR Webinar: Pedestrian/Bicyclist Warning Devices and Signs at Highway-Rail and Pathway-Rail Grade Crossings (Field: intro_text_body),http://www.cutr.usf.edu/wp-content/uploads/2014/06/CUTR-Webcast-Handout-6.12.14.pdf,https://utc.uic.edu/news-2/webinars/cutr-webinar-pedestrian-bicyclist-warning-devices-and-signs-at-highway-rail-and-pathway-rail-grade-crossings/,703467.0,28.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Sustainability Metrics and Mapping Tool for Environmental Assessment of Rail Infrastructure in Illinois (Field: intro_text_body),https://uofi.box.com/s/jyfd3j9zq0r5qaw52tnkrtl74ciw8oht,https://utc.uic.edu/news-2/webinars/sustainability-metrics-and-mapping-tool-for-environmental-assessment-of-rail-infrastructure-in-illinois-2/,,,,,Skipped: Box link
Box,Page (ACF Field),Krambles Award Archive (Field: intro_text_body),https://uofi.box.com/s/pjwriyho0f0sw3gi7l68fjwqexya101w,https://utc.uic.edu/engage/scholarships-and-funding/krambles-award/krambles-award-archive/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jylqdxnkroa3n72pktm9xx8ef2ff2bvo,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jo56pqnzvgpxlmply04h3hb6lfw4kjy2,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/g5y0u87cn0tppicfw1by6ksb0olygmwj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/himupslo4vi9j8ey59fskib0ycc94sk2,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ragncyf3cm0bktqmbhvcz6m3ton4zdt5,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/w63myvmd0ga4yqkbpyltacb63nw7kr4s,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/iyxq7dtidf115lyy3d950tlv3aalkdsk,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jxidwgwz35jn2hlecvmymi1umhdtqvvd,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/qpxu6yc8eyoxg8xw23ojez9hrjbil31c,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/8jxo1tqjjoxly7ngwv7e6ajgey4gtbn8,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vp9f5tqtsnthidozxylfytrz5dnwgoyj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/i0lfgf2qhhlicum6dr96jvpg6s5p6zj2,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/kzbz1mpuqweq0meyzjhv7j332a55x6hf,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vsgdu0urs1dsd810ehpu2p8inrlw7x99,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vetcfnlxt5irby7emcptrojkytslbjld,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/4pxd39iq74a5b6w29pvnn8vu9p483g2s,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.app.box.com/s/rcj10t5te55tb9d3c07viwkdr5splvyu,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/82vhr9hxbmghoq5vyptn4fdod65pki62,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/r1jawybzlathobux05okw1263mbsd2xs,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/e1s8f7k3vp7vr9u15xer26yc7t5ezioz,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/mm781d4226954fme0nkdsmbrkhb4tul1,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/blamddx7zctdsunjjnu7xdlrfrl3bbs8,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vvw4vp1mqomh0es9ex32g0c6vx2cb0qj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/4secwatt8yrlu15db9ceugujska6pp7c,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/52ljoexwxlt1hd16xdfedoiiie8a0xkq,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/i4vpskp1kcj9oz2powiviojyhrh591kj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/3w9ltp5gtflj4mvkd7cxbfm5scvln3tn,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ek7p062iheix0qiqfxssfed549s0bgfm,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jpjhr0mx6fi6h1z2vmmabzitfjqitots,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.app.box.com/s/acxs08gdno82c4486fe33y7nx91r1rhq,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/lk6uk5gv77oflhbzlex6q0vbbkne9cwz,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/z2jqltyqjv9boiz2v16716prii5lurf5,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ql7553idnf8pba79ig3gdcymwr2u802g,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ms98ph1vjovuc6mqrzbcn8sdfl9brl08,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/2li3jfca4uimbg7ck8w1z50t701d2dpq,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/f4hsm41mr6yeht5cyo3o67xj6y83ntj8,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/kempxpxwy4ew1znfud8kijm75bgo2mf6,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/ygjomu8wpjhn7cd14yu2744x87gjvbxj,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/0eijbmjsql7l7clc68tjq6t1wh4i8rb2,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/gjga5amm7b6k2bb06kq9cl4nvrhy72l3,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/ehrin6f1yqpe9g9oujnfjdbnu78zl6a9,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/obdtf77mpbqgkg5w7bhy4uc0vz2skq8r,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/6keekhxbqfoy2qll3mkbd8dbve317530,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/y7dp3vb9ahyhx06a1wbybejfrx98h4iq,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/be0efpe10xyk7p5j2h5g78cb7jxb0mgc,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/9c8wwncgk8ulwplo66fflye3kycbrw32,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/3bqdu7iyka64wclluqmov7onff97h825,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/ghi08zoypxnpcw47g913t2324a943pla,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/03l0pq82574f204bly2iboaeob4alin1,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/aysobo5iqa1cdcrie1u0medszv8h4sp7,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/1eahgxt89mjphp8p66463szy2p8qedm5,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/mgd7uw63bagoulnb99bdwuepdy5nc7it,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/cp25yycn00jsbihey7okeqzn0qo7o9jw,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/0alzslgclfqe1wrdngf1eaajvzdqe53c,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/xj7jj936tcz9e6dge8tjfsswfzqjrlje,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/n1vjj76bkm60ncqq3t9lvm3ypck5idl7,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/dscwwsrct8e9hon16tsvr7r7oaxk1sov,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/p9au2pzfsayz4r4g55x7ikug97x8sw41,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/oqcp9fop0j8ioteyiqjxfifjcgxwy54j,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/8hqzoz5znoa4umydo0w98wnlqfi20p4f,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/n237j20shxz3s65k2gynbq5058d8e2im,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,News (ACF Field),Argentinian Truckers Union Representatives Gain Insight Into Freight Challenges and Developments (Field: intro_text_body),https://uofi.box.com/s/bd9tojecth82mv1tglbb649wxpas7ibl,https://utc.uic.edu/news-stories/argentinian-truckers-union-representatives-gain-insight-into-freight-challenges-and-developments/,,,,,Skipped: Box link
Box,News (ACF Field),UTC Contributes to 65th Annual Transportation Research Forum (Field: intro_text_body),https://uofi.box.com/s/9ag5hw3p01cua2xaop2nesj2150h4ms9,https://utc.uic.edu/news-stories/utc-contributes-to-65th-annual-transportation-research-forum/,,,,,Skipped: Box link
Box,News (ACF Field),UTC Contributes to 65th Annual Transportation Research Forum (Field: intro_text_body),https://uofi.box.com/s/8nhhj98i37o340ysm6toze1wyx11hhht,https://utc.uic.edu/news-stories/utc-contributes-to-65th-annual-transportation-research-forum/,,,,,Skipped: Box link
Box,News (ACF Field),RTA and CMAP discuss future of paratransit at Urban Transportation Center seminar (Field: intro_text_body),https://uofi.app.box.com/s/9zz6sgz0saymbi1frc7nx93p4pl60mgq,https://utc.uic.edu/news-stories/rta-and-cmap-discuss-future-of-paratransit-at-urban-transportation-center-seminar/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2022 Seminar Series (Field: intro_text_body),https://uofi.app.box.com/s/fg5qfcic8ia8jmhm8il279anr2xo6ipx,https://utc.uic.edu/news-stories/archived-utc-fall-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2022 Seminar Series (Field: intro_text_body),https://uofi.app.box.com/s/9g6rdnytixxydokotwytblaqkz6qh8z6,https://utc.uic.edu/news-stories/archived-utc-fall-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2022 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/pm7xsglyen823hp3evilyo7n0njcyq7q,https://utc.uic.edu/news-stories/archived-utc-fall-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),2022 Transportation and Mobility Report to Help Shape Future Travel Behavior (Field: intro_text_body),https://uofi.box.com/s/7k263doohfdm86jsrz8jsqwfid2mqzsj,https://utc.uic.edu/news-stories/2022-transportation-and-mobility-report-to-help-shape-future-travel-behavior/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2022 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/2q7ir0r7x4wiocqrnh1f2f3wwk3p0g2p,https://utc.uic.edu/news-stories/archived-utc-spring-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2022 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/hcwhq534ztw8w8s0ns2hc4a5zriw58vo,https://utc.uic.edu/news-stories/archived-utc-spring-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/q5rhdsmhjumr1nqjo1qybuwi59g0pkdq,https://utc.uic.edu/news-stories/archived-utc-fall-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/hqr5162s3zm74wf1s46bwczvbnqro5lx,https://utc.uic.edu/news-stories/archived-utc-fall-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/nqwaw9hdppgo8hij6qev5kauxqs5ompt,https://utc.uic.edu/news-stories/archived-utc-spring-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/ioscj8pfhgrhhklqrokwovx6cclo5gez,https://utc.uic.edu/news-stories/archived-utc-spring-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/fujivstdz47v8rcaetsyjo7v4potcb42,https://utc.uic.edu/news-stories/archived-utc-spring-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),What’s Down the Line: Public Transit in a Post-Pandemic Chicago (Field: intro_text_body),https://uofi.box.com/s/c82ys05po1szn8g5zmmkobkef12ojyar,https://utc.uic.edu/news-stories/whats-down-the-line-public-transit-in-a-post-pandemic-chicago/,,,,,Skipped: Box link
Box,News (ACF Field),NuRail By The Numbers: 2012 to 2020 (Field: intro_text_body),https://uofi.box.com/s/ci2fk4rsph7nj13t1wogtxcyg27qncqq,https://utc.uic.edu/news-stories/nurail-by-the-numbers-2012-to-2020/,,,,,Skipped: Box link
Box,News (ACF Field),Analysis of Supply and Demand for Public Transit Availability to Chicago-Area  Healthcare Facilities Results in Next Steps on Improving Access for Disadvantaged (Field: intro_text_body),https://uofi.app.box.com/s/6j20hdow0mlbrjwwivodslflcgehh483,https://utc.uic.edu/news-stories/analysis-of-supply-and-demand-for-public-transit-availability-to-chicago-area-healthcare-facilities-results-in-next-steps-on-improving-access-for-disadvantaged/,,,,,Skipped: Box link
Box,News (ACF Field),UTC November 19 Audio and Visual Recordings (Field: intro_text_body),https://uofi.box.com/s/xem6lj84bif1azft21kwzp0ife752bkv,https://utc.uic.edu/news-stories/utc-november-19-audio-and-visual-recordings/,,,,,Skipped: Box link
Box,News (ACF Field),"Quiet Zones and Site Refinements Can Help Alleviate Challenges  Borne by Rail Grade Crossings in Two South Chicago Suburbs, Study Says (Field: intro_text_body)",https://uofi.app.box.com/s/phef8w93xcezq0b9a799gz0e34ttx4kc,https://utc.uic.edu/news-stories/quiet-zones-and-site-refinements-can-help-alleviate-challenges-borne-by-rail-grade-crossings-in-two-south-chicago-suburbs-study-says/,,,,,Skipped: Box link
Box,News (ACF Field),UTC October 15 Seminar Series Audio and Visual Recordings (Field: intro_text_body),https://uofi.box.com/s/sh7evnah3z4kpm5my0xfub80vh1rg6vs,https://utc.uic.edu/news-stories/utc-october-15-seminar-series-audio-and-visual-recordings/,,,,,Skipped: Box link
Box,News (ACF Field),UTC September 17 Seminar Series Audio and Visual Recordings (Field: intro_text_body),https://uofi.app.box.com/s/8gwikgixs27b5ji4fkeojx4mt7qry4q6,https://utc.uic.edu/news-stories/utc-september-17-seminar-series-audio-and-visual-recordings/,,,,,Skipped: Box link
PDF,News (ACF Field),Dr. Sriraj Featured in &#8220;The Mobility Lines Podcast&#8221; (Field: intro_text_body),https://nationalcenterformobilitymanagement.org/wp-content/uploads/2020/07/Statewide-Mobility-Management-Factors-Affecting-the-Creation-adn-Success-of-Networks.pdf,https://utc.uic.edu/news-stories/dr-sriraj-featured-in-the-mobility-lines-podcast/,1058858.0,28.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Is Traffic Increasing with Declining Population? Illinois and the Chicago Area (Field: intro_text_body),https://uofi.app.box.com/s/soex2qv8jtzjqp68sfbivxb9hv8tki9f,https://utc.uic.edu/news-stories/is-traffic-increasing-with-declining-population-illinois-and-the-chicago-area/,,,,,Skipped: Box link
Box,News (ACF Field),Micromobility Grows Up: Lessons on Scooters and Bikeshare in Chicago and Around the Country (Field: intro_text_body),https://uofi.app.box.com/s/ssmwe2e8dxcq15mnioxl3jq5l1uyio1w,https://utc.uic.edu/news-stories/micromobility-grows-up-lessons-on-scooters-and-bikeshare-in-chicago-and-around-the-country/,,,,,Skipped: Box link
PDF,News (ACF Field),Incremental Approach May Have Given Green Light to Proposed 1990’s Chicago Central Area Circulator Project (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Central-Area-Circulation-History-Final-Version-Reduced.pdf,https://utc.uic.edu/news-stories/incremental-approach-may-have-given-green-light-to-proposed-1990s-chicago-central-area-circulator-project-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Central-Area-Circulation-History-Final-Version-Reduced.pdf
Box,News (ACF Field),IDOT Employs Innovative Approach to Identify Public Priorities (Field: intro_text_body),https://uofi.app.box.com/s/j2qqzz2chj86w6kpwi9sxkow6deej4kd,https://utc.uic.edu/news-stories/idot-employs-innovative-approach-to-identify-public-priorities/,,,,,Skipped: Box link
PDF,News (ACF Field),"Shared Vision and Mission, Consistent Measurement System Among Key Elements for Successful Integration of Regional Transportation Resources (Field: intro_text_body)",https://utc.uic.edu/wp-content/uploads/Integration-of-Modes-Report-Final-July-2017.pdf,https://utc.uic.edu/news-stories/shared-vision-and-mission-consistent-measurement-system-among-key-elements-for-successful-integration-of-regional-transportation-resources/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Integration-of-Modes-Report-Final-July-2017.pdf
PDF,News (ACF Field),Alumni Feature Profile: Takanori Sakai (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Logistics-Chain-Modeling-for-Urban-Freight-Paper.pdf,https://utc.uic.edu/news-stories/alumni-feature-profile-takanori-sakai/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Logistics-Chain-Modeling-for-Urban-Freight-Paper.pdf
Box,News (ACF Field),"UIC Students Develop Strategic Transit Oriented Development Plans to Capture Economic Benefits, Improve Vibrancy of Two CTA Rapid Transit Stations (Field: intro_text_body)",https://uofi.box.com/s/gcu80j3n4bhm8t6wg45ihjkbfekgx70f,https://utc.uic.edu/news-stories/uic-students-develop-strategic-transit-oriented-development-plans-to-capture-economic-benefits-improve-vibrancy-of-two-cta-rapid-transit-stations-3/,,,,,Skipped: Box link
PDF,News (ACF Field),Special Presentation From CMAP’s Joseph Szabo (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Power_Unified_Region_-12_1_16.pdf,https://utc.uic.edu/news-stories/special-presentation-from-cmaps-joseph-szabo/,928562.0,12.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Special Presentation From CMAP’s Joseph Szabo (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Making-a-Plan-for-our-Regioin-UTC-12.1.2016-JG.pdf,https://utc.uic.edu/news-stories/special-presentation-from-cmaps-joseph-szabo/,651638.0,22.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Alumni Feature Profile: Anthony Grande (Field: intro_text_body),https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/approved_land_use_plan_11_10_2015.pdf,https://utc.uic.edu/news-stories/alumni-profile-anthony-grande/,,,,,Download failed: 520 Server Error: <none> for url: https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/approved_land_use_plan_11_10_2015.pdf
PDF,News (ACF Field),Alumni Feature Profile: Anthony Grande (Field: intro_text_body),https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/unalaska_comprehensive_plan_adopted_02-22-2011.pdf,https://utc.uic.edu/news-stories/alumni-profile-anthony-grande/,,,,,Download failed: 520 Server Error: <none> for url: https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/unalaska_comprehensive_plan_adopted_02-22-2011.pdf
Box,News (ACF Field),"Integrated Technology, Innovative Services, Changes in Policy &amp; Funding Critical to Increasing Mobility in Metropolitan Chicago (Field: intro_text_body)",https://uofi.app.box.com/s/idofceks35f000tvlup8va1l320fu5wu,https://utc.uic.edu/news-stories/integrated-technology-innovative-services-changes-in-policy-funding-critical-to-increasing-mobility-in-metropolitan-chicago-2/,,,,,Skipped: Box link
PDF,Page (ACF Field),Value Capture Coordination Best Practices and Case Studies for Transit Capital Projects (Field: intro_text_body),http://www.cutr.usf.edu/wp-content/uploads/2014/05/CUTR-Webcast-Handout-7.24.14.pdf,https://utc.uic.edu/news-2/webinars/value-capture-coordination-best-practices-and-case-studies-for-transit-capital-projects/,864333.0,15.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),CUTR Webinar: Pedestrian/Bicyclist Warning Devices and Signs at Highway-Rail and Pathway-Rail Grade Crossings (Field: intro_text_body),http://www.cutr.usf.edu/wp-content/uploads/2014/06/CUTR-Webcast-Handout-6.12.14.pdf,https://utc.uic.edu/news-2/webinars/cutr-webinar-pedestrian-bicyclist-warning-devices-and-signs-at-highway-rail-and-pathway-rail-grade-crossings/,703467.0,28.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Sustainability Metrics and Mapping Tool for Environmental Assessment of Rail Infrastructure in Illinois (Field: intro_text_body),https://uofi.box.com/s/jyfd3j9zq0r5qaw52tnkrtl74ciw8oht,https://utc.uic.edu/news-2/webinars/sustainability-metrics-and-mapping-tool-for-environmental-assessment-of-rail-infrastructure-in-illinois-2/,,,,,Skipped: Box link
Box,Page (ACF Field),Krambles Award Archive (Field: intro_text_body),https://uofi.box.com/s/pjwriyho0f0sw3gi7l68fjwqexya101w,https://utc.uic.edu/engage/scholarships-and-funding/krambles-award/krambles-award-archive/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jylqdxnkroa3n72pktm9xx8ef2ff2bvo,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jo56pqnzvgpxlmply04h3hb6lfw4kjy2,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/g5y0u87cn0tppicfw1by6ksb0olygmwj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/himupslo4vi9j8ey59fskib0ycc94sk2,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ragncyf3cm0bktqmbhvcz6m3ton4zdt5,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/w63myvmd0ga4yqkbpyltacb63nw7kr4s,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/iyxq7dtidf115lyy3d950tlv3aalkdsk,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jxidwgwz35jn2hlecvmymi1umhdtqvvd,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/qpxu6yc8eyoxg8xw23ojez9hrjbil31c,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/8jxo1tqjjoxly7ngwv7e6ajgey4gtbn8,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vp9f5tqtsnthidozxylfytrz5dnwgoyj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/i0lfgf2qhhlicum6dr96jvpg6s5p6zj2,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/kzbz1mpuqweq0meyzjhv7j332a55x6hf,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vsgdu0urs1dsd810ehpu2p8inrlw7x99,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vetcfnlxt5irby7emcptrojkytslbjld,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/4pxd39iq74a5b6w29pvnn8vu9p483g2s,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.app.box.com/s/rcj10t5te55tb9d3c07viwkdr5splvyu,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/82vhr9hxbmghoq5vyptn4fdod65pki62,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/r1jawybzlathobux05okw1263mbsd2xs,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/e1s8f7k3vp7vr9u15xer26yc7t5ezioz,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/mm781d4226954fme0nkdsmbrkhb4tul1,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/blamddx7zctdsunjjnu7xdlrfrl3bbs8,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/vvw4vp1mqomh0es9ex32g0c6vx2cb0qj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/4secwatt8yrlu15db9ceugujska6pp7c,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/52ljoexwxlt1hd16xdfedoiiie8a0xkq,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/i4vpskp1kcj9oz2powiviojyhrh591kj,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/3w9ltp5gtflj4mvkd7cxbfm5scvln3tn,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ek7p062iheix0qiqfxssfed549s0bgfm,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/jpjhr0mx6fi6h1z2vmmabzitfjqitots,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.app.box.com/s/acxs08gdno82c4486fe33y7nx91r1rhq,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/lk6uk5gv77oflhbzlex6q0vbbkne9cwz,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/z2jqltyqjv9boiz2v16716prii5lurf5,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ql7553idnf8pba79ig3gdcymwr2u802g,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/ms98ph1vjovuc6mqrzbcn8sdfl9brl08,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/2li3jfca4uimbg7ck8w1z50t701d2dpq,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/f4hsm41mr6yeht5cyo3o67xj6y83ntj8,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Past Connector Newsletters (Field: intro_text_body),https://uofi.box.com/s/kempxpxwy4ew1znfud8kijm75bgo2mf6,https://utc.uic.edu/news-2/connector/past-issues-of-connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/ygjomu8wpjhn7cd14yu2744x87gjvbxj,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/0eijbmjsql7l7clc68tjq6t1wh4i8rb2,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/gjga5amm7b6k2bb06kq9cl4nvrhy72l3,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/ehrin6f1yqpe9g9oujnfjdbnu78zl6a9,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/obdtf77mpbqgkg5w7bhy4uc0vz2skq8r,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Webinars (Field: intro_text_body),https://uofi.box.com/s/6keekhxbqfoy2qll3mkbd8dbve317530,https://utc.uic.edu/news-2/webinars/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/y7dp3vb9ahyhx06a1wbybejfrx98h4iq,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/be0efpe10xyk7p5j2h5g78cb7jxb0mgc,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/9c8wwncgk8ulwplo66fflye3kycbrw32,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/3bqdu7iyka64wclluqmov7onff97h825,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/ghi08zoypxnpcw47g913t2324a943pla,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/03l0pq82574f204bly2iboaeob4alin1,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/aysobo5iqa1cdcrie1u0medszv8h4sp7,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/1eahgxt89mjphp8p66463szy2p8qedm5,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/mgd7uw63bagoulnb99bdwuepdy5nc7it,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/cp25yycn00jsbihey7okeqzn0qo7o9jw,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/0alzslgclfqe1wrdngf1eaajvzdqe53c,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/xj7jj936tcz9e6dge8tjfsswfzqjrlje,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/n1vjj76bkm60ncqq3t9lvm3ypck5idl7,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/dscwwsrct8e9hon16tsvr7r7oaxk1sov,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/p9au2pzfsayz4r4g55x7ikug97x8sw41,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/oqcp9fop0j8ioteyiqjxfifjcgxwy54j,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/8hqzoz5znoa4umydo0w98wnlqfi20p4f,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,Page (ACF Field),Connector Newsletter (Field: intro_text_body),https://uofi.box.com/s/n237j20shxz3s65k2gynbq5058d8e2im,https://utc.uic.edu/news-2/connector/,,,,,Skipped: Box link
Box,News (ACF Field),Argentinian Truckers Union Representatives Gain Insight Into Freight Challenges and Developments (Field: intro_text_body),https://uofi.box.com/s/bd9tojecth82mv1tglbb649wxpas7ibl,https://utc.uic.edu/news-stories/argentinian-truckers-union-representatives-gain-insight-into-freight-challenges-and-developments/,,,,,Skipped: Box link
Box,News (ACF Field),UTC Contributes to 65th Annual Transportation Research Forum (Field: intro_text_body),https://uofi.box.com/s/9ag5hw3p01cua2xaop2nesj2150h4ms9,https://utc.uic.edu/news-stories/utc-contributes-to-65th-annual-transportation-research-forum/,,,,,Skipped: Box link
Box,News (ACF Field),UTC Contributes to 65th Annual Transportation Research Forum (Field: intro_text_body),https://uofi.box.com/s/8nhhj98i37o340ysm6toze1wyx11hhht,https://utc.uic.edu/news-stories/utc-contributes-to-65th-annual-transportation-research-forum/,,,,,Skipped: Box link
Box,News (ACF Field),RTA and CMAP discuss future of paratransit at Urban Transportation Center seminar (Field: intro_text_body),https://uofi.app.box.com/s/9zz6sgz0saymbi1frc7nx93p4pl60mgq,https://utc.uic.edu/news-stories/rta-and-cmap-discuss-future-of-paratransit-at-urban-transportation-center-seminar/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2022 Seminar Series (Field: intro_text_body),https://uofi.app.box.com/s/fg5qfcic8ia8jmhm8il279anr2xo6ipx,https://utc.uic.edu/news-stories/archived-utc-fall-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2022 Seminar Series (Field: intro_text_body),https://uofi.app.box.com/s/9g6rdnytixxydokotwytblaqkz6qh8z6,https://utc.uic.edu/news-stories/archived-utc-fall-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2022 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/pm7xsglyen823hp3evilyo7n0njcyq7q,https://utc.uic.edu/news-stories/archived-utc-fall-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),2022 Transportation and Mobility Report to Help Shape Future Travel Behavior (Field: intro_text_body),https://uofi.box.com/s/7k263doohfdm86jsrz8jsqwfid2mqzsj,https://utc.uic.edu/news-stories/2022-transportation-and-mobility-report-to-help-shape-future-travel-behavior/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2022 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/2q7ir0r7x4wiocqrnh1f2f3wwk3p0g2p,https://utc.uic.edu/news-stories/archived-utc-spring-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2022 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/hcwhq534ztw8w8s0ns2hc4a5zriw58vo,https://utc.uic.edu/news-stories/archived-utc-spring-2022-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/q5rhdsmhjumr1nqjo1qybuwi59g0pkdq,https://utc.uic.edu/news-stories/archived-utc-fall-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Fall 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/hqr5162s3zm74wf1s46bwczvbnqro5lx,https://utc.uic.edu/news-stories/archived-utc-fall-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/nqwaw9hdppgo8hij6qev5kauxqs5ompt,https://utc.uic.edu/news-stories/archived-utc-spring-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/ioscj8pfhgrhhklqrokwovx6cclo5gez,https://utc.uic.edu/news-stories/archived-utc-spring-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),Archived UTC Spring 2021 Seminar Series (Field: intro_text_body),https://uofi.box.com/s/fujivstdz47v8rcaetsyjo7v4potcb42,https://utc.uic.edu/news-stories/archived-utc-spring-2021-seminar-series/,,,,,Skipped: Box link
Box,News (ACF Field),What’s Down the Line: Public Transit in a Post-Pandemic Chicago (Field: intro_text_body),https://uofi.box.com/s/c82ys05po1szn8g5zmmkobkef12ojyar,https://utc.uic.edu/news-stories/whats-down-the-line-public-transit-in-a-post-pandemic-chicago/,,,,,Skipped: Box link
Box,News (ACF Field),NuRail By The Numbers: 2012 to 2020 (Field: intro_text_body),https://uofi.box.com/s/ci2fk4rsph7nj13t1wogtxcyg27qncqq,https://utc.uic.edu/news-stories/nurail-by-the-numbers-2012-to-2020/,,,,,Skipped: Box link
Box,News (ACF Field),Analysis of Supply and Demand for Public Transit Availability to Chicago-Area  Healthcare Facilities Results in Next Steps on Improving Access for Disadvantaged (Field: intro_text_body),https://uofi.app.box.com/s/6j20hdow0mlbrjwwivodslflcgehh483,https://utc.uic.edu/news-stories/analysis-of-supply-and-demand-for-public-transit-availability-to-chicago-area-healthcare-facilities-results-in-next-steps-on-improving-access-for-disadvantaged/,,,,,Skipped: Box link
Box,News (ACF Field),UTC November 19 Audio and Visual Recordings (Field: intro_text_body),https://uofi.box.com/s/xem6lj84bif1azft21kwzp0ife752bkv,https://utc.uic.edu/news-stories/utc-november-19-audio-and-visual-recordings/,,,,,Skipped: Box link
Box,News (ACF Field),"Quiet Zones and Site Refinements Can Help Alleviate Challenges  Borne by Rail Grade Crossings in Two South Chicago Suburbs, Study Says (Field: intro_text_body)",https://uofi.app.box.com/s/phef8w93xcezq0b9a799gz0e34ttx4kc,https://utc.uic.edu/news-stories/quiet-zones-and-site-refinements-can-help-alleviate-challenges-borne-by-rail-grade-crossings-in-two-south-chicago-suburbs-study-says/,,,,,Skipped: Box link
Box,News (ACF Field),UTC October 15 Seminar Series Audio and Visual Recordings (Field: intro_text_body),https://uofi.box.com/s/sh7evnah3z4kpm5my0xfub80vh1rg6vs,https://utc.uic.edu/news-stories/utc-october-15-seminar-series-audio-and-visual-recordings/,,,,,Skipped: Box link
Box,News (ACF Field),UTC September 17 Seminar Series Audio and Visual Recordings (Field: intro_text_body),https://uofi.app.box.com/s/8gwikgixs27b5ji4fkeojx4mt7qry4q6,https://utc.uic.edu/news-stories/utc-september-17-seminar-series-audio-and-visual-recordings/,,,,,Skipped: Box link
PDF,News (ACF Field),Dr. Sriraj Featured in &#8220;The Mobility Lines Podcast&#8221; (Field: intro_text_body),https://nationalcenterformobilitymanagement.org/wp-content/uploads/2020/07/Statewide-Mobility-Management-Factors-Affecting-the-Creation-adn-Success-of-Networks.pdf,https://utc.uic.edu/news-stories/dr-sriraj-featured-in-the-mobility-lines-podcast/,1058858.0,28.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Is Traffic Increasing with Declining Population? Illinois and the Chicago Area (Field: intro_text_body),https://uofi.app.box.com/s/soex2qv8jtzjqp68sfbivxb9hv8tki9f,https://utc.uic.edu/news-stories/is-traffic-increasing-with-declining-population-illinois-and-the-chicago-area/,,,,,Skipped: Box link
Box,News (ACF Field),Micromobility Grows Up: Lessons on Scooters and Bikeshare in Chicago and Around the Country (Field: intro_text_body),https://uofi.app.box.com/s/ssmwe2e8dxcq15mnioxl3jq5l1uyio1w,https://utc.uic.edu/news-stories/micromobility-grows-up-lessons-on-scooters-and-bikeshare-in-chicago-and-around-the-country/,,,,,Skipped: Box link
PDF,News (ACF Field),Incremental Approach May Have Given Green Light to Proposed 1990’s Chicago Central Area Circulator Project (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Central-Area-Circulation-History-Final-Version-Reduced.pdf,https://utc.uic.edu/news-stories/incremental-approach-may-have-given-green-light-to-proposed-1990s-chicago-central-area-circulator-project-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Central-Area-Circulation-History-Final-Version-Reduced.pdf
Box,News (ACF Field),IDOT Employs Innovative Approach to Identify Public Priorities (Field: intro_text_body),https://uofi.app.box.com/s/j2qqzz2chj86w6kpwi9sxkow6deej4kd,https://utc.uic.edu/news-stories/idot-employs-innovative-approach-to-identify-public-priorities/,,,,,Skipped: Box link
PDF,News (ACF Field),"Shared Vision and Mission, Consistent Measurement System Among Key Elements for Successful Integration of Regional Transportation Resources (Field: intro_text_body)",https://utc.uic.edu/wp-content/uploads/Integration-of-Modes-Report-Final-July-2017.pdf,https://utc.uic.edu/news-stories/shared-vision-and-mission-consistent-measurement-system-among-key-elements-for-successful-integration-of-regional-transportation-resources/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Integration-of-Modes-Report-Final-July-2017.pdf
PDF,News (ACF Field),Alumni Feature Profile: Takanori Sakai (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Logistics-Chain-Modeling-for-Urban-Freight-Paper.pdf,https://utc.uic.edu/news-stories/alumni-feature-profile-takanori-sakai/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Logistics-Chain-Modeling-for-Urban-Freight-Paper.pdf
Box,News (ACF Field),"UIC Students Develop Strategic Transit Oriented Development Plans to Capture Economic Benefits, Improve Vibrancy of Two CTA Rapid Transit Stations (Field: intro_text_body)",https://uofi.box.com/s/gcu80j3n4bhm8t6wg45ihjkbfekgx70f,https://utc.uic.edu/news-stories/uic-students-develop-strategic-transit-oriented-development-plans-to-capture-economic-benefits-improve-vibrancy-of-two-cta-rapid-transit-stations-3/,,,,,Skipped: Box link
PDF,News (ACF Field),Special Presentation From CMAP’s Joseph Szabo (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Power_Unified_Region_-12_1_16.pdf,https://utc.uic.edu/news-stories/special-presentation-from-cmaps-joseph-szabo/,928562.0,12.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Special Presentation From CMAP’s Joseph Szabo (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Making-a-Plan-for-our-Regioin-UTC-12.1.2016-JG.pdf,https://utc.uic.edu/news-stories/special-presentation-from-cmaps-joseph-szabo/,651638.0,22.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),Alumni Feature Profile: Anthony Grande (Field: intro_text_body),https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/approved_land_use_plan_11_10_2015.pdf,https://utc.uic.edu/news-stories/alumni-profile-anthony-grande/,,,,,Download failed: 520 Server Error: <none> for url: https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/approved_land_use_plan_11_10_2015.pdf
PDF,News (ACF Field),Alumni Feature Profile: Anthony Grande (Field: intro_text_body),https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/unalaska_comprehensive_plan_adopted_02-22-2011.pdf,https://utc.uic.edu/news-stories/alumni-profile-anthony-grande/,,,,,Download failed: 520 Server Error: <none> for url: https://www.ci.unalaska.ak.us/sites/default/files/fileattachments/Planning/page/2001/unalaska_comprehensive_plan_adopted_02-22-2011.pdf
Box,News (ACF Field),"Integrated Technology, Innovative Services, Changes in Policy &amp; Funding Critical to Increasing Mobility in Metropolitan Chicago (Field: intro_text_body)",https://uofi.app.box.com/s/idofceks35f000tvlup8va1l320fu5wu,https://utc.uic.edu/news-stories/integrated-technology-innovative-services-changes-in-policy-funding-critical-to-increasing-mobility-in-metropolitan-chicago-2/,,,,,Skipped: Box link
PDF,News (ACF Field),Goals and Performance Measures Vital to Chart Successful Course for Maritime Freight Industry in Illinois (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Full-Report-Maritime-PM-Final-Draft-51915-1.pdf,https://utc.uic.edu/news-stories/goals-and-performance-measures-vital-to-chart-successful-course-for-maritime-freight-industry-in-illinois/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Full-Report-Maritime-PM-Final-Draft-51915-1.pdf
Box,News (ACF Field),Prioritization Framework Proposal Designed to Help IDOT Apply Systematic and Flexible Guidelines to New Transportation Projects (Field: intro_text_body),https://uofi.app.box.com/s/c3x5hlevmxxw9jdya5cv2wv6gpir701o,https://utc.uic.edu/news-stories/prioritization-framework-proposal-designed-to-help-idot-apply-systematic-and-flexible-guidelines-to-new-transportation-projects/,,,,,Skipped: Box link
Box,News (ACF Field),Planning Guidelines Provide Resource to Rank and Measure Future Pedestrian and Cyclist Development Projects (Field: intro_text_body),https://uofi.box.com/s/qrkzk21wfm1avfs8y7c6j922wryrnxi9,https://utc.uic.edu/news-stories/planning-guidelines-provide-resource-to-rank-and-measure-future-pedestrian-and-cyclist-development-projects/,,,,,Skipped: Box link
Box,News (ACF Field),Planning Guidelines Provide Resource to Rank and Measure Future Pedestrian and Cyclist Development Projects (Field: intro_text_body),https://uofi.app.box.com/folder/0/search?isTrashSearch=0&amp;metadata=&amp;owners=&amp;query=analytical%20framework&amp;resinSessionID=5867ad234e2b8fa55fa58d&amp;types=&amp;updatedTime=0&amp;updatedTimeFrom=0&amp;updatedTimeTo=0,https://utc.uic.edu/news-stories/planning-guidelines-provide-resource-to-rank-and-measure-future-pedestrian-and-cyclist-development-projects/,,,,,Skipped: Box link
Box,News (ACF Field),"Online Tool Provides Chicago Planners Way to Measure Accessibility to Jobs, Parks, Schools &amp; Other Destinations (Field: intro_text_body)",https://uofi.box.com/s/r4fj8nq6jr4hj9x928s11ehnle0g6d34,https://utc.uic.edu/news-stories/online-tool-provides-chicago-planners-way-to-measure-accessibility-to-jobs-parks-schools-other-destinations/,,,,,Skipped: Box link
PDF,News (ACF Field),"Online Tool Provides Chicago Planners Way to Measure Accessibility to Jobs, Parks, Schools &amp; Other Destinations (Field: intro_text_body)",https://utc.uic.edu/wp-content/uploads/Final-Report_Metropolitan-Chicago-Accessibility-Mapping-Project.pdf,https://utc.uic.edu/news-stories/online-tool-provides-chicago-planners-way-to-measure-accessibility-to-jobs-parks-schools-other-destinations/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Final-Report_Metropolitan-Chicago-Accessibility-Mapping-Project.pdf
Box,News (ACF Field),"Online Tool Provides Chicago Planners Way to Measure Accessibility to Jobs, Parks, Schools &amp; Other Destinations (Field: intro_text_body)",https://uofi.box.com/s/sff182j5zfszpz1pqg2xft8vmccpak6a,https://utc.uic.edu/news-stories/online-tool-provides-chicago-planners-way-to-measure-accessibility-to-jobs-parks-schools-other-destinations/,,,,,Skipped: Box link
Box,News (ACF Field),Intermodal Logistics Centers Can Drive Increase in Industrial Property Values Along High Capacity Trucking Highways (Field: intro_text_body),https://uofi.box.com/s/3updbqgxplibps7u5518ije6wqiwza8y,https://utc.uic.edu/news-stories/intermodal-logistics-centers-can-drive-increase-in-industrial-property-values-along-high-capacity-trucking-highways-2/,,,,,Skipped: Box link
Box,News (ACF Field),Integrated Modeling of High Performance Passenger and Freight Train Operation Planning on Shared Use Rail Corridors: A Focus on the US Context (Field: intro_text_body),https://uofi.app.box.com/s/k8uun7pa0t9xjvwmudfss2ugqq9v5wz7,https://utc.uic.edu/news-stories/integrated-modeling-of-high-performance-passenger-and-freight-train-operation-planning-on-shared-use-rail-corridors-a-focus-on-the-us-context-2/,,,,,Skipped: Box link
PDF,News (ACF Field),Planning Transportation to Meet the Needs of an Aging Illinois: An Assessment (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Planning-Transportation-to-Meet-the-Needs-of-an-Aging-Illinois-2.26_reduced-1.pdf,https://utc.uic.edu/news-stories/planning-transportation-to-meet-the-needs-of-an-aging-illinois-an-assessment-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Planning-Transportation-to-Meet-the-Needs-of-an-Aging-Illinois-2.26_reduced-1.pdf
PDF,News (ACF Field),Best Practices in Regional Transit Governance Forum (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Program-Best-Pratices-in-Regional-Transit-Governance-Final1.pdf,https://utc.uic.edu/news-stories/best-practices-in-regional-transit-governance-forum/,643446.0,3.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Best Practices in Regional Transit Governance Forum (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Bio-Inserts-Best-Practices-in-Regional-Transit-Governance-Final1.pdf,https://utc.uic.edu/news-stories/best-practices-in-regional-transit-governance-forum/,249668.0,2.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Pedestrian/Bicyclist Warning Devices and Signs at Highway-Rail and Pathway-Rail Grade Crossings (Field: intro_text_body),https://uofi.box.com/s/uvwq4zme0586yfmp2rjnqvru5ttc7s0z,https://utc.uic.edu/news-stories/pedestrian-bicyclist-warning-devices-and-signs-at-highway-rail-and-pathway-rail-grade-crossings/,,,,,Skipped: Box link
Box,Event (ACF Field),"Overview of BNSF, UP, and CN, And the Freight Rail Industry&#8217;s Footprint in Chicago (Field: description)",https://uofi.app.box.com/folder/324924687652?s=3rxco7cxr31ov8wixna6yf42trncuyfs,https://utc.uic.edu/events/overview-of-bnsf-up-and-cn-and-the-freight-rail-industrys-footprint-in-chicago/,,,,,Skipped: Box link
Box,Event (ACF Field),Mobility Recovery: Rethinking Mobility in a Post-COVID Chicago Region (Field: description),https://uofi.app.box.com/s/fujivstdz47v8rcaetsyjo7v4potcb42,https://utc.uic.edu/events/mobility-recovery-rethinking-mobility-in-a-post-covid-chicago-region/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jang, Jin (Field: cv_link)",https://uofi.box.com/s/d5ud0cn7vywoh1ipkmnz1ograexl516z,https://utc.uic.edu/profiles/jang-jinhyuk/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Regional Rural Transportation Planning and the Role of the Rural Planning Organizations (Field: abstract),https://uofi.box.com/s/qntodotbzl4jvl3j7o1vmfucn700x9gc,https://utc.uic.edu/research/regional-rural-transportation-planning-and-the-role-of-the-rural-planning-organizations/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Railroad-Highway Crossing Safety Improvement Evaluation and Prioritization Tool (Field: abstract),https://uofi.box.com/s/d6blyfasgynyfqgel7lwcam1c3h1j8q2,https://utc.uic.edu/research/railroad-highway-crossing-safety-improvement-evaluation-and-prioritization-tool/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Illinois Department of Transportation Accessibility Study (Field: abstract),https://uofi.box.com/s/2qh04yruubpktx264y5de86mlvox4rxf,https://utc.uic.edu/research/illinois-department-of-transportation-accessibility-study-with-national-accessibility-evaluation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Statewide Intercity Passenger Transportation in Illinois (Field: abstract),https://uofi.app.box.com/file/1085907823991?s=7z78bh8cl1feensou9kcnlebpfv43jq7,https://utc.uic.edu/research/statewide-intercity-passenger-transportation-in-illinois/,,,,,Skipped: Box link
Box,Research Project (ACF Field),State Departments of Transportation: Planning Function Reorganization (Field: abstract),https://uofi.box.com/s/8tlszizg028ge4wc5yjwwh9l16b4liay,https://utc.uic.edu/research/state-departments-of-transportation-planning-function-reorganization/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Environmental Impact Assessment of Rail Infrastructure (Field: abstract),https://uofi.box.com/s/7h8ai9f8xy9yn963fc8pr0j37znenneg,https://utc.uic.edu/research/environmental-impact-assessment-of-rail-infrastructure/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Leveraging Connected Highway Vehicle Platooning  Technology to Improve the Efficiency and  Effectiveness of Train Fleeting Under Moving Blocks (Field: abstract),https://uofi.box.com/s/5l6dv2utjj5onx56smt41y9cuc7ecl26,https://utc.uic.edu/research/leveraging-connected-highway-vehicle-platooning-technology-to-improve-the-efficiency-and-effectiveness-of-train-fleeting-under-moving-blocks/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Pedestrian/Bicyclist Warning Devices and Signs at Highway-Rail and Pathway-Rail Grade Crossings (Field: abstract),https://uofi.app.box.com/file/413399743249,https://utc.uic.edu/research/pedestrian-bicyclist-warning-devices-and-signs-at-highway-rail-and-pathway-rail-grade-crossings/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Maritime Freight Data Collection Systems and Database to Support Performance Measures and Market Analyses (Field: abstract),https://uofi.box.com/s/oilmpb0d04oh8atbwixec89ak6n3tonk,https://utc.uic.edu/research/maritime-freight-data-collection-systems-and-database-to-support-performance-measures-and-market-analyses/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Rail-Highway Crossing Delay Study for Dolton and Riverdale (Field: abstract),https://uofi.box.com/s/vfy8htfsvtbnf2wqcu1pf2hdxr96bswd,https://utc.uic.edu/research/rail-highway-crossing-delay-study-for-dolton-and-riverdale/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Deficiencies in Public Transit Accessibility  of Healthcare Facilities in Chicago (Field: abstract),https://uofi.box.com/s/6j20hdow0mlbrjwwivodslflcgehh483,https://utc.uic.edu/research/deficiencies-in-public-transit-accessibility-of-healthcare-facilities-in-chicago/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Freight Planning for the Dolton and Riverdale Gateway: Grade Separation (Field: abstract),https://uofi.box.com/s/6v3hhq2mq9qp28n397mh22gg4m8u7096,https://utc.uic.edu/research/freight-planning-for-the-dolton-and-riverdale-gateway-grade-separation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Quiet Zone Study for Dolton and Riverdale (Field: abstract),https://uofi.box.com/s/phef8w93xcezq0b9a799gz0e34ttx4kc,https://utc.uic.edu/research/quiet-zone-study-for-dolton-and-riverdale/,,,,,Skipped: Box link
Box,Research Project (ACF Field),ADA Special Services: Price Elasticity for the Provision of Free Service In the State of Illinois (Field: abstract),https://uofi.box.com/s/lp1co04qd0pj1mapb24w466znib6g8x9,https://utc.uic.edu/research/ada-special-services-price-elasticity-for-the-provision-of-free-service-in-the-state-of-illinois/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Impact of Freight Congestion on the Chicago Area Commute (Field: abstract),https://uofi.box.com/s/sk2rye0dl2oyxtbjco8mnkjfe8l34w2w,https://utc.uic.edu/research/the-impact-of-freight-congestion-on-the-chicago-area-commute/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Off-Peak Delivery: A Pilot Project for the Chicago Region (Field: abstract),https://uofi.box.com/s/2x8af4hmc2o12d50x4egrohvfxbab6zl,https://utc.uic.edu/research/off-peak-delivery-a-pilot-project-for-the-chicago-region/,,,,,Skipped: Box link
Box,Research Project (ACF Field),State of Illinois Job Access Reverse Commuter Program (Field: abstract),https://uofi.box.com/s/a0aht577sfhimuimdx7mzvnyyud6d9l0,https://utc.uic.edu/research/state-of-illinois-job-access-reverse-commuter-program/,,,,,Skipped: Box link
Box,Research Project (ACF Field),"Pedestrian Safety in Illinois, 1990-2000 (Field: abstract)",https://uofi.box.com/s/owhfw0g9trpj6dbdxw9ijtwpdszqzlmm,https://utc.uic.edu/research/pedestrian-safety-in-illinois-1990-2000/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Best Practices for Linking Strategic Planning to Resource Allocation and Implementation Decisions Using Elements of a Transportation Asset Management Program (Field: abstract),https://uofi.box.com/s/a6wd8iolkyw4wozqvroa64kiiqahyifb,https://utc.uic.edu/research/best-practices-for-linking-strategic-planning-to-resource-allocation-and-implementation-decisions-using-elements-of-a-transportation-asset-management-program/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Where is the 2000-2005 Growth in Metropolitan Chicago: Collar or Fringe Counties? (Field: abstract),https://uofi.box.com/s/ys1gcscoo73x0cuv16l6dl7onsgdd42m,https://utc.uic.edu/research/where-is-the-2000-2005-growth-in-metropolitan-chicago-collar-or-fringe-counties/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Are Sprawl and Obesity Related? Evidence from the Chicago Area (Field: abstract),https://uofi.box.com/s/5uhzcumi438barqn7gdh9dhqi8bdwfke,https://utc.uic.edu/research/are-sprawl-and-obesity-related-evidence-from-the-chicago-area/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Economic Analysis and Partnerships of the Job Access and Reverse Commute Program (Field: abstract),https://uofi.box.com/s/1csx5c88vipam4onq94o4xizw6fqrlif,https://utc.uic.edu/research/economic-analysis-and-partnerships-of-the-job-access-and-reverse-commute-program-2/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Lake County Coordinated Paratransit Study (Field: abstract),https://uofi.box.com/s/us8goakqqc535poesnt64jwybigixqio,https://utc.uic.edu/research/lake-county-coordinated-paratransit-study/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Ramp High Occupancy Vehicle (HOV) (Field: abstract),https://uofi.box.com/s/9pgra31e0z8evq10kh85lpxxdqnlf8hv,https://utc.uic.edu/research/ramp-high-occupancy-vehicle-hov/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Relationship of Transportation and the Housing Crisis (Field: abstract),https://uofi.box.com/s/2ang847su4cc7oy4xv0fsv995mcr6bbo,https://utc.uic.edu/research/the-relationship-of-transportation-and-the-housing-crisis/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Coordination and Partnerships in Employment and Human Services Transportation (Field: abstract),https://uofi.box.com/s/mgte7yc2gfwluuvuorxla532ironbukj,https://utc.uic.edu/research/coordination-and-partnerships-in-employment-and-human-services-transportation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Mobility Management: State of the States Report (Field: abstract),https://uofi.box.com/s/pry1psqc684sav7uhezz1cwlv6z6z5t7,https://utc.uic.edu/research/mobility-management-state-of-the-states-report/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Scoping Data Access and Integration Needs to Facilitate Better Management of Research Innovation (Field: abstract),https://uofi.box.com/s/d2xrpl6cpnmcmb696bucz6vgpnuu1krf,https://utc.uic.edu/research/scoping-data-access-and-integration-needs-to-facilitate-better-management-of-research-innovation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Analysis Of The Impact of the Senior Ride Free and Circuit Breaker Programs on the Public Transit in the Chicago Region (Field: abstract),https://uofi.box.com/s/dz7n490cujj52f832khkkp3ax0cajf1g,https://utc.uic.edu/research/analysis-of-the-impact-of-the-senior-ride-free-and-circuit-breaker-programs-on-the-public-transit-in-the-chicago-region/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Burnham Transportation Plan of Chicago: 100 Years Later (Field: abstract),https://uofi.box.com/s/ukmqh8nsvi4ai2yqs0t2cqrotf78kium,https://utc.uic.edu/research/the-burnham-transportation-plan-of-chicago-100-years-later/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Bus on Shoulders: Analysis of Preliminary Concept (Field: abstract),https://uofi.box.com/s/sxhdu5e10q70ajkq0qtk5nmpnm7pjt9d,https://utc.uic.edu/research/bus-on-shoulders-analysis-of-preliminary-concept/,,,,,Skipped: Box link
Box,Research Project (ACF Field),"Chicago-Area Sprawl Revisited: The Role of Demographics, Prosperity and Homeownership with a Note on Sustainability (Field: abstract)",https://uofi.box.com/s/3e18c6ilhya0ro88rivlwi7dkqthd66c,https://utc.uic.edu/research/chicago-area-sprawl-revisited-the-role-of-demographics-prosperity-and-homeownership-with-a-note-on-sustainability/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Housing-Transportation Cost Trade-off Implications for Urban Sprawl (Field: abstract),https://uofi.box.com/s/rz1etksnd9d3347kisf0uffq681n2m80,https://utc.uic.edu/research/housing-transportation-cost-trade-off-implications-for-urban-sprawl/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Integrated Approaches to EV Charging Infrastructure and Transit System Planning (Field: abstract),https://uofi.box.com/s/g85wb5ux9t55asfzc310hss358k5ae6z,https://utc.uic.edu/research/integrated-approaches-to-ev-charging-infrastructure-and-transit-system-planning-2/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Case for Rail Transit Expansion in the Chicago Central Area (Field: abstract),https://uofi.box.com/s/zcl8l6mxigk09or6va0bjn5izgz99upd,https://utc.uic.edu/research/the-case-for-rail-transit-expansion-in-the-chicago-central-area/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Planning Transportation for an Aging Illinois: An Assessment (Field: abstract),https://uofi.box.com/s/2odqbnz1bpqjj3yrzx1dndteb21iaevr,https://utc.uic.edu/research/planning-transportation-for-an-aging-illinois-an-assessment/,,,,,Skipped: Box link
Box,Research Project (ACF Field),"Transit Value Capture Coordination: Case Studies, Best Practices, and Recommendations (Field: abstract)",https://uofi.box.com/s/hctb7e6xn1mupx7pocxzbvvjy6wxh8gw,https://utc.uic.edu/research/transit-value-capture-coordination-case-studies-best-practices-and-recommendations/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Integrated Modeling of High Performance Passenger and Freight Train Operation Planning on Shared Use Rail Corridors: A Focus on the US Context (Field: abstract),https://uofi.box.com/s/k8uun7pa0t9xjvwmudfss2ugqq9v5wz7,https://utc.uic.edu/research/integrated-modeling-of-high-performance-passenger-and-freight-train-operation-planning-on-shared-use-rail-corridors-a-focus-on-the-us-context/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Mode Choice Modelling Using Personalized Travel Time and Cost Data (Field: abstract),https://uofi.box.com/s/ac4fqx32c3zu1qk9e4mo2380czgk063f,https://utc.uic.edu/research/mode-choice-modelling-using-personalized-travel-time-and-cost-data/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Development of an Analytical Framework to Rank Pedestrian and Cyclist Projects (Field: abstract),https://uofi.box.com/s/1uzjn8lckjv4063p0mkihfc01pht45l4,https://utc.uic.edu/research/development-of-an-analytical-framework-to-rank-pedestrian-and-cyclist-projects/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Economic Benefits of Productivity Increases through Truck-to-Rail Mode Shift in Freight Transport (Field: abstract),https://uofi.box.com/s/7pp8d0fpal74yo5ntbd63ua92j2p6aus,https://utc.uic.edu/research/economic-benefits-of-productivity-increases-through-truck-to-rail-mode-shift-in-freight-transport/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Developing Performance Measures for the Illinois Maritime Freight Transportation System (Field: abstract),https://uofi.box.com/s/dbkjtxaf29suackl9fhqgya3drz855b4,https://utc.uic.edu/research/developing-performance-measures-for-the-illinois-maritime-freight-transportation-system/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Report Proposing a Program and Project Prioritization Framework for the Illinois Department of Transportation (IDOT) (Field: abstract),https://uofi.box.com/s/c3x5hlevmxxw9jdya5cv2wv6gpir701o,https://utc.uic.edu/research/report-proposing-a-program-and-project-prioritization-framework-for-the-illinois-department-of-transportation-idot/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Pedestrian/Bicyclist Warning Devices and Signs at CTA Rail-Highway Grade Crossings (Field: abstract),https://uofi.box.com/s/azc7u1qem287np1feueprnj2elg7kb8f,https://utc.uic.edu/research/pedestrian-bicyclist-warning-devices-and-signs-at-cta-rail-highway-grade-crossings/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Increasing Mobility Through Enhanced Transit Connectivity (Field: abstract),https://uofi.box.com/s/idofceks35f000tvlup8va1l320fu5wu,https://utc.uic.edu/research/increasing-mobility-through-enhanced-transit-connectivity/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Exploring the Potential for Off Peak Delivery in Metropolitan Chicago: Research Findings and Conclusions (Field: abstract),https://uofi.box.com/s/p1x7js73senyseb0k5e71yj80d3m21pk,https://utc.uic.edu/research/exploring-the-potential-for-off-peak-delivery-in-metropolitan-chicago-research-findings-and-conclusions/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Illinois One-Click Transportation Resource Center (Field: abstract),https://uofi.box.com/s/6zrbhhdi0pjg6wdgedw8kt67lk8sseek,https://utc.uic.edu/research/the-illinois-one-click-transportation-resource-center/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Decision Analysis to Address Extreme Weather: Extreme Weather Effects on Ridership and Modeling the Decision to Invest in Canopy Coverage (Field: abstract),https://uofi.box.com/s/o4z4cs4izraw2a7wtxe7du48iip6ia4g,https://utc.uic.edu/research/decision-analysis-to-address-extreme-weather-extreme-weather-effects-on-ridership-and-modeling-the-decision-to-invest-in-canopy-coverage/,,,,,Skipped: Box link
Box,Research Project (ACF Field),National Survey of US Public Transit Agency Experience with and Response to Extreme Weather Events (Field: abstract),https://uofi.box.com/s/gj3wz7fzamcas0qy15gfk5rlmzrl37vr,https://utc.uic.edu/research/national-survey-of-us-public-transit-agency-experience-with-and-response-to-extreme-weather-events/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Results From a Survey of Transportation Professionals Regarding the Return on Investment for Passenger Rail (Field: abstract),https://uofi.box.com/s/ook4qx0vf34268g5w1nelj6d3cy1onzm,https://utc.uic.edu/research/results-from-a-survey-of-transportation-professionals-regarding-the-return-on-investment-for-passenger-rail/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Catching up to Automated Technology: How DOTs Can Stay Ahead of the Curve For Freight (Field: abstract),https://uofi.box.com/s/hbmebqresh4np9hnfh54g63k7o943v31,https://utc.uic.edu/research/catching-up-to-automated-technology-how-dots-can-stay-ahead-of-the-curve-for-freight/,,,,,Skipped: Box link
Box,Research Project (ACF Field),CPS Travel Training Evaluation Project (Field: abstract),https://uofi.box.com/s/ect9alozzekuyuijv98naharlaa9j6oa,https://utc.uic.edu/research/cps-travel-training-evaluation-project/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Analysis of Factors Affecting Truck Parking Violation Frequency in Urban Areas (Field: abstract),https://uofi.box.com/s/yvinmj7iihjqv741mfyiuaiztmkpm6bx,https://utc.uic.edu/research/analysis-of-factors-affecting-truck-parking-violation-frequency-in-urban-areas/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Reducing Commuting-Related Environmental Impacts in the Healthcare Sector: An Exploratory Study (Field: abstract),https://uofi.box.com/s/bsjs50jbnb98iexnvemq51qirirzw8sh,https://utc.uic.edu/research/reducing-commuting-related-environmental-impacts-in-the-healthcare-sector-an-exploratory-study/,,,,,Skipped: Box link
Box,Research Project (ACF Field),A Review Of Capital Improvement Grant Program and the Need For a Uniform Project Selection Process (Field: abstract),https://uofi.box.com/s/03o5gh3fxv9be2ym6bkpvh9lg2dktpgs,https://utc.uic.edu/research/a-review-of-capital-improvement-grant-program-and-the-need-for-a-uniform-project-selection-process/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Integration of Transportation for Improved Mobility (Field: abstract),https://uofi.box.com/s/oucu54olww2h5zcctrdwwtloolk1p59q,https://utc.uic.edu/research/integration-of-transportation-for-improved-mobility/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Public Transit to Public Lands: The Nature Express (Field: abstract),https://uofi.box.com/s/bj5irpo9xiekkcyyyz8itopegvwrevd9,https://utc.uic.edu/research/public-transit-to-public-lands-the-nature-express/,,,,,Skipped: Box link
Box,Research Project (ACF Field),An Analysis of the Illinois Maritime Transportation System (Field: abstract),https://uofi.box.com/s/i1dhn0lrlfegwo8q4vgs1kyjovfaqkcq,https://utc.uic.edu/research/an-analysis-of-the-illinois-maritime-transportation-sysatem/,,,,,Skipped: Box link
Box,Research Project (ACF Field),A New Approach to Public Engagement: Capturing Better Ideas and Representative Priorities from the Public for the Illinois Department of Transportation (Field: abstract),https://uofi.box.com/s/gtgpdb1lr9s3kxf03iwkjcam8idbx67n,https://utc.uic.edu/research/a-new-approach-to-public-engagement-capturing-better-ideas-and-representative-priorities-from-the-public-for-the-illinois-department-of-transportation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Framework for Assessing the ROI for High-Speed and Intercity Rail Projects (Field: abstract),https://uofi.box.com/s/ejec8vra49k8dzyoytm25wcmtyzc5x9f,https://utc.uic.edu/research/framework-for-assessing-the-roi-for-high-speed-and-intercity-rail-projects/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The History of the City of Chicago Central Area Transit Circulation Efforts (Field: abstract),https://uofi.app.box.com/file/398650141281?s=xd6e08uw1ctzkuphetxlu2xxb3my7liq,https://utc.uic.edu/research/the-history-of-the-city-of-chicago-central-area-transit-circulation-efforts-2/,,,,,Skipped: Box link
PDF,News (ACF Field),Goals and Performance Measures Vital to Chart Successful Course for Maritime Freight Industry in Illinois (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Full-Report-Maritime-PM-Final-Draft-51915-1.pdf,https://utc.uic.edu/news-stories/goals-and-performance-measures-vital-to-chart-successful-course-for-maritime-freight-industry-in-illinois/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Full-Report-Maritime-PM-Final-Draft-51915-1.pdf
Box,News (ACF Field),Prioritization Framework Proposal Designed to Help IDOT Apply Systematic and Flexible Guidelines to New Transportation Projects (Field: intro_text_body),https://uofi.app.box.com/s/c3x5hlevmxxw9jdya5cv2wv6gpir701o,https://utc.uic.edu/news-stories/prioritization-framework-proposal-designed-to-help-idot-apply-systematic-and-flexible-guidelines-to-new-transportation-projects/,,,,,Skipped: Box link
Box,News (ACF Field),Planning Guidelines Provide Resource to Rank and Measure Future Pedestrian and Cyclist Development Projects (Field: intro_text_body),https://uofi.box.com/s/qrkzk21wfm1avfs8y7c6j922wryrnxi9,https://utc.uic.edu/news-stories/planning-guidelines-provide-resource-to-rank-and-measure-future-pedestrian-and-cyclist-development-projects/,,,,,Skipped: Box link
Box,News (ACF Field),Planning Guidelines Provide Resource to Rank and Measure Future Pedestrian and Cyclist Development Projects (Field: intro_text_body),https://uofi.app.box.com/folder/0/search?isTrashSearch=0&amp;metadata=&amp;owners=&amp;query=analytical%20framework&amp;resinSessionID=5867ad234e2b8fa55fa58d&amp;types=&amp;updatedTime=0&amp;updatedTimeFrom=0&amp;updatedTimeTo=0,https://utc.uic.edu/news-stories/planning-guidelines-provide-resource-to-rank-and-measure-future-pedestrian-and-cyclist-development-projects/,,,,,Skipped: Box link
Box,News (ACF Field),"Online Tool Provides Chicago Planners Way to Measure Accessibility to Jobs, Parks, Schools &amp; Other Destinations (Field: intro_text_body)",https://uofi.box.com/s/r4fj8nq6jr4hj9x928s11ehnle0g6d34,https://utc.uic.edu/news-stories/online-tool-provides-chicago-planners-way-to-measure-accessibility-to-jobs-parks-schools-other-destinations/,,,,,Skipped: Box link
PDF,News (ACF Field),"Online Tool Provides Chicago Planners Way to Measure Accessibility to Jobs, Parks, Schools &amp; Other Destinations (Field: intro_text_body)",https://utc.uic.edu/wp-content/uploads/Final-Report_Metropolitan-Chicago-Accessibility-Mapping-Project.pdf,https://utc.uic.edu/news-stories/online-tool-provides-chicago-planners-way-to-measure-accessibility-to-jobs-parks-schools-other-destinations/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Final-Report_Metropolitan-Chicago-Accessibility-Mapping-Project.pdf
Box,News (ACF Field),"Online Tool Provides Chicago Planners Way to Measure Accessibility to Jobs, Parks, Schools &amp; Other Destinations (Field: intro_text_body)",https://uofi.box.com/s/sff182j5zfszpz1pqg2xft8vmccpak6a,https://utc.uic.edu/news-stories/online-tool-provides-chicago-planners-way-to-measure-accessibility-to-jobs-parks-schools-other-destinations/,,,,,Skipped: Box link
Box,News (ACF Field),Intermodal Logistics Centers Can Drive Increase in Industrial Property Values Along High Capacity Trucking Highways (Field: intro_text_body),https://uofi.box.com/s/3updbqgxplibps7u5518ije6wqiwza8y,https://utc.uic.edu/news-stories/intermodal-logistics-centers-can-drive-increase-in-industrial-property-values-along-high-capacity-trucking-highways-2/,,,,,Skipped: Box link
Box,News (ACF Field),Integrated Modeling of High Performance Passenger and Freight Train Operation Planning on Shared Use Rail Corridors: A Focus on the US Context (Field: intro_text_body),https://uofi.app.box.com/s/k8uun7pa0t9xjvwmudfss2ugqq9v5wz7,https://utc.uic.edu/news-stories/integrated-modeling-of-high-performance-passenger-and-freight-train-operation-planning-on-shared-use-rail-corridors-a-focus-on-the-us-context-2/,,,,,Skipped: Box link
PDF,News (ACF Field),Planning Transportation to Meet the Needs of an Aging Illinois: An Assessment (Field: intro_text_body),https://utc.uic.edu/wp-content/uploads/Planning-Transportation-to-Meet-the-Needs-of-an-Aging-Illinois-2.26_reduced-1.pdf,https://utc.uic.edu/news-stories/planning-transportation-to-meet-the-needs-of-an-aging-illinois-an-assessment-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://utc.uic.edu/wp-content/uploads/Planning-Transportation-to-Meet-the-Needs-of-an-Aging-Illinois-2.26_reduced-1.pdf
PDF,News (ACF Field),Best Practices in Regional Transit Governance Forum (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Program-Best-Pratices-in-Regional-Transit-Governance-Final1.pdf,https://utc.uic.edu/news-stories/best-practices-in-regional-transit-governance-forum/,643446.0,3.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Best Practices in Regional Transit Governance Forum (Field: intro_text_body),http://utc.red.uic.edu/wp-content/uploads/sites/75/2020/02/Bio-Inserts-Best-Practices-in-Regional-Transit-Governance-Final1.pdf,https://utc.uic.edu/news-stories/best-practices-in-regional-transit-governance-forum/,249668.0,2.0,True,False,No tags detected via pdfminer3
Box,News (ACF Field),Pedestrian/Bicyclist Warning Devices and Signs at Highway-Rail and Pathway-Rail Grade Crossings (Field: intro_text_body),https://uofi.box.com/s/uvwq4zme0586yfmp2rjnqvru5ttc7s0z,https://utc.uic.edu/news-stories/pedestrian-bicyclist-warning-devices-and-signs-at-highway-rail-and-pathway-rail-grade-crossings/,,,,,Skipped: Box link
Box,Event (ACF Field),"Overview of BNSF, UP, and CN, And the Freight Rail Industry&#8217;s Footprint in Chicago (Field: description)",https://uofi.app.box.com/folder/324924687652?s=3rxco7cxr31ov8wixna6yf42trncuyfs,https://utc.uic.edu/events/overview-of-bnsf-up-and-cn-and-the-freight-rail-industrys-footprint-in-chicago/,,,,,Skipped: Box link
Box,Event (ACF Field),Mobility Recovery: Rethinking Mobility in a Post-COVID Chicago Region (Field: description),https://uofi.app.box.com/s/fujivstdz47v8rcaetsyjo7v4potcb42,https://utc.uic.edu/events/mobility-recovery-rethinking-mobility-in-a-post-covid-chicago-region/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jang, Jin (Field: cv_link)",https://uofi.box.com/s/d5ud0cn7vywoh1ipkmnz1ograexl516z,https://utc.uic.edu/profiles/jang-jinhyuk/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Regional Rural Transportation Planning and the Role of the Rural Planning Organizations (Field: abstract),https://uofi.box.com/s/qntodotbzl4jvl3j7o1vmfucn700x9gc,https://utc.uic.edu/research/regional-rural-transportation-planning-and-the-role-of-the-rural-planning-organizations/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Railroad-Highway Crossing Safety Improvement Evaluation and Prioritization Tool (Field: abstract),https://uofi.box.com/s/d6blyfasgynyfqgel7lwcam1c3h1j8q2,https://utc.uic.edu/research/railroad-highway-crossing-safety-improvement-evaluation-and-prioritization-tool/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Illinois Department of Transportation Accessibility Study (Field: abstract),https://uofi.box.com/s/2qh04yruubpktx264y5de86mlvox4rxf,https://utc.uic.edu/research/illinois-department-of-transportation-accessibility-study-with-national-accessibility-evaluation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Statewide Intercity Passenger Transportation in Illinois (Field: abstract),https://uofi.app.box.com/file/1085907823991?s=7z78bh8cl1feensou9kcnlebpfv43jq7,https://utc.uic.edu/research/statewide-intercity-passenger-transportation-in-illinois/,,,,,Skipped: Box link
Box,Research Project (ACF Field),State Departments of Transportation: Planning Function Reorganization (Field: abstract),https://uofi.box.com/s/8tlszizg028ge4wc5yjwwh9l16b4liay,https://utc.uic.edu/research/state-departments-of-transportation-planning-function-reorganization/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Environmental Impact Assessment of Rail Infrastructure (Field: abstract),https://uofi.box.com/s/7h8ai9f8xy9yn963fc8pr0j37znenneg,https://utc.uic.edu/research/environmental-impact-assessment-of-rail-infrastructure/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Leveraging Connected Highway Vehicle Platooning  Technology to Improve the Efficiency and  Effectiveness of Train Fleeting Under Moving Blocks (Field: abstract),https://uofi.box.com/s/5l6dv2utjj5onx56smt41y9cuc7ecl26,https://utc.uic.edu/research/leveraging-connected-highway-vehicle-platooning-technology-to-improve-the-efficiency-and-effectiveness-of-train-fleeting-under-moving-blocks/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Pedestrian/Bicyclist Warning Devices and Signs at Highway-Rail and Pathway-Rail Grade Crossings (Field: abstract),https://uofi.app.box.com/file/413399743249,https://utc.uic.edu/research/pedestrian-bicyclist-warning-devices-and-signs-at-highway-rail-and-pathway-rail-grade-crossings/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Maritime Freight Data Collection Systems and Database to Support Performance Measures and Market Analyses (Field: abstract),https://uofi.box.com/s/oilmpb0d04oh8atbwixec89ak6n3tonk,https://utc.uic.edu/research/maritime-freight-data-collection-systems-and-database-to-support-performance-measures-and-market-analyses/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Rail-Highway Crossing Delay Study for Dolton and Riverdale (Field: abstract),https://uofi.box.com/s/vfy8htfsvtbnf2wqcu1pf2hdxr96bswd,https://utc.uic.edu/research/rail-highway-crossing-delay-study-for-dolton-and-riverdale/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Deficiencies in Public Transit Accessibility  of Healthcare Facilities in Chicago (Field: abstract),https://uofi.box.com/s/6j20hdow0mlbrjwwivodslflcgehh483,https://utc.uic.edu/research/deficiencies-in-public-transit-accessibility-of-healthcare-facilities-in-chicago/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Freight Planning for the Dolton and Riverdale Gateway: Grade Separation (Field: abstract),https://uofi.box.com/s/6v3hhq2mq9qp28n397mh22gg4m8u7096,https://utc.uic.edu/research/freight-planning-for-the-dolton-and-riverdale-gateway-grade-separation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Quiet Zone Study for Dolton and Riverdale (Field: abstract),https://uofi.box.com/s/phef8w93xcezq0b9a799gz0e34ttx4kc,https://utc.uic.edu/research/quiet-zone-study-for-dolton-and-riverdale/,,,,,Skipped: Box link
Box,Research Project (ACF Field),ADA Special Services: Price Elasticity for the Provision of Free Service In the State of Illinois (Field: abstract),https://uofi.box.com/s/lp1co04qd0pj1mapb24w466znib6g8x9,https://utc.uic.edu/research/ada-special-services-price-elasticity-for-the-provision-of-free-service-in-the-state-of-illinois/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Impact of Freight Congestion on the Chicago Area Commute (Field: abstract),https://uofi.box.com/s/sk2rye0dl2oyxtbjco8mnkjfe8l34w2w,https://utc.uic.edu/research/the-impact-of-freight-congestion-on-the-chicago-area-commute/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Off-Peak Delivery: A Pilot Project for the Chicago Region (Field: abstract),https://uofi.box.com/s/2x8af4hmc2o12d50x4egrohvfxbab6zl,https://utc.uic.edu/research/off-peak-delivery-a-pilot-project-for-the-chicago-region/,,,,,Skipped: Box link
Box,Research Project (ACF Field),State of Illinois Job Access Reverse Commuter Program (Field: abstract),https://uofi.box.com/s/a0aht577sfhimuimdx7mzvnyyud6d9l0,https://utc.uic.edu/research/state-of-illinois-job-access-reverse-commuter-program/,,,,,Skipped: Box link
Box,Research Project (ACF Field),"Pedestrian Safety in Illinois, 1990-2000 (Field: abstract)",https://uofi.box.com/s/owhfw0g9trpj6dbdxw9ijtwpdszqzlmm,https://utc.uic.edu/research/pedestrian-safety-in-illinois-1990-2000/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Best Practices for Linking Strategic Planning to Resource Allocation and Implementation Decisions Using Elements of a Transportation Asset Management Program (Field: abstract),https://uofi.box.com/s/a6wd8iolkyw4wozqvroa64kiiqahyifb,https://utc.uic.edu/research/best-practices-for-linking-strategic-planning-to-resource-allocation-and-implementation-decisions-using-elements-of-a-transportation-asset-management-program/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Where is the 2000-2005 Growth in Metropolitan Chicago: Collar or Fringe Counties? (Field: abstract),https://uofi.box.com/s/ys1gcscoo73x0cuv16l6dl7onsgdd42m,https://utc.uic.edu/research/where-is-the-2000-2005-growth-in-metropolitan-chicago-collar-or-fringe-counties/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Are Sprawl and Obesity Related? Evidence from the Chicago Area (Field: abstract),https://uofi.box.com/s/5uhzcumi438barqn7gdh9dhqi8bdwfke,https://utc.uic.edu/research/are-sprawl-and-obesity-related-evidence-from-the-chicago-area/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Economic Analysis and Partnerships of the Job Access and Reverse Commute Program (Field: abstract),https://uofi.box.com/s/1csx5c88vipam4onq94o4xizw6fqrlif,https://utc.uic.edu/research/economic-analysis-and-partnerships-of-the-job-access-and-reverse-commute-program-2/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Lake County Coordinated Paratransit Study (Field: abstract),https://uofi.box.com/s/us8goakqqc535poesnt64jwybigixqio,https://utc.uic.edu/research/lake-county-coordinated-paratransit-study/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Ramp High Occupancy Vehicle (HOV) (Field: abstract),https://uofi.box.com/s/9pgra31e0z8evq10kh85lpxxdqnlf8hv,https://utc.uic.edu/research/ramp-high-occupancy-vehicle-hov/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Relationship of Transportation and the Housing Crisis (Field: abstract),https://uofi.box.com/s/2ang847su4cc7oy4xv0fsv995mcr6bbo,https://utc.uic.edu/research/the-relationship-of-transportation-and-the-housing-crisis/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Coordination and Partnerships in Employment and Human Services Transportation (Field: abstract),https://uofi.box.com/s/mgte7yc2gfwluuvuorxla532ironbukj,https://utc.uic.edu/research/coordination-and-partnerships-in-employment-and-human-services-transportation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Mobility Management: State of the States Report (Field: abstract),https://uofi.box.com/s/pry1psqc684sav7uhezz1cwlv6z6z5t7,https://utc.uic.edu/research/mobility-management-state-of-the-states-report/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Scoping Data Access and Integration Needs to Facilitate Better Management of Research Innovation (Field: abstract),https://uofi.box.com/s/d2xrpl6cpnmcmb696bucz6vgpnuu1krf,https://utc.uic.edu/research/scoping-data-access-and-integration-needs-to-facilitate-better-management-of-research-innovation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Analysis Of The Impact of the Senior Ride Free and Circuit Breaker Programs on the Public Transit in the Chicago Region (Field: abstract),https://uofi.box.com/s/dz7n490cujj52f832khkkp3ax0cajf1g,https://utc.uic.edu/research/analysis-of-the-impact-of-the-senior-ride-free-and-circuit-breaker-programs-on-the-public-transit-in-the-chicago-region/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Burnham Transportation Plan of Chicago: 100 Years Later (Field: abstract),https://uofi.box.com/s/ukmqh8nsvi4ai2yqs0t2cqrotf78kium,https://utc.uic.edu/research/the-burnham-transportation-plan-of-chicago-100-years-later/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Bus on Shoulders: Analysis of Preliminary Concept (Field: abstract),https://uofi.box.com/s/sxhdu5e10q70ajkq0qtk5nmpnm7pjt9d,https://utc.uic.edu/research/bus-on-shoulders-analysis-of-preliminary-concept/,,,,,Skipped: Box link
Box,Research Project (ACF Field),"Chicago-Area Sprawl Revisited: The Role of Demographics, Prosperity and Homeownership with a Note on Sustainability (Field: abstract)",https://uofi.box.com/s/3e18c6ilhya0ro88rivlwi7dkqthd66c,https://utc.uic.edu/research/chicago-area-sprawl-revisited-the-role-of-demographics-prosperity-and-homeownership-with-a-note-on-sustainability/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Housing-Transportation Cost Trade-off Implications for Urban Sprawl (Field: abstract),https://uofi.box.com/s/rz1etksnd9d3347kisf0uffq681n2m80,https://utc.uic.edu/research/housing-transportation-cost-trade-off-implications-for-urban-sprawl/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Integrated Approaches to EV Charging Infrastructure and Transit System Planning (Field: abstract),https://uofi.box.com/s/g85wb5ux9t55asfzc310hss358k5ae6z,https://utc.uic.edu/research/integrated-approaches-to-ev-charging-infrastructure-and-transit-system-planning-2/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Case for Rail Transit Expansion in the Chicago Central Area (Field: abstract),https://uofi.box.com/s/zcl8l6mxigk09or6va0bjn5izgz99upd,https://utc.uic.edu/research/the-case-for-rail-transit-expansion-in-the-chicago-central-area/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Planning Transportation for an Aging Illinois: An Assessment (Field: abstract),https://uofi.box.com/s/2odqbnz1bpqjj3yrzx1dndteb21iaevr,https://utc.uic.edu/research/planning-transportation-for-an-aging-illinois-an-assessment/,,,,,Skipped: Box link
Box,Research Project (ACF Field),"Transit Value Capture Coordination: Case Studies, Best Practices, and Recommendations (Field: abstract)",https://uofi.box.com/s/hctb7e6xn1mupx7pocxzbvvjy6wxh8gw,https://utc.uic.edu/research/transit-value-capture-coordination-case-studies-best-practices-and-recommendations/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Integrated Modeling of High Performance Passenger and Freight Train Operation Planning on Shared Use Rail Corridors: A Focus on the US Context (Field: abstract),https://uofi.box.com/s/k8uun7pa0t9xjvwmudfss2ugqq9v5wz7,https://utc.uic.edu/research/integrated-modeling-of-high-performance-passenger-and-freight-train-operation-planning-on-shared-use-rail-corridors-a-focus-on-the-us-context/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Mode Choice Modelling Using Personalized Travel Time and Cost Data (Field: abstract),https://uofi.box.com/s/ac4fqx32c3zu1qk9e4mo2380czgk063f,https://utc.uic.edu/research/mode-choice-modelling-using-personalized-travel-time-and-cost-data/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Development of an Analytical Framework to Rank Pedestrian and Cyclist Projects (Field: abstract),https://uofi.box.com/s/1uzjn8lckjv4063p0mkihfc01pht45l4,https://utc.uic.edu/research/development-of-an-analytical-framework-to-rank-pedestrian-and-cyclist-projects/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Economic Benefits of Productivity Increases through Truck-to-Rail Mode Shift in Freight Transport (Field: abstract),https://uofi.box.com/s/7pp8d0fpal74yo5ntbd63ua92j2p6aus,https://utc.uic.edu/research/economic-benefits-of-productivity-increases-through-truck-to-rail-mode-shift-in-freight-transport/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Developing Performance Measures for the Illinois Maritime Freight Transportation System (Field: abstract),https://uofi.box.com/s/dbkjtxaf29suackl9fhqgya3drz855b4,https://utc.uic.edu/research/developing-performance-measures-for-the-illinois-maritime-freight-transportation-system/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Report Proposing a Program and Project Prioritization Framework for the Illinois Department of Transportation (IDOT) (Field: abstract),https://uofi.box.com/s/c3x5hlevmxxw9jdya5cv2wv6gpir701o,https://utc.uic.edu/research/report-proposing-a-program-and-project-prioritization-framework-for-the-illinois-department-of-transportation-idot/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Pedestrian/Bicyclist Warning Devices and Signs at CTA Rail-Highway Grade Crossings (Field: abstract),https://uofi.box.com/s/azc7u1qem287np1feueprnj2elg7kb8f,https://utc.uic.edu/research/pedestrian-bicyclist-warning-devices-and-signs-at-cta-rail-highway-grade-crossings/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Increasing Mobility Through Enhanced Transit Connectivity (Field: abstract),https://uofi.box.com/s/idofceks35f000tvlup8va1l320fu5wu,https://utc.uic.edu/research/increasing-mobility-through-enhanced-transit-connectivity/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Exploring the Potential for Off Peak Delivery in Metropolitan Chicago: Research Findings and Conclusions (Field: abstract),https://uofi.box.com/s/p1x7js73senyseb0k5e71yj80d3m21pk,https://utc.uic.edu/research/exploring-the-potential-for-off-peak-delivery-in-metropolitan-chicago-research-findings-and-conclusions/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The Illinois One-Click Transportation Resource Center (Field: abstract),https://uofi.box.com/s/6zrbhhdi0pjg6wdgedw8kt67lk8sseek,https://utc.uic.edu/research/the-illinois-one-click-transportation-resource-center/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Decision Analysis to Address Extreme Weather: Extreme Weather Effects on Ridership and Modeling the Decision to Invest in Canopy Coverage (Field: abstract),https://uofi.box.com/s/o4z4cs4izraw2a7wtxe7du48iip6ia4g,https://utc.uic.edu/research/decision-analysis-to-address-extreme-weather-extreme-weather-effects-on-ridership-and-modeling-the-decision-to-invest-in-canopy-coverage/,,,,,Skipped: Box link
Box,Research Project (ACF Field),National Survey of US Public Transit Agency Experience with and Response to Extreme Weather Events (Field: abstract),https://uofi.box.com/s/gj3wz7fzamcas0qy15gfk5rlmzrl37vr,https://utc.uic.edu/research/national-survey-of-us-public-transit-agency-experience-with-and-response-to-extreme-weather-events/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Results From a Survey of Transportation Professionals Regarding the Return on Investment for Passenger Rail (Field: abstract),https://uofi.box.com/s/ook4qx0vf34268g5w1nelj6d3cy1onzm,https://utc.uic.edu/research/results-from-a-survey-of-transportation-professionals-regarding-the-return-on-investment-for-passenger-rail/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Catching up to Automated Technology: How DOTs Can Stay Ahead of the Curve For Freight (Field: abstract),https://uofi.box.com/s/hbmebqresh4np9hnfh54g63k7o943v31,https://utc.uic.edu/research/catching-up-to-automated-technology-how-dots-can-stay-ahead-of-the-curve-for-freight/,,,,,Skipped: Box link
Box,Research Project (ACF Field),CPS Travel Training Evaluation Project (Field: abstract),https://uofi.box.com/s/ect9alozzekuyuijv98naharlaa9j6oa,https://utc.uic.edu/research/cps-travel-training-evaluation-project/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Analysis of Factors Affecting Truck Parking Violation Frequency in Urban Areas (Field: abstract),https://uofi.box.com/s/yvinmj7iihjqv741mfyiuaiztmkpm6bx,https://utc.uic.edu/research/analysis-of-factors-affecting-truck-parking-violation-frequency-in-urban-areas/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Reducing Commuting-Related Environmental Impacts in the Healthcare Sector: An Exploratory Study (Field: abstract),https://uofi.box.com/s/bsjs50jbnb98iexnvemq51qirirzw8sh,https://utc.uic.edu/research/reducing-commuting-related-environmental-impacts-in-the-healthcare-sector-an-exploratory-study/,,,,,Skipped: Box link
Box,Research Project (ACF Field),A Review Of Capital Improvement Grant Program and the Need For a Uniform Project Selection Process (Field: abstract),https://uofi.box.com/s/03o5gh3fxv9be2ym6bkpvh9lg2dktpgs,https://utc.uic.edu/research/a-review-of-capital-improvement-grant-program-and-the-need-for-a-uniform-project-selection-process/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Integration of Transportation for Improved Mobility (Field: abstract),https://uofi.box.com/s/oucu54olww2h5zcctrdwwtloolk1p59q,https://utc.uic.edu/research/integration-of-transportation-for-improved-mobility/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Public Transit to Public Lands: The Nature Express (Field: abstract),https://uofi.box.com/s/bj5irpo9xiekkcyyyz8itopegvwrevd9,https://utc.uic.edu/research/public-transit-to-public-lands-the-nature-express/,,,,,Skipped: Box link
Box,Research Project (ACF Field),An Analysis of the Illinois Maritime Transportation System (Field: abstract),https://uofi.box.com/s/i1dhn0lrlfegwo8q4vgs1kyjovfaqkcq,https://utc.uic.edu/research/an-analysis-of-the-illinois-maritime-transportation-sysatem/,,,,,Skipped: Box link
Box,Research Project (ACF Field),A New Approach to Public Engagement: Capturing Better Ideas and Representative Priorities from the Public for the Illinois Department of Transportation (Field: abstract),https://uofi.box.com/s/gtgpdb1lr9s3kxf03iwkjcam8idbx67n,https://utc.uic.edu/research/a-new-approach-to-public-engagement-capturing-better-ideas-and-representative-priorities-from-the-public-for-the-illinois-department-of-transportation/,,,,,Skipped: Box link
Box,Research Project (ACF Field),Framework for Assessing the ROI for High-Speed and Intercity Rail Projects (Field: abstract),https://uofi.box.com/s/ejec8vra49k8dzyoytm25wcmtyzc5x9f,https://utc.uic.edu/research/framework-for-assessing-the-roi-for-high-speed-and-intercity-rail-projects/,,,,,Skipped: Box link
Box,Research Project (ACF Field),The History of the City of Chicago Central Area Transit Circulation Efforts (Field: abstract),https://uofi.app.box.com/file/398650141281?s=xd6e08uw1ctzkuphetxlu2xxb3my7liq,https://utc.uic.edu/research/the-history-of-the-city-of-chicago-central-area-transit-circulation-efforts-2/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Moreno, Teresa Helena (Field: cv_link)",https://uofi.box.com/s/k91lrgknuqpnkktshek3uezdnoeso77o,https://uep.uic.edu/profiles/moreno-teresa/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Jackson, Jennifer M. (Field: cv_link)",https://uofi.box.com/s/tmf9d6yk64kfku1hzvajmcbtsf9tbtwq,https://uep.uic.edu/profiles/jackson-jennifer/,,,,,Skipped: Box link
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2025/03/Spring-2025-MIE-Advisor-List.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,528120.0,28.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2025/03/AdvisingUndergraduateRULES-OL.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,71221.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2025/03/MIE-Fall-2025-Course-Schedule-Online.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,120612.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/10/SP-2025-Course-Schedule.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,595464.0,2.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/03/Fall-2024-Course-Schedule.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,421188.0,4.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/10/ME-Course-Plan-Fall-2017-Spring-2024.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,485686.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/10/ME-Course-Plan-Flowchart-Fall-2024-and-Later-ONLY.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,370533.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/10/IE-Course-Plan-Flowchart-Fall-2017-Spring-2024.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,208405.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/10/IE-Course-Plan-Flowchart-Fall-2024-and-Later-ONLY.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,376643.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Academic Advising Information (Field: intro_text_body),https://mie.uic.edu/wp-content/uploads/sites/352/2024/10/EM-Course-Plan-Flowchart-Fall-2017-and-AfterColor-1.pdf,https://mie.uic.edu/undergraduate/student-resources/academic-advising-information/,437715.0,1.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Annual Evaluation of Faculty (Field: intro_text_body),https://uofi.box.com/s/llo4ucj48ubmhv40l44fhfz0yfu4y00v,https://facultyhandbook.uic.edu/sections/section-5-policies-governing-faculty-appointments/annual-evaluation-of-faculty/,,,,,Skipped: Box link
Box,Page (ACF Field),Access to Personnel Records (Field: intro_text_body),https://uofi.app.box.com/s/h4nnhg9l8htuvrxgkkb7hvbqcbv95kvx,https://facultyhandbook.uic.edu/sections/section-2-general-university-policies/access-to-personnel-records/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/r2c4usjq3wixocbyr0vcmnx6muyai03j,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/v8n4jqpxljvsdocxw7ewn2f9jsjlfolo,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/v7excmqwhq3mpsc8zate42l95zgza5uu,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/jc312jr7mf53rn3uqz61i8miswfffv2i,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/xe5cp130mk5oagt81va1ucxa996403je,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/m9sgdji8e5ldwcer2qkd7sfqyrn5t0ni,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/yk6u9vhgud1gm9qmab260uide0axncp8,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),Inspection Readiness (Field: intro_text_body),https://uofi.box.com/s/xcwi69jn7jiwi3zwjuyq2oeb8j7kri07,https://research.uic.edu/compliance/controlled-substances-cs/inspection-readiness/,,,,,Skipped: Box link
Box,Page (ACF Field),UIC Research Electronic Submission System (Field: intro_text_body),https://uofi.box.com/s/b6i2zbt87hcmuj2fwar05eqo6b309d7k,https://research.uic.edu/compliance/animal-care-use-acc/uic-research-electronic-submission-system/,,,,,Skipped: Box link
PDF,Page (ACF Field),Facilities &amp; Administration Costs (Field: intro_text_body),https://storage.courtlistener.com/recap/gov.uscourts.mad.280590/gov.uscourts.mad.280590.25.0.pdf,https://research.uic.edu/fa-costs/,142382.0,2.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Current and Pending Support NSF (Field: intro_text_body),https://www.nsf.gov/bfa/dias/policy/cps_faqs/currentandpendingfaqs_feb2023.pdf,https://research.uic.edu/current-and-pending-support-nsf/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),NSF Overview (Field: intro_text_body),https://www.nsf.gov/news/factsheets/Factsheet_By%20the%20Numbers_05_21_V02.pdf,https://research.uic.edu/nsf-overview/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),NEA Overview (Field: intro_text_body),https://www.arts.gov/sites/default/files/NEA-research-agenda-12.21.pdf,https://research.uic.edu/nea-overview/,2181005.0,13.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Department of Energy Overview (Field: intro_text_body),https://www.energy.gov/sites/default/files/2022-10/Department%20of%20Energy%20Interim%20Conflict%20of%20Interest%20Policy.pdf,https://research.uic.edu/department-of-energy-overview/,280812.0,19.0,True,True,Tags detected via pdfminer3
Box,Page (ACF Field),UIC Postdoc Association FAQ (Field: intro_text_body),https://uofi.app.box.com/v/postdoc-association-bylaws,https://research.uic.edu/opa/uic-postdoc-association-faq/,,,,,Skipped: Box link
PDF,Page (ACF Field),International Travel (Field: intro_text_body),https://www.ethics.uillinois.edu/UserFiles/Servers/Server_1132/File/5%20Minute%20Video%20Printable%20Resource%20Pages/International%20Travel%20and%20Export%20Controls%20Resource%20Page%20Chicago%201-9-2017.pdf,https://research.uic.edu/compliance/ori/inttravel/,322212.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Embryonic Stem Cell Review Committee (ESCRO) (Field: intro_text_body),http://tigger.uic.edu/depts/ovcr/research/protocolreview/escro/policies/NAS_Guidelines.pdf,https://research.uic.edu/compliance/embryonic-stem-cell-review-committee-escro/,,,,,"Download failed: HTTPConnectionPool(host='tigger.uic.edu', port=80): Max retries exceeded with url: /depts/ovcr/research/protocolreview/escro/policies/NAS_Guidelines.pdf (Caused by NameResolutionError(""<urllib3.connection.HTTPConnection object at 0x105978e20>: Failed to resolve 'tigger.uic.edu' ([Errno 8] nodename nor servname provided, or not known)""))"
Box,Page (ACF Field),Policies &amp; Guidances (Field: intro_text_body),https://uofi.box.com/s/tixwgobwxui5x6jvtkko8dwspkss2moj,https://research.uic.edu/compliance/controlled-substances-cs/policies-guidance/,,,,,Skipped: Box link
Box,Page (ACF Field),College Administrators Resources (Field: intro_text_body),https://uofi.box.com/s/fupqwy5lfqfdybpl2ntwc389wpfe1xd4,https://research.uic.edu/compliance/coi/outsideactivities/rnua-administrators-resources/,,,,,Skipped: Box link
Box,Page (ACF Field),College Administrators Resources (Field: intro_text_body),https://uofi.box.com/s/rb0k237i21v1mi30fa0ifre2txx37yc3,https://research.uic.edu/compliance/coi/outsideactivities/rnua-administrators-resources/,,,,,Skipped: Box link
PDF,Page (ACF Field),Foreign Government Interference (Field: intro_text_body),https://www.whitehouse.gov/wp-content/uploads/2022/01/010422-NSPM-33-Implementation-Guidance.pdf,https://research.uic.edu/compliance/ori/fgi/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.whitehouse.gov/wp-content/uploads/2022/01/010422-NSPM-33-Implementation-Guidance.pdf
Box,News (ACF Field),Introducing new Director of Post-Award Angelo Chrisomalis (Field: intro_text_body),https://uofi.app.box.com/s/heaoothzo15u6omh2e7a6lsr7msh1o6i,https://research.uic.edu/news-stories/introducing-new-director-of-post-award-angelo-chrisomalis/,,,,,Skipped: Box link
Box,News (ACF Field),NEW IBC Policy on Use of Human and Non-Human Primate Source Materials (Field: intro_text_body),https://uofi.app.box.com/file/1310211570709?s=jcgeufnaoit86qqtfhk60bl8u76oxenb,https://research.uic.edu/news-stories/new-ibc-policy-on-use-of-human-and-non-human-primate-source-materials/,,,,,Skipped: Box link
Box,News (ACF Field),OVCR 2023 Holiday Schedule (Field: intro_text_body),https://uofi.box.com/s/l5h3fezg0y4205tf104qm4ka2c7354fm,https://research.uic.edu/news-stories/ovcr-2023-holiday-schedule/,,,,,Skipped: Box link
PDF,News (ACF Field),New report quantifies the size and ubiquity of the U.S. home appraisal gap (Field: intro_text_body),https://static1.squarespace.com/static/62e84d924d2d8e5dff96ae2f/t/6465321aca101a0b82e45344/1684353568112/Howell+2022+Appraised+Update_05_01_23.pdf.pdf,https://research.uic.edu/news-stories/new-report-quantifies-the-size-and-ubiquity-of-the-u-s-home-appraisal-gap/,6507344.0,16.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),NIH Multi-Factor Authentication for PIs and Senior/Key Personnel (Field: intro_text_body),https://era.nih.gov/files/2FA_flyer.pdf,https://research.uic.edu/news-stories/nih-multi-factor-authentication-for-pis-and-senior-key-personnel/,621020.0,8.0,True,True,Tags detected via pdfminer3
Box,Event (ACF Field),NSF MRI Internal Proposers and Users Forum (Field: description),https://uofi.box.com/s/rwhpltokixr7vtxjgjb7zmd78z2ku90x,https://research.uic.edu/events/rd-mriinternalforum-20240906/,,,,,Skipped: Box link
Box,Event (ACF Field),"Data Science Lightning Talks, Friday, October 23 (Field: description)",https://uofi.box.com/s/esfqqdd4dicu6txu98z8zq7l7b3xzxhc,https://research.uic.edu/events/data-science-lightning-talks-2-2-2/,,,,,Skipped: Box link
PDF,Event (ACF Field),2020 Career Development Symposium (Field: description),https://emails.uofi.uic.edu/files/1140325099/cds_2020_open_registration_compressed.pdf,https://research.uic.edu/events/2020-career-development-symposium/,,,,,Download failed: 404 Client Error: Not Found for url: https://emails.uofi.uic.edu/files/99/1140325099/cds_2020_open_registration_compressed.pdf
Box,Event (ACF Field),"Data Science Lightning Talks, Friday, August 7 (Field: description)",https://uofi.box.com/s/5o5c1skwe4ce94lv33ciaca0z5gler9p,https://research.uic.edu/events/data-science-lightning-talks-2-2/,,,,,Skipped: Box link
PDF,Event (ACF Field),Managing Change in Extraordinary Times Workshop &#8211; Part II (Field: description),https://emails.uofi.uic.edu/files/6257141/pda_flyer_shalini_nag_managing_change.pdf,https://research.uic.edu/events/managing-change-in-extraordinary-times-workshop-part-i-2/,,,,,Download failed: 404 Client Error: Not Found for url: https://emails.uofi.uic.edu/files/41/6257141/pda_flyer_shalini_nag_managing_change.pdf
Box,Event (ACF Field),2020 Virtual Short Course in Clinical and Translational Research Methods (Field: description),https://uofi.box.com/s/zku0ylyx3q6a6hhi6f7r3jzcb5nprb0o,https://research.uic.edu/events/2020-virtual-short-course-in-clinical-and-translational-research-methods/,,,,,Skipped: Box link
Box,Event (ACF Field),"Data Science Lightning Talks, Friday, June 26 (Field: description)",https://uofi.box.com/s/hox1ows7myjphvyoqnoxtdngkakv1vi4,https://research.uic.edu/events/data-science-lightning-talks-2/,,,,,Skipped: Box link
Box,Event (ACF Field),Data Science Lightning Talks (Field: description),https://uofi.box.com/s/qps2mit8ewexpyummf2zx9sd1z1esp38,https://research.uic.edu/events/data-science-lightning-talks/,,,,,Skipped: Box link
PDF,Event (ACF Field),1st Annual UIC Center for Bioinformatics and Quantitative Biology Research Day (Field: description),https://web.bioe.uic.edu/bioe-wp/bioe-events/bioi-cbqb-research-day2020_85x11.pdf,https://research.uic.edu/events/1st-annual-uic-center-for-bioinformatics-and-quantitative-biology-research-day/,,,,,"Download failed: HTTPSConnectionPool(host='web.bioe.uic.edu', port=443): Max retries exceeded with url: /bioe-wp/bioe-events/bioi-cbqb-research-day2020_85x11.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: EE certificate key too weak (_ssl.c:1028)')))"
PDF,Event (ACF Field),Embracing Dystopia: Racial Nonfictions in the Age of Genomics and Other Seductive Data (Field: description),https://files.webservices.illinois.edu/9005/duanafullwiley_embodiedinequalities.pdf,https://research.uic.edu/events/embracing-dystopia-racial-nonfictions-in-the-age-of-genomics-and-other-seductive-data/,3888995.0,1.0,False,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Spring 2020 Bioinformatics Workshop Series (Field: description),https://files.webservices.illinois.edu/9005/ric-spring-workshop_flyer-2020.pdf,https://research.uic.edu/events/spring-2020-bioinformatics-workshop-series/,510748.0,1.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),3i Epic Training and Registration Overview (Field: description),https://research.uic.edu/wp-content/uploads/sites/232/2019/10/11.4-Training-and-Reg-Flyer.pdf,https://research.uic.edu/events/3i-epic-training-and-registration-overview/,,,,,Download failed: 404 Client Error: Not Found for url: https://research.uic.edu/wp-content/uploads/sites/232/2019/10/11.4-Training-and-Reg-Flyer.pdf
Box,Notification (ACF Field),UIC Postdoc Handbook (Field: action_url),https://uofi.box.com/v/uic-postdoc-handbook,https://research.uic.edu/?notification=uic-postdoc-handbook,,,,,Skipped: Box link
PDF,Limited Competition (ACF Field),NSF 20-569 Inclusion across the Nation of Communities of Learners of Underrepresented Discoverers in Engineering and Science (NSF INCLUDES) (Field: program_summary),https://www.whitehouse.gov/wp-content/uploads/2018/12/STEM-Education-Strategic-Plan-2018.pdf,https://research.uic.edu/limited-competition/nsf-20-569-inclusion-across-the-nation-of-communities-of-learners-of-underrepresented-discoverers-in-engineering-and-science-nsf-includes/,,,,,Download failed: 404 Client Error: Not Found for url: https://www.whitehouse.gov/wp-content/uploads/2018/12/STEM-Education-Strategic-Plan-2018.pdf
PDF,Limited Competition (ACF Field),PAR-19-072 Data Science Research: Personal Health Libraries for Consumers and Patients (R01 Clinical Trial Optional) (Field: program_summary),https://www.nlm.nih.gov/pubs/plan/lrp17/NLM_StrategicReport2017_2027.pdf,https://research.uic.edu/limited-competition/par-19-072-data-science-research-personal-health-libraries-for-consumers-and-patients-r01-clinical-trial-optional-4/,2386722.0,39.0,True,True,Tags detected via pdfminer3
PDF,Limited Competition (ACF Field),PAR-17-312 NINDS Neuroscience Development for Advancing the Careers of a Diverse Research Workforce (R25) (Field: program_summary),https://grants.nih.gov/training/minority_participation.pdf,https://research.uic.edu/limited-competition/par-17-312-ninds-neuroscience-development-for-advancing-the-careers-of-a-diverse-research-workforce-r25-4/,,,,,Download failed: 404 Client Error: Not Found for url: https://grants.nih.gov/training/minority_participation.pdf
PDF,Limited Competition (ACF Field),PAR-17-312 NINDS Neuroscience Development for Advancing the Careers of a Diverse Research Workforce (R25) (Field: program_summary),https://obamawhitehouse.archives.gov/sites/default/files/microsites/ostp/pcast-engage-to-excel-final_2-25-12.pdf,https://research.uic.edu/limited-competition/par-17-312-ninds-neuroscience-development-for-advancing-the-careers-of-a-diverse-research-workforce-r25-4/,2980565.0,130.0,True,False,No tags detected via pdfminer3
PDF,Limited Competition (ACF Field),"DE-FOA-0001909 Department of Energy, Materials and Chemical Sciences Research for Quantum Information Science (Field: program_summary)",https://science.energy.gov/~/media/bes/pdf/reports/2018/Quantum_computing.pdf,https://research.uic.edu/limited-competition/de-foa-0001909-department-of-energy-materials-and-chemical-sciences-research-for-quantum-information-science/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Limited Competition (ACF Field),"DE-FOA-0001909 Department of Energy, Materials and Chemical Sciences Research for Quantum Information Science (Field: program_summary)",https://science.energy.gov/~/media/bes/pdf/reports/2018/Quantum_systems.pdf,https://research.uic.edu/limited-competition/de-foa-0001909-department-of-energy-materials-and-chemical-sciences-research-for-quantum-information-science/,,,,,Download failed: Not a PDF based on Content-Type
PDF,Page (ACF Field),Non-University Clients (Field: intro_text_body),http://meetings.uic.edu/wp-content/uploads/sites/224/2018/10/Insurance-Requirements.pdf,https://meetings.uic.edu/reserving-space/non-university-clients/,50261.0,1.0,True,False,No tags detected via pdfminer3
PDF,Menu,Tips for Planning a Successful Event,http://meetings.uic.edu/wp-content/uploads/sites/224/2025/05/Tips-for-Planning-a-Successful-Event.pdf,,117139.0,1.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Courses (Field: intro_text_body),http://hist.uic.edu/wp-content/uploads/sites/268/2024/02/UIC-History-Fall-2024-Undergraduate-Course-Descriptions.pdf,https://hist.uic.edu/academics/courses/,157988.0,17.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Courses (Field: intro_text_body),http://hist.uic.edu/wp-content/uploads/sites/268/2024/02/UIC-History-Fall-2024-Graduate-Course-Descriptions.pdf,https://hist.uic.edu/academics/courses/,,,,,Download failed: 404 Client Error: Not Found for url: https://hist.uic.edu/wp-content/uploads/sites/268/2024/02/UIC-History-Fall-2024-Graduate-Course-Descriptions.pdf
Box,News (ACF Field),Fall 2023 List of Accomplishments (Field: intro_text_body),https://uofi.app.box.com/s/xu2ijfm8i7c945nqpc7m5ics87i4cazk,https://hist.uic.edu/news-stories/fall-2023-list-of-accomplishments/,,,,,Skipped: Box link
PDF,News (ACF Field),History Major Maximillian Gambony Presents Pioneering Research at Undergrad Research Forum (Field: intro_text_body),http://hist.uic.edu/wp-content/uploads/sites/268/2023/04/LASURI-Research-Project-Poster.pdf,https://hist.uic.edu/news-stories/history-major-maximillian-gambony-presents-pioneering-research-at-undergrad-research-forum/,4310114.0,1.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),History Major Maximillian Gambony Presents Pioneering Research at Undergrad Research Forum (Field: intro_text_body),https://forum.red.uic.edu/wp-content/uploads/sites/394/2018/11/Bag_Policy.pdf,https://hist.uic.edu/news-stories/history-major-maximillian-gambony-presents-pioneering-research-at-undergrad-research-forum/,368945.0,1.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Brownbag: Daniel Immerwahr on &#8220;How to Hide An Empire&#8221; (Field: intro_text_body),http://www.paulkrameronline.com/wp-content/uploads/2018/10/kramer-how-not-to-write-history-u.-s.-empire.pdf,https://hist.uic.edu/news-stories/brownbag-daniel-immerwahr-on-how-to-hide-an-empire/,,,,,Download failed: 406 Client Error: Not Acceptable for url: http://www.paulkrameronline.com/wp-content/uploads/2018/10/kramer-how-not-to-write-history-u.-s.-empire.pdf
PDF,News (ACF Field),Valedictory for Prof. Robert Johnston at JGAPE (Field: intro_text_body),http://hist.uic.edu/wp-content/uploads/sites/268/2018/11/valedictory_note.pdf,https://hist.uic.edu/news-stories/valedictory-for-prof-robert-johnston-at-jgape/,43789.0,2.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),History Matters 2017 (Field: intro_text_body),https://hist.uic.edu/docs/default-source/newsletters-and-past-perfects/history-matters-fall-2017.pdf?sfvrsn=cf05119a_2,https://hist.uic.edu/news-stories/history-matters-2017/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),SEE NEXT Seminar Series Begins October 15 (Field: intro_text_body),http://huminst.las.uic.edu/docs/ifth/ifth-map-with-parking.pdf?sfvrsn=2,https://hist.uic.edu/news-stories/see-next-seminar-series-begins-october-15/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),SEE NEXT Seminar Series Begins October 15 (Field: intro_text_body),http://huminst.las.uic.edu/docs/ifth/ifth-map-with-parking.pdf?sfvrsn=2</a></p>,https://hist.uic.edu/news-stories/see-next-seminar-series-begins-october-15/,,,,,Skipped: Not a PDF link
PDF,Profile (ACF Field),"Todd-Breland, Elizabeth (Field: about)",http://hist.uic.edu/wp-content/uploads/sites/268/2021/11/CV-Todd-Breland-8-16-18_.pdf,https://hist.uic.edu/profiles/todd-breland-elizabeth/,157390.0,8.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Directions (Field: intro_text_body),https://www.ihrp.uic.edu/files/UICVisitorMap.pdf,http://engage2.uic.edu/directions/,,,,,"Download failed: HTTPSConnectionPool(host='www.ihrp.uic.edu', port=443): Max retries exceeded with url: /files/UICVisitorMap.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
PDF,Page (ACF Field),Directions (Field: intro_text_body),https://www.ihrp.uic.edu/files/UICVisitorMap.pdf,https://engage2.uic.edu/directions/,,,,,"Download failed: HTTPSConnectionPool(host='www.ihrp.uic.edu', port=443): Max retries exceeded with url: /files/UICVisitorMap.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')))"
Box,Page (ACF Field),Disaster Plan (Field: intro_text_body),https://uofi.box.com/s/5cr79pjhn8asinfqtb7elv6q1lbzmkcz,http://brl.uic.edu/getting-started/disasterplan/,,,,,Skipped: Box link
Box,News (ACF Field),New Process for Animal Transfer Requests (Field: intro_text_body),https://uofi.box.com/s/kc3d9u0dyd3l8g1oa9fpvmkkoos2rf2p,http://brl.uic.edu/news-stories/animaltransferrequests/,,,,,Skipped: Box link
Box,News (ACF Field),Transnetyx Seminar &#8211; February 26th @ 11:30AM (Field: intro_text_body),https://uofi.box.com/s/e0erzcbamg53ypgyoul08c8hpimx2iz2,http://brl.uic.edu/news-stories/transnetyx/,,,,,Skipped: Box link
Box,News (ACF Field),BRL Holiday Schedule 2025 (Field: intro_text_body),https://uofi.box.com/s/nb0gkq6ephflfnh0osyt2eqovp2d1kj0,http://brl.uic.edu/news-stories/holidayschedule2025/,,,,,Skipped: Box link
Box,News (ACF Field),Individually Ventilated Caging Systems &#8211; Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/k3vm6u294ths6iold2clfhb8orvl9kye,http://brl.uic.edu/news-stories/ivc/,,,,,Skipped: Box link
Box,News (ACF Field),Individually Ventilated Caging Systems &#8211; Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/8xz1nvrvfm9ikc4lqfshly843ax2ekv8,http://brl.uic.edu/news-stories/ivc/,,,,,Skipped: Box link
Box,News (ACF Field),BRL Holiday Schedule 2024 (Field: intro_text_body),https://uofi.box.com/s/l5h3fezg0y4205tf104qm4ka2c7354fm,http://brl.uic.edu/news-stories/holidayschedule2024/,,,,,Skipped: Box link
Box,News (ACF Field),Laboratory Animal Medicine Residency Virtual Information Session &#8211; Nov 17th &amp; Dec 11th (Field: intro_text_body),https://uofi.box.com/s/qohkvrgqkixate5bliexodckcfwu374z,http://brl.uic.edu/news-stories/hvac-update-101623-2/,,,,,Skipped: Box link
Box,News (ACF Field),Cell Line and Tumor Testing Meeting &#8211; Sept 15th (Field: intro_text_body),https://uofi.box.com/s/rxjwyq0s8pd90e1byfho625qigpf8oe0,http://brl.uic.edu/news-stories/cellsandtumorszoom/,,,,,Skipped: Box link
Box,News (ACF Field),AAALAC Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/olxjaaid7c9a6h3w8bbejtzah3sq0js3,http://brl.uic.edu/news-stories/aaalac2023/,,,,,Skipped: Box link
Box,News (ACF Field),AAALAC Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/xqnz0qlhv169udvjpdr03bmnkqk80fpk,http://brl.uic.edu/news-stories/aaalac2023/,,,,,Skipped: Box link
Box,News (ACF Field),*New Updates* &#8211; BRL Construction Project 2/14/23 (Field: intro_text_body),https://uofi.box.com/s/g0xtz3dq9067exs41fnzqspmck0t10rf,http://brl.uic.edu/news-stories/construction-update-2-14-23/,,,,,Skipped: Box link
Box,News (ACF Field),*New Updates* &#8211; BRL Construction Project 12/29/22 (Field: intro_text_body),https://uofi.box.com/s/sfkk0a4tk5sng47dkhgebbhze0sd8wnp,http://brl.uic.edu/news-stories/construction-update-12-29-22/,,,,,Skipped: Box link
Box,News (ACF Field),*New Updates* &#8211; BRL Construction Project 11/09/22 (Field: intro_text_body),https://uofi.box.com/s/o6q9ktpayxn1vdm132m3oyqqhuuphixw,http://brl.uic.edu/news-stories/construction-update-11-9-22/,,,,,Skipped: Box link
PDF,Event (ACF Field),AAALAC Accreditation Site Visit (Field: description),https://brl.uic.edu/wp-content/uploads/sites/47/2020/10/Vol-35-No-1-AAALAC.pdf,http://brl.uic.edu/events/aaalac-accreditation-site-visit/,649758.0,4.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Disaster Plan (Field: intro_text_body),https://uofi.box.com/s/5cr79pjhn8asinfqtb7elv6q1lbzmkcz,https://brl.uic.edu/getting-started/disasterplan/,,,,,Skipped: Box link
Box,News (ACF Field),New Process for Animal Transfer Requests (Field: intro_text_body),https://uofi.box.com/s/kc3d9u0dyd3l8g1oa9fpvmkkoos2rf2p,https://brl.uic.edu/news-stories/animaltransferrequests/,,,,,Skipped: Box link
Box,News (ACF Field),Transnetyx Seminar &#8211; February 26th @ 11:30AM (Field: intro_text_body),https://uofi.box.com/s/e0erzcbamg53ypgyoul08c8hpimx2iz2,https://brl.uic.edu/news-stories/transnetyx/,,,,,Skipped: Box link
Box,News (ACF Field),BRL Holiday Schedule 2025 (Field: intro_text_body),https://uofi.box.com/s/nb0gkq6ephflfnh0osyt2eqovp2d1kj0,https://brl.uic.edu/news-stories/holidayschedule2025/,,,,,Skipped: Box link
Box,News (ACF Field),Individually Ventilated Caging Systems &#8211; Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/k3vm6u294ths6iold2clfhb8orvl9kye,https://brl.uic.edu/news-stories/ivc/,,,,,Skipped: Box link
Box,News (ACF Field),Individually Ventilated Caging Systems &#8211; Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/8xz1nvrvfm9ikc4lqfshly843ax2ekv8,https://brl.uic.edu/news-stories/ivc/,,,,,Skipped: Box link
Box,News (ACF Field),BRL Holiday Schedule 2024 (Field: intro_text_body),https://uofi.box.com/s/l5h3fezg0y4205tf104qm4ka2c7354fm,https://brl.uic.edu/news-stories/holidayschedule2024/,,,,,Skipped: Box link
Box,News (ACF Field),Laboratory Animal Medicine Residency Virtual Information Session &#8211; Nov 17th &amp; Dec 11th (Field: intro_text_body),https://uofi.box.com/s/qohkvrgqkixate5bliexodckcfwu374z,https://brl.uic.edu/news-stories/hvac-update-101623-2/,,,,,Skipped: Box link
Box,News (ACF Field),Cell Line and Tumor Testing Meeting &#8211; Sept 15th (Field: intro_text_body),https://uofi.box.com/s/rxjwyq0s8pd90e1byfho625qigpf8oe0,https://brl.uic.edu/news-stories/cellsandtumorszoom/,,,,,Skipped: Box link
Box,News (ACF Field),AAALAC Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/olxjaaid7c9a6h3w8bbejtzah3sq0js3,https://brl.uic.edu/news-stories/aaalac2023/,,,,,Skipped: Box link
Box,News (ACF Field),AAALAC Town Hall Meetings (Field: intro_text_body),https://uofi.box.com/s/xqnz0qlhv169udvjpdr03bmnkqk80fpk,https://brl.uic.edu/news-stories/aaalac2023/,,,,,Skipped: Box link
Box,News (ACF Field),*New Updates* &#8211; BRL Construction Project 2/14/23 (Field: intro_text_body),https://uofi.box.com/s/g0xtz3dq9067exs41fnzqspmck0t10rf,https://brl.uic.edu/news-stories/construction-update-2-14-23/,,,,,Skipped: Box link
Box,News (ACF Field),*New Updates* &#8211; BRL Construction Project 12/29/22 (Field: intro_text_body),https://uofi.box.com/s/sfkk0a4tk5sng47dkhgebbhze0sd8wnp,https://brl.uic.edu/news-stories/construction-update-12-29-22/,,,,,Skipped: Box link
Box,News (ACF Field),*New Updates* &#8211; BRL Construction Project 11/09/22 (Field: intro_text_body),https://uofi.box.com/s/o6q9ktpayxn1vdm132m3oyqqhuuphixw,https://brl.uic.edu/news-stories/construction-update-11-9-22/,,,,,Skipped: Box link
PDF,Event (ACF Field),AAALAC Accreditation Site Visit (Field: description),https://brl.uic.edu/wp-content/uploads/sites/47/2020/10/Vol-35-No-1-AAALAC.pdf,https://brl.uic.edu/events/aaalac-accreditation-site-visit/,649758.0,4.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Why Economics? (Field: intro_text_body),https://uofi.box.com/s/0wbauqfpzdi1bnbs91fvgsdw5qmste25,https://econ.uic.edu/undergraduate/why-study-economics/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Esposito, Carmen Anthony (Field: cv_link)",https://carmenaespos4.github.io/website/CV_cesposito.pdf,https://econ.uic.edu/profiles/esposito-carmen/,61288.0,3.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Esposito, Carmen Anthony (Field: about)",https://carmenaespos4.github.io/website/Assessing_the_Public_Health_Effects_of_Tobacco_21_Laws_on_Maternal_and_Infant_Outcomes.pdf,https://econ.uic.edu/profiles/esposito-carmen/,1613752.0,31.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Tarduno, Matthew (Field: cv_link)",https://uofi.box.com/s/j60nzwoda3mdl5xzbf7px9bfvg5shg1t,https://econ.uic.edu/profiles/tarduno-matthew/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Robbins, Jacob A. (Field: cv_link)",http://jacobarobbins.com/jr_cv_final.pdf,https://econ.uic.edu/profiles/robbins-jacob/,52771.0,3.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Yektansani, Kiana (Field: cv_link)",https://uofi.box.com/s/hsj88e8fffjx0b8qkroi2n6701boogrq,https://econ.uic.edu/profiles/yektansani-kiana/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Rivkin, Steven (Field: cv_link)",https://uofi.box.com/s/cy4i1g8ffm03ote0nxi4z5bil4pdyxt4,https://econ.uic.edu/profiles/rivkin-steven/,,,,,Skipped: Box link
Box,Page (ACF Field),Why Economics? (Field: intro_text_body),https://uofi.box.com/s/0wbauqfpzdi1bnbs91fvgsdw5qmste25,https://econ.uic.edu/undergraduate/why-study-economics/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Esposito, Carmen Anthony (Field: cv_link)",https://carmenaespos4.github.io/website/CV_cesposito.pdf,https://econ.uic.edu/profiles/esposito-carmen/,61288.0,3.0,True,False,No tags detected via pdfminer3
PDF,Profile (ACF Field),"Esposito, Carmen Anthony (Field: about)",https://carmenaespos4.github.io/website/Assessing_the_Public_Health_Effects_of_Tobacco_21_Laws_on_Maternal_and_Infant_Outcomes.pdf,https://econ.uic.edu/profiles/esposito-carmen/,1613752.0,31.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Tarduno, Matthew (Field: cv_link)",https://uofi.box.com/s/j60nzwoda3mdl5xzbf7px9bfvg5shg1t,https://econ.uic.edu/profiles/tarduno-matthew/,,,,,Skipped: Box link
PDF,Profile (ACF Field),"Robbins, Jacob A. (Field: cv_link)",http://jacobarobbins.com/jr_cv_final.pdf,https://econ.uic.edu/profiles/robbins-jacob/,52771.0,3.0,True,False,No tags detected via pdfminer3
Box,Profile (ACF Field),"Yektansani, Kiana (Field: cv_link)",https://uofi.box.com/s/hsj88e8fffjx0b8qkroi2n6701boogrq,https://econ.uic.edu/profiles/yektansani-kiana/,,,,,Skipped: Box link
Box,Profile (ACF Field),"Rivkin, Steven (Field: cv_link)",https://uofi.box.com/s/cy4i1g8ffm03ote0nxi4z5bil4pdyxt4,https://econ.uic.edu/profiles/rivkin-steven/,,,,,Skipped: Box link
PDF,News (ACF Field),Dolly Weber receives RMMRA Delno C. West award (Field: intro_text_body),http://www.rmmra.org/wp-content/uploads/2015/12/RMMRA-Program-2015.pdf,https://french.uic.edu/news-stories/weber-receives-rmmra-delno-c-west-award/,,,,,Download failed: 404 Client Error: Not Found for url: https://rmmra.org/wp-content/uploads/2015/12/RMMRA-Program-2015.pdf
Box,News (ACF Field),CFP – 2015 LCSL Graduate Student Conference (Field: intro_text_body),https://uofi.box.com/s/m55cy9g2eddvfhyjizz8n4560o0kl14m,https://french.uic.edu/news-stories/cfp-2015-lcsl-grad-conference/,,,,,Skipped: Box link
Box,Event (ACF Field),Professor McClure film discussion (Field: description),https://uofi.box.com/s/1peppt3dpyff4novmbp81xe4mcmtt22u,https://french.uic.edu/events/professor-mcclure-film-discussion/,,,,,Skipped: Box link
Box,Event (ACF Field),Inequality and Exclusion Conference October 17-19 (Field: description),https://uofi.box.com/s/fz4yfgir7rzmw2pny8usuapx87ssv5a5,https://french.uic.edu/events/inequality-and-exclusion-conference-october-17-19/,,,,,Skipped: Box link
Box,Event (ACF Field),Inequality and Exclusion Conference October 17-19 (Field: description),https://uofi.box.com/s/8gcoihfr1duqbxqasokv7porjulmvvp6,https://french.uic.edu/events/inequality-and-exclusion-conference-october-17-19/,,,,,Skipped: Box link
Box,Event (ACF Field),Using your French on the job market (Field: description),https://uofi.box.com/s/58xvkzlc6vn91w1bjhrh8hew725paruf,https://french.uic.edu/events/using-your-french-on-the-job-market/,,,,,Skipped: Box link
Box,Event (ACF Field),4th annual In/Between Conference (Field: description),https://uofi.box.com/s/fyugmijajyx3185a9t69lc6bfbg8sxuo,https://french.uic.edu/events/4th-annual-in-between-conference/,,,,,Skipped: Box link
PDF,News (ACF Field),Dolly Weber receives RMMRA Delno C. West award (Field: intro_text_body),http://www.rmmra.org/wp-content/uploads/2015/12/RMMRA-Program-2015.pdf,https://french.uic.edu/news-stories/weber-receives-rmmra-delno-c-west-award/,,,,,Download failed: 404 Client Error: Not Found for url: https://rmmra.org/wp-content/uploads/2015/12/RMMRA-Program-2015.pdf
Box,News (ACF Field),CFP – 2015 LCSL Graduate Student Conference (Field: intro_text_body),https://uofi.box.com/s/m55cy9g2eddvfhyjizz8n4560o0kl14m,https://french.uic.edu/news-stories/cfp-2015-lcsl-grad-conference/,,,,,Skipped: Box link
Box,Event (ACF Field),Professor McClure film discussion (Field: description),https://uofi.box.com/s/1peppt3dpyff4novmbp81xe4mcmtt22u,https://french.uic.edu/events/professor-mcclure-film-discussion/,,,,,Skipped: Box link
Box,Event (ACF Field),Inequality and Exclusion Conference October 17-19 (Field: description),https://uofi.box.com/s/fz4yfgir7rzmw2pny8usuapx87ssv5a5,https://french.uic.edu/events/inequality-and-exclusion-conference-october-17-19/,,,,,Skipped: Box link
Box,Event (ACF Field),Inequality and Exclusion Conference October 17-19 (Field: description),https://uofi.box.com/s/8gcoihfr1duqbxqasokv7porjulmvvp6,https://french.uic.edu/events/inequality-and-exclusion-conference-october-17-19/,,,,,Skipped: Box link
Box,Event (ACF Field),Using your French on the job market (Field: description),https://uofi.box.com/s/58xvkzlc6vn91w1bjhrh8hew725paruf,https://french.uic.edu/events/using-your-french-on-the-job-market/,,,,,Skipped: Box link
Box,Event (ACF Field),4th annual In/Between Conference (Field: description),https://uofi.box.com/s/fyugmijajyx3185a9t69lc6bfbg8sxuo,https://french.uic.edu/events/4th-annual-in-between-conference/,,,,,Skipped: Box link
Box,Page (ACF Field),Partners &amp; Resources (Field: intro_text_body),https://uofi.box.com/s/ak1m2lz8usgn0vlsdjvmxfidr1kjg0ch,https://irrpp.uic.edu/about-us/partners-resources/,,,,,Skipped: Box link
PDF,Page (ACF Field),Press (Field: intro_text_body),http://irrpp.uic.edu/pdf/publications/2016_IRRPP_Brochure.pdf,https://irrpp.uic.edu/press/,,,,,Download failed: 400 Client Error: Bad Request for url: https://irrpp.uic.edu/pdf/publications/2016_IRRPP_Brochure.pdf
PDF,Page (ACF Field),Press (Field: intro_text_body),http://irrpp.uic.edu/pdf/publications/IRRPP_AnnualReport_FY16_WebVersion.pdf,https://irrpp.uic.edu/press/,,,,,Download failed: 404 Client Error: Not Found for url: https://irrpp.uic.edu/pdf/publications/IRRPP_AnnualReport_FY16_WebVersion.pdf
Box,News (ACF Field),WBEZ Reset: Black homelessness is twice the national average in Illinois (Field: intro_text_body),https://uofi.app.box.com/s/owosqr7f4pp3y5csxx4cszymwtk0n1gs,https://irrpp.uic.edu/news-stories/reset-black-homelessness/,,,,,Skipped: Box link
Box,News (ACF Field),"Race, travel time, and earnings in Chicagoland (Field: intro_text_body)",https://uofi.box.com/s/5ewzflspwj5dnie6ld1unjykadyprkey,https://irrpp.uic.edu/news-stories/race-travel-time-earnings/,,,,,Skipped: Box link
Box,News (ACF Field),WBEZ Article Features Dr. William Scarborough and Our Report: “Between the Great Migration and Growing Exodus: The Future of Black Chicago?&#8221; (Field: intro_text_body),https://uofi.app.box.com/s/vb27q325rrp2sipd8otjs2zawe7ufrue,https://irrpp.uic.edu/news-stories/wbez-arab-american-report-story-2-2/,,,,,Skipped: Box link
Box,News (ACF Field),Disinvestment in Illinois Higher Education is a Racial Justice Issue (Field: intro_text_body),https://uofi.app.box.com/folder/131943094714?s=pi0jx63xarc6s05an6hhpa797yuk8viq,https://irrpp.uic.edu/news-stories/higher-education-is-racial-justice-issue/,,,,,Skipped: Box link
Box,News (ACF Field),A push to save landmarks of the ‘Great Migration’ — and better understand today’s racial inequities (Field: intro_text_body),https://uofi.app.box.com/file/654423696054?s=vb27q325rrp2sipd8otjs2zawe7ufrue,https://irrpp.uic.edu/news-stories/push_to_understand_racial_inequities/,,,,,Skipped: Box link
Box,News (ACF Field),January 2020 Scholar Spotlight: Aaron Gottlieb (Field: intro_text_body),https://uofi.box.com/s/h9s2x8tbys09swpjknnqt9irxmd5mann,https://irrpp.uic.edu/news-stories/january-2020-scholar-spotlight-aaron-gottlieb/,,,,,Skipped: Box link
Box,News (ACF Field),November 2019 Scholar Spotlight: Rahim Kurwa (Field: intro_text_body),https://uofi.box.com/s/4ppdjx4289val1ixbeiaegfyhyudme8q,https://irrpp.uic.edu/news-stories/november-2019-scholar-spotlight-rahim-kurwa/,,,,,Skipped: Box link
Box,News (ACF Field),October 2019 Scholar Spotlight: Phoenix Matthews (Field: intro_text_body),https://uofi.box.com/s/4lp22w8h4g6ohv2nm8pzlz674w9rjpes,https://irrpp.uic.edu/news-stories/october-2019-scholar-spotlight-phoenix-matthews/,,,,,Skipped: Box link
Box,Page (ACF Field),Partners &amp; Resources (Field: intro_text_body),https://uofi.box.com/s/ak1m2lz8usgn0vlsdjvmxfidr1kjg0ch,https://irrpp.uic.edu/about-us/partners-resources/,,,,,Skipped: Box link
PDF,Page (ACF Field),Press (Field: intro_text_body),http://irrpp.uic.edu/pdf/publications/2016_IRRPP_Brochure.pdf,https://irrpp.uic.edu/press/,,,,,Download failed: 400 Client Error: Bad Request for url: https://irrpp.uic.edu/pdf/publications/2016_IRRPP_Brochure.pdf
PDF,Page (ACF Field),Press (Field: intro_text_body),http://irrpp.uic.edu/pdf/publications/IRRPP_AnnualReport_FY16_WebVersion.pdf,https://irrpp.uic.edu/press/,,,,,Download failed: 404 Client Error: Not Found for url: https://irrpp.uic.edu/pdf/publications/IRRPP_AnnualReport_FY16_WebVersion.pdf
Box,News (ACF Field),WBEZ Reset: Black homelessness is twice the national average in Illinois (Field: intro_text_body),https://uofi.app.box.com/s/owosqr7f4pp3y5csxx4cszymwtk0n1gs,https://irrpp.uic.edu/news-stories/reset-black-homelessness/,,,,,Skipped: Box link
Box,News (ACF Field),"Race, travel time, and earnings in Chicagoland (Field: intro_text_body)",https://uofi.box.com/s/5ewzflspwj5dnie6ld1unjykadyprkey,https://irrpp.uic.edu/news-stories/race-travel-time-earnings/,,,,,Skipped: Box link
Box,News (ACF Field),WBEZ Article Features Dr. William Scarborough and Our Report: “Between the Great Migration and Growing Exodus: The Future of Black Chicago?&#8221; (Field: intro_text_body),https://uofi.app.box.com/s/vb27q325rrp2sipd8otjs2zawe7ufrue,https://irrpp.uic.edu/news-stories/wbez-arab-american-report-story-2-2/,,,,,Skipped: Box link
Box,News (ACF Field),Disinvestment in Illinois Higher Education is a Racial Justice Issue (Field: intro_text_body),https://uofi.app.box.com/folder/131943094714?s=pi0jx63xarc6s05an6hhpa797yuk8viq,https://irrpp.uic.edu/news-stories/higher-education-is-racial-justice-issue/,,,,,Skipped: Box link
Box,News (ACF Field),A push to save landmarks of the ‘Great Migration’ — and better understand today’s racial inequities (Field: intro_text_body),https://uofi.app.box.com/file/654423696054?s=vb27q325rrp2sipd8otjs2zawe7ufrue,https://irrpp.uic.edu/news-stories/push_to_understand_racial_inequities/,,,,,Skipped: Box link
Box,News (ACF Field),January 2020 Scholar Spotlight: Aaron Gottlieb (Field: intro_text_body),https://uofi.box.com/s/h9s2x8tbys09swpjknnqt9irxmd5mann,https://irrpp.uic.edu/news-stories/january-2020-scholar-spotlight-aaron-gottlieb/,,,,,Skipped: Box link
Box,News (ACF Field),November 2019 Scholar Spotlight: Rahim Kurwa (Field: intro_text_body),https://uofi.box.com/s/4ppdjx4289val1ixbeiaegfyhyudme8q,https://irrpp.uic.edu/news-stories/november-2019-scholar-spotlight-rahim-kurwa/,,,,,Skipped: Box link
Box,News (ACF Field),October 2019 Scholar Spotlight: Phoenix Matthews (Field: intro_text_body),https://uofi.box.com/s/4lp22w8h4g6ohv2nm8pzlz674w9rjpes,https://irrpp.uic.edu/news-stories/october-2019-scholar-spotlight-phoenix-matthews/,,,,,Skipped: Box link
PDF,Menu,Book,http://www.cs.uic.edu/~jakob/files/book.pdf,,185227.0,25.0,True,False,No tags detected via pdfminer3
PDF,Menu,Book,http://www.cs.uic.edu/~jakob/files/book.pdf,,185227.0,25.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Letter of Commitment to Anti-racist actions (Field: intro_text_body),https://cfl.uic.edu/wp-content/uploads/sites/458/2020/07/Letter-of-Committment-to-Action.pdf,https://cfl.uic.edu/news-stories/letter-of-commitment-to-anti-racist-actions/,177864.0,6.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Letter of Commitment to Anti-racist actions (Field: intro_text_body),https://cfl.uic.edu/wp-content/uploads/sites/458/2020/07/Letter-of-Committment-to-Action-Spanish.pdf,https://cfl.uic.edu/news-stories/letter-of-commitment-to-anti-racist-actions/,179384.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Remote Learning Guidance for Parents (Field: intro_text_body),https://cps.edu/SiteCollectionDocuments/Remote-Learning-Guidance-for-Parents.pdf?fbclid=IwAR1gKeQjZSkKQ3XaALzQ3odofPZliJOD1kocSQ72Y2XKcWzxyCEIYEFVH_M,https://cfl.uic.edu/news-stories/remote-learning-guidance-for-parents/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),RCADD (Resource Center for Autism and Developmental Delays) Phone Consultation (Field: intro_text_body),https://mcusercontent.com/bcffed4c260c459f193587644/files/f43413ca-f349-44ec-96fd-0e4bc7b3e2bf/Shoebox_Task_Instructions.pdf,https://cfl.uic.edu/news-stories/rcadd-resource-center-for-autism-and-developmental-delays-phone-consultation/,,,,,Download failed: 403 Client Error: Forbidden for url: https://mcusercontent.com/bcffed4c260c459f193587644/files/f43413ca-f349-44ec-96fd-0e4bc7b3e2bf/Shoebox_Task_Instructions.pdf
PDF,News (ACF Field),RCADD (Resource Center for Autism and Developmental Delays) Phone Consultation (Field: intro_text_body),https://mcusercontent.com/bcffed4c260c459f193587644/files/61bec7f0-19d3-49f0-8605-d1c28a72c68f/Dinosaur_counting_book.pdf,https://cfl.uic.edu/news-stories/rcadd-resource-center-for-autism-and-developmental-delays-phone-consultation/,,,,,Download failed: 403 Client Error: Forbidden for url: https://mcusercontent.com/bcffed4c260c459f193587644/files/61bec7f0-19d3-49f0-8605-d1c28a72c68f/Dinosaur_counting_book.pdf
PDF,News (ACF Field),Letter of Commitment to Anti-racist actions (Field: intro_text_body),https://cfl.uic.edu/wp-content/uploads/sites/458/2020/07/Letter-of-Committment-to-Action.pdf,https://cfl.uic.edu/news-stories/letter-of-commitment-to-anti-racist-actions/,177864.0,6.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Letter of Commitment to Anti-racist actions (Field: intro_text_body),https://cfl.uic.edu/wp-content/uploads/sites/458/2020/07/Letter-of-Committment-to-Action-Spanish.pdf,https://cfl.uic.edu/news-stories/letter-of-commitment-to-anti-racist-actions/,179384.0,7.0,True,False,No tags detected via pdfminer3
PDF,News (ACF Field),Remote Learning Guidance for Parents (Field: intro_text_body),https://cps.edu/SiteCollectionDocuments/Remote-Learning-Guidance-for-Parents.pdf?fbclid=IwAR1gKeQjZSkKQ3XaALzQ3odofPZliJOD1kocSQ72Y2XKcWzxyCEIYEFVH_M,https://cfl.uic.edu/news-stories/remote-learning-guidance-for-parents/,,,,,Skipped: Not a PDF link
PDF,News (ACF Field),RCADD (Resource Center for Autism and Developmental Delays) Phone Consultation (Field: intro_text_body),https://mcusercontent.com/bcffed4c260c459f193587644/files/f43413ca-f349-44ec-96fd-0e4bc7b3e2bf/Shoebox_Task_Instructions.pdf,https://cfl.uic.edu/news-stories/rcadd-resource-center-for-autism-and-developmental-delays-phone-consultation/,,,,,Download failed: 403 Client Error: Forbidden for url: https://mcusercontent.com/bcffed4c260c459f193587644/files/f43413ca-f349-44ec-96fd-0e4bc7b3e2bf/Shoebox_Task_Instructions.pdf
PDF,News (ACF Field),RCADD (Resource Center for Autism and Developmental Delays) Phone Consultation (Field: intro_text_body),https://mcusercontent.com/bcffed4c260c459f193587644/files/61bec7f0-19d3-49f0-8605-d1c28a72c68f/Dinosaur_counting_book.pdf,https://cfl.uic.edu/news-stories/rcadd-resource-center-for-autism-and-developmental-delays-phone-consultation/,,,,,Download failed: 403 Client Error: Forbidden for url: https://mcusercontent.com/bcffed4c260c459f193587644/files/61bec7f0-19d3-49f0-8605-d1c28a72c68f/Dinosaur_counting_book.pdf
PDF,Profile (ACF Field),"Szal, Teresa Maria (Field: cv_link)",http://web-prod-2.pharm.uic.edu/webdav/tszal/pci/TeresaSzal-MankinLab-CV-2016-2.pdf,https://cbs.pharmacy.uic.edu/profiles/teresa-maria-szal/,471240.0,6.0,True,True,Tags detected via pdfminer3
PDF,Profile (ACF Field),"Szal, Teresa Maria (Field: cv_link)",http://web-prod-2.pharm.uic.edu/webdav/tszal/pci/TeresaSzal-MankinLab-CV-2016-2.pdf,https://cbs.pharmacy.uic.edu/profiles/teresa-maria-szal/,471240.0,6.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),2020 RECRUITER CAREER SEARCH ADVISING GUIDE (Field: intro_text_body),https://files.webservices.illinois.edu/9106/finaladvisingguide.pdf,http://careerservices.uic.edu/2020-recruiter-career-search-advising-guide/,1258818.0,18.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),BE AWARE OF SCAMS! (Field: intro_text_body),https://files.webservices.illinois.edu/9093/scamsadvice2020.pdf,http://careerservices.uic.edu/news-stories/be-aware-of-scams/,234419.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),"Education Career Fair &#8211; Public, Private, &amp; Charter Schools + Non-Profit For Teachers, Administrators, Social Workers, School Nurses, Other Educators, Childcare/Youth Workers) (Field: description)",https://files.webservices.illinois.edu/10546/2023edfairhandout.pdf,http://careerservices.uic.edu/events/education-career-fair-2023/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/10546/2023edfairhandout.pdf
PDF,Event (ACF Field),"Education Career Fair &#8211; Public, Private, &amp; Charter Schools + Non-Profit For Teachers, Administrators, Social Workers, School Nurses, Other Educators, Childcare/Youth Workers) (Field: description)",https://files.webservices.illinois.edu/10305/careerfairtips002.pdf,http://careerservices.uic.edu/events/education-career-fair-2023/,243318.0,2.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Disability Recruiting: Corporate Recruiters Talk to Students with Disabilities (Field: description),https://files.webservices.illinois.edu/9096/aconversationwithcorporaterecruitersstudentswithdisabilities.pdf,http://careerservices.uic.edu/events/disability-recruiting-corporate-recruiters/,204409.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Disability Recruiting: College Students with Disabilities Share their Experiences (Field: description),https://files.webservices.illinois.edu/9096/studentswithdisabilitiessharetheirrecruitingexperiences.pdf,http://careerservices.uic.edu/events/disability-recruiting-college-students-with-disabilities-share-their-experiences/,272618.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Language Careers:  Utilizing Your Bilingual Spanish Skills (Field: description),https://files.webservices.illinois.edu/9096/languagecareers-panelistsbiosheet.pdf,http://careerservices.uic.edu/events/language-careers-utilizing-your-bilingual-spanish-skills/,142224.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),St. George&#8217;s School of Medicine: Top 10 Most Important Questions an Applicant Should Ask Medical Schools (Field: description),https://files.webservices.illinois.edu/9096/gsuflyernov2021.pdf,http://careerservices.uic.edu/events/10-questions-to-ask-medical-schools-st-georges-university-school-of-medicine-grenada-nov-2021/,212833.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),JC Penny Suit-Up Event (Online) (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2020/12/JCP-suit-up-event-1.pdf,http://careerservices.uic.edu/events/jc-penny-suit-up-event-online/,1578902.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),National Geospatial-Intelligence Agency (NGA) Virtual Information Session (Field: description),https://files.webservices.illinois.edu/9096/studentinternbrochure002.pdf,http://careerservices.uic.edu/events/national-geospatial-intelligence-sept/,748233.0,5.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),AUC Sciences Fair &#8211; Symposium Workshops (Field: description),https://files.webservices.illinois.edu/8861/symposiumfinalschedule.pdf,http://careerservices.uic.edu/events/ausl-science-fair-symposium-workshops/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/8861/symposiumfinalschedule.pdf
PDF,Event (ACF Field),15th Annual UIC Graduate &amp; Professional School Fair (Field: description),https://files.webservices.illinois.edu/8823/gradfairprogramlistings2019.pdf,http://careerservices.uic.edu/events/15th-annual-uic-graduate-professional-school-fair-2-2-2/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/8823/gradfairprogramlistings2019.pdf
PDF,Event (ACF Field),Education Career Fair (Field: description),https://files.webservices.illinois.edu/9043/edfair2020flyer_updatedlist22620.pdf,http://careerservices.uic.edu/events/education-career-fair-3/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/9043/edfair2020flyer_updatedlist22620.pdf
PDF,Event (ACF Field),Education Career Fair (Field: description),https://files.webservices.illinois.edu/9045/edfairguide2020.pdf,http://careerservices.uic.edu/events/education-career-fair-3/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/9045/edfairguide2020.pdf
PDF,Event (ACF Field),America&#8217;s Urban Campus Sciences Career Fair and Symposium (Field: description),https://files.webservices.illinois.edu/8848/scfsguide.pdf,http://careerservices.uic.edu/events/americas-urban-campus-sciences-career-fair-and-symposium/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/8848/scfsguide.pdf
PDF,Event (ACF Field),"Food, Beverage &amp; Hospitality Career Fair (Field: description)",http://careerservices.uic.edu/wp-content/uploads/sites/26/2019/04/FBH-2019-guide.pdf,http://careerservices.uic.edu/events/food-beverage-hospitality-fair/,687660.0,2.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Arts &amp; Culture Career Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2019/01/ARTS-CULTURE-CAREER-FAIR-2019-_-registered-organizations-and-information-as-011719.pdf,http://careerservices.uic.edu/events/arts-culture-career-fair/,319452.0,4.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Government Job Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2018/10/gcrc-gov-fair-2018-flyer-majors.pdf,http://careerservices.uic.edu/events/government-career-fair/,,,,,Download failed: 404 Client Error: Not Found for url: https://careerservices.uic.edu/wp-content/uploads/sites/26/2018/10/gcrc-gov-fair-2018-flyer-majors.pdf
PDF,Event (ACF Field),Navigating a Career Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2018/03/TIPS-FOR-NAVIGATING-A-CAREER-FAIR.pdf,http://careerservices.uic.edu/events/navigating-a-career-fair/,,,,,Download failed: 404 Client Error: Not Found for url: https://careerservices.uic.edu/wp-content/uploads/sites/26/2018/03/TIPS-FOR-NAVIGATING-A-CAREER-FAIR.pdf
PDF,Event (ACF Field),Government Job Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2017/11/Government-Job-Fair-Employer-List.pdf,http://careerservices.uic.edu/events/government-job-fair/,85237.0,1.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),UIC Graduate and Professional School Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2017/10/Graduate-School-Fair-List.pdf,http://careerservices.uic.edu/events/uic-graduate-professional-school-fair/,48427.0,3.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),UIC Graduate and Professional School Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2017/10/Graduate-and-Professional-School-Fair-Guide-2017.pdf,http://careerservices.uic.edu/events/uic-graduate-professional-school-fair/,5081877.0,12.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),2020 RECRUITER CAREER SEARCH ADVISING GUIDE (Field: intro_text_body),https://files.webservices.illinois.edu/9106/finaladvisingguide.pdf,https://careerservices.uic.edu/2020-recruiter-career-search-advising-guide/,1258818.0,18.0,True,True,Tags detected via pdfminer3
PDF,News (ACF Field),BE AWARE OF SCAMS! (Field: intro_text_body),https://files.webservices.illinois.edu/9093/scamsadvice2020.pdf,https://careerservices.uic.edu/news-stories/be-aware-of-scams/,234419.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),"Education Career Fair &#8211; Public, Private, &amp; Charter Schools + Non-Profit For Teachers, Administrators, Social Workers, School Nurses, Other Educators, Childcare/Youth Workers) (Field: description)",https://files.webservices.illinois.edu/10546/2023edfairhandout.pdf,https://careerservices.uic.edu/events/education-career-fair-2023/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/10546/2023edfairhandout.pdf
PDF,Event (ACF Field),"Education Career Fair &#8211; Public, Private, &amp; Charter Schools + Non-Profit For Teachers, Administrators, Social Workers, School Nurses, Other Educators, Childcare/Youth Workers) (Field: description)",https://files.webservices.illinois.edu/10305/careerfairtips002.pdf,https://careerservices.uic.edu/events/education-career-fair-2023/,243318.0,2.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Disability Recruiting: Corporate Recruiters Talk to Students with Disabilities (Field: description),https://files.webservices.illinois.edu/9096/aconversationwithcorporaterecruitersstudentswithdisabilities.pdf,https://careerservices.uic.edu/events/disability-recruiting-corporate-recruiters/,204409.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Disability Recruiting: College Students with Disabilities Share their Experiences (Field: description),https://files.webservices.illinois.edu/9096/studentswithdisabilitiessharetheirrecruitingexperiences.pdf,https://careerservices.uic.edu/events/disability-recruiting-college-students-with-disabilities-share-their-experiences/,272618.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),Language Careers:  Utilizing Your Bilingual Spanish Skills (Field: description),https://files.webservices.illinois.edu/9096/languagecareers-panelistsbiosheet.pdf,https://careerservices.uic.edu/events/language-careers-utilizing-your-bilingual-spanish-skills/,142224.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),St. George&#8217;s School of Medicine: Top 10 Most Important Questions an Applicant Should Ask Medical Schools (Field: description),https://files.webservices.illinois.edu/9096/gsuflyernov2021.pdf,https://careerservices.uic.edu/events/10-questions-to-ask-medical-schools-st-georges-university-school-of-medicine-grenada-nov-2021/,212833.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),JC Penny Suit-Up Event (Online) (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2020/12/JCP-suit-up-event-1.pdf,https://careerservices.uic.edu/events/jc-penny-suit-up-event-online/,1578902.0,1.0,True,True,Tags detected via pdfminer3
PDF,Event (ACF Field),National Geospatial-Intelligence Agency (NGA) Virtual Information Session (Field: description),https://files.webservices.illinois.edu/9096/studentinternbrochure002.pdf,https://careerservices.uic.edu/events/national-geospatial-intelligence-sept/,748233.0,5.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),AUC Sciences Fair &#8211; Symposium Workshops (Field: description),https://files.webservices.illinois.edu/8861/symposiumfinalschedule.pdf,https://careerservices.uic.edu/events/ausl-science-fair-symposium-workshops/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/8861/symposiumfinalschedule.pdf
PDF,Event (ACF Field),15th Annual UIC Graduate &amp; Professional School Fair (Field: description),https://files.webservices.illinois.edu/8823/gradfairprogramlistings2019.pdf,https://careerservices.uic.edu/events/15th-annual-uic-graduate-professional-school-fair-2-2-2/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/8823/gradfairprogramlistings2019.pdf
PDF,Event (ACF Field),Education Career Fair (Field: description),https://files.webservices.illinois.edu/9043/edfair2020flyer_updatedlist22620.pdf,https://careerservices.uic.edu/events/education-career-fair-3/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/9043/edfair2020flyer_updatedlist22620.pdf
PDF,Event (ACF Field),Education Career Fair (Field: description),https://files.webservices.illinois.edu/9045/edfairguide2020.pdf,https://careerservices.uic.edu/events/education-career-fair-3/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/9045/edfairguide2020.pdf
PDF,Event (ACF Field),America&#8217;s Urban Campus Sciences Career Fair and Symposium (Field: description),https://files.webservices.illinois.edu/8848/scfsguide.pdf,https://careerservices.uic.edu/events/americas-urban-campus-sciences-career-fair-and-symposium/,,,,,Download failed: 403 Client Error: Forbidden for url: https://files.webservices.illinois.edu/8848/scfsguide.pdf
PDF,Event (ACF Field),"Food, Beverage &amp; Hospitality Career Fair (Field: description)",http://careerservices.uic.edu/wp-content/uploads/sites/26/2019/04/FBH-2019-guide.pdf,https://careerservices.uic.edu/events/food-beverage-hospitality-fair/,687660.0,2.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Arts &amp; Culture Career Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2019/01/ARTS-CULTURE-CAREER-FAIR-2019-_-registered-organizations-and-information-as-011719.pdf,https://careerservices.uic.edu/events/arts-culture-career-fair/,319452.0,4.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Government Job Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2018/10/gcrc-gov-fair-2018-flyer-majors.pdf,https://careerservices.uic.edu/events/government-career-fair/,,,,,Download failed: 404 Client Error: Not Found for url: https://careerservices.uic.edu/wp-content/uploads/sites/26/2018/10/gcrc-gov-fair-2018-flyer-majors.pdf
PDF,Event (ACF Field),Navigating a Career Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2018/03/TIPS-FOR-NAVIGATING-A-CAREER-FAIR.pdf,https://careerservices.uic.edu/events/navigating-a-career-fair/,,,,,Download failed: 404 Client Error: Not Found for url: https://careerservices.uic.edu/wp-content/uploads/sites/26/2018/03/TIPS-FOR-NAVIGATING-A-CAREER-FAIR.pdf
PDF,Event (ACF Field),Government Job Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2017/11/Government-Job-Fair-Employer-List.pdf,https://careerservices.uic.edu/events/government-job-fair/,85237.0,1.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),UIC Graduate and Professional School Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2017/10/Graduate-School-Fair-List.pdf,https://careerservices.uic.edu/events/uic-graduate-professional-school-fair/,48427.0,3.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),UIC Graduate and Professional School Fair (Field: description),http://careerservices.uic.edu/wp-content/uploads/sites/26/2017/10/Graduate-and-Professional-School-Fair-Guide-2017.pdf,https://careerservices.uic.edu/events/uic-graduate-professional-school-fair/,5081877.0,12.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Social Justice in STEM Panel Discussion (Field: description),https://lilley.lab.uic.edu/wp-content/uploads/sites/755/2021/04/IGE-Social-Justice-Workshop-Flier.pdf,https://lilley.lab.uic.edu/events/social-justice-in-stem-panel-discussion/,489083.0,1.0,True,False,No tags detected via pdfminer3
PDF,Event (ACF Field),Social Justice in STEM Panel Discussion (Field: description),https://lilley.lab.uic.edu/wp-content/uploads/sites/755/2021/04/IGE-Social-Justice-Workshop-Flier.pdf,https://lilley.lab.uic.edu/events/social-justice-in-stem-panel-discussion/,489083.0,1.0,True,False,No tags detected via pdfminer3
Box,Page (ACF Field),Graduate Handbook (Field: intro_text_body),https://uofi.box.com/s/epu390eekl9r8fmyop63od459vu3zkqg,http://anth.uic.edu/graduate-studies-2/graduate-handbook/,,,,,Skipped: Box link
Box,Page (ACF Field),Statement of Solidarity (Field: intro_text_body),https://uofi.box.com/s/vrpktnb0m4gfvkk1ztv8zwv587qjom85,http://anth.uic.edu/statement-of-solidarity/,,,,,Skipped: Box link
Box,Page (ACF Field),Graduate Handbook (Field: intro_text_body),https://uofi.box.com/s/epu390eekl9r8fmyop63od459vu3zkqg,https://anth.uic.edu/graduate-studies-2/graduate-handbook/,,,,,Skipped: Box link
Box,Page (ACF Field),Statement of Solidarity (Field: intro_text_body),https://uofi.box.com/s/vrpktnb0m4gfvkk1ztv8zwv587qjom85,https://anth.uic.edu/statement-of-solidarity/,,,,,Skipped: Box link
PDF,Page (ACF Field),Workshops (Field: intro_text_body),https://nextgenlanduse.uic.edu/wp-content/uploads/sites/581/2020/10/Agenda-04032019.pdf,https://nextgenlanduse.uic.edu/relevant-publications/workshops/,301811.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Workshops (Field: intro_text_body),https://nextgenlanduse.uic.edu/wp-content/uploads/sites/581/2020/10/NextGenLUC_Workshop1_Report.pdf,https://nextgenlanduse.uic.edu/relevant-publications/workshops/,1954189.0,16.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),Workshops (Field: intro_text_body),https://nextgenlanduse.uic.edu/wp-content/uploads/sites/581/2020/10/Agenda-04032019.pdf,https://nextgenlanduse.uic.edu/relevant-publications/workshops/,301811.0,1.0,True,False,No tags detected via pdfminer3
PDF,Page (ACF Field),Workshops (Field: intro_text_body),https://nextgenlanduse.uic.edu/wp-content/uploads/sites/581/2020/10/NextGenLUC_Workshop1_Report.pdf,https://nextgenlanduse.uic.edu/relevant-publications/workshops/,1954189.0,16.0,True,True,Tags detected via pdfminer3
PDF,Page (ACF Field),VOICES Act (Field: intro_text_body),https://www.uscis.gov/sites/default/files/document/forms/i-918supb.pdf,http://police.uic.edu/voices-act/,423053.0,5.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x11cd35210>
PDF,Page (ACF Field),VOICES Act (Field: intro_text_body),https://www.uscis.gov/sites/default/files/document/forms/i-914.pdf,http://police.uic.edu/voices-act/,674666.0,12.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x10f5d6700>
Box,News (ACF Field),12/13/19 (Field: intro_text_body),https://uofi.box.com/s/7wcaea31uhdodmf6ntvebybccmk0pu53,http://police.uic.edu/news-stories/12-13-19/,,,,,Skipped: Box link
PDF,Page (ACF Field),VOICES Act (Field: intro_text_body),https://www.uscis.gov/sites/default/files/document/forms/i-918supb.pdf,https://police.uic.edu/voices-act/,423053.0,5.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x10f2d4e50>
PDF,Page (ACF Field),VOICES Act (Field: intro_text_body),https://www.uscis.gov/sites/default/files/document/forms/i-914.pdf,https://police.uic.edu/voices-act/,674666.0,12.0,True,,pdfminer3 tag check failed: Text extraction is not allowed: <_io.BytesIO object at 0x1056af1a0>
Box,News (ACF Field),12/13/19 (Field: intro_text_body),https://uofi.box.com/s/7wcaea31uhdodmf6ntvebybccmk0pu53,https://police.uic.edu/news-stories/12-13-19/,,,,,Skipped: Box link
PDF,Menu,UICPD Organizational Chart,http://police.uic.edu/wp-content/uploads/sites/25/2024/04/Hierarchy-Chart-General-Order.pdf,,163670.0,1.0,True,False,No tags detected via pdfminer3