Federal Contractor

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

Federal procurement profile for LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY, CAGE 4K7L1, UEI PM52LCJH72T9, covering awards in the last 10 years.

LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY recorded 298 award actions and $23,875,629,970.04 in obligated value over the last 10 years, averaging $80,119,563.65 per action. Most obligations came from the Department of Energy, with research and development in the physical, engineering, and life sciences as the dominant NAICS activity.

Generated at 03/21/2026

Analysis period: Last 10 years

Agency, NAICS, and annual figures reflect FPDS award actions in the analysis window and may not sum to every reported subtotal due to rounding.

CAGE Code
4K7L1
UEI
PM52LCJH72T9
Total Obligated
23.88 billion
23,875,629,970.04
Award Actions
298
Average Action Value
80,119,563.65

About LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY federal contract activity

LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY recorded $23.88 billion in obligated federal awards across 298 awards in the last 10 years, with an average award value of $80.12 million. The profile is highly concentrated, with nearly all obligation flowing through the Department of Energy.

Agency mix and customer concentration

The Department of Energy accounts for $23.87 billion across 277 awards, representing essentially the entire observed obligation base. Smaller activity appears with the National Aeronautics and Space Administration and the Federal Bureau of Investigation, but each contributes only a marginal share of total dollars and award volume.

Industry profile based on NAICS activity

Award activity is dominated by NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which mirrors the Department of Energy concentration and accounts for $23.87 billion across 277 awards. The remaining observed obligations are limited to NAICS 561210, Facilities Support Services, at $178.48 thousand across 5 awards.

Annual contract trend over the analysis window

Annual obligations remained in the multi-billion-dollar range throughout the reported years, ranging from $2.52 billion in 2022 to $3.96 billion in 2025. The recent period shows continued high-volume funding, with 2023 through 2025 each above $3.02 billion and award counts holding between 28 and 32 per year.

How to interpret this page

This summary uses FPDS-observed award obligations tied to CAGE 4K7L1 and UEI PM52LCJH72T9 over the last 10 years. Agency, NAICS, and annual figures reflect recorded obligated dollars and award counts in the provided analysis window; totals may vary from contract value because they are based on obligations, not ceiling amounts.

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 10 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 23,874,863,340.56 23.87 billion 277
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 588,150.95 588.15 thousand 16
1549 FEDERAL BUREAU OF INVESTIGATION 178,478.53 178.48 thousand 5

Insight

Over the last 10 years, obligations to LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY are overwhelmingly concentrated in the Department of Energy, which accounts for $23.87 billion of the $23.88 billion total and 277 of 298 awards. NASA and the FBI represent only marginal additional activity, with $588.15 thousand across 16 awards and $178.48 thousand across 5 awards, respectively. This distribution indicates a highly concentrated customer base with minimal obligation diversification across agencies.

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 10 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 23,874,863,340.56 23.87 billion 277
561210 FACILITIES SUPPORT SERVICES 178,478.53 178.48 thousand 5

Insight

Over the last 10 years, Lawrence Livermore National Security LLC’s obligations under CAGE 4K7L1 are overwhelmingly concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which accounts for $23.87 billion across 277 awards. This represents nearly all of the vendor’s $23.88 billion in total obligated value and indicates a highly focused contracting profile. NAICS 561210, Facilities Support Services, is a minor secondary category at $178.48 thousand across 5 awards.

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 10 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
2020 2,353,151,868.23 2.35 billion 43
2019 928,728,163.60 928.73 million 35
2018 3,297,349,124.23 3.30 billion 32
2017 1,321,155,132.42 1.32 billion 38

Insight

Over the last 10 years, LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY recorded $23.88 billion across 298 awards, averaging $80.12 million per award, indicating a highly concentrated obligation profile. Annual obligations were generally in the $2.35 billion to $3.96 billion range from 2018 through 2025, with 2019 as the notable low point at $928.73 million. The most recent year, 2025, is the peak in this period at $3.96 billion across 32 awards, reflecting elevated funding volume without a corresponding surge in award count.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.