Federal Contractor

LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY Federal Contract Obligations (Last 5 Years)

LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY has received 150 federal award actions in the last 5 years, with $15.98 billion obligated overall.

Most of the vendor's federal activity is with the Department of Energy, which accounts for 147 actions and nearly all obligated dollars in the analysis window. Obligations are concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, with annual totals ranging from $2.52 billion in 2022 to $3.96 billion in 2025.

Generated at 03/21/2026

Analysis period: Last 5 years

Obligation totals reflect FPDS records for the last 5 years and may include small negative adjustments in agency and NAICS breakdowns.

CAGE Code
4K7L1
UEI
PM52LCJH72T9
Total Obligated
15.98 billion
15,975,245,681.56
Award Actions
150
Average Action Value
106,501,637.87

About LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY federal contract activity

LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY recorded 150 awards with $15.98 billion in obligated value over the last 5 years, for an average award value of $106.50 million. The profile is heavily concentrated in a single operating relationship, with the vast majority of obligations tied to one department and one primary research-and-development NAICS code.

Agency mix and customer concentration

The agency mix is overwhelmingly dominated by the Department of Energy, which accounts for 147 of 150 awards and essentially all positive obligated value at $15.98 billion. The only other agencies appearing in the window are NASA and the FBI, both with de minimis negative obligations that are not material to the overall spend profile.

Industry profile based on NAICS activity

Obligations are concentrated almost entirely in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which represents 147 awards and $15.98 billion. A single small negative entry appears under NAICS 561210, Facilities Support Services, but it does not change the overall picture of a research-and-development dominated portfolio.

Annual contract trend over the analysis window

Annual obligations remained in the multibillion-dollar range throughout the period, moving from $3.21 billion in 2021 to $2.52 billion in 2022, then rising to $3.26 billion in 2023 and $3.02 billion in 2024. The 2025 total of $3.96 billion is the highest year in the window, indicating a recent increase in obligated value.

How to interpret this page

This summary is based on FPDS-observed obligations for the vendor identified by CAGE 4K7L1 and UEI PM52LCJH72T9 over the last 5 years. Totals, award counts, agency distribution, NAICS distribution, and annual trend reflect the data provided and may include small negative adjustments, which are retained as reported in the source data.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4K7L1'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 15,975,246,939.69 15.98 billion 147
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION -133.05 -133.05 2
1549 FEDERAL BUREAU OF INVESTIGATION -1,125.08 -1.13 thousand 1

Insight

Over the last 5 years, obligations to LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY are overwhelmingly concentrated in the Department of Energy, which accounts for nearly all reported spending: $15.98 billion across 147 awards. The only other recorded agency activity is minimal and negative in value, with NASA at -$133.05 on 2 awards and the FBI at -$1,125.08 on 1 award, indicating immaterial adjustments rather than substantive obligations. Overall, the vendor’s federal award profile is highly concentrated with one primary buying agency.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4K7L1'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 15,975,246,939.69 15.98 billion 147
561210 FACILITIES SUPPORT SERVICES -1,125.08 -1.13 thousand 1

Insight

Over the last 5 years, obligations for LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY are overwhelmingly concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which accounts for 147 of 150 awards and essentially all $15.98 billion in obligations. NAICS 561210, Facilities Support Services, appears only once and is immaterial at -$1.13 thousand, indicating no meaningful diversification across NAICS categories. The vendor’s award activity is therefore highly concentrated in a single R&D NAICS.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '4K7L1'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 3,961,924,610.08 3.96 billion 32
2024 3,019,255,350.66 3.02 billion 30
2023 3,259,883,063.29 3.26 billion 28
2022 2,522,292,246.29 2.52 billion 32
2021 3,211,890,411.24 3.21 billion 28

Insight

Over the last 5 years, LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY obligateed $15.98 billion across 150 awards, averaging $106.5 million per award. Annual obligations are relatively stable and concentrated in the $2.52 billion to $3.96 billion range, with no single year dominating the period. FY 2025 is the highest year at $3.96 billion and 32 awards, while FY 2022 is the lowest at $2.52 billion and 32 awards.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.