Federal Contractor

CRANE & CO., INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for CRANE & CO., INC. (CAGE 16606, UEI N4GVXK9MVN18) covering the last 5 years of award activity.

CRANE & CO., INC. recorded 375 award actions with total obligations of $1,129,878,036.52 and an average action value of $3,013,008.09 over the last 5 years. Nearly all obligation volume came from the Bureau of Engraving and Printing and the NAICS 322121 paper mills category, with a small additional obligation from the Department of State under NAICS 424120.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals range from $115,513,388.19 in 2023 to $455,609,142.95 in 2021, with 2025 at $192,476,764.34 through 76 actions.

CAGE Code
16606
UEI
N4GVXK9MVN18
Total Obligated
1.13 billion
1,129,878,036.52
Award Actions
375
Average Action Value
3,013,008.09

About CRANE & CO., INC. federal contract activity

CRANE & CO., INC. (CAGE 16606, UEI N4GVXK9MVN18) received 1.13 billion in obligations across 375 FPDS awards over the last 5 years, with an average award value of 3.01 million. The award profile is highly concentrated, indicating a sustained federal buying relationship rather than a broad multi-agency footprint.

Agency mix and customer concentration

The Bureau of Engraving and Printing accounts for virtually all activity, with 1.13 billion obligated across 374 awards. The only other recorded agency is the Department of State, which obligates 196.20 thousand in a single award, confirming that the vendor’s federal business is overwhelmingly tied to one customer.

Industry profile based on NAICS activity

NAICS 322121, Paper (except Newsprint) Mills, represents the core of the vendor’s federal spend at 1.13 billion across 374 awards. The only other NAICS observed is 424120, Stationery and Office Supplies Merchant Wholesalers, with 196.20 thousand in one award, suggesting a narrowly defined procurement profile centered on paper manufacturing.

Annual contract trend over the analysis window

Annual obligations peaked in 2021 at 455.61 million across 84 awards, then declined to 194.91 million in 2022 and 115.51 million in 2023. Funding rebounded in 2024 to 171.37 million and rose again in 2025 to 192.48 million, while award counts remained relatively stable in the 60 to 80 range after 2021.

How to interpret this page

This summary uses FPDS-observed obligations for the last 5 years, grouped by vendor identifiers, agency, NAICS, and fiscal year. Totals reflect obligated dollars in the provided analysis window; percentages and qualitative characterizations are derived directly from the supplied aggregates without extrapolation.

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 = '16606'
        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
2041 BUREAU OF ENGRAVING AND PRINTING 1,129,681,836.52 1.13 billion 374
1900 STATE, DEPARTMENT OF 196,200.00 196.20 thousand 1

Insight

Over the last 5 years, CRANE & CO., INC.’s obligations are overwhelmingly concentrated with the Bureau of Engraving and Printing, which accounts for $1.13 billion across 374 awards. The Department of State represents a negligible share of activity, with $196.2 thousand on 1 award. This indicates a highly concentrated customer base and a procurement profile driven almost entirely by one 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 = '16606'
        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
322121 PAPER (EXCEPT NEWSPRINT) MILLS 1,129,681,836.52 1.13 billion 374
424120 STATIONERY AND OFFICE SUPPLIES MERCHANT WHOLESALERS 196,200.00 196.20 thousand 1

Insight

Over the last 5 years, CRANE & CO., INC.’s obligations are overwhelmingly concentrated in NAICS 322121, Paper (Except Newsprint) Mills, which accounts for 374 of 375 awards and $1.13 billion of the $1.13 billion total obligated. This indicates a highly focused procurement profile with minimal diversification across NAICS codes. Only one additional award was recorded under NAICS 424120, Stationery and Office Supplies Merchant Wholesalers, totaling $196.2 thousand, which is immaterial relative to the overall award base.

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 = '16606'
        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 192,476,764.34 192.48 million 76
2024 171,367,455.88 171.37 million 80
2023 115,513,388.19 115.51 million 75
2022 194,911,285.16 194.91 million 60
2021 455,609,142.95 455.61 million 84

Insight

Over the last 5 years, CRANE & CO., INC. (CAGE 16606) obligated $1.13 billion across 375 awards, with an average award value of $3.01 million. Obligations are heavily concentrated in 2021 at $455.61 million, representing the clear high point in the period, before declining sharply in 2022 and 2023. Funding then increased again in 2024 and 2025 to $171.37 million and $192.48 million, respectively, indicating a recovery from the 2023 low but not a return to 2021 levels. Award counts remained relatively stable year to year, ranging from 60 to 84, suggesting that changes in obligations were driven more by award value than by volume.

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.