Federal Contractor

CHEMRING MILITARY PRODUCTS, INC. Federal Contract Obligations (Last Year)

CHEMRING MILITARY PRODUCTS, INC. recorded $557.40 million in obligations across 21 award actions in the last full year, driven primarily by Department of the Army contracting.

In the last full year, CHEMRING MILITARY PRODUCTS, INC. (CAGE 5XLF9, UEI L168LBGMAA13) received $557,401,636.27 in obligated funding across 21 awards, for an average action value of $26,542,935.06. Nearly all obligations came from the Department of the Army and were concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year only and are based on readable FPDS obligated amounts, with totals matching the exact obligation value provided.

CAGE Code
5XLF9
UEI
L168LBGMAA13
Total Obligated
557.40 million
557,401,636.27
Award Actions
21
Average Action Value
26,542,935.06

About CHEMRING MILITARY PRODUCTS, INC. federal contract activity

CHEMRING MILITARY PRODUCTS, INC. recorded $557.40 million in obligated awards across 21 FPDS-recorded awards in the last full year, with an average award value of $26.54 million. The vendor’s activity is highly concentrated and overwhelmingly defense-oriented, indicating a substantial reliance on federal procurement demand. The CAGE code is 5XLF9 and the UEI is L168LBGMAA13.

Agency mix and customer concentration

The Department of the Army accounted for nearly all obligation volume at $556.90 million across 18 awards, making it the dominant buyer by both dollars and award count. USSOCOM added a much smaller $477.61 thousand across 2 awards, while Washington Headquarters Services contributed a single $20.50 thousand award. This mix shows a narrow agency base with minimal diversification beyond the Army.

Industry profile based on NAICS activity

Obligations were concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which captured $556.90 million across 18 awards. Smaller activity appeared under NAICS 332994, Small Arms, Ordnance, and Ordnance Accessories Manufacturing, and NAICS 332992, Small Arms Ammunition Manufacturing. The profile aligns closely with ordnance and ammunition production rather than a broad industrial portfolio.

Annual contract trend over the analysis window

The annual trend shows all recorded obligations in 2025, totaling $557.40 million across 21 awards. With only one year present in the analysis window, there is no year-over-year comparison available from the provided data. The available record indicates a fully concentrated award pattern within the last full year.

How to interpret this page

This summary is based only on the provided FPDS Query metrics for the last full year, including total obligated amount, award counts, agency concentration, NAICS distribution, and annual trend. Values are reported as supplied and rounded only where the source data provided readable equivalents. No additional assumptions, external sources, or unverified facts were used.

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 = '5XLF9'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
2100 DEPT OF THE ARMY 556,903,521.63 556.90 million 18
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 477,614.78 477.61 thousand 2
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 20,499.86 20.50 thousand 1

Insight

CHEMRING MILITARY PRODUCTS, INC. received $557.40 million across 21 awards in the last full year, with an average award value of $26.54 million. Obligations are highly concentrated in the DEPT OF THE ARMY, which accounted for $556.90 million and 18 awards, or nearly all obligated value in the period. U.S. SPECIAL OPERATIONS COMMAND contributed a much smaller $477.61 thousand across 2 awards, and WASHINGTON HEADQUARTERS SERVICES accounted for $20.50 thousand in 1 award.

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 = '5XLF9'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 556,903,521.63 556.90 million 18
332994 SMALL ARMS, ORDNANCE, AND ORDNANCE ACCESSORIES MANUFACTURING 477,614.78 477.61 thousand 2
332992 SMALL ARMS AMMUNITION MANUFACTURING 20,499.86 20.50 thousand 1

Insight

CHEMRING MILITARY PRODUCTS, INC. received $557.40 million across 21 awards in the last full year, with an average award value of $26.54 million. Obligations are highly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for $556.90 million across 18 awards and represents nearly all obligated value in the period. The remaining activity is minimal and limited to NAICS 332994 and 332992, totaling about $498 thousand across 3 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 = '5XLF9'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 557,401,636.27 557.40 million 21

Insight

CHEMRING MILITARY PRODUCTS, INC. (CAGE 5XLF9) recorded $557.40 million in obligated obligations across 21 awards in the last full year, for an average award value of about $26.54 million. With all reported activity concentrated in 2025, the annual trend indicates a single-year funding concentration rather than a multi-year pattern. The award count relative to total obligation suggests reliance on a limited number of high-value actions.

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