├── README.md ├── out.csv ├── requirements.txt ├── xml-samples ├── 2100003.xml ├── 2155033.xml ├── 2155037.xml ├── 2155042.xml ├── 2155047.xml ├── 2155050.xml ├── 2155054.xml ├── 2155055.xml ├── 2155060.xml ├── 2155068.xml ├── 2155111.xml ├── 2155120.xml ├── 2155127.xml ├── 2155128.xml ├── 2155131.xml ├── 2155133.xml ├── 2155135.xml ├── 2155144.xml ├── 2155153.xml ├── 2155156.xml ├── 2155157.xml ├── 2155160.xml ├── 2155162.xml ├── 2155163.xml ├── 2155170.xml ├── 2155175.xml ├── 2155181.xml ├── 2155183.xml ├── 2155187.xml └── 2155189.xml └── xml2csv.py /README.md: -------------------------------------------------------------------------------- 1 | # xml2csv 2 | Converts XML files into csv file, this script is capable of converting extremely nested xml files. 3 | 4 | This script utilize power of multiprocessing to convert huge data in less time. 5 | 6 | ## Requirements 7 | Install required libraries using following command before running script. 8 | `pip install -r requirements.txt` 9 | 10 | ## Usage 11 | 12 | ### Convert single xml to csv file 13 | `python xml2csv.py -f ./xml-samples/1.xml -csv out.csv` 14 | 15 | ### Convert multiple xmls to csv file 16 | `python xml2csv.py -f ./xml-samples/2.xml ./xml-samples/1.xml -csv out.csv` 17 | 18 | ### Convert bulk xmls to csv 19 | `python xml2csv.py -b ./xml-samples/ -csv out.csv` 20 | 21 | ###### Arguments 22 | ``` 23 | -f Input XML document's filename. 24 | -b Path to the folder containing xml files. 25 | -csv Name of output csv file. 26 | ``` -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | xmltodict==0.12.0 2 | pandas -------------------------------------------------------------------------------- /xml-samples/2100003.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 05/15/2021 7 | 04/30/2023 8 | 1497243.00 9 | 1497243 10 | 11 | Standard Grant 12 | 13 | 14 | 05090000 15 | 16 | CSE 17 | Direct For Computer & Info Scie & Enginr 18 | 19 | 20 | OAC 21 | Office of Advanced Cyberinfrastructure (OAC) 22 | 23 | 24 | 25 | Varun Chandola 26 | vchandol@nsf.gov 27 | 7032922656 28 | 29 | 30 | 05/19/2021 31 | 05/19/2021 32 | 33 | Grant 34 | 47.070 35 | 1 36 | 4900 37 | 4900 38 | 2100003 39 | 40 | Thomas 41 | Cheatham 42 | E 43 | III 44 | Thomas E Cheatham 45 | 46 | 000095070 47 | 05/19/2021 48 | 49 | Co-Principal Investigator 50 | 51 | 52 | Dana 53 | Brunson 54 | 55 | 56 | Dana Brunson 57 | 58 | 000548697 59 | 05/19/2021 60 | 61 | Principal Investigator 62 | 63 | 64 | Scott 65 | Yockel 66 | 67 | 68 | Scott Yockel 69 | 70 | 000753904 71 | 05/19/2021 72 | 73 | Co-Principal Investigator 74 | 75 | 76 | Patrick 77 | Schmitz 78 | 79 | 80 | Patrick Schmitz 81 | 82 | 000764398 83 | 05/19/2021 84 | 85 | Co-Principal Investigator 86 | 87 | 88 | Claire 89 | Mizumoto 90 | E 91 | 92 | Claire E Mizumoto 93 | 94 | 000829737 95 | 05/19/2021 96 | 97 | Co-Principal Investigator 98 | 99 | 100 | INTERNET2 101 | WASHINGTON 102 | 200363846 103 | 7349134264 104 | 1150 18TH ST NW 105 | 106 | United States 107 | District of Columbia 108 | DC 109 | 00 110 | DC00 111 | DZEBKFRD1ZN6 112 | UNIVERSITY CORPORATION FOR ADVANCED INTERNET DEVELOPMENT 113 | 114 | 115 | 116 | 117 | Washington 118 | DC 119 | 200363825 120 | 121 | US 122 | United States 123 | District of Columbia 124 | 1 125 | 00 126 | DC00 127 | 128 | 129 | 7231 130 | CYBERINFRASTRUCTURE 131 | 132 | 133 | 9102 134 | WOMEN, MINORITY, DISABLED, NEC 135 | 136 | 137 | 0121 138 | NSF RESEARCH & RELATED ACTIVIT 139 | 040100 140 | 141 | 142 | 01002122DB 143 | 144 | 040100 145 | 146 | 2021~1497243 147 | 148 | 149 | -------------------------------------------------------------------------------- /xml-samples/2155033.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/15/2022 7 | 07/31/2025 8 | 110448.00 9 | 110448 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Constanze Liaw 26 | cliaw@nsf.gov 27 | 7032928042 28 | 29 | 30 | 08/02/2022 31 | 08/02/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155033 39 | 40 | Meric 41 | Augat 42 | L 43 | 44 | Meric L Augat 45 | 46 | 000838246 47 | 08/02/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Washington University 53 | SAINT LOUIS 54 | 631304862 55 | 3147474134 56 | ONE BROOKINGS DR 57 | 58 | United States 59 | Missouri 60 | MO 61 | 01 62 | MO01 63 | L6NFUM28LQM5 64 | WASHINGTON UNIVERSITY, THE 65 | L6NFUM28LQM5 66 | 67 | 68 | 69 | 70 | MO 71 | 631304899 72 | 73 | US 74 | United States 75 | Missouri 76 | 1 77 | 01 78 | MO01 79 | 80 | 81 | 1281 82 | ANALYSIS PROGRAM 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 01002223DB 91 | 92 | 040100 93 | 94 | 2022~110448 95 | 96 | 97 | -------------------------------------------------------------------------------- /xml-samples/2155037.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 353295.00 9 | 353295 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Laura Anderson 26 | laanders@nsf.gov 27 | 7032922934 28 | 29 | 30 | 07/22/2022 31 | 07/22/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155037 39 | 40 | Siris 41 | Laursen 42 | O 43 | 44 | Siris O Laursen 45 | 46 | 000644004 47 | 07/22/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Tennessee Knoxville 53 | Knoxville 54 | 379163801 55 | 8659743466 56 | 1331 CIR PARK DR 57 | 58 | United States 59 | Tennessee 60 | TN 61 | 02 62 | TN02 63 | FN2YCS2YAUW3 64 | UNIVERSITY OF TENNESSEE 65 | FN2YCS2YAUW3 66 | 67 | 68 | 69 | Knoxville 70 | TN 71 | 379163801 72 | 73 | US 74 | United States 75 | Tennessee 76 | 1 77 | 02 78 | TN02 79 | 80 | 81 | 6884 82 | Chemical Catalysis 83 | 84 | 85 | 090Z 86 | CAS-Critical Aspects of Sustainability 87 | 88 | 89 | 8037 90 | Advanced Manufacturing 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 01002223DB 99 | 100 | 040100 101 | 102 | 2022~353295 103 | 104 | 105 | -------------------------------------------------------------------------------- /xml-samples/2155042.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 09/01/2022 7 | 08/31/2025 8 | 525000.00 9 | 525000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Paul Blakemore 26 | pblakemo@nsf.gov 27 | 7032922726 28 | 29 | 30 | 07/05/2022 31 | 09/20/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155042 39 | 40 | Thomas 41 | Hoye 42 | R 43 | 44 | Thomas R Hoye 45 | 46 | 000215643 47 | 07/05/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Minnesota-Twin Cities 53 | MINNEAPOLIS 54 | 554552009 55 | 6126245599 56 | 200 OAK ST SE # 224 57 | 58 | United States 59 | Minnesota 60 | MN 61 | 05 62 | MN05 63 | KABJZBBJ4B54 64 | REGENTS OF THE UNIVERSITY OF MINNESOTA 65 | CB47L9C9MDX1 66 | 67 | 68 | 69 | Minneapolis 70 | MN 71 | 554550240 72 | 73 | US 74 | United States 75 | Minnesota 76 | 1 77 | 05 78 | MN05 79 | 80 | 81 | 6878 82 | Chemical Synthesis 83 | 84 | 85 | 8037 86 | Advanced Manufacturing 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~525000 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155047.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 09/01/2022 7 | 08/31/2025 8 | 485000.00 9 | 485000 10 | 11 | Continuing Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Tingyu Li 26 | tli@nsf.gov 27 | 7032924949 28 | 29 | 30 | 04/04/2022 31 | 08/06/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155047 39 | 40 | Ana 41 | de Bettencourt-Dias 42 | 43 | 44 | Ana de Bettencourt-Dias 45 | 46 | 000488789 47 | 04/04/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Board of Regents, NSHE, obo University of Nevada, Reno 53 | RENO 54 | 895570001 55 | 7757844040 56 | 1664 N VIRGINIA ST 57 | 58 | United States 59 | Nevada 60 | NV 61 | 02 62 | NV02 63 | WLDGTNCFFJZ3 64 | NEVADA SYSTEM OF HIGHER EDUCATION 65 | E2N7LVJCNCW8 66 | 67 | 68 | 69 | Reno 70 | NV 71 | 895570001 72 | 73 | US 74 | United States 75 | Nevada 76 | 1 77 | 02 78 | NV02 79 | 80 | 81 | 6880 82 | Chemical Measurement & Imaging 83 | 84 | 85 | 9102 86 | Chem Struct,Dynmcs&Mechansms B 87 | 88 | 89 | 7234 90 | SENSORS NON-SOLICITATION RESEA 91 | 92 | 93 | 9150 94 | EXP PROG TO STIM COMP RES 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 01002223DB 103 | 104 | 040100 105 | 106 | 2022~485000 107 | 108 | 109 | -------------------------------------------------------------------------------- /xml-samples/2155050.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 06/01/2022 7 | 05/31/2025 8 | 319377.00 9 | 319377 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Marian Bocea 26 | mbocea@nsf.gov 27 | 7032922595 28 | 29 | 30 | 04/06/2022 31 | 04/06/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155050 39 | 40 | Pierre 41 | Germain 42 | 43 | 44 | Pierre Germain 45 | 46 | 000575442 47 | 04/06/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | New York University 53 | NEW YORK 54 | 100121019 55 | 2129982121 56 | 70 WASHINGTON SQ S 57 | 58 | United States 59 | New York 60 | NY 61 | 10 62 | NY10 63 | NX9PXMKW5KW8 64 | NEW YORK UNIVERSITY 65 | 66 | 67 | 68 | 69 | New York 70 | NY 71 | 100121019 72 | 73 | US 74 | United States 75 | New York 76 | 1 77 | 10 78 | NY10 79 | 80 | 81 | 1281 82 | ANALYSIS PROGRAM 83 | 84 | 85 | 1281 86 | ANALYSIS PROGRAM 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~319377 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155054.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 09/01/2022 7 | 08/31/2025 8 | 188009.00 9 | 188009 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Marian Bocea 26 | mbocea@nsf.gov 27 | 7032922595 28 | 29 | 30 | 06/21/2022 31 | 06/21/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155054 39 | 40 | Robin 41 | Neumayer 42 | 43 | 44 | Robin Neumayer 45 | 46 | 000759951 47 | 06/21/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Carnegie-Mellon University 53 | PITTSBURGH 54 | 152133815 55 | 4122688746 56 | 5000 FORBES AVE 57 | 58 | United States 59 | Pennsylvania 60 | PA 61 | 18 62 | PA18 63 | U3NKNFLNQ613 64 | CARNEGIE MELLON UNIVERSITY 65 | U3NKNFLNQ613 66 | 67 | 68 | 69 | PITTSBURGH 70 | PA 71 | 152133815 72 | 73 | US 74 | United States 75 | Pennsylvania 76 | 1 77 | 18 78 | PA18 79 | 80 | 81 | 1281 82 | ANALYSIS PROGRAM 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 01002223DB 91 | 92 | 040100 93 | 94 | 2022~188009 95 | 96 | 97 | -------------------------------------------------------------------------------- /xml-samples/2155055.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Transition Metal Catalysis of Electrocyclic Reactions 5 | NSF 6 | 05/01/2022 7 | 04/30/2025 8 | 525000.00 9 | 525000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | George Richter-Addo 26 | grichter@nsf.gov 27 | 7032927528 28 | 29 | With the support of the Chemical Catalysis program in the Division of Chemistry, Professor Joseph O’Connor of the University of California, San Diego will study new ways to convert readily available acyclic organic compounds that contain multiple carbon-carbon double bonds into high-value cyclic compounds. This will be achieved by the design of new organometallic catalysts that provide a high degree of control over the three-dimensional structure of the product molecules. Organometallic catalysts are carbon- and metal-containing substances that, when added in trace amounts to a reaction mixture, speed up the conversion of starting materials to products. Catalysts permit lower reaction temperatures, thereby minimizing energy input and the associated production of green-house gases. In addition, catalysts prevent the formation of undesired byproducts and their associated negative environmental impacts. Novel approaches for the controlled generation of proposed intermediates will advance our understanding of a relatively unexplored but important area of hydrocarbon chemistry. The proposed research will contribute to future advances in the eco-friendly preparation of organic molecules with useful properties. Students, including women, persons with disabilities, and persons from underrepresented minority groups, will receive will receive multidisciplinary training that spans mechanistic, synthetic, organometallic, and computational chemistry, thereby positioning them for future independent scientific contributions in both industry and academia.<br/><br/>Under with award, the O’Connor research group will study new ways to catalyze the electrocyclization of conjugated trienes. It is anticipated that these studies will lay a foundation for the development of new catalysts that facilitate challenging reactions that involve highly delocalized, nonpolar transition-state structures. The catalyst design innovations include metal catalysts with a facial array of three accessible metal coordination sites for the simultaneous interaction of the metal with three pi-bonds. Low temperature spectroscopy, X-ray crystallography, and computational studies will be utilized to reveal how hexadentate coordination perturbs polyene structures and induces disrotatory triene ring closure. By employing a chiral ancillary ligand, enantioselective electrocyclization will be targeted. Studies into metal-catalyzed electrocyclization will unlock new retro-synthetic approaches for the synthesis of complex biologically active compounds, designer ligands, and new materials. The scope and limitations of these new electrocyclization reactions will be studied in detail.<br/><br/>This award reflects NSF's statutory mission and has been deemed worthy of support through evaluation using the Foundation's intellectual merit and broader impacts review criteria. 30 | 04/05/2022 31 | 04/05/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155055 39 | 40 | Joseph 41 | O'Connor 42 | M 43 | 44 | Joseph M O'Connor 45 | jmoconnor@ucsd.edu 46 | 8585345836 47 | 000280800 48 | 04/05/2022 49 | 50 | Principal Investigator 51 | 52 | 53 | University of California-San Diego 54 | LA JOLLA 55 | 920935004 56 | 8585344896 57 | 9500 GILMAN DR 58 | 59 | United States 60 | California 61 | CA 62 | 49 63 | CA49 64 | UYTTZT6G9DT1 65 | UNIVERSITY OF CALIFORNIA, SAN DIEGO 66 | NUDGYLBB4S99 67 | 68 | 69 | 70 | La Jolla 71 | CA 72 | 920930934 73 | 74 | US 75 | United States 76 | California 77 | 1 78 | 49 79 | CA49 80 | 81 | 82 | 6884 83 | Chemical Catalysis 84 | 85 | 86 | 8037 87 | Advanced Manufacturing 88 | 89 | 2022~525000 90 | 91 | 92 | -------------------------------------------------------------------------------- /xml-samples/2155060.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 450000.00 9 | 450000 10 | 11 | Continuing Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Richard Johnson 26 | ricjohns@nsf.gov 27 | 7032928840 28 | 29 | 30 | 04/18/2022 31 | 08/06/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155060 39 | 40 | Yulia 41 | Pushkar 42 | 43 | 44 | Yulia Pushkar 45 | 46 | 000520906 47 | 04/18/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Purdue University 53 | WEST LAFAYETTE 54 | 479061332 55 | 7654941055 56 | 2550 NORTHWESTERN AVE STE 1900 57 | 58 | United States 59 | Indiana 60 | IN 61 | 04 62 | IN04 63 | YRXVL4JYCEF5 64 | PURDUE UNIVERSITY 65 | YRXVL4JYCEF5 66 | 67 | 68 | 69 | West Lafayette 70 | IN 71 | 479072114 72 | 73 | US 74 | United States 75 | Indiana 76 | 1 77 | 04 78 | IN04 79 | 80 | 81 | 9102 82 | Chem Struct,Dynmcs&Mechansms B 83 | 84 | 85 | 090Z 86 | CAS-Critical Aspects of Sustainability 87 | 88 | 89 | 8037 90 | Advanced Manufacturing 91 | 92 | 93 | 8396 94 | Clean Energy Technology 95 | 96 | 97 | 8397 98 | Hydrogen Storage or Generation 99 | 100 | 101 | 9263 102 | COMPUTATIONAL SCIENCE & ENGING 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 01002223DB 111 | 112 | 040100 113 | 114 | 2022~450000 115 | 116 | 117 | -------------------------------------------------------------------------------- /xml-samples/2155068.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 525000.00 9 | 525000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Tong Ren 26 | tren@nsf.gov 27 | 7032928840 28 | 29 | 30 | 05/17/2022 31 | 08/04/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155068 39 | 40 | Daniel 41 | Killelea 42 | 43 | 44 | Daniel Killelea 45 | 46 | 000665412 47 | 05/17/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Loyola University of Chicago 53 | CHICAGO 54 | 606601537 55 | 7735082471 56 | 1032 W SHERIDAN RD 57 | 58 | United States 59 | Illinois 60 | IL 61 | 09 62 | IL09 63 | CVNBL4GDUKF3 64 | LOYOLA UNIVERSITY OF CHICAGO 65 | CVNBL4GDUKF3 66 | 67 | 68 | 69 | CHICAGO 70 | IL 71 | 606601537 72 | 73 | US 74 | United States 75 | Illinois 76 | 1 77 | 09 78 | IL09 79 | 80 | 81 | 6884 82 | Chemical Catalysis 83 | 84 | 85 | 8037 86 | Advanced Manufacturing 87 | 88 | 89 | 8396 90 | Clean Energy Technology 91 | 92 | 93 | 8398 94 | Hydrocarbon Conversion 95 | 96 | 97 | 8611 98 | Energy Efficiency and End Use 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 01002223DB 107 | 108 | 040100 109 | 110 | 2022~525000 111 | 112 | 113 | -------------------------------------------------------------------------------- /xml-samples/2155111.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 395545.00 9 | 395545 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Marian Bocea 26 | mbocea@nsf.gov 27 | 7032922595 28 | 29 | 30 | 04/01/2022 31 | 06/08/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155111 39 | 40 | Dmitry 41 | Kleinbock 42 | Y 43 | 44 | Dmitry Y Kleinbock 45 | 46 | 000116626 47 | 04/01/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Brandeis University 53 | WALTHAM 54 | 024532728 55 | 7817362121 56 | 415 SOUTH ST 57 | 58 | United States 59 | Massachusetts 60 | MA 61 | 05 62 | MA05 63 | MXLZGAMFEKN5 64 | BRANDEIS UNIVERSITY 65 | JLC9RHNT9479 66 | 67 | 68 | 69 | Waltham 70 | MA 71 | 024549110 72 | 73 | US 74 | United States 75 | Massachusetts 76 | 1 77 | 05 78 | MA05 79 | 80 | 81 | 1281 82 | ANALYSIS PROGRAM 83 | 84 | 85 | 1281 86 | ANALYSIS PROGRAM 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~395545 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155120.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 450000.00 9 | 450000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Tingyu Li 26 | tli@nsf.gov 27 | 7032924949 28 | 29 | 30 | 07/10/2022 31 | 07/10/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155120 39 | 40 | Kyle 41 | Lancaster 42 | M 43 | 44 | Kyle M Lancaster 45 | 46 | 000559468 47 | 07/10/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Cornell University 53 | ITHACA 54 | 148502820 55 | 6072555014 56 | 341 PINE TREE RD 57 | 58 | United States 59 | New York 60 | NY 61 | 23 62 | NY23 63 | G56PUALJ3KT5 64 | CORNELL UNIVERSITY 65 | EQA8NBEN9WD5 66 | 67 | 68 | 69 | Ithaca 70 | NY 71 | 148502820 72 | 73 | US 74 | United States 75 | New York 76 | 1 77 | 23 78 | NY23 79 | 80 | 81 | 9102 82 | Chem Struct,Dynmcs&Mechansms B 83 | 84 | 85 | 7203 86 | QUANTUM INFORMATION SCIENCE 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~450000 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155127.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 06/01/2022 7 | 05/31/2025 8 | 246927.00 9 | 246927 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Paul Blakemore 26 | pblakemo@nsf.gov 27 | 7032922726 28 | 29 | 30 | 04/06/2022 31 | 04/06/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155127 39 | 40 | Max 41 | Majireck 42 | M 43 | 44 | Max M Majireck 45 | 46 | 000699555 47 | 04/06/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Hamilton College 53 | CLINTON 54 | 133231218 55 | 3158594678 56 | 198 COLLEGE HILL RD 57 | 58 | United States 59 | New York 60 | NY 61 | 22 62 | NY22 63 | Z6WLZ6RDFDM7 64 | HAMILTON COLLEGE 65 | Z6WLZ6RDFDM7 66 | 67 | 68 | 69 | Clinton 70 | NY 71 | 133231218 72 | 73 | US 74 | United States 75 | New York 76 | 1 77 | 22 78 | NY22 79 | 80 | 81 | 6878 82 | Chemical Synthesis 83 | 84 | 85 | 8037 86 | Advanced Manufacturing 87 | 88 | 89 | 9229 90 | RES IN UNDERGRAD INST-RESEARCH 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 01002223DB 99 | 100 | 040100 101 | 102 | 2022~246927 103 | 104 | 105 | -------------------------------------------------------------------------------- /xml-samples/2155128.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 500000.00 9 | 500000 10 | 11 | Standard Grant 12 | 13 | 14 | 05050000 15 | 16 | CSE 17 | Direct For Computer & Info Scie & Enginr 18 | 19 | 20 | CNS 21 | Division Of Computer and Network Systems 22 | 23 | 24 | 25 | Alexander Sprintson 26 | asprints@nsf.gov 27 | 7032922170 28 | 29 | 30 | 07/29/2022 31 | 07/29/2022 32 | 33 | Grant 34 | 47.070 35 | 1 36 | 4900 37 | 4900 38 | 2155128 39 | 40 | Nicholas 41 | Feamster 42 | G 43 | 44 | Nicholas G Feamster 45 | 46 | 000489704 47 | 07/29/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Chicago 53 | CHICAGO 54 | 606375418 55 | 7737028669 56 | 5801 S ELLIS AVE 57 | 58 | United States 59 | Illinois 60 | IL 61 | 01 62 | IL01 63 | ZUE9HKT2CLC9 64 | UNIVERSITY OF CHICAGO 65 | ZUE9HKT2CLC9 66 | 67 | 68 | 69 | Chicago 70 | IL 71 | 606372612 72 | 73 | US 74 | United States 75 | Illinois 76 | 1 77 | 01 78 | IL01 79 | 80 | 81 | 8060 82 | Secure &Trustworthy Cyberspace 83 | 84 | 85 | 025Z 86 | SaTC: Secure and Trustworthy Cyberspace 87 | 88 | 89 | 7923 90 | SMALL PROJECT 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 01002223DB 99 | 100 | 040100 101 | 102 | 2022~500000 103 | 104 | 105 | -------------------------------------------------------------------------------- /xml-samples/2155131.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 06/15/2022 7 | 05/31/2025 8 | 471429.00 9 | 471429 10 | 11 | Standard Grant 12 | 13 | 14 | 05050000 15 | 16 | CSE 17 | Direct For Computer & Info Scie & Enginr 18 | 19 | 20 | CNS 21 | Division Of Computer and Network Systems 22 | 23 | 24 | 25 | Jeremy Epstein 26 | jepstein@nsf.gov 27 | 7032928338 28 | 29 | 30 | 06/10/2022 31 | 06/10/2022 32 | 33 | Grant 34 | 47.070 35 | 1 36 | 4900 37 | 4900 38 | 2155131 39 | 40 | Chen 41 | Wang 42 | 43 | 44 | Chen Wang 45 | 46 | 000817720 47 | 06/10/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Louisiana State University 53 | BATON ROUGE 54 | 708030001 55 | 2255782760 56 | 202 HIMES HALL 57 | 58 | United States 59 | Louisiana 60 | LA 61 | 06 62 | LA06 63 | ECQEYCHRNKJ4 64 | LOUISIANA STATE UNIVERSITY 65 | Z7ZNZH7LJ778 66 | 67 | 68 | 69 | Baton Rouge 70 | LA 71 | 708032701 72 | 73 | US 74 | United States 75 | Louisiana 76 | 1 77 | 06 78 | LA06 79 | 80 | 81 | 8060 82 | Secure &Trustworthy Cyberspace 83 | 84 | 85 | 025Z 86 | SaTC: Secure and Trustworthy Cyberspace 87 | 88 | 89 | 7923 90 | SMALL PROJECT 91 | 92 | 93 | 9150 94 | EXP PROG TO STIM COMP RES 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 01002223DB 103 | 104 | 040100 105 | 106 | 2022~471429 107 | 108 | 109 | -------------------------------------------------------------------------------- /xml-samples/2155133.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 500000.00 9 | 500000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Paul Blakemore 26 | pblakemo@nsf.gov 27 | 7032922726 28 | 29 | 30 | 06/22/2022 31 | 06/22/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155133 39 | 40 | Kami 41 | Hull 42 | 43 | 44 | Kami Hull 45 | 46 | 000647938 47 | 06/22/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Texas at Austin 53 | AUSTIN 54 | 787121139 55 | 5124716424 56 | 110 INNER CAMPUS DR 57 | 58 | United States 59 | Texas 60 | TX 61 | 25 62 | TX25 63 | V6AFQPN18437 64 | UNIVERSITY OF TEXAS AT AUSTIN 65 | X5NKD2NFF2V3 66 | 67 | 68 | 69 | Austin 70 | TX 71 | 787595316 72 | 73 | US 74 | United States 75 | Texas 76 | 1 77 | 10 78 | TX10 79 | 80 | 81 | 6884 82 | Chemical Catalysis 83 | 84 | 85 | 8037 86 | Advanced Manufacturing 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~500000 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155135.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/15/2022 7 | 07/31/2025 8 | 540000.00 9 | 540000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Anne-Marie Schmoltner 26 | aschmolt@nsf.gov 27 | 7032924716 28 | 29 | 30 | 07/26/2022 31 | 07/26/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155135 39 | 40 | Amy 41 | Mullin 42 | S 43 | 44 | Amy S Mullin 45 | 46 | 000457018 47 | 07/26/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Maryland, College Park 53 | COLLEGE PARK 54 | 207420001 55 | 3014056269 56 | 3112 LEE BLDG 7809 REGENTS DR 57 | 58 | United States 59 | Maryland 60 | MD 61 | 05 62 | MD05 63 | NPU8ULVAAS23 64 | UNIVERSITY OF MARYLAND, COLLEGE PARK 65 | KMGEN62NKEM9 66 | 67 | 68 | 69 | College Park 70 | MD 71 | 207421800 72 | 73 | US 74 | United States 75 | Maryland 76 | 1 77 | 05 78 | MD05 79 | 80 | 81 | 9101 82 | Chem Struct,Dynmcs&Mechansms A 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 01002223DB 91 | 92 | 040100 93 | 94 | 2022~540000 95 | 96 | 97 | -------------------------------------------------------------------------------- /xml-samples/2155144.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 09/01/2022 7 | 08/31/2025 8 | 524592.00 9 | 524592 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | John Gilje 26 | jwgilje@nsf.gov 27 | 7032928840 28 | 29 | 30 | 07/14/2022 31 | 07/14/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155144 39 | 40 | Timothy 41 | Hanusa 42 | P 43 | 44 | Timothy P Hanusa 45 | 46 | 000389493 47 | 07/14/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Vanderbilt University 53 | NASHVILLE 54 | 372032408 55 | 6153222631 56 | 110 21ST AVENUE S STE 800 57 | 58 | United States 59 | Tennessee 60 | TN 61 | 05 62 | TN05 63 | GTNBNWXJ12D5 64 | VANDERBILT UNIVERSITY, THE 65 | DWH7MSXKA2A8 66 | 67 | 68 | 69 | Nashville 70 | TN 71 | 372350002 72 | 73 | US 74 | United States 75 | Tennessee 76 | 1 77 | 05 78 | TN05 79 | 80 | 81 | 6878 82 | Chemical Synthesis 83 | 84 | 85 | 8037 86 | Advanced Manufacturing 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~524592 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155153.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 348917.00 9 | 348917 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | George Richter-Addo 26 | grichter@nsf.gov 27 | 7032927528 28 | 29 | 30 | 06/29/2022 31 | 06/29/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155153 39 | 40 | Michael 41 | Stollenz 42 | 43 | 44 | Michael Stollenz 45 | 46 | 000757129 47 | 06/29/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Kennesaw State University Research and Service Foundation 53 | KENNESAW 54 | 301445588 55 | 4705786381 56 | 1000 CHASTAIN RD MAILSTOP 0111 57 | 58 | United States 59 | Georgia 60 | GA 61 | 11 62 | GA11 63 | G8DZHNRKWTN3 64 | KENNESAW STATE UNIVERSITY RESEARCH AND SERVICE FOUNDATION, INC. 65 | 66 | 67 | 68 | 69 | Kennesaw 70 | GA 71 | 301445591 72 | 73 | US 74 | United States 75 | Georgia 76 | 1 77 | 11 78 | GA11 79 | 80 | 81 | 6878 82 | Chemical Synthesis 83 | 84 | 85 | 7237 86 | NANO NON-SOLIC SCI & ENG AWD 87 | 88 | 89 | 8037 90 | Advanced Manufacturing 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 01002223DB 99 | 100 | 040100 101 | 102 | 2022~348917 103 | 104 | 105 | -------------------------------------------------------------------------------- /xml-samples/2155156.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 191324.00 9 | 191324 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Marian Bocea 26 | mbocea@nsf.gov 27 | 7032922595 28 | 29 | 30 | 06/16/2022 31 | 06/16/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155156 39 | 40 | Stefania 41 | Patrizi 42 | 43 | 44 | Stefania Patrizi 45 | 46 | 000732319 47 | 06/16/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Texas at Austin 53 | AUSTIN 54 | 787121139 55 | 5124716424 56 | 110 INNER CAMPUS DR 57 | 58 | United States 59 | Texas 60 | TX 61 | 25 62 | TX25 63 | V6AFQPN18437 64 | UNIVERSITY OF TEXAS AT AUSTIN 65 | X5NKD2NFF2V3 66 | 67 | 68 | 69 | Austin 70 | TX 71 | 787595316 72 | 73 | US 74 | United States 75 | Texas 76 | 1 77 | 10 78 | TX10 79 | 80 | 81 | 1281 82 | ANALYSIS PROGRAM 83 | 84 | 2022~191324 85 | 86 | 87 | -------------------------------------------------------------------------------- /xml-samples/2155157.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 542000.00 9 | 542000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Amanda Haes 26 | ahaes@nsf.gov 27 | 7032927909 28 | 29 | 30 | 03/29/2022 31 | 03/29/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155157 39 | 40 | Hector 41 | Abruna 42 | D 43 | 44 | Hector D Abruna 45 | 46 | 000479049 47 | 03/29/2022 48 | 49 | Co-Principal Investigator 50 | 51 | 52 | Jin 53 | Suntivich 54 | 55 | 56 | Jin Suntivich 57 | 58 | 000632809 59 | 03/29/2022 60 | 61 | Principal Investigator 62 | 63 | 64 | Cornell University 65 | ITHACA 66 | 148502820 67 | 6072555014 68 | 341 PINE TREE RD 69 | 70 | United States 71 | New York 72 | NY 73 | 23 74 | NY23 75 | G56PUALJ3KT5 76 | CORNELL UNIVERSITY 77 | EQA8NBEN9WD5 78 | 79 | 80 | 81 | 82 | NY 83 | 148502820 84 | 85 | US 86 | United States 87 | New York 88 | 1 89 | 23 90 | NY23 91 | 92 | 93 | 9101 94 | Chem Struct,Dynmcs&Mechansms A 95 | 96 | 97 | 090Z 98 | CAS-Critical Aspects of Sustainability 99 | 100 | 101 | 8396 102 | Clean Energy Technology 103 | 104 | 105 | 8397 106 | Hydrogen Storage or Generation 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 01002223DB 115 | 116 | 040100 117 | 118 | 2022~542000 119 | 120 | 121 | -------------------------------------------------------------------------------- /xml-samples/2155160.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 525000.00 9 | 170516 10 | 11 | Continuing Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | George Richter-Addo 26 | grichter@nsf.gov 27 | 7032927528 28 | 29 | 30 | 06/23/2022 31 | 06/23/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155160 39 | 40 | Liviu 41 | Mirica 42 | M 43 | 44 | Liviu M Mirica 45 | 46 | 000565995 47 | 06/23/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Illinois at Urbana-Champaign 53 | URBANA 54 | 618013620 55 | 2173332187 56 | 506 S WRIGHT ST 57 | 58 | United States 59 | Illinois 60 | IL 61 | 13 62 | IL13 63 | Y8CWNJRCNN91 64 | UNIVERSITY OF ILLINOIS 65 | 66 | 67 | 68 | 69 | Urbana 70 | IL 71 | 618013620 72 | 73 | US 74 | United States 75 | Illinois 76 | 1 77 | 13 78 | IL13 79 | 80 | 81 | 6878 82 | Chemical Synthesis 83 | 84 | 85 | 090Z 86 | CAS-Critical Aspects of Sustainability 87 | 88 | 89 | 8037 90 | Advanced Manufacturing 91 | 92 | 93 | 8396 94 | Clean Energy Technology 95 | 96 | 97 | 8398 98 | Hydrocarbon Conversion 99 | 100 | 101 | 8607 102 | Solar Energy Capture&Conver 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 01002223DB 111 | 112 | 040100 113 | 114 | 2022~170516 115 | 116 | 117 | -------------------------------------------------------------------------------- /xml-samples/2155162.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | C*-algebras of Groups and Quantum Groups: Rigidity and Structure Theory 5 | NSF 6 | 06/01/2022 7 | 05/31/2025 8 | 325855.00 9 | 325855 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Marian Bocea 26 | mbocea@nsf.gov 27 | 7032922595 28 | 29 | The theory of operator algebras was developed in the 1930s as the mathematical foundation of quantum mechanics. This theory is also a natural mathematical framework in which physical systems as they evolve in time (called dynamical systems) can be represented and studied; groups are the algebraic structures that represent the time in this picture. Groups also model symmetries of physical systems and mathematical structures, and since their formal introduction in the 19th century, their applications have expanded deep into almost every major area of mathematics. Representation theory of groups provides canonical ways to assign operator algebras to a given group, hence establishes a bridge between the two theories which allows one to import ideas and concepts from one theory to the other. The study of the connections between groups and their associated operator algebras has been a central part of operator algebra theory since the time of von Neumann, and it has had tremendous impact on both theories, as well as in several other related areas such as ergodic theory, dynamical systems, and representation theory. This project aims to make further progress in this direction by discovering new connections between structural properties of groups and their operator algebras. The project provides research training opportunities for graduate students. <br/><br/>The first part of the project is aimed at several conjectures and problems related to new operator-algebraic rigidity phenomena for discrete groups in terms of their C*-algebras. This is based on a new approach to extending important classical results from ergodic theory of higher rank groups to the operator-algebraic setting. The main concept of interest is that of invariant subalgebras of C*-algebras generated by unitary representations, which are viewed as non-commutative generalizations of normal subgroups. The boundary theory of groups (in the sense of Furstenberg) plays a central role in the Principal Investigator’s strategies to approach the proposed problems. Furstenberg's boundary theory has been, in the past few decades, a major tool in ergodic theory of higher rank lattices and in proving their rigidity properties. More recently, it has also been used in operator-algebraic rigidity problems, resulting in significant progress in this area. The project aims to develop new techniques in utilizing boundary actions in order to prove the proposed rigidity results for invariant subalgebras of C*-algebras generated by unitary representations of discrete groups. Another part of this project concerns several open problems regarding simplicity and unique trace property of C*-algebras of discrete quantum groups; the goal is to further develop the boundary theory of quantum groups and apply them in these problems.<br/><br/>This award reflects NSF's statutory mission and has been deemed worthy of support through evaluation using the Foundation's intellectual merit and broader impacts review criteria. 30 | 04/06/2022 31 | 04/06/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155162 39 | 40 | Mehrdad 41 | Kalantar 42 | 43 | 44 | Mehrdad Kalantar 45 | kalantar@math.uh.edu 46 | 7137430780 47 | 000704185 48 | 04/06/2022 49 | 50 | Principal Investigator 51 | 52 | 53 | University of Houston 54 | HOUSTON 55 | 77004 56 | 7137435773 57 | 4800 W CALHOUN ST STE 316 58 | 59 | United States 60 | Texas 61 | TX 62 | 18 63 | TX18 64 | QKWEF8XLMTT3 65 | UNIVERSITY OF HOUSTON SYSTEM 66 | PH6HQZLPA687 67 | 68 | 69 | 70 | Houston 71 | TX 72 | 772042015 73 | 74 | US 75 | United States 76 | Texas 77 | 1 78 | 18 79 | TX18 80 | 81 | 82 | 1281 83 | ANALYSIS PROGRAM 84 | 85 | 2022~325855 86 | 87 | 88 | -------------------------------------------------------------------------------- /xml-samples/2155163.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 450000.00 9 | 450000 10 | 11 | Standard Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Paul Blakemore 26 | pblakemo@nsf.gov 27 | 7032922726 28 | 29 | 30 | 06/23/2022 31 | 06/23/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155163 39 | 40 | Sarah 41 | Reisman 42 | E 43 | 44 | Sarah E Reisman 45 | 46 | 000537586 47 | 06/23/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | California Institute of Technology 53 | PASADENA 54 | 91125 55 | 6263956219 56 | 1200 E CALIFORNIA BLVD 57 | 58 | United States 59 | California 60 | CA 61 | 29 62 | CA29 63 | U2JMKHNS5TG4 64 | CALIFORNIA INSTITUTE OF TECHNOLOGY 65 | 66 | 67 | 68 | 69 | PASADENA 70 | CA 71 | 911250600 72 | 73 | US 74 | United States 75 | California 76 | 1 77 | 27 78 | CA27 79 | 80 | 81 | 6878 82 | Chemical Synthesis 83 | 84 | 85 | 8037 86 | Advanced Manufacturing 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 01002223DB 95 | 96 | 040100 97 | 98 | 2022~450000 99 | 100 | 101 | -------------------------------------------------------------------------------- /xml-samples/2155170.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 09/01/2022 7 | 08/31/2025 8 | 500000.00 9 | 500000 10 | 11 | Continuing Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Francis D'Souza 26 | frdsouza@nsf.gov 27 | 7032924559 28 | 29 | 30 | 05/04/2022 31 | 08/11/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155170 39 | 40 | Alexander 41 | Lippert 42 | R 43 | 44 | Alexander R Lippert 45 | 46 | 000699928 47 | 05/04/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Southern Methodist University 53 | DALLAS 54 | 75205 55 | 2147684708 56 | 6425 BOAZ LANE 57 | 58 | United States 59 | Texas 60 | TX 61 | 32 62 | TX32 63 | D33QGS3Q3DJ3 64 | SOUTHERN METHODIST UNIVERSITY 65 | D33QGS3Q3DJ3 66 | 67 | 68 | 69 | Dallas 70 | TX 71 | 752750302 72 | 73 | US 74 | United States 75 | Texas 76 | 1 77 | 32 78 | TX32 79 | 80 | 81 | 9102 82 | Chem Struct,Dynmcs&Mechansms B 83 | 84 | 85 | 7234 86 | SENSORS NON-SOLICITATION RESEA 87 | 88 | 89 | 8038 90 | Biotechnology 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 01002223DB 99 | 100 | 040100 101 | 102 | 2022~500000 103 | 104 | 105 | -------------------------------------------------------------------------------- /xml-samples/2155175.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 548308.00 9 | 379583 10 | 11 | Continuing Grant 12 | 13 | 14 | 03090000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | CHE 21 | Division Of Chemistry 22 | 23 | 24 | 25 | Kenneth Moloy 26 | kmoloy@nsf.gov 27 | 7032928441 28 | 29 | 30 | 06/06/2022 31 | 06/06/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155175 39 | 40 | Manashi 41 | Nath 42 | 43 | 44 | Manashi Nath 45 | 46 | 000528466 47 | 06/06/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | Xinhua 53 | Liang 54 | 55 | 56 | Xinhua Liang 57 | 58 | 000644574 59 | 06/06/2022 60 | 61 | Co-Principal Investigator 62 | 63 | 64 | Missouri University of Science and Technology 65 | ROLLA 66 | 654096506 67 | 5733414134 68 | 300 W 12TH ST 69 | 70 | United States 71 | Missouri 72 | MO 73 | 08 74 | MO08 75 | Y6MGH342N169 76 | UNIVERSITY OF MISSOURI SYSTEM 77 | LBFJB8N7LME3 78 | 79 | 80 | 81 | Rolla 82 | MO 83 | 654096506 84 | 85 | US 86 | United States 87 | Missouri 88 | 1 89 | 08 90 | MO08 91 | 92 | 93 | 1762 94 | SOLID STATE & MATERIALS CHEMIS 95 | 96 | 97 | 6884 98 | Chemical Catalysis 99 | 100 | 101 | 090Z 102 | CAS-Critical Aspects of Sustainability 103 | 104 | 105 | 8037 106 | Advanced Manufacturing 107 | 108 | 109 | 8396 110 | Clean Energy Technology 111 | 112 | 113 | 8397 114 | Hydrogen Storage or Generation 115 | 116 | 2022~379583 117 | 118 | 119 | -------------------------------------------------------------------------------- /xml-samples/2155181.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 10/01/2022 7 | 09/30/2025 8 | 500000.00 9 | 500000 10 | 11 | Standard Grant 12 | 13 | 14 | 05050000 15 | 16 | CSE 17 | Direct For Computer & Info Scie & Enginr 18 | 19 | 20 | CNS 21 | Division Of Computer and Network Systems 22 | 23 | 24 | 25 | James Joshi 26 | jjoshi@nsf.gov 27 | 7032928950 28 | 29 | 30 | 08/20/2022 31 | 08/20/2022 32 | 33 | Grant 34 | 47.070 35 | 1 36 | 4900 37 | 4900 38 | 2155181 39 | 40 | Song 41 | Fang 42 | 43 | 44 | Song Fang 45 | 46 | 000800154 47 | 08/20/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Oklahoma Norman Campus 53 | NORMAN 54 | 730194039 55 | 4053254757 56 | 1000 ASP AVE RM 105 57 | 58 | United States 59 | Oklahoma 60 | OK 61 | 04 62 | OK04 63 | EVTSTTLCEWS5 64 | UNIVERSITY OF OKLAHOMA 65 | Y74NRF365E33 66 | 67 | 68 | 69 | 70 | OK 71 | 730199705 72 | 73 | US 74 | United States 75 | Oklahoma 76 | 1 77 | 04 78 | OK04 79 | 80 | 81 | 8060 82 | Secure &Trustworthy Cyberspace 83 | 84 | 85 | 025Z 86 | SaTC: Secure and Trustworthy Cyberspace 87 | 88 | 89 | 7923 90 | SMALL PROJECT 91 | 92 | 93 | 9150 94 | EXP PROG TO STIM COMP RES 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 01002223DB 103 | 104 | 040100 105 | 106 | 2022~500000 107 | 108 | 109 | -------------------------------------------------------------------------------- /xml-samples/2155183.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 08/01/2022 7 | 07/31/2025 8 | 380575.00 9 | 380575 10 | 11 | Standard Grant 12 | 13 | 14 | 03040000 15 | 16 | MPS 17 | Direct For Mathematical & Physical Scien 18 | 19 | 20 | DMS 21 | Division Of Mathematical Sciences 22 | 23 | 24 | 25 | Marian Bocea 26 | mbocea@nsf.gov 27 | 7032922595 28 | 29 | 30 | 07/22/2022 31 | 07/22/2022 32 | 33 | Grant 34 | 47.049 35 | 1 36 | 4900 37 | 4900 38 | 2155183 39 | 40 | Changfeng 41 | Gui 42 | 43 | 44 | Changfeng Gui 45 | 46 | 000703111 47 | 07/22/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Texas at San Antonio 53 | SAN ANTONIO 54 | 782491644 55 | 2104584340 56 | 1 UTSA CIRCLE 57 | 58 | United States 59 | Texas 60 | TX 61 | 20 62 | TX20 63 | U44ZMVYU52U6 64 | UNIVERSITY OF TEXAS AT SAN ANTONIO, THE 65 | X5NKD2NFF2V3 66 | 67 | 68 | 69 | 70 | TX 71 | 782491644 72 | 73 | US 74 | United States 75 | Texas 76 | 1 77 | 20 78 | TX20 79 | 80 | 81 | 1281 82 | ANALYSIS PROGRAM 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 01002223DB 91 | 92 | 040100 93 | 94 | 2022~380575 95 | 96 | 97 | -------------------------------------------------------------------------------- /xml-samples/2155187.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Improving Biopharmaceutical Technician Education with Cell and Gene Therapy Credentials 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 349999.00 9 | 349999 10 | 11 | Standard Grant 12 | 13 | 14 | 11040100 15 | 16 | EHR 17 | Direct For Education and Human Resources 18 | 19 | 20 | DUE 21 | Division Of Undergraduate Education 22 | 23 | 24 | 25 | Michael Davis 26 | mdavis@nsf.gov 27 | 7032927166 28 | 29 | Over the past four years more than 30 cell and gene therapy companies have started or become located in Montgomery County, Maryland, making it an emerging center for biopharmaceutical industries. Montgomery College will address the critical workforce needs of this growing industry by increasing the number of work-ready biotechnicians with a focus on cell and gene therapy. The biotechnology program at Montgomery College will add a new Certificate in Cell and Gene therapy with an expected annual enrollment of 20 students by 2025. They will combine this new certificate program with two new micro-credentials in Micropipetting and Aseptic Techniques for Mammalian Cell Culture. Skills from these courses and credentials will be vetted by industry professionals to ensure alignment with their expectations for entry-level biotechnology positions. Finally, the college plans to increase awareness and enrollment in the biotechnology program through increased outreach combined with a comprehensive marketing strategy, and focus group analysis.<br/><br/>Montgomery College plans to improve educational outcomes for students in the biotechnology program by creating a new Principles of Cell and Gene Therapy Technology course that will be part of the new Cell and Gene Therapy certificate. The certificate will include three existing courses that feature a strong regulatory component that addresses the essential elements of FDA compliance for therapeutics. The college will consult with an industry advisory group to develop new micro credentials in Micropipetting and Aseptic Techniques for Mammalian Cell Culture. While these are considered standard techniques, Montgomery College plans to achieve industrial buy-in for these credentials which can augment degrees and certificates and improve employment opportunities for students. To improve enrollment in the program, the college will conduct focus groups to determine baseline data regarding student interest and knowledge of biotechnology careers. They will also develop a 10-hour biotechnology camp for Montgomery County students and educators to improve the program’s outreach. A program evaluator will monitor the progress of the project and will use formative and summative assessments to guide it. This project is funded by the Advanced Technological Education program that focuses on the education of technicians for the advanced-technology fields that drive the nation's economy.<br/><br/>This award reflects NSF's statutory mission and has been deemed worthy of support through evaluation using the Foundation's intellectual merit and broader impacts review criteria. 30 | 03/08/2022 31 | 03/08/2022 32 | 33 | Grant 34 | 47.076 35 | 1 36 | 4900 37 | 4900 38 | 2155187 39 | 40 | James 41 | Sniezek 42 | H 43 | 44 | James H Sniezek 45 | james.sniezek@montgomerycollege.edu 46 | 3012795130 47 | 000305728 48 | 03/08/2022 49 | 50 | Co-Principal Investigator 51 | 52 | 53 | Lori 54 | Kelman 55 | 56 | 57 | Lori Kelman 58 | lori.kelman@montgomerycollege.edu 59 | 3012517958 60 | 000073358 61 | 03/08/2022 62 | 63 | Co-Principal Investigator 64 | 65 | 66 | Collins 67 | Jones 68 | 69 | 70 | Collins Jones 71 | collins.jones@montgomerycollege.edu 72 | 2405671910 73 | 000571753 74 | 03/08/2022 75 | 76 | Principal Investigator 77 | 78 | 79 | Padmavathi 80 | Tangirala 81 | 82 | 83 | Padmavathi Tangirala 84 | ptangira@montgomerycollege.edu 85 | 2405672194 86 | 000853090 87 | 03/08/2022 88 | 89 | Co-Principal Investigator 90 | 91 | 92 | Montgomery College 93 | ROCKVILLE 94 | 208503248 95 | 2405679038 96 | 9221 CORPORATE BLVD 97 | 98 | United States 99 | Maryland 100 | MD 101 | 06 102 | MD06 103 | M2ENSJTABU43 104 | MONTGOMERY COLLEGE 105 | M2ENSJTABU43 106 | 107 | 108 | 109 | Germantown 110 | MD 111 | 208764098 112 | 113 | US 114 | United States 115 | Maryland 116 | 1 117 | 06 118 | MD06 119 | 120 | 121 | 7412 122 | Advanced Tech Education Prog 123 | 124 | 125 | 1032 126 | ADVANCED TECHNOLOGY EDUCATION 127 | 128 | 129 | 9178 130 | UNDERGRADUATE EDUCATION 131 | 132 | 133 | SMET 134 | SCIENCE, MATH, ENG & TECH EDUCATION 135 | 136 | 2022~349999 137 | 138 | 139 | -------------------------------------------------------------------------------- /xml-samples/2155189.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSF 6 | 07/01/2022 7 | 06/30/2025 8 | 365919.00 9 | 365919 10 | 11 | Standard Grant 12 | 13 | 14 | 05050000 15 | 16 | CSE 17 | Direct For Computer & Info Scie & Enginr 18 | 19 | 20 | CNS 21 | Division Of Computer and Network Systems 22 | 23 | 24 | 25 | Gang Qu 26 | gqu@nsf.gov 27 | 7032928950 28 | 29 | 30 | 06/30/2022 31 | 06/30/2022 32 | 33 | Grant 34 | 47.070 35 | 1 36 | 4900 37 | 4900 38 | 2155189 39 | 40 | Kaveh 41 | Shamsi 42 | 43 | 44 | Kaveh Shamsi 45 | 46 | 000837919 47 | 06/30/2022 48 | 49 | Principal Investigator 50 | 51 | 52 | University of Texas at Dallas 53 | RICHARDSON 54 | 750801407 55 | 9728832313 56 | 800 W CAMPBELL RD 57 | 58 | United States 59 | Texas 60 | TX 61 | 03 62 | TX03 63 | EJCVPNN1WFS5 64 | UNIVERSITY OF TEXAS AT DALLAS 65 | X5NKD2NFF2V3 66 | 67 | 68 | 69 | Richardson 70 | TX 71 | 750803021 72 | 73 | US 74 | United States 75 | Texas 76 | 1 77 | 32 78 | TX32 79 | 80 | 81 | 8060 82 | Secure &Trustworthy Cyberspace 83 | 84 | 85 | 025Z 86 | SaTC: Secure and Trustworthy Cyberspace 87 | 88 | 89 | 7923 90 | SMALL PROJECT 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 01002223DB 99 | 100 | 040100 101 | 102 | 2022~365919 103 | 104 | 105 | -------------------------------------------------------------------------------- /xml2csv.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import xmltodict 4 | import collections 5 | import pandas as pd 6 | import argparse 7 | import multiprocessing as mp 8 | import glob 9 | 10 | 11 | def converter(data, output = {}, name = ""): 12 | if type(data) is collections.OrderedDict: 13 | for key in data.keys(): 14 | d_ = data[key] 15 | if type(d_) is collections.OrderedDict: 16 | output = converter(d_, output, name+key+".") 17 | else: 18 | if type(d_) is list: 19 | for item in d_: 20 | output = converter(item, output, name+key+".") 21 | else: 22 | if name+key in output.keys(): 23 | count = 0 24 | while(1): 25 | if name+key+'.'+str(count) not in output.keys(): 26 | output[name+key+'.'+str(count)] = d_ 27 | break 28 | else: 29 | count+=1 30 | else: 31 | output[name+key] = d_ 32 | return output 33 | 34 | 35 | def parse(path): 36 | with open(path,'r') as file: 37 | xml = file.read() 38 | xmlDict = xmltodict.parse(xml) 39 | 40 | response = converter(xmlDict) 41 | return response 42 | 43 | def main(): 44 | try: 45 | if(args.xml!=None): 46 | file_list = args.xml 47 | else: 48 | file_list = glob.glob(args.bulk+'/*') 49 | 50 | pool = mp.Pool(mp.cpu_count()) 51 | result = pool.map(parse, file_list) 52 | df = pd.DataFrame(result) 53 | df.to_csv(args.csv, index=False) 54 | except Exception as e: 55 | print(e) 56 | 57 | if __name__ == '__main__': 58 | parser = argparse.ArgumentParser() 59 | 60 | parser.add_argument("-f", "--xml", 61 | nargs='*', 62 | help="Specify a xml file.") 63 | 64 | parser.add_argument("-b", "--bulk", 65 | nargs='?', 66 | help="Specify path to xml files folder.") 67 | 68 | parser.add_argument("-csv", "--csv", 69 | nargs='?', const='converted.csv', 70 | help="Specify the name of a csv file to write to.") 71 | args = parser.parse_args() 72 | 73 | if not args.xml and not args.bulk: 74 | print("\n[-] Please specify an input file to parse." 75 | "\nUse -f to specify the file." 76 | "\nOr use -b to specify the path to xml files") 77 | exit() 78 | 79 | if not args.csv: 80 | print("\n[-] Please specify an output file name to put data. " 81 | "Use -csv to specify the file\n") 82 | exit() 83 | 84 | main() --------------------------------------------------------------------------------