Federal Contractor

RANGE GENERATION NEXT LLC Federal Contract Obligations (Last Year)

Federal procurement profile for RANGE GENERATION NEXT LLC (CAGE 6WGJ0, UEI E6J8JNNJ6AA5) covering last full year obligations and award activity.

In the last full year, RANGE GENERATION NEXT LLC received $208,285,073.25 across 81 federal award actions, for an average action value of $2,571,420.65. Most of the obligated value came from the Department of the Air Force and was concentrated in NAICS 541330 engineering services, with additional activity under NAICS 541715 research and development.

Generated at 03/21/2026

Analysis period: Last full year

Amounts reflect the analysis window provided and may not match broader lifetime totals or unfinalized records.

CAGE Code
6WGJ0
UEI
E6J8JNNJ6AA5
Total Obligated
208.29 million
208,285,073.25
Award Actions
81
Average Action Value
2,571,420.65

About RANGE GENERATION NEXT LLC federal contract activity

RANGE GENERATION NEXT LLC recorded 81 FPDS awards in the last full year, with total obligated dollars of 208.29 million and an average award value of 2.57 million. The vendor’s spend profile is concentrated in a relatively small number of awards, indicating material contract values rather than a high-volume, low-dollar pattern.

Agency mix and customer concentration

Obligations were heavily concentrated in the Department of the Air Force, which accounted for 169.00 million across 67 awards, or the clear majority of total spend. The Department of the Army represented the remaining 39.29 million across 14 awards, showing a two-agency mix with strong Air Force dominance.

Industry profile based on NAICS activity

NAICS 541330, Engineering Services, matched the Air Force share and drove 169.00 million across 67 awards, making it the primary business area for this vendor. NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), accounted for 39.29 million across 14 awards, indicating a secondary but still material R&D component.

Annual contract trend over the analysis window

The annual view shows all recorded obligations in 2025, totaling 208.29 million across 81 awards. With only one year visible in the analysis window, the data supports a point-in-time assessment rather than a multi-year growth or decline trend.

How to interpret this page

This summary is based on FPDS award data for the vendor’s CAGE code 6WGJ0 and UEI E6J8JNNJ6AA5, limited to the last full year. Agency, NAICS, and annual figures reflect obligated dollars and award counts within that period; percentages and interpretations are derived from the provided totals only.

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 = '6WGJ0'
        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
5700 DEPT OF THE AIR FORCE 168,996,807.21 169.00 million 67
2100 DEPT OF THE ARMY 39,288,266.04 39.29 million 14

Insight

During the last full year, RANGE GENERATION NEXT LLC’s obligations were highly concentrated in the DEPT OF THE AIR FORCE, which accounted for $169.00 million across 67 awards, or about 81% of total obligations. The DEPT OF THE ARMY provided the remaining $39.29 million across 14 awards, representing about 19% of obligations. This distribution indicates a strong reliance on Air Force business, with a smaller but material Army presence.

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 = '6WGJ0'
        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
541330 ENGINEERING SERVICES 168,996,807.21 169.00 million 67
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 39,288,266.04 39.29 million 14

Insight

For the last full year, RANGE GENERATION NEXT LLC obligated $208.29 million across 81 awards, with spending concentrated in two NAICS codes. NAICS 541330, Engineering Services, accounted for $169.00 million across 67 awards, or about 81% of total obligated dollars, indicating a strong concentration in engineering work. NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, represented the remaining $39.29 million across 14 awards, showing a secondary but materially smaller share of activity.

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 = '6WGJ0'
        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 208,285,073.25 208.29 million 81

Insight

Over the last full year, RANGE GENERATION NEXT LLC (CAGE 6WGJ0) recorded $208.29 million in obligated value across 81 awards, for an average award value of about $2.57 million. The annual activity is fully concentrated in 2025, with no year-over-year trend available from the provided one-year window. This indicates a relatively high concentration of obligation value across a moderate number of awards in the period.

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.