File size: 73,985 Bytes
7616cbe | 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 | [
{
"awardId": "HT940216C0001",
"recipientName": "HUMANA GOVERNMENT BUSINESS INC",
"awardAmount": 51269205263.03,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::OT::IGF",
"startDate": "2016-08-01",
"endDate": "2025-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "KY",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940216C0001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.567Z"
},
{
"awardId": "DENA0003525",
"recipientName": "NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC",
"awardAmount": 42111665692.01,
"totalOutlays": 25057221229.35,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::CL,CT::IGF CONTRACT AWARD DE-NA0003525 TO THE NATIONAL TECHNOLOGY&ENGINEERING SOLUTIONS OF SANDIA, LLC (NTESS) FOR THE MANAGEMENT AND OPERATION OF THE DEPARTMENT OF ENERGY, NATIONAL NUCLEAR SECURITY ADMINISTRATION'S SANDIA NATIONAL LABORATORIES (SNL)",
"startDate": "2017-01-18",
"endDate": "2027-04-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "NM",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DENA0003525_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.720Z"
},
{
"awardId": "DEAC0500OR22725",
"recipientName": "UT-BATTELLE LLC",
"awardAmount": 41398021316.97,
"totalOutlays": 14142694749.05,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT AND OPERATION OF THE OAK RIDGE NATIONAL LABORATORY",
"startDate": "1999-10-15",
"endDate": "2030-03-31",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "TN",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0500OR22725_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.752Z"
},
{
"awardId": "DEAC5207NA27344",
"recipientName": "LAWRENCE LIVERMORE NATIONAL SECURITY, LLC",
"awardAmount": 40927152397.47,
"totalOutlays": 16233994822.2,
"awardType": "DEFINITIVE CONTRACT",
"description": "TAS::89 0240::TAS THIS PERFORMANCE-BASED MANAGEMENT CONTRACT (PBMC) IS FOR THE MANAGEMENT AND OPERATION OF THE LAWRENCE LIVERMORE NATIONAL LABORATORY (LLNL). THE CONTRACTOR SHALL, IN ACCORDANCE WITH THE PROVISIONS OF THIS CONTRACT, ACCOMPLISH THE MISSIONS AND PROGRAMS ASSIGNED BY THE U.S. DEPARTMENT OF ENERGY (DOE) AND MANAGE AND OPERATE THE LABORATORY. THE LABORATORY IS ONE OF DOES OFFICE OF DEFENSE PROGRAM MULTI-PROGRAM LABORATORIES. THE LABORATORY IS A FEDERALLY FUNDED RESEARCH AND DEVELOPMENT INSTITUTION (ESTABLISHED IN ACCORDANCE WITH THE FEDERAL ACQUISITION REGULATION (FAR) PART 35 AND OPERATED UNDER THIS MANAGEMENT AND OPERATING (M&O) CONTRACT, AS DEFINED IN FAR 17.6 AND DEAR 917.6.",
"startDate": "2007-05-09",
"endDate": "2031-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC5207NA27344_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.786Z"
},
{
"awardId": "DEAC3243AL00036",
"recipientName": "REGENTS OF THE UNIVERSITY OF CALIFORNIA, THE",
"awardAmount": 35295689219.18,
"totalOutlays": 576372104.83,
"awardType": "DEFINITIVE CONTRACT",
"description": "M&O OF LANL BR OF U OF CA",
"startDate": "1978-09-30",
"endDate": "2006-05-31",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "NM",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC3243AL00036_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.840Z"
},
{
"awardId": "89233218CNA000001",
"recipientName": "TRIAD NATIONAL SECURITY, LLC",
"awardAmount": 35035280267.19,
"totalOutlays": 23375806666.98,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::CL::IGF COMPETITION FOR MANAGEMENT AND OPERATION OF LOS ALAMOS NATIONAL LABORATORY",
"startDate": "2018-06-08",
"endDate": "2028-10-31",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "NM",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_89233218CNA000001_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.868Z"
},
{
"awardId": "N0002417C2100",
"recipientName": "ELECTRIC BOAT CORPORATION",
"awardAmount": 34661786985,
"totalOutlays": 52471,
"awardType": "DEFINITIVE CONTRACT",
"description": "SSN 802 AND 803 LONG LEAD TIME MATERIAL",
"startDate": "2017-02-14",
"endDate": "2036-06-02",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002417C2100_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.898Z"
},
{
"awardId": "DENA0001942",
"recipientName": "CONSOLIDATED NUCLEAR SECURITY, LLC",
"awardAmount": 34009652494.51,
"totalOutlays": 17466635554.28,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::CL,CT::IGF MANAGEMENT AND OPERATING CONTRACT FOR Y-12 NATIONAL SECURITY COMPLEX, PANTEX PLANT, WITH AN OPTION FOR SAVANNAH RIVER TRITIUM OPERATIONS",
"startDate": "2013-01-08",
"endDate": "2027-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "TN",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DENA0001942_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:12.960Z"
},
{
"awardId": "FA862511C6600",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 31960918249.03,
"totalOutlays": 271607247.33,
"awardType": "DEFINITIVE CONTRACT",
"description": "KC-X MODERNIZATION PROGRAM",
"startDate": "2011-02-24",
"endDate": "2027-07-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA862511C6600_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.016Z"
},
{
"awardId": "DEAC0576RL01830",
"recipientName": "BATTELLE MEMORIAL INSTITUTE",
"awardAmount": 30369205682.67,
"totalOutlays": 7808163190.37,
"awardType": "DEFINITIVE CONTRACT",
"description": "BATTELLE MEMORIAL INSTITUTE/PACIFIC NORTHWEST LABORATORY OPERATING AND MANAGING CONTRACT",
"startDate": "1978-09-15",
"endDate": "2027-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0576RL01830_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.045Z"
},
{
"awardId": "N0001920C0009",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 30115562653.93,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE PURPOSE OF THIS MODIFICATION IS TO AWARD F-35A LRIP 15 USAF AIRCRAFT* LONG LEAD FUNDING",
"startDate": "2019-11-26",
"endDate": "2028-06-01",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001920C0009_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.072Z"
},
{
"awardId": "DEAC5206NA25396",
"recipientName": "LOS ALAMOS NATIONAL SECURITY LLC",
"awardAmount": 27422768630.96,
"totalOutlays": -2610840.85,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE CONTRACTOR SHALL, IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF THIS CONTRACT, PROVIDE THE PERSONNEL, EQUIPMENT, MATERIALS, SUPPLIES, AND SERVICES (EXCEPT AS MAY BE FURNISHED BY THE GOVERNMENT) AND OTHERWISE DO ALL THING NECESSARY FOR, OR INCIDENT TO PROVIDING ITS BEST EFFORTS TO EFFECTIVELY, EFFICIENTLY AND SAFELY MANAGE AND OPERATE THE LOS ALAMOS NATIONAL LABORATORY FOR THE U.S. DEPARTMENT OF ENERGY/NATIONAL NUCLEAR SECURITY ADMINISTRATION.",
"startDate": "2005-12-21",
"endDate": "2018-10-31",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "NM",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC5206NA25396_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.115Z"
},
{
"awardId": "DEAC0908SR22470",
"recipientName": "SAVANNAH RIVER NUCLEAR SOLUTIONS LLC",
"awardAmount": 27154619520.14,
"totalOutlays": 10535316708.99,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT AND OPERATING CONTRACT FOR THE SAVANNAH RIVER SITE.",
"startDate": "2008-01-10",
"endDate": "2026-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "SC",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0908SR22470_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.144Z"
},
{
"awardId": "N0002417C2117",
"recipientName": "ELECTRIC BOAT CORPORATION",
"awardAmount": 26699845470,
"totalOutlays": 43723356.73,
"awardType": "DEFINITIVE CONTRACT",
"description": "COLUMBIA CLASS DESIGN COMPLETION",
"startDate": "2017-09-21",
"endDate": "2031-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002417C2117_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.173Z"
},
{
"awardId": "DEAC0705ID14517",
"recipientName": "BATTELLE ENERGY ALLIANCE, LLC",
"awardAmount": 25680438712.93,
"totalOutlays": 9388045055.64,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT AND OPERATIONS OF THE INL",
"startDate": "2004-11-09",
"endDate": "2029-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "ID",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0705ID14517_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.200Z"
},
{
"awardId": "N0001923C0003",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 24499786640,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE PURPOSE OF THIS CONTRACT IS TO AWARD LONG LEAD FUNDING FOR F-35A, F-35B, AND F-35C AIRCRAFT FOR U.S. SERVICES, NON-DOD PARTNERS, AND FMS CUSTOMERS",
"startDate": "2022-12-23",
"endDate": "2030-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001923C0003_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.299Z"
},
{
"awardId": "HT940216C0002",
"recipientName": "HEALTH NET FEDERAL SERVICES, LLC",
"awardAmount": 23493318778.12,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::OT::IGF MANAGED CARE SUPPORT SERVICES IN SUPPORT OF THE TRICARE PROGRAM",
"startDate": "2016-08-01",
"endDate": "2026-01-07",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940216C0002_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.325Z"
},
{
"awardId": "NAS1510000",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 22405025934.14,
"totalOutlays": 2580874653.02,
"awardType": "DEFINITIVE CONTRACT",
"description": "INTERNATIONAL SPACE STATION",
"startDate": "1993-11-15",
"endDate": "2026-09-30",
"awardingAgency": "National Aeronautics and Space Administration",
"awardingSubAgency": "National Aeronautics and Space Administration",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_NAS1510000_8000_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.366Z"
},
{
"awardId": "DEAC0584OR21400",
"recipientName": "LOCKHEED MARTIN SERVICES, LLC",
"awardAmount": 20646113720.09,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT AND OPERATION OF Y-12 PLANT AND OTHER PROGRAMS",
"startDate": "1984-04-30",
"endDate": "2027-02-28",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "TN",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0584OR21400_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.394Z"
},
{
"awardId": "HT940211C0003",
"recipientName": "HUMANA GOVERNMENT BUSINESS INC",
"awardAmount": 20451127096.53,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "T3 MANAGED CARE SUPPORT CONTRACT FOR SOUTH REGION",
"startDate": "2011-03-03",
"endDate": "2019-03-27",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "KY",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940211C0003_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.425Z"
},
{
"awardId": "N0002412C2115",
"recipientName": "ELECTRIC BOAT CORPORATION",
"awardAmount": 19891473738,
"totalOutlays": 107066,
"awardType": "DEFINITIVE CONTRACT",
"description": "SSN 792 LONG LEAD TIME MATERIAL",
"startDate": "2012-04-13",
"endDate": "2027-08-01",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002412C2115_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.494Z"
},
{
"awardId": "DEAC0205CH11231",
"recipientName": "THE REGENTS OF THE UNIVERSITY OF CALIFORNIA",
"awardAmount": 19558423795.86,
"totalOutlays": 7106880120.99,
"awardType": "DEFINITIVE CONTRACT",
"description": "THIS PERFORMANCE-BASED MANAGEMENT CONTRACT (PBMC) IS FOR THE MANAGEMENT AND OPERATION OF THE ERNEST ORLANDO LAWRENCE BERKELEY NATIONAL LABORATORY (LBNL). THE CONTRACTOR SHALL, IN ACCORDANCE WITH THE PROVISIONS OF THIS CONTRACT, ACCOMPLISH THE MISSIONS AND PROGRAMS ASSIGNED BY THE U.S. DEPARTMENT OF ENERGY (DOE) AND MANAGE AND OPERATE THE LABORATORY. THE LABORATORY IS ONE OF THE DOE?S OFFICE OF SCIENCE (SC) MULTI-PROGRAM LABORATORIES. THE LABORATORY IS A FEDERALLY FUNDED RESEARCH AND DEVELOPMENT CENTER (FFRDC) ESTABLISHED IN ACCORDANCE WITH THE FEDERAL ACQUISITION REGULATION (FAR) PART 35 AND OPERATED UNDER THIS MANAGEMENT AND OPERATING (M&O) CONTRACT, AS DEFINED IN FAR 17.6 AND DEAR 917.6.",
"startDate": "2005-06-01",
"endDate": "2030-05-31",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0205CH11231_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.529Z"
},
{
"awardId": "HT940210C0002",
"recipientName": "HEALTH NET FEDERAL SERVICES, LLC",
"awardAmount": 19414789943.3,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "PROVIDE MANAGED CARE SUPPORT TO THE DEPARTMENT OF DEFENSE TRICARE PROGRAM. CONTRACTOR SHALL ASSIST MILITARY HEALTH SYSTEM IN OPERATING AN INTEGRATED HEALTHCARE DELIVERY SYSTEM COMBINING RESOURCES OF THE MILITARY'S DIRECT MEDICAL CARE SYSTEM AND THE CONTRACTORS MANAGED CARE SUPPORT TO PROVIDE HEALTH, MEDICAL AND ADMINISTRATIVE SUPPORT SERVICES TO ELIGIBLE BENEFICIARIES IN THE NORTH REGION.",
"startDate": "2010-05-13",
"endDate": "2025-08-25",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940210C0002_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.556Z"
},
{
"awardId": "N0001914C0067",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 18129749821.79,
"totalOutlays": 405630314.75,
"awardType": "DEFINITIVE CONTRACT",
"description": "USN P-8A FRP II LONG LEAD MATERIAL",
"startDate": "2014-08-14",
"endDate": "2027-11-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001914C0067_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.584Z"
},
{
"awardId": "DEAC0343SF00048",
"recipientName": "THE REGENTS OF THE UNIVERSITY OF CALIFORNIA",
"awardAmount": 18009881071.27,
"totalOutlays": 620331694.24,
"awardType": "DEFINITIVE CONTRACT",
"description": "OPERATION OF LAWRENCE LIVERMORE LABORATORY",
"startDate": "1999-10-27",
"endDate": "2007-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0343SF00048_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.611Z"
},
{
"awardId": "DENA0002839",
"recipientName": "HONEYWELL FEDERAL MANUFACTURING & TECHNOLOGIES, LLC",
"awardAmount": 17385377662.61,
"totalOutlays": 9431693142.4,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::CL,CT::IGF MANAGEMENT AND OPERATION OF THE NATIONAL SECURITY CAMPUS -- CONTRACT NO. DE-NA0002839",
"startDate": "2015-07-09",
"endDate": "2030-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "MO",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DENA0002839_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.668Z"
},
{
"awardId": "DEAC0206CH11357",
"recipientName": "UCHICAGO ARGONNE, LLC",
"awardAmount": 17264919333.81,
"totalOutlays": 6790754709.95,
"awardType": "DEFINITIVE CONTRACT",
"description": "PERFORMANCE-BASED CONTRACT FOR MANAGEMENT AND OPERATION OF ARGONNE NATIONAL LABORATORY",
"startDate": "2006-07-31",
"endDate": "2026-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "IL",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0206CH11357_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.698Z"
},
{
"awardId": "DEAC2701RV14136",
"recipientName": "BECHTEL NATIONAL, INC.",
"awardAmount": 17034586105.74,
"totalOutlays": 4045513527.5,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2000-12-15",
"endDate": "2027-04-11",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC2701RV14136_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.738Z"
},
{
"awardId": "N0002409C2104",
"recipientName": "ELECTRIC BOAT CORPORATION",
"awardAmount": 16238775949,
"totalOutlays": 56747688,
"awardType": "DEFINITIVE CONTRACT",
"description": "CONSTRUCTION OF VIRGINIA CLASS BLOCK III SUBMARINES.",
"startDate": "2008-12-22",
"endDate": "2023-08-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002409C2104_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.753Z"
},
{
"awardId": "NNJ06TA25C",
"recipientName": "LOCKHEED MARTIN CORP",
"awardAmount": 15530973334.93,
"totalOutlays": 3510545584.35,
"awardType": "DEFINITIVE CONTRACT",
"description": "TAS::80 0124::TAS DESIGN, DEVELOPMENT, TEST&EVALUATION OF PROJECT ORION",
"startDate": "2006-09-06",
"endDate": "2026-09-30",
"awardingAgency": "National Aeronautics and Space Administration",
"awardingSubAgency": "National Aeronautics and Space Administration",
"placeOfPerformanceState": "CO",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_NNJ06TA25C_8000_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.798Z"
},
{
"awardId": "DEAC0276SF00515",
"recipientName": "THE LELAND STANFORD JUNIOR UNIVERSITY",
"awardAmount": 14860934880.41,
"totalOutlays": 3739586268.84,
"awardType": "DEFINITIVE CONTRACT",
"description": "OPERATION AND MAINTENANCE LINEAR ACCELLERATOR",
"startDate": "1978-11-20",
"endDate": "2027-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0276SF00515_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.829Z"
},
{
"awardId": "89233018CNR000004",
"recipientName": "FLUOR MARINE PROPULSION, LLC",
"awardAmount": 14774555215.06,
"totalOutlays": 9223718789.77,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT AND OPERATION OF THE NAVAL NUCLEAR LABORATORY AND NAVAL NUCLEAR PROPULSION PROGRAM SUPPORT",
"startDate": "2018-07-12",
"endDate": "2028-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "PA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_89233018CNR000004_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.856Z"
},
{
"awardId": "N0002418C2130",
"recipientName": "FLUOR MARINE PROPULSION, LLC",
"awardAmount": 13634823726.57,
"totalOutlays": 935256469.75,
"awardType": "DEFINITIVE CONTRACT",
"description": "NAVAL NUCLEAR LABORATORY",
"startDate": "2018-07-12",
"endDate": "2028-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "PA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002418C2130_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.880Z"
},
{
"awardId": "HT940212C0001",
"recipientName": "UNITEDHEALTH MILITARY & VETERANS SERVICES, LLC",
"awardAmount": 13145560374.49,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "T3 MANAGED CARE SUPPORT CONTRACT FOR WEST REGION",
"startDate": "2012-03-20",
"endDate": "2019-02-15",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "MN",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940212C0001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.904Z"
},
{
"awardId": "0005",
"recipientName": "FLUOR INTERCONTINENTAL, INC",
"awardAmount": 12568636130.95,
"totalOutlays": null,
"awardType": "DELIVERY ORDER",
"description": "LOGCAP IV SERVICES AFGHANISTAN",
"startDate": "2009-07-07",
"endDate": "2025-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": null,
"placeOfPerformanceCountry": "AFG",
"url": "https://www.usaspending.gov/award/CONT_AWD_0005_9700_W52P1J07D0008_9700",
"scrapedAt": "2026-05-14T18:23:13.938Z"
},
{
"awardId": "N0002416C2116",
"recipientName": "HUNTINGTON INGALLS INC",
"awardAmount": 11891378286.85,
"totalOutlays": 25985218.01,
"awardType": "DEFINITIVE CONTRACT",
"description": "CVN 80 ENGINEERING EFFORTS AND STEEL",
"startDate": "2016-05-23",
"endDate": "2036-06-02",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "VA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002416C2116_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:13.965Z"
},
{
"awardId": "FA821920C0006",
"recipientName": "NORTHROP GRUMMAN SYSTEMS CORP",
"awardAmount": 11719559923.19,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "GROUND-BASED STRATEGIC DETERRENT (GBSD) ENGINEERING AND MANUFACTURING DEVELOPMENT (EMD) AND EARLY PRODUCTION AND DEPLOYMENT (P&D)",
"startDate": "2020-09-08",
"endDate": "2029-03-10",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "UT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA821920C0006_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.005Z"
},
{
"awardId": "FA861404C2004",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 11086769499.68,
"totalOutlays": 0.33,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2003-10-02",
"endDate": "2017-10-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA861404C2004_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.033Z"
},
{
"awardId": "DEAC0500OR22800",
"recipientName": "BWXT Y - 12, LLC",
"awardAmount": 10985001041.33,
"totalOutlays": -684182.03,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT AND OPERATION OF THE Y-12 FACILITY",
"startDate": "2000-08-31",
"endDate": "2014-06-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "TN",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC0500OR22800_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.085Z"
},
{
"awardId": "DEAC3608GO28308",
"recipientName": "ALLIANCE FOR ENERGY INNOVATION, LLC",
"awardAmount": 10683511618.4,
"totalOutlays": 4190660774.97,
"awardType": "DEFINITIVE CONTRACT",
"description": "AWARD OF CONTRACT TO MANAGE AND OPERATE THE NATIONAL RENEWABLE ENERGY LABORATORY",
"startDate": "2008-07-29",
"endDate": "2028-09-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "CO",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC3608GO28308_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.110Z"
},
{
"awardId": "DEAC2708RV14800",
"recipientName": "WASHINGTON RIVER PROTECTION SOLUTIONS LLC",
"awardAmount": 10572204771.54,
"totalOutlays": 3418101696.32,
"awardType": "DEFINITIVE CONTRACT",
"description": "MANAGEMENT OF THE HANFORD SITE TANK FARMS",
"startDate": "2008-06-20",
"endDate": "2025-02-23",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DEAC2708RV14800_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.137Z"
},
{
"awardId": "N0001915C0003",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 10550927664.07,
"totalOutlays": 32570463.16,
"awardType": "DEFINITIVE CONTRACT",
"description": "LRIP 10 AAC",
"startDate": "2015-05-26",
"endDate": "2032-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001915C0003_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.155Z"
},
{
"awardId": "W31P4Q20C0023",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 10478694385.9,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE CONTRACT AWARD IS FOR THE FY21/FY22/FY23 BASE AND OPTION PRICING FOR PHASE ARRAY TRACKING RADAR TO INTERCEPT ON TARGET (PATRIOT) ADVANCED CAPABILITY-3 (PAC-3) PRODUCTION REQUIREMENTS FOR THE UNITED STATES (US) AND FOREIGN MILITARY SALES (FMS)",
"startDate": "2020-04-30",
"endDate": "2033-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W31P4Q20C0023_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.181Z"
},
{
"awardId": "NNM07AB03C",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 10477704426,
"totalOutlays": 4372983805.68,
"awardType": "DEFINITIVE CONTRACT",
"description": "PROVIDE DEVELOPMENTAL HARDWARE AND TEST ARTICLES, AND MANUFACTURE AND ASSEMBLE ARES I UPPER STAGES. THE UPPER STAGE (US) ELEMENT IS AN INTEGRAL PART OF THE ARES I LAUNCH VEHICLE AND PROVIDES THE SECOND STAGE OF FLIGHT. THE US ELEMENT IS RESPONSIBLE FOR THE ROLL CONTROL DURING THE FIRST STAGE BURN AND SEPARATION; AND WILL PROVIDE THE GUIDANCE AND NAVIGATION, COMMAND AND DATA HANDLING, AND OTHER AVIONICS FUNCTIONS FOR THE ARES I DURING ALL PHASES OF THE ASCENT FLIGHT. THE US ELEMENT IS A NEW DESIGN THAT EMPHASIZES SAFETY, OPERABILITY, AND MINIMUM LIFE CYCLE COST. THE OVERALL DESIGN, DEVELOPMENT, TEST AND EVALUATION (DDT&E), PRODUCTION, AND SUSTAINING ENGINEERING EFFORTS INCLUDE ACTIVITIES PERFORMED BY THREE ORGANIZATIONS; THE NASA DESIGN TEAM (NDT), THE UPPER STAGE PRODUCTION CONTRACTOR (USPC) AND THE INSTRUMENT UNIT PRODUCTION CONTRACTOR (IUPC). FOR CLARITY, THE USPC WILL BE REFERRED TO AS THE CONTRACTOR THROUGHOUT THIS DOCUMENT. NASA IS RESPONSIBLE FOR THE INTEGRATION OF THE PRIMARY ELEMENTS OF THE ARES I LAUNCH VEHICLE INCLUDING: THE FIRST STAGE, US INCLUDING INSTRUMENT UNIT (IU), AND US ENGINE; AND WILL ALSO INTEGRATE THE ARES I LAUNCH VEHICLE AT THE LAUNCH SITE. NASA IS RESPONSIBLE FOR THE DDT&E, INCLUDING TECHNICAL AND PROGRAMMATIC INTEGRATION OF THE US SUBSYSTEMS AND GOVERNMENT-FURNISHED PROPERTY. NASA WILL LEAD THE EFFORT TO DEVELOP THE REQUIREMENTS AND SPECIFICATIONS OF THE US ELEMENT, THE DEVELOPMENT PLAN AND TESTING REQUIREMENTS, AND ALL DESIGN DOCUMENTATION, INITIAL MANUFACTURING AND ASSEMBLY PROCESS PLANNING, LOGISTICS PLANNING, AND OPERATIONS SUPPORT PLANNING. DEVELOPMENT, QUALIFICATION, AND ACCEPTANCE TESTING WILL BE CONDUCTED BY NASA AND THE CONTRACTOR TO SATISFY REQUIREMENTS AND FOR RISK MITIGATION. NASA IS RESPONSIBLE FOR THE OVERALL UPPER STAGE VERIFICATION AND VALIDATION PROCESS AND WILL REQUIRE SUPPORT FROM THE CONTRACTOR. THE CONTRACTOR IS RESPONSIBLE FOR THE MANUFACTURE AND ASSEMBLY OF THE UPPER STAGE TEST FLIGHT AND OPERATIONAL UPPER STAGE UNITS INCLUDING THE INSTALLATION OF UPPER STAGE INSTRUMENT UNIT, THE GOVERNMENT-FURNISHED US ENGINE, BOOSTER SEPARATION MOTORS, AND OTHER GOVERNMENT-FURNISHED PROPERTY. A DESCRIPTION OF THE NASA MANAGED AND PERFORMED EFFORTS IS CONTAINED IN THE US WORK PACKAGES AND WILL BE MADE AVAILABLE TO THE CONTRACTOR TO ENSURE THEIR UNDERSTANDING OF THE ROLES AND RESPONSIBILITIES OF THE NDT, IUPC, AND CONTRACTOR DURING THE DESIGN, DEVELOPMENT, AND OPERATION OF THE US ELEMENT. THE US CONCEPTUAL DESIGN DESCRIBED IN THE USO-CLV-SE-25704 US DESIGN DEFINITION DOCUMENT (DDD) IS THE BASELINE DESIGN FOR THIS CONTRACT. THE CONTRACTORS EARLY ROLE WILL BE TO PROVIDE PRODUCIBILITY ENGINEERING SUPPORT TO NASA VIA THE ESTABLISHED US OFFICE STRUCTURE AND TO PROVIDE INPUTS INTO THE FINAL DESIGN CONFIGURATION, SPECIFICATIONS, AND STANDARDS. NASA WILL TRANSITION THE MANUFACTURING AND ASSEMBLY, LOGISTICS SUPPORT INFRASTRUCTURE, CONFIGURATION MANAGEMENT, AND THE SUSTAINING ENGINEERING FUNCTIONS TO THE CONTRACTOR AT THE KEY POINTS DURING THE DEVELOPMENT AND IMPLEMENTATION OF THE PROGRAM CURRENTLY PLANNED TO OCCUR NO LATER THAN 90 DAYS AFTER THE COMPLETION OF THE FOLLOWING MAJOR MILESTONES: MANUFACTURING AND ASSEMBLY US PRELIMINARY DESIGN REVIEW (PDR) LOGISTICS SUPPORT INFRASTRUCTURE US PDR CONFIGURATION MANAGEMENT US CRITICAL DESIGN REVIEW CDR) SUSTAINING ENGINEERING US DESIGN CERTIFICATION REVIEW (DCR) AFTER THE COMPLETION OF AN ORDERLY TRANSITION OF ROLES AND RESPONSIBILITIES TO THE CONTRACTOR, NASA WILL ASSUME AN INSIGHT ROLE INTO THE CONTRACTORS PRODUCTION, SUSTAINING ENGINEERING, AND OPERATIONS SUPPORT OF THE ARES I US TEST PROGRAM AND FLIGHT HARDWARE. AFTER DCR, THE CONTRACTOR WILL BE RESPONSIBLE FOR SUSTAINING ENGINEERING PER SOW SECTION 4.7, AS NECESSARY TO MAINTAIN AND SUPPORT THE US CONFIGURATION AND FOR PRODUCTION AND OPERATIONS SUPPORT.",
"startDate": "2007-09-01",
"endDate": "2028-12-31",
"awardingAgency": "National Aeronautics and Space Administration",
"awardingSubAgency": "National Aeronautics and Space Administration",
"placeOfPerformanceState": "AL",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_NNM07AB03C_8000_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.215Z"
},
{
"awardId": "F4261098C0001",
"recipientName": "NORTHROP GRUMMAN SYSTEMS CORPORATION",
"awardAmount": 10009419769.13,
"totalOutlays": 191183.15,
"awardType": "DEFINITIVE CONTRACT",
"description": "200506!000026!5700!FA8214!OO-ALC/PKME/LMKE !F4261098C0001 !A!N! !Y! !P01502!20041213!20050701!001563738!004179453!016435559!N!NORTHROP GRUMMAN SPACE & MISSI!888 S 2000 E !CLEARFIELD !UT!84015!13850!011!49!CLEARFIELD !DAVIS !UTAH !-000001960000!N!N!000000000000!L014!TECH REP SVCS/GUIDED MISSILES !A2 !MISSILE AND SPACE SYSTEMS !302 !MINUTEMAN III GRP !541330!E! !3! ! !C! ! !20200930!B! ! !A! !A!N!L!2!002!B! !Z!Y!Z! ! !N!C!N! ! ! !A!A!A!A!000!A!C!N! ! ! ! ! ! !0001! !",
"startDate": "1998-07-01",
"endDate": "2025-11-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "UT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_F4261098C0001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.244Z"
},
{
"awardId": "FA881113C0003",
"recipientName": "UNITED LAUNCH SERVICES, LLC",
"awardAmount": 9499338750.87,
"totalOutlays": 18833193.53,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::CT::IGF EELV FY13 + PHASE I BUY",
"startDate": "2013-06-26",
"endDate": "2022-12-02",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "CO",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA881113C0003_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.285Z"
},
{
"awardId": "HQ014717C0032",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 9085373926.82,
"totalOutlays": 156490187,
"awardType": "DEFINITIVE CONTRACT",
"description": "HQ0147-17-C-0032 UNDEFINITIZED CONTRACT ACTION (UCA) FOR THAAD INTERCEPTOR LOT 9 PRODUCTION - QTY OF 23",
"startDate": "2017-03-27",
"endDate": "2028-11-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Missile Defense Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HQ014717C0032_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.307Z"
},
{
"awardId": "F0470102C0002",
"recipientName": "LOCKHEED MARTIN CORP",
"awardAmount": 9032712307.12,
"totalOutlays": 2223378.43,
"awardType": "DEFINITIVE CONTRACT",
"description": "200207!000021!5700!CZ62 !SMC/PKJ LOS ANGELES AFB !F0470102C0002 !A!N! !N! !20011116!20070630!872978978!196596688!834951691!N!LOCKHEED MARTIN CORPORATION !1111 LOCKHEED MARTIN WAY !SUNNYVALE !CA!94089!77000!085!06!SUNNYVALE !SANTA CLARA !CALIFORNIA!+000012250000!N!N!000000000000!AR92!RDTE/SPACE - OTHER - APPLIED RESEARCH !A2 !MISSILE AND SPACE SYSTEMS !3GFK!MILSTAR !541710!E! !1! ! ! ! ! !99990909!B! ! !B! !D!N!J!2!001!N!2A!Z!N!Z! ! !N!C!N! ! ! !A!A!A!A!000!A!C!N! ! ! ! ! ! !0001!",
"startDate": "2001-11-16",
"endDate": "2021-01-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_F0470102C0002_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.358Z"
},
{
"awardId": "0159",
"recipientName": "KBR SERVICES, LLC",
"awardAmount": 8949368388.58,
"totalOutlays": null,
"awardType": "DELIVERY ORDER",
"description": "FOLLOW ON TASK ORDER TO 139 IS NOW TASK ORDER 159",
"startDate": "2008-09-24",
"endDate": "2012-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": null,
"placeOfPerformanceCountry": "IRQ",
"url": "https://www.usaspending.gov/award/CONT_AWD_0159_9700_DAAA0902D0007_9700",
"scrapedAt": "2026-05-14T18:23:14.413Z"
},
{
"awardId": "FA861108C2897",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 8821412144.17,
"totalOutlays": 17245375.75,
"awardType": "DEFINITIVE CONTRACT",
"description": "FOLLOW-ON AGILE SUSTAINMENT TO THE RAPTOR (FASTER)",
"startDate": "2008-01-01",
"endDate": "2023-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA861108C2897_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.440Z"
},
{
"awardId": "N0001918C1021",
"recipientName": "RTX CORPORATION",
"awardAmount": 8688654906.89,
"totalOutlays": 212686622.34,
"awardType": "DEFINITIVE CONTRACT",
"description": "LOT 12 AAC LONG LEAD FOR PROPULSION SYSTEMS",
"startDate": "2018-03-23",
"endDate": "2024-12-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001918C1021_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.465Z"
},
{
"awardId": "DESC0012704",
"recipientName": "BROOKHAVEN SCIENCE ASSOCIATES LLC",
"awardAmount": 8505704688.95,
"totalOutlays": 4754249660.01,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::OT::IGF TAS::89 0222::TAS M&O CONTRACT FOR BNL",
"startDate": "2015-01-05",
"endDate": "2030-01-04",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "NY",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DESC0012704_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.513Z"
},
{
"awardId": "N0001918C1037",
"recipientName": "NORTHROP GRUMMAN SYSTEMS CORPORATION",
"awardAmount": 8471949768.67,
"totalOutlays": 234383836.38,
"awardType": "DEFINITIVE CONTRACT",
"description": "E-2D ADVANCED HAWKEYE AIRCRAFT (FRP-7)",
"startDate": "2018-02-15",
"endDate": "2030-02-01",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "FL",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001918C1037_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.535Z"
},
{
"awardId": "FA880219C0001",
"recipientName": "THE AEROSPACE CORPORATION",
"awardAmount": 8125396779.81,
"totalOutlays": 178931902.05,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY19 ENGINEERING SERVICES",
"startDate": "2018-10-01",
"endDate": "2026-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA880219C0001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.551Z"
},
{
"awardId": "N0001921C0020",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 7953264130.5,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY21-23 GLOBAL F-35 AIR SYSTEM SUSTAINMENT",
"startDate": "2020-12-31",
"endDate": "2027-12-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001921C0020_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.587Z"
},
{
"awardId": "0139",
"recipientName": "KBR SERVICES, LLC",
"awardAmount": 7865825758.15,
"totalOutlays": null,
"awardType": "DELIVERY ORDER",
"description": "200612!001884!2100!W52P1J!U.S. ARMY INDUSTRIAL OPERATIONS !DAAA0902D0007 !A!N! !Y!0139 ! !20060822!20120131!133469119!133469119!964409007!N!KELLOGG BROWN&ROOT SERVICES,!4100 CLINTON DRY !HOUSTON !TX!77020!00000! !IZ! ! !IRAQ !+000400000000!N!N!000000000000!R706!LOGISTICS SUPPORT SERVICES !S1 !SERVICES !000 !NOT DISCERNABLE !561210!E! !5!B!S! ! ! !99990909!B! ! !A! !A!U!R!2!003!B! !Z!N!Z! ! !N!M!N! ! ! ! ! !A!A!000!A!B!N! ! ! ! ! ! !0001! !",
"startDate": "2006-08-22",
"endDate": "2012-12-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": null,
"placeOfPerformanceCountry": "IRQ",
"url": "https://www.usaspending.gov/award/CONT_AWD_0139_9700_DAAA0902D0007_9700",
"scrapedAt": "2026-05-14T18:23:14.625Z"
},
{
"awardId": "W31P4Q24C0022",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 7828276773.03,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "EXECUTE PHASED ARRAY TRACKING RADAR TO INTERCEPT ON TARGET (PATRIOT) ADVANCED CAPABILITY-3 (PAC-3) MISSILE PRODUCTION BY PROVIDING INCIDENTAL SERVICES, HARDWARE, FACILITIES, EQUIPMENT, AND TECHNICAL, PLANNING, MANAGEMENT, AND MANUFACTURING EFFORTS.",
"startDate": "2024-06-28",
"endDate": "2029-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W31P4Q24C0022_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.677Z"
},
{
"awardId": "N0001904C3146",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 7633729888.76,
"totalOutlays": 7759280.39,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2004-06-29",
"endDate": "2026-08-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001904C3146_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.710Z"
},
{
"awardId": "DENA0003624",
"recipientName": "MISSION SUPPORT & TEST SERVICES LLC",
"awardAmount": 7577227067.95,
"totalOutlays": 4874362402.18,
"awardType": "DEFINITIVE CONTRACT",
"description": "IGF::CL,CT::IGF CONTRACT AWARD DE-NA0003624 TO THE MISSION SUPPORT AND TEST SERVICES LLC (MSTS) FOR THE MANAGEMENT AND OPERATION OF THE DEPARTMENT OF ENERGY NATIONAL NUCLEAR SECURITY ADMINISTRATION'S NEVADA NATIONAL SECURITY SITE.",
"startDate": "2017-08-01",
"endDate": "2027-11-30",
"awardingAgency": "Department of Energy",
"awardingSubAgency": "Department of Energy",
"placeOfPerformanceState": "NV",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_DENA0003624_8900_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.743Z"
},
{
"awardId": "N0001920C0011",
"recipientName": "RTX CORPORATION",
"awardAmount": 7498605067.74,
"totalOutlays": 501624.77,
"awardType": "DEFINITIVE CONTRACT",
"description": "LOT 15 FMS-1 F135 CTOL PROP SYSTEM",
"startDate": "2020-03-23",
"endDate": "2030-10-15",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001920C0011_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.787Z"
},
{
"awardId": "W58RGZ16C0023",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 7404066078.31,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "W58RGZ-16-C-0023 IS FOR THE AWARD OF ADVANCE PROCUREMENT IN THE AMOUNT OF $184,930,000.00 TO SUPPORT LOT 7 FULL RATE PRODUCTION LONG LEAD ITEMS.",
"startDate": "2016-03-21",
"endDate": "2028-03-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "AZ",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W58RGZ16C0023_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.837Z"
},
{
"awardId": "N0001912C2001",
"recipientName": "BELL BOEING JOINT PROJECT OFFICE",
"awardAmount": 7337457221.95,
"totalOutlays": -1096971.87,
"awardType": "DEFINITIVE CONTRACT",
"description": "PROCUREMENT OF V-22 LOT 17 LONG LEAD-TIME ITEMS",
"startDate": "2011-12-29",
"endDate": "2021-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001912C2001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.873Z"
},
{
"awardId": "FA881018C0005",
"recipientName": "LOCKHEED MARTIN CORP",
"awardAmount": 7287143870.99,
"totalOutlays": 210449902.97,
"awardType": "DEFINITIVE CONTRACT",
"description": "NEXT GENERATION OVERHEAD PERSISTENT INFRARED GEOSYNCHRONOUS EARTH ORBIT SPACE VEHICLE 1-3 PHASE 1",
"startDate": "2018-08-14",
"endDate": "2029-07-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA881018C0005_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.916Z"
},
{
"awardId": "FA862506C6456",
"recipientName": "LOCKHEED MARTIN CORP",
"awardAmount": 7261932653.67,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2006-02-28",
"endDate": "2018-09-20",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "GA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA862506C6456_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.953Z"
},
{
"awardId": "N0001911C0083",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 7186135705.16,
"totalOutlays": 19104247.61,
"awardType": "DEFINITIVE CONTRACT",
"description": "F-35 LIGHTNING II JOINT STRIKE FIGHTER (JSF) LOW RATE INITIAL PRODUCTION (LRIP) LOT 6 ADVANCE ACQUISITION CONTRACT",
"startDate": "2011-08-08",
"endDate": "2023-05-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001911C0083_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:14.981Z"
},
{
"awardId": "N0001914C0002",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 6998362070.51,
"totalOutlays": 11205231.88,
"awardType": "DEFINITIVE CONTRACT",
"description": "LRIP 9 AIRCRAFT AAC",
"startDate": "2014-03-19",
"endDate": "2025-07-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001914C0002_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.035Z"
},
{
"awardId": "FA863418C2701",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 6979057395.76,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "F-15, FMS, F-15QA AIR VEHICLE DEVELOPMENT",
"startDate": "2017-12-22",
"endDate": "2027-11-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "MO",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA863418C2701_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.067Z"
},
{
"awardId": "N0002423C2307",
"recipientName": "HUNTINGTON INGALLS INCORPORATED",
"awardAmount": 6947323384.83,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "CONSTRUCTION OF DDG 51 SHIPS FY23-27",
"startDate": "2023-08-01",
"endDate": "2034-02-28",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "MS",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002423C2307_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.119Z"
},
{
"awardId": "N0002418C2307",
"recipientName": "HUNTINGTON INGALLS INCORPORATED",
"awardAmount": 6824757332.74,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY18-FY22 DDG 51 CLASS SHIP CONSTRUCTION",
"startDate": "2018-09-27",
"endDate": "2032-07-09",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "MS",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002418C2307_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.141Z"
},
{
"awardId": "AIDOAATO1500007",
"recipientName": "CHEMONICS INTERNATIONAL, INC.",
"awardAmount": 6723916684.79,
"totalOutlays": 4300254627.16,
"awardType": "DELIVERY ORDER",
"description": "IGF::CL::IGF - GHSC IDIQ - HIV/AIDS TO",
"startDate": "2015-04-20",
"endDate": "2026-11-28",
"awardingAgency": "Agency for International Development",
"awardingSubAgency": "Agency for International Development",
"placeOfPerformanceState": "DC",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_AIDOAATO1500007_7200_AIDOAAI1500004_7200",
"scrapedAt": "2026-05-14T18:23:15.186Z"
},
{
"awardId": "N0002408C2110",
"recipientName": "HUNTINGTON INGALLS INC",
"awardAmount": 6645710960.11,
"totalOutlays": 96474395.04,
"awardType": "DEFINITIVE CONTRACT",
"description": "CVN 78 SHIP CONSTRUCTION",
"startDate": "2008-08-01",
"endDate": "2022-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "VA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002408C2110_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.224Z"
},
{
"awardId": "N0001917C0015",
"recipientName": "BELL BOEING JOINT PROJECT OFFICE",
"awardAmount": 6597245392.74,
"totalOutlays": 264909478.69,
"awardType": "DEFINITIVE CONTRACT",
"description": "CMV-22 PRODUCTION LOT 22 LONG LEAD-TIME ITEMS",
"startDate": "2016-12-28",
"endDate": "2028-01-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001917C0015_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.266Z"
},
{
"awardId": "HQ014712C0004",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 6466627868.26,
"totalOutlays": 159054471.88,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE MISSILE DEFENSE AGENCY (MDA), GROUND-BASED MIDCOURSE DEFENSE (GMD) DEVELOPMENT AND SUSTAINMENT CONTRACT (DSC) THE GMD DSC WORK INCLUDES, BUT IS NOT LIMITED TO: 1) FUTURE DEVELOPMENT; 2) FIELDING; 3) TEST; 4) SYSTEMS ENGINEERING, INTEGRATION AND CONFIGURATION MANAGEMENT; 5) EQUIPMENT MANUFACTURING AND REFURBISHMENT; 6) TRAINING; AND 7) OPERATIONS AND SUSTAINMENT SUPPORT FOR THE GMD WEAPON SYSTEM AND ASSOCIATED SUPPORT FACILITIES.",
"startDate": "2011-12-30",
"endDate": "2025-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Missile Defense Agency",
"placeOfPerformanceState": "AL",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HQ014712C0004_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.306Z"
},
{
"awardId": "HT940223C0002",
"recipientName": "TRIWEST HEALTHCARE ALLIANCE CORP",
"awardAmount": 6376453689.4,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "TRICARE MANAGED CARE SUPPORT SERVICES CONTRACT, 5TH GENERATION WEST REGION",
"startDate": "2024-01-01",
"endDate": "2026-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "AZ",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940223C0002_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.339Z"
},
{
"awardId": "HT940223C0001",
"recipientName": "HUMANA GOVERNMENT BUSINESS INC",
"awardAmount": 6218011478.78,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "TRICARE MANAGED CARE SUPPORT SERVICES CONTRACT, 5TH GENERATION EAST REGION",
"startDate": "2023-02-01",
"endDate": "2029-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Health Agency",
"placeOfPerformanceState": "KY",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_HT940223C0001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.365Z"
},
{
"awardId": "N0001924C0039",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 6179610861,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "CY24 AVSC SUPPLY SUPPORT",
"startDate": "2024-06-28",
"endDate": "2033-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "VA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001924C0039_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.415Z"
},
{
"awardId": "W56HZV15C0095",
"recipientName": "OSHKOSH DEFENSE LLC",
"awardAmount": 6104259192.82,
"totalOutlays": 605122590.58,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE CONTRACT INCLUDES FIRM FIXED PRICE (FFP) CONTACT LINE ITEM NUMBERS (CLIN) FOR VEHICLES, TRAILERS, KITS (PACKAGED AND INSTALLED), TEST HARDWARE AND SUPPORT, VEHICLE REFURBISHMENT, SYSTEMS ENGINEERING/ PROGRAM MANAGEMENT (SEPM), STORAGE AND MAINTENANCE OF VEHICLES, VEHICLE REFURBISHMENT, INTEGRATED PRODUCT SUPPORT (IPS), AND A TECHNICAL DATA PACKAGE (TDP). THE CONTRACT ALSO INCLUDES COST PLUS FIXED FEE (CPFF) CLINS FOR SYSTEM TECHNICAL SUPPORT (STS), TOTAL PACKAGE FIELDING (TPF), AND INTERIM CONTRACTOR SUPPORT (ICS). THE CONTRACT CONTAINS PROVISIONS FOR AN ECONOMIC PRICE ADJUSTMENT (EPA) FOR MATERIAL FLUCTUATIONS FOR THE VEHICLES PROCURED IN OPTION PERIODS SIX, SEVEN, AND EIGHT.",
"startDate": "2015-08-25",
"endDate": "2025-09-25",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "WI",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W56HZV15C0095_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.452Z"
},
{
"awardId": "N0001906C0081",
"recipientName": "SIKORSKY AIRCRAFT CORPORATION",
"awardAmount": 6103285531.96,
"totalOutlays": 202492478.21,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2006-01-03",
"endDate": "2026-06-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001906C0081_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.468Z"
},
{
"awardId": "0059",
"recipientName": "KBR SERVICES, LLC",
"awardAmount": 6062897262.53,
"totalOutlays": null,
"awardType": "DELIVERY ORDER",
"description": null,
"startDate": "2003-08-12",
"endDate": "2014-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": null,
"placeOfPerformanceCountry": "IRQ",
"url": "https://www.usaspending.gov/award/CONT_AWD_0059_9700_DAAA0902D0007_9700",
"scrapedAt": "2026-05-14T18:23:15.505Z"
},
{
"awardId": "FA862914C2403",
"recipientName": "SIKORSKY AIRCRAFT CORPORATION",
"awardAmount": 5969997145.1,
"totalOutlays": 55366092.98,
"awardType": "DEFINITIVE CONTRACT",
"description": "ACAT 1D - CRH",
"startDate": "2014-06-26",
"endDate": "2026-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA862914C2403_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.531Z"
},
{
"awardId": "FA862514C6450",
"recipientName": "LOCKHEED MARTIN CORP",
"awardAmount": 5934097111.63,
"totalOutlays": -2822393.34,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY13 ADVANCE PROCUREMENT FUNDS FOR FY14 C-130J AIRCRAFT",
"startDate": "2013-12-09",
"endDate": "2020-07-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "GA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA862514C6450_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.544Z"
},
{
"awardId": "N0002416C2229",
"recipientName": "NATIONAL STEEL AND SHIPBUILDING COMPANY",
"awardAmount": 5866500238.64,
"totalOutlays": 276536691.62,
"awardType": "DEFINITIVE CONTRACT",
"description": "DETAIL DESIGN AND CONSTRUCTION (DD&C) FOR T-AO 205",
"startDate": "2016-06-30",
"endDate": "2028-03-22",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002416C2229_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.562Z"
},
{
"awardId": "FA868224CB001",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 5685763042.22,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "LONG RANGE ANTI-SHIP MISSILE/JOINT AIR-TO-SURFACE STANDOFF MISSILE LARGE LOT PROCUREMENT",
"startDate": "2024-09-27",
"endDate": "2031-07-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "FL",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA868224CB001_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.592Z"
},
{
"awardId": "N0002405C5346",
"recipientName": "RAYTHEON COMPANY",
"awardAmount": 5668542889.12,
"totalOutlays": 6178.12,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2005-05-25",
"endDate": "2019-09-29",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "MA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002405C5346_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.620Z"
},
{
"awardId": "W31P4Q15C0022",
"recipientName": "RAYTHEON COMPANY",
"awardAmount": 5608431752.51,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "TEN FIRE UNITS FOR QATAR",
"startDate": "2014-12-19",
"endDate": "2025-05-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "MA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W31P4Q15C0022_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.636Z"
},
{
"awardId": "N0001912C0004",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 5597451611,
"totalOutlays": 28683797.65,
"awardType": "DEFINITIVE CONTRACT",
"description": "LONG LEAD-TIME ITEMS",
"startDate": "2012-06-15",
"endDate": "2026-02-28",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001912C0004_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.667Z"
},
{
"awardId": "W58RGZ17C0009",
"recipientName": "SIKORSKY AIRCRAFT CORPORATION",
"awardAmount": 5584742286.87,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "W58RGZ-17-C-0009 MY IX BLACK HAWK PRODUCTION CONTRACT AWARD.",
"startDate": "2017-06-22",
"endDate": "2025-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W58RGZ17C0009_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.726Z"
},
{
"awardId": "N0001912C0112",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 5544117634.23,
"totalOutlays": 5749105.42,
"awardType": "DEFINITIVE CONTRACT",
"description": "P-8A FRP LOT I LONG LEAD MATERIAL",
"startDate": "2012-08-31",
"endDate": "2031-10-13",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "WA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001912C0112_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.749Z"
},
{
"awardId": "N0001918C1046",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 5496533530.53,
"totalOutlays": 251159427.64,
"awardType": "DEFINITIVE CONTRACT",
"description": "F/A-18E AIRCRAFT",
"startDate": "2018-05-08",
"endDate": "2028-08-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "MO",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001918C1046_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.765Z"
},
{
"awardId": "N0001913C9999",
"recipientName": "NORTHROP GRUMMAN SYSTEMS CORPORATION",
"awardAmount": 5374740355.12,
"totalOutlays": 168224940.05,
"awardType": "DEFINITIVE CONTRACT",
"description": "E-2D ADVANCED HAWKEYE AIRCRAFT (FRP-2)",
"startDate": "2013-05-13",
"endDate": "2026-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "FL",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001913C9999_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.815Z"
},
{
"awardId": "N0002418C2305",
"recipientName": "BATH IRON WORKS CORPORATION",
"awardAmount": 5338176428.86,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY18-FY22 DDG 51 CLASS SHIP CONSTRUCTION",
"startDate": "2018-09-27",
"endDate": "2030-12-20",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "ME",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002418C2305_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.843Z"
},
{
"awardId": "FA861520F0001",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 5212168076.58,
"totalOutlays": null,
"awardType": "DELIVERY ORDER",
"description": "TAIWAN/MOROCCO F-16 PRODUCTION BLOCK 70/72",
"startDate": "2020-08-14",
"endDate": "2029-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Air Force",
"placeOfPerformanceState": "TX",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_FA861520F0001_9700_FA861520D6052_9700",
"scrapedAt": "2026-05-14T18:23:15.896Z"
},
{
"awardId": "N0003904C2009",
"recipientName": "LOCKHEED MARTIN CORP",
"awardAmount": 5178428982.51,
"totalOutlays": 6100310.97,
"awardType": "DEFINITIVE CONTRACT",
"description": null,
"startDate": "2004-09-24",
"endDate": "2022-08-18",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Defense Contract Management Agency",
"placeOfPerformanceState": "CA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0003904C2009_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.921Z"
},
{
"awardId": "W52P1J09C0013",
"recipientName": "BECHTEL PARSONS BLUE GRASS, A JOINT VENTURE",
"awardAmount": 5030576178.6,
"totalOutlays": 354039696.65,
"awardType": "DEFINITIVE CONTRACT",
"description": "THE PURPOSE OF MODIFICATION P00003 - CLIN 0002 CONSTRUCTION IS TO DO THE FOLLOWING: 1. FY 09 RDTE FUNDS ARE HEREBY OBLIGATED IN THE AMOUNT OF $1,518,599.00 TO SUPPORT CONTINUED EFFORTS FOR PHASE IV LONG LEAD EQUIPMENT UNDER ESTABLISHED CLIN 0002AA. MIPR: W91CPT90770019 01 PRON: DE9R0019DE AMD 02 2. FY 08 MCD FUNDS ARE HEREBY OBLIGATED IN THE AMOUNT OF $43,020,072.00 TO SUPPORT CONTINUED EFFORTS FOR PHASE IV DESIGN EFFORTS UNDER NEWLY ESTABLISHED CLIN 0002AC. MIPR: W31RY091057705 PRON: PD8R7705PD AMD 01",
"startDate": "2009-03-19",
"endDate": "2028-04-03",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "KY",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W52P1J09C0013_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.951Z"
},
{
"awardId": "N0002423C2305",
"recipientName": "BATH IRON WORKS CORPORATION",
"awardAmount": 5027510800,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "CONSTRUCTION OF DDG 51 SHIPS FY23-27",
"startDate": "2023-08-01",
"endDate": "2034-02-28",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "ME",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002423C2305_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:15.979Z"
},
{
"awardId": "N0002411C2300",
"recipientName": "LOCKHEED MARTIN CORPORATION",
"awardAmount": 4980508595.15,
"totalOutlays": 206092074.05,
"awardType": "DEFINITIVE CONTRACT",
"description": "BASIC AWARD",
"startDate": "2010-12-29",
"endDate": "2026-12-31",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "MD",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002411C2300_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:16.002Z"
},
{
"awardId": "N0002424C2110",
"recipientName": "ELECTRIC BOAT CORPORATION",
"awardAmount": 4960017500,
"totalOutlays": null,
"awardType": "DEFINITIVE CONTRACT",
"description": "SSN 814 & SSN 815 LONG LEAD TIME MATERIAL",
"startDate": "2023-10-13",
"endDate": "2035-09-30",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002424C2110_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:16.029Z"
},
{
"awardId": "N0002413C2305",
"recipientName": "BATH IRON WORKS CORPORATION",
"awardAmount": 4929163857.56,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY13-FY17 DDG 51 CLASS SHIP CONSTRUCTION.",
"startDate": "2013-06-03",
"endDate": "2026-12-26",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "ME",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0002413C2305_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:16.066Z"
},
{
"awardId": "N0001921C0011",
"recipientName": "RTX CORPORATION",
"awardAmount": 4865962075.84,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "FY21 PBL2",
"startDate": "2020-12-01",
"endDate": "2030-02-28",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Navy",
"placeOfPerformanceState": "CT",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_N0001921C0011_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:16.095Z"
},
{
"awardId": "W58RGZ13C0002",
"recipientName": "THE BOEING COMPANY",
"awardAmount": 4864238445.89,
"totalOutlays": 0,
"awardType": "DEFINITIVE CONTRACT",
"description": "CH-47F CARGO HELICOPTER MULTIYEAR II. 34 NEW BUILD HELICOPTERS AND 121 RENEW HELICOPTERS.",
"startDate": "2013-06-10",
"endDate": "2022-12-20",
"awardingAgency": "Department of Defense",
"awardingSubAgency": "Department of the Army",
"placeOfPerformanceState": "PA",
"placeOfPerformanceCountry": "USA",
"url": "https://www.usaspending.gov/award/CONT_AWD_W58RGZ13C0002_9700_-NONE-_-NONE-",
"scrapedAt": "2026-05-14T18:23:16.110Z"
}
] |