Federal Contractor

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

CRANE & CO., INC. (CAGE 16606, UEI N4GVXK9MVN18) received $1.80 billion across 743 federal award actions in the last 10 years, driven primarily by the Bureau of Engraving and Printing.

CRANE & CO., INC. shows a concentrated federal procurement profile, with 738 of 743 award actions and nearly all obligated dollars tied to the Bureau of Engraving and Printing. The vendor’s obligations are dominated by NAICS 322121, Paper (except newsprint) mills, while smaller awards appear under the Department of State and a few unrelated NAICS categories.

Generated at 03/21/2026

Analysis period: Last 10 years

This page summarizes FPDS award activity for the last 10 years using obligated dollars, award counts, and agency and NAICS rollups.

CAGE Code
16606
UEI
N4GVXK9MVN18
Total Obligated
1.80 billion
1,799,135,764.51
Award Actions
743
Average Action Value
2,421,447.86

About CRANE & CO., INC. federal contract activity

CRANE & CO., INC. recorded $1.80 billion in FPDS obligations across 743 awards over the last 10 years, for an average award value of $2.42 million. The vendor’s federal activity is highly concentrated, with the Bureau of Engraving and Printing accounting for virtually all obligations and award volume.

Agency mix and customer concentration

The Bureau of Engraving and Printing is the dominant buying office, representing $1.80 billion and 738 of 743 awards, which indicates a single-agency concentration profile. The only other material customer in the period was the Department of State, with $1.16 million across 5 awards, a negligible share of total obligations.

Industry profile based on NAICS activity

NAICS 322121, Paper (Except Newsprint) Mills, accounts for nearly all obligations at $1.80 billion and 738 awards, aligning the vendor’s contract profile with paper manufacturing activity. The remaining NAICS codes are isolated, low-dollar awards in adjacent support categories, including computer-related services, merchant wholesaling of printing and writing paper, stationery and office supplies wholesaling, and legal services.

Annual contract trend over the analysis window

Annual obligations show variability but remain consistently substantial in the most recent years reviewed, ranging from $115.51 million in 2023 to $455.61 million in 2021. The last two reported years, 2024 and 2025, total $171.37 million and $192.48 million respectively, suggesting continued recurring federal demand without a step-change outside the 2021 peak.

How to interpret this page

This summary is based on FPDS obligations associated with CAGE 16606 and UEI N4GVXK9MVN18 over the last 10 years. Agency, NAICS, and annual trend figures reflect obligated dollars and award counts in the supplied dataset; percentages and qualitative assessments are derived directly from those totals.

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 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
2041 BUREAU OF ENGRAVING AND PRINTING 1,797,975,422.01 1.80 billion 738
1900 STATE, DEPARTMENT OF 1,160,342.50 1.16 million 5

Insight

Over the last 10 years, CRANE & CO., INC. received $1.80 billion across 743 awards, with an average award value of $2.42 million. Obligations are highly concentrated in the Bureau of Engraving and Printing, which accounts for $1.80 billion and 738 awards, indicating a near-exclusive relationship with that agency. The Department of State represents a very small secondary source of obligations at $1.16 million across 5 awards, with no material diversification beyond these two 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 = '16606'
        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
322121 PAPER (EXCEPT NEWSPRINT) MILLS 1,797,971,026.93 1.80 billion 738
541519 OTHER COMPUTER RELATED SERVICES 490,500.00 490.50 thousand 1
424110 PRINTING AND WRITING PAPER MERCHANT WHOLESALERS 490,500.00 490.50 thousand 1
424120 STATIONERY AND OFFICE SUPPLIES MERCHANT WHOLESALERS 196,200.00 196.20 thousand 1
541199 ALL OTHER LEGAL SERVICES 4,395.08 4.40 thousand 1
322220 PAPER BAG AND COATED AND TREATED PAPER MANUFACTURING -16,857.50 -16.86 thousand 1

Insight

Over the last 10 years, CRANE & CO., INC. received $1.80 billion across 743 awards, with obligations overwhelmingly concentrated in NAICS 322121, Paper (Except Newsprint) Mills. That code accounts for $1.80 billion and 738 awards, indicating a highly concentrated procurement profile with only limited activity in other NAICS categories. The remaining obligations are minimal and dispersed across four single-award NAICS codes, with one negative obligation recorded in NAICS 322220.

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 10 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
2020 176,097,224.70 176.10 million 109
2019 142,091,722.51 142.09 million 93
2018 200,231,907.50 200.23 million 91
2017 150,832,478.20 150.83 million 74
2016 4,395.08 4.40 thousand 1

Insight

Over the last 10 years, CRANE & CO., INC. received $1.80 billion across 743 awards, with annual obligations concentrated in several high-value years rather than a steady upward trajectory. The largest obligation occurred in 2021 at $455.61 million across 84 awards, representing a clear peak; 2025 and 2024 remained elevated at $192.48 million and $171.37 million, respectively. Award counts were generally clustered between 60 and 109 per year, with 2016 limited to a single small obligation of $4.40 thousand.

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.