Federal Contractor

LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY Federal Contract Obligations (Last 10 Years)

Federal procurement summary for LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY (CAGE 41SP7, UEI GAZZGS3YV389) covering awards over the last 10 years.

LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY recorded 126 award actions with 2.60 billion in total obligated value over the last 10 years, for an average action value of 20.62 million. Most of the obligation is concentrated at the Department of Energy, with facilities support services and remediation services accounting for the largest NAICS shares.

Generated at 03/21/2026

Analysis period: Last 10 years

Recent annual totals include negative obligated values in 2020, 2022, and 2024, so year-over-year figures may reflect deobligations or adjustments rather than new awards alone.

CAGE Code
41SP7
UEI
GAZZGS3YV389
Total Obligated
2.60 billion
2,597,703,921.01
Award Actions
126
Average Action Value
20,616,697.78

About LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY federal contract activity

LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY (CAGE 41SP7, UEI GAZZGS3YV389) recorded 126 FPDS actions over the last 10 years with total obligated dollars of 2.60 billion and an average award value of 20.62 million. The award profile is highly concentrated, with virtually all obligated value tied to a single department-level customer.

Agency mix and customer concentration

The Department of Energy accounts for 2.60 billion of the vendor’s 2.60 billion in obligated value across 116 awards, indicating a dominant sole-agency relationship. The Federal Acquisition Service contributed 30.77 thousand across 9 awards, while the National Institute of Standards and Technology shows one award with no obligated value recorded in the provided dataset.

Industry profile based on NAICS activity

The vendor’s obligations are concentrated in NAICS 561210, Facilities Support Services, which represents 2.43 billion across 73 awards. NAICS 562910, Remediation Services, is the second-largest category at 172.13 million across 43 awards, while smaller activity appears in General Automotive Repair and a zero-obligation Environmental Consulting Services record.

Annual contract trend over the analysis window

Recent annual activity shows negative obligated amounts in 2024, 2022, and 2020, with zero obligated value in 2023 and 2021. The combination of negative and zero annual totals suggests modifications, deobligations, or closeout adjustments rather than new positive funding growth in the most recent years reflected here.

How to interpret this page

This page summarizes FPDS-derived obligation data for the last 10 years using the provided vendor identifiers and rollups by agency, NAICS code, and fiscal year. Totals reflect obligated dollars as supplied in the dataset, and annual and category-level figures may include zero or negative values where reported in FPDS.

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 = '41SP7'
        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 2,597,673,152.75 2.60 billion 116
4732 FEDERAL ACQUISITION SERVICE 30,768.26 30.77 thousand 9
1341 NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY 0.00 0.00 1

Insight

Over the last 10 years, obligations to LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY under CAGE 41SP7 are overwhelmingly concentrated in the Department of Energy, which accounts for $2.60 billion across 116 awards, or nearly all recorded obligations for the period. The Federal Acquisition Service represents a very small secondary source of activity with $30.77 thousand across 9 awards, while the National Institute of Standards and Technology shows 1 award with no obligated dollars. Overall, the vendor’s federal portfolio is highly concentrated in a single agency, with minimal diversification across other 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 = '41SP7'
        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
561210 FACILITIES SUPPORT SERVICES 2,425,546,042.13 2.43 billion 73
562910 REMEDIATION SERVICES 172,127,110.62 172.13 million 43
811111 GENERAL AUTOMOTIVE REPAIR 30,768.26 30.77 thousand 9
541620 ENVIRONMENTAL CONSULTING SERVICES 0.00 0.00 1

Insight

Over the last 10 years, LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY (CAGE 41SP7) has received $2.60 billion across 126 awards, with obligations highly concentrated in NAICS 561210, Facilities Support Services, which accounts for $2.43 billion and 73 awards. NAICS 562910, Remediation Services, is a secondary but much smaller category at $172.13 million across 43 awards, indicating a narrower follow-on workload. Other NAICS codes are immaterial by obligated value, with only nominal activity in General Automotive Repair and a single zero-obligation award in Environmental Consulting Services.

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 = '41SP7'
        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
2024 -2,000,000.00 -2.00 million 2
2023 0.00 0.00 2
2022 -1,671,366.11 -1.67 million 1
2021 0.00 0.00 1
2020 -5,089,642.13 -5.09 million 1
2019 -8,707,564.83 -8.71 million 4
2018 868,666,220.54 868.67 million 53
2017 1,746,502,789.54 1.75 billion 60
2016 3,484.00 3.48 thousand 2

Insight

LOS ALAMOS NATIONAL SECURITY LIMITED LIABILITY COMPANY’s obligations over the last 10 years are highly concentrated in FY 2017 and FY 2018, which together account for nearly all recorded positive obligated dollars, including $1.75 billion across 60 awards in 2017 and $868.67 million across 53 awards in 2018. Outside those two years, activity is minimal and includes several years with zero or negative net obligations, indicating limited recent funded growth and the presence of deobligations or downward adjustments in later periods. Overall award volume is modest at 126 awards, but the obligation profile is skewed heavily toward the mid-period peak rather than evenly distributed across the decade.

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.