Federal Contractor

OLIN WINCHESTER, LLC Federal Contract Obligations (Last 5 Years)

Federal procurement profile for OLIN WINCHESTER, LLC (CAGE 8EUA5, UEI HCFGYBJNH9S5) showing last-5-year award activity, obligations, agencies, and NAICS coverage.

OLIN WINCHESTER, LLC recorded 273 award actions with total obligated spending of $3,196,611,224.83 over the last 5 years, for an average action value of $11,709,198.62. Nearly all obligations were placed by the Department of the Army, and all reported work falls under NAICS 332992, Small Arms Ammunition Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect FPDS award actions in the selected 5-year analysis window and may include obligational updates tied to the same award record.

CAGE Code
8EUA5
UEI
HCFGYBJNH9S5
Total Obligated
3.20 billion
3,196,611,224.83
Award Actions
273
Average Action Value
11,709,198.62

About OLIN WINCHESTER, LLC federal contract activity

OLIN WINCHESTER, LLC recorded 273 FPDS awards totaling $3.20 billion over the last 5 years, with an average award value of $11.71 million. The company’s federal activity is highly concentrated, indicating a sustained role as a significant supplier within a narrow procurement profile. Its CAGE code is 8EUA5 and its UEI is HCFGYBJNH9S5.

Agency mix and customer concentration

The award base is overwhelmingly concentrated in the DEPT OF THE ARMY, which accounts for 272 of 273 awards and the full $3.20 billion obligated. The only other agency in the period is the U.S. MARSHALS SERVICE, with one award and no obligated value reported. This pattern indicates a near-single-agency dependency in federal demand.

Industry profile based on NAICS activity

All recorded obligations map to NAICS 332992, Small Arms Ammunition Manufacturing, with $3.20 billion across 273 awards. The absence of observable diversification into other NAICS codes suggests a tightly focused manufacturing profile. Procurement activity is therefore best interpreted as concentrated in a single industrial classification.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $1.05 billion across 55 awards, then remained elevated in 2025 at $911.16 million across 47 awards. Prior years show a lower base but still substantial activity, rising from $329.08 million in 2021 to $506.18 million in 2023. Overall, the trend indicates strong growth through 2024 followed by a modest step-down in 2025 while remaining well above 2021-2023 levels.

How to interpret this page

This summary is based on FPDS obligations and award counts attributed to OLIN WINCHESTER, LLC over the last 5 years, using the provided CAGE code and UEI for entity identification. Agency, NAICS, and annual trend statements reflect the supplied aggregate data only and do not infer contract type, vehicle structure, or performance beyond the observed obligations. Dollar values are rounded as presented in the source metrics.

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 = '8EUA5'
        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
2100 DEPT OF THE ARMY 3,196,611,224.83 3.20 billion 272
1544 U.S. MARSHALS SERVICE 0.00 0.00 1

Insight

OLIN WINCHESTER, LLC’s obligations over the last 5 years are highly concentrated in the DEPT OF THE ARMY, which accounts for $3.20 billion across 272 of 273 awards and effectively all obligated value. The only other recorded award is a single U.S. MARSHALS SERVICE action with no obligated dollars, indicating minimal customer diversification. This pattern reflects a dominant Army-dependent procurement profile with negligible spend distribution 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 = '8EUA5'
        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
332992 SMALL ARMS AMMUNITION MANUFACTURING 3,196,611,224.83 3.20 billion 273

Insight

OLIN WINCHESTER, LLC’s Top NAICS activity is fully concentrated in NAICS 332992, Small Arms Ammunition Manufacturing, which accounts for the full $3.20 billion obligated across 273 awards over the last 5 years. This indicates a highly focused contracting profile with no diversification across other NAICS codes in the provided data. The average award value of about $11.7 million suggests a pattern of repeated, substantial procurement actions within the same manufacturing category.

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 = '8EUA5'
        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 911,155,915.39 911.16 million 47
2024 1,052,356,878.46 1.05 billion 55
2023 506,176,502.96 506.18 million 63
2022 397,839,591.09 397.84 million 60
2021 329,082,336.93 329.08 million 48

Insight

OLIN WINCHESTER, LLC obligated $3.20 billion across 273 awards over the last 5 years, with an average award value of $11.71 million. Annual obligations increased from $329.08 million in 2021 to a peak of $1.05 billion in 2024, then remained elevated at $911.16 million in 2025. Award volume was more evenly distributed than obligation value, ranging from 47 to 63 awards per year, indicating higher dollar concentration in 2024 and 2025 relative to prior years.

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.