Graph: national county↔district↔legislator authority layer
The first edges in the repo. Every US county now links to the districts it sits in, weighted by area overlap, and every legislator links to the district they represent — county → district → representative, traversable. Data (PostGIS, no Atlas dependency — computed directly from geometry): - data/county_district_edges.jsonl — 16,328 weighted edges. area_weight = ST_Area(ST_Intersection(county, district))/ST_Area(county) over ST_MakeValid Census TIGER 2024 geometries, overlaps <0.5% dropped. Uses area-intersection, NOT centroid-in-polygon, so urban districts that carve through counties (e.g. GA CD-5 / Atlanta across Clayton+DeKalb+Fulton) are captured, not silently dropped. Per-county weights sum to ~1.0 per district type. build.py: - ~6,896 new district nodes: 435 CD (ACS demographics where available; sparse for the 8 states missing from acs_cd) + 4,927 state-house + 1,897 state-senate (geometry-only). GEOID/number-keyed, stable. - county index.md gains a `districts:` block (frontmatter) + a ## Districts section (body links, so link-integrity checks them). - legislators + US House members gain `represents:` pointing at their district node; edge stored once on the person, inverse left to the view. - schemas/jurisdiction: classification enum + chamber/districts fields. Honest gaps (logged, not hidden): ID + NH have no state-house geometry, so their house districts get nodes (represents resolves) but no county edges; CD nodes for acs_cd-missing states are demographically sparse. Deterministic (byte-identical rebuild); validate.py passes 26,617 records, link-integrity clean (every district/represents link resolves). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 60"
|
||||
represents: "us/states/mt/districts/house/60"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 60 (MT State House of Representatives District 60).
|
||||
|
||||
Represents [MT State House of Representatives District 60](/us/states/mt/districts/house/60.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 6"
|
||||
represents: "us/states/mt/districts/house/6"
|
||||
tenure:
|
||||
start: "2021-01-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 6 (MT State House of Representatives District 6).
|
||||
|
||||
Represents [MT State House of Representatives District 6](/us/states/mt/districts/house/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 48"
|
||||
represents: "us/states/mt/districts/senate/48"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 48 (MT State Senate District 48).
|
||||
|
||||
Represents [MT State Senate District 48](/us/states/mt/districts/senate/48.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 50"
|
||||
represents: "us/states/mt/districts/house/50"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 50 (MT State House of Representatives District 50).
|
||||
|
||||
Represents [MT State House of Representatives District 50](/us/states/mt/districts/house/50.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 19"
|
||||
represents: "us/states/mt/districts/senate/19"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 19 (MT State Senate District 19).
|
||||
|
||||
Represents [MT State Senate District 19](/us/states/mt/districts/senate/19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 38"
|
||||
represents: "us/states/mt/districts/senate/38"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 38 (MT State Senate District 38).
|
||||
|
||||
Represents [MT State Senate District 38](/us/states/mt/districts/senate/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 61"
|
||||
represents: "us/states/mt/districts/house/61"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 61 (MT State House of Representatives District 61).
|
||||
|
||||
Represents [MT State House of Representatives District 61](/us/states/mt/districts/house/61.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 96"
|
||||
represents: "us/states/mt/districts/house/96"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 96 (MT State House of Representatives District 96).
|
||||
|
||||
Represents [MT State House of Representatives District 96](/us/states/mt/districts/house/96.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 17"
|
||||
represents: "us/states/mt/districts/senate/17"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 17 (MT State Senate District 17).
|
||||
|
||||
Represents [MT State Senate District 17](/us/states/mt/districts/senate/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 55"
|
||||
represents: "us/states/mt/districts/house/55"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 55 (MT State House of Representatives District 55).
|
||||
|
||||
Represents [MT State House of Representatives District 55](/us/states/mt/districts/house/55.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 33"
|
||||
represents: "us/states/mt/districts/house/33"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 33 (MT State House of Representatives District 33).
|
||||
|
||||
Represents [MT State House of Representatives District 33](/us/states/mt/districts/house/33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 5"
|
||||
represents: "us/states/mt/districts/house/5"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 5 (MT State House of Representatives District 5).
|
||||
|
||||
Represents [MT State House of Representatives District 5](/us/states/mt/districts/house/5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 65"
|
||||
represents: "us/states/mt/districts/house/65"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 65 (MT State House of Representatives District 65).
|
||||
|
||||
Represents [MT State House of Representatives District 65](/us/states/mt/districts/house/65.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 9"
|
||||
represents: "us/states/mt/districts/senate/9"
|
||||
tenure:
|
||||
start: "2019-01-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 9 (MT State Senate District 9).
|
||||
|
||||
Represents [MT State Senate District 9](/us/states/mt/districts/senate/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 68"
|
||||
represents: "us/states/mt/districts/house/68"
|
||||
tenure:
|
||||
start: "2021-01-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 68 (MT State House of Representatives District 68).
|
||||
|
||||
Represents [MT State House of Representatives District 68](/us/states/mt/districts/house/68.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 3"
|
||||
represents: "us/states/mt/districts/senate/3"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 3 (MT State Senate District 3).
|
||||
|
||||
Represents [MT State Senate District 3](/us/states/mt/districts/senate/3.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 42"
|
||||
represents: "us/states/mt/districts/house/42"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 42 (MT State House of Representatives District 42).
|
||||
|
||||
Represents [MT State House of Representatives District 42](/us/states/mt/districts/house/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 33"
|
||||
represents: "us/states/mt/districts/senate/33"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 33 (MT State Senate District 33).
|
||||
|
||||
Represents [MT State Senate District 33](/us/states/mt/districts/senate/33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 92"
|
||||
represents: "us/states/mt/districts/house/92"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 92 (MT State House of Representatives District 92).
|
||||
|
||||
Represents [MT State House of Representatives District 92](/us/states/mt/districts/house/92.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 30"
|
||||
represents: "us/states/mt/districts/senate/30"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 30 (MT State Senate District 30).
|
||||
|
||||
Represents [MT State Senate District 30](/us/states/mt/districts/senate/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 7"
|
||||
represents: "us/states/mt/districts/house/7"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 7 (MT State House of Representatives District 7).
|
||||
|
||||
Represents [MT State House of Representatives District 7](/us/states/mt/districts/house/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 90"
|
||||
represents: "us/states/mt/districts/house/90"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 90 (MT State House of Representatives District 90).
|
||||
|
||||
Represents [MT State House of Representatives District 90](/us/states/mt/districts/house/90.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 48"
|
||||
represents: "us/states/mt/districts/house/48"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 48 (MT State House of Representatives District 48).
|
||||
|
||||
Represents [MT State House of Representatives District 48](/us/states/mt/districts/house/48.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 11"
|
||||
represents: "us/states/mt/districts/senate/11"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 11 (MT State Senate District 11).
|
||||
|
||||
Represents [MT State Senate District 11](/us/states/mt/districts/senate/11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 22"
|
||||
represents: "us/states/mt/districts/senate/22"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 22 (MT State Senate District 22).
|
||||
|
||||
Represents [MT State Senate District 22](/us/states/mt/districts/senate/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 86"
|
||||
represents: "us/states/mt/districts/house/86"
|
||||
tenure:
|
||||
start: "2019-01-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 86 (MT State House of Representatives District 86).
|
||||
|
||||
Represents [MT State House of Representatives District 86](/us/states/mt/districts/house/86.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 2"
|
||||
represents: "us/states/mt/districts/senate/2"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 2 (MT State Senate District 2).
|
||||
|
||||
Represents [MT State Senate District 2](/us/states/mt/districts/senate/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 3"
|
||||
represents: "us/states/mt/districts/house/3"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 3 (MT State House of Representatives District 3).
|
||||
|
||||
Represents [MT State House of Representatives District 3](/us/states/mt/districts/house/3.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 45"
|
||||
represents: "us/states/mt/districts/house/45"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 45 (MT State House of Representatives District 45).
|
||||
|
||||
Represents [MT State House of Representatives District 45](/us/states/mt/districts/house/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 32"
|
||||
represents: "us/states/mt/districts/senate/32"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 32 (MT State Senate District 32).
|
||||
|
||||
Represents [MT State Senate District 32](/us/states/mt/districts/senate/32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 46"
|
||||
represents: "us/states/mt/districts/house/46"
|
||||
tenure:
|
||||
start: "2024-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 46 (MT State House of Representatives District 46).
|
||||
|
||||
Represents [MT State House of Representatives District 46](/us/states/mt/districts/house/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 45"
|
||||
represents: "us/states/mt/districts/senate/45"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 45 (MT State Senate District 45).
|
||||
|
||||
Represents [MT State Senate District 45](/us/states/mt/districts/senate/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 25"
|
||||
represents: "us/states/mt/districts/senate/25"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 25 (MT State Senate District 25).
|
||||
|
||||
Represents [MT State Senate District 25](/us/states/mt/districts/senate/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 37"
|
||||
represents: "us/states/mt/districts/senate/37"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 37 (MT State Senate District 37).
|
||||
|
||||
Represents [MT State Senate District 37](/us/states/mt/districts/senate/37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 72"
|
||||
represents: "us/states/mt/districts/house/72"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 72 (MT State House of Representatives District 72).
|
||||
|
||||
Represents [MT State House of Representatives District 72](/us/states/mt/districts/house/72.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 21"
|
||||
represents: "us/states/mt/districts/house/21"
|
||||
tenure:
|
||||
start: "2019-01-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 21 (MT State House of Representatives District 21).
|
||||
|
||||
Represents [MT State House of Representatives District 21](/us/states/mt/districts/house/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 11"
|
||||
represents: "us/states/mt/districts/house/11"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 11 (MT State House of Representatives District 11).
|
||||
|
||||
Represents [MT State House of Representatives District 11](/us/states/mt/districts/house/11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 47"
|
||||
represents: "us/states/mt/districts/senate/47"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 47 (MT State Senate District 47).
|
||||
|
||||
Represents [MT State Senate District 47](/us/states/mt/districts/senate/47.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 23"
|
||||
represents: "us/states/mt/districts/senate/23"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 23 (MT State Senate District 23).
|
||||
|
||||
Represents [MT State Senate District 23](/us/states/mt/districts/senate/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 28"
|
||||
represents: "us/states/mt/districts/house/28"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 28 (MT State House of Representatives District 28).
|
||||
|
||||
Represents [MT State House of Representatives District 28](/us/states/mt/districts/house/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 66"
|
||||
represents: "us/states/mt/districts/house/66"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 66 (MT State House of Representatives District 66).
|
||||
|
||||
Represents [MT State House of Representatives District 66](/us/states/mt/districts/house/66.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 23"
|
||||
represents: "us/states/mt/districts/house/23"
|
||||
tenure:
|
||||
start: "2024-07-22"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 23 (MT State House of Representatives District 23).
|
||||
|
||||
Represents [MT State House of Representatives District 23](/us/states/mt/districts/house/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 56"
|
||||
represents: "us/states/mt/districts/house/56"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 56 (MT State House of Representatives District 56).
|
||||
|
||||
Represents [MT State House of Representatives District 56](/us/states/mt/districts/house/56.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 28"
|
||||
represents: "us/states/mt/districts/senate/28"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 28 (MT State Senate District 28).
|
||||
|
||||
Represents [MT State Senate District 28](/us/states/mt/districts/senate/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 31"
|
||||
represents: "us/states/mt/districts/house/31"
|
||||
tenure:
|
||||
start: "2021-01-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 31 (MT State House of Representatives District 31).
|
||||
|
||||
Represents [MT State House of Representatives District 31](/us/states/mt/districts/house/31.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 35"
|
||||
represents: "us/states/mt/districts/house/35"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 35 (MT State House of Representatives District 35).
|
||||
|
||||
Represents [MT State House of Representatives District 35](/us/states/mt/districts/house/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 21"
|
||||
represents: "us/states/mt/districts/senate/21"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 21 (MT State Senate District 21).
|
||||
|
||||
Represents [MT State Senate District 21](/us/states/mt/districts/senate/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 22"
|
||||
represents: "us/states/mt/districts/house/22"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 22 (MT State House of Representatives District 22).
|
||||
|
||||
Represents [MT State House of Representatives District 22](/us/states/mt/districts/house/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 7"
|
||||
represents: "us/states/mt/districts/senate/7"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 7 (MT State Senate District 7).
|
||||
|
||||
Represents [MT State Senate District 7](/us/states/mt/districts/senate/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 36"
|
||||
represents: "us/states/mt/districts/house/36"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 36 (MT State House of Representatives District 36).
|
||||
|
||||
Represents [MT State House of Representatives District 36](/us/states/mt/districts/house/36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 38"
|
||||
represents: "us/states/mt/districts/house/38"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 38 (MT State House of Representatives District 38).
|
||||
|
||||
Represents [MT State House of Representatives District 38](/us/states/mt/districts/house/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 88"
|
||||
represents: "us/states/mt/districts/house/88"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 88 (MT State House of Representatives District 88).
|
||||
|
||||
Represents [MT State House of Representatives District 88](/us/states/mt/districts/house/88.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 15"
|
||||
represents: "us/states/mt/districts/senate/15"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 15 (MT State Senate District 15).
|
||||
|
||||
Represents [MT State Senate District 15](/us/states/mt/districts/senate/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 46"
|
||||
represents: "us/states/mt/districts/senate/46"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 46 (MT State Senate District 46).
|
||||
|
||||
Represents [MT State Senate District 46](/us/states/mt/districts/senate/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 41"
|
||||
represents: "us/states/mt/districts/house/41"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 41 (MT State House of Representatives District 41).
|
||||
|
||||
Represents [MT State House of Representatives District 41](/us/states/mt/districts/house/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 47"
|
||||
represents: "us/states/mt/districts/house/47"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 47 (MT State House of Representatives District 47).
|
||||
|
||||
Represents [MT State House of Representatives District 47](/us/states/mt/districts/house/47.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 58"
|
||||
represents: "us/states/mt/districts/house/58"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 58 (MT State House of Representatives District 58).
|
||||
|
||||
Represents [MT State House of Representatives District 58](/us/states/mt/districts/house/58.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 77"
|
||||
represents: "us/states/mt/districts/house/77"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 77 (MT State House of Representatives District 77).
|
||||
|
||||
Represents [MT State House of Representatives District 77](/us/states/mt/districts/house/77.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 19"
|
||||
represents: "us/states/mt/districts/house/19"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 19 (MT State House of Representatives District 19).
|
||||
|
||||
Represents [MT State House of Representatives District 19](/us/states/mt/districts/house/19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 41"
|
||||
represents: "us/states/mt/districts/senate/41"
|
||||
tenure:
|
||||
start: "2019-01-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 41 (MT State Senate District 41).
|
||||
|
||||
Represents [MT State Senate District 41](/us/states/mt/districts/senate/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 43"
|
||||
represents: "us/states/mt/districts/senate/43"
|
||||
tenure:
|
||||
start: "2019-01-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 43 (MT State Senate District 43).
|
||||
|
||||
Represents [MT State Senate District 43](/us/states/mt/districts/senate/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 67"
|
||||
represents: "us/states/mt/districts/house/67"
|
||||
tenure:
|
||||
start: "2021-01-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 67 (MT State House of Representatives District 67).
|
||||
|
||||
Represents [MT State House of Representatives District 67](/us/states/mt/districts/house/67.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 73"
|
||||
represents: "us/states/mt/districts/house/73"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 73 (MT State House of Representatives District 73).
|
||||
|
||||
Represents [MT State House of Representatives District 73](/us/states/mt/districts/house/73.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 10"
|
||||
represents: "us/states/mt/districts/senate/10"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 10 (MT State Senate District 10).
|
||||
|
||||
Represents [MT State Senate District 10](/us/states/mt/districts/senate/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 34"
|
||||
represents: "us/states/mt/districts/house/34"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 34 (MT State House of Representatives District 34).
|
||||
|
||||
Represents [MT State House of Representatives District 34](/us/states/mt/districts/house/34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 83"
|
||||
represents: "us/states/mt/districts/house/83"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 83 (MT State House of Representatives District 83).
|
||||
|
||||
Represents [MT State House of Representatives District 83](/us/states/mt/districts/house/83.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 51"
|
||||
represents: "us/states/mt/districts/house/51"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 51 (MT State House of Representatives District 51).
|
||||
|
||||
Represents [MT State House of Representatives District 51](/us/states/mt/districts/house/51.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 29"
|
||||
represents: "us/states/mt/districts/senate/29"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 29 (MT State Senate District 29).
|
||||
|
||||
Represents [MT State Senate District 29](/us/states/mt/districts/senate/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 76"
|
||||
represents: "us/states/mt/districts/house/76"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 76 (MT State House of Representatives District 76).
|
||||
|
||||
Represents [MT State House of Representatives District 76](/us/states/mt/districts/house/76.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 4"
|
||||
represents: "us/states/mt/districts/senate/4"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 4 (MT State Senate District 4).
|
||||
|
||||
Represents [MT State Senate District 4](/us/states/mt/districts/senate/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 98"
|
||||
represents: "us/states/mt/districts/house/98"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 98 (MT State House of Representatives District 98).
|
||||
|
||||
Represents [MT State House of Representatives District 98](/us/states/mt/districts/house/98.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 16"
|
||||
represents: "us/states/mt/districts/senate/16"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 16 (MT State Senate District 16).
|
||||
|
||||
Represents [MT State Senate District 16](/us/states/mt/districts/senate/16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 13"
|
||||
represents: "us/states/mt/districts/senate/13"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 13 (MT State Senate District 13).
|
||||
|
||||
Represents [MT State Senate District 13](/us/states/mt/districts/senate/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 62"
|
||||
represents: "us/states/mt/districts/house/62"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 62 (MT State House of Representatives District 62).
|
||||
|
||||
Represents [MT State House of Representatives District 62](/us/states/mt/districts/house/62.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 84"
|
||||
represents: "us/states/mt/districts/house/84"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 84 (MT State House of Representatives District 84).
|
||||
|
||||
Represents [MT State House of Representatives District 84](/us/states/mt/districts/house/84.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 85"
|
||||
represents: "us/states/mt/districts/house/85"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 85 (MT State House of Representatives District 85).
|
||||
|
||||
Represents [MT State House of Representatives District 85](/us/states/mt/districts/house/85.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 59"
|
||||
represents: "us/states/mt/districts/house/59"
|
||||
tenure:
|
||||
start: "2025-12-22"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 59 (MT State House of Representatives District 59).
|
||||
|
||||
Represents [MT State House of Representatives District 59](/us/states/mt/districts/house/59.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 93"
|
||||
represents: "us/states/mt/districts/house/93"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 93 (MT State House of Representatives District 93).
|
||||
|
||||
Represents [MT State House of Representatives District 93](/us/states/mt/districts/house/93.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 44"
|
||||
represents: "us/states/mt/districts/house/44"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 44 (MT State House of Representatives District 44).
|
||||
|
||||
Represents [MT State House of Representatives District 44](/us/states/mt/districts/house/44.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 64"
|
||||
represents: "us/states/mt/districts/house/64"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 64 (MT State House of Representatives District 64).
|
||||
|
||||
Represents [MT State House of Representatives District 64](/us/states/mt/districts/house/64.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 18"
|
||||
represents: "us/states/mt/districts/senate/18"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 18 (MT State Senate District 18).
|
||||
|
||||
Represents [MT State Senate District 18](/us/states/mt/districts/senate/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 69"
|
||||
represents: "us/states/mt/districts/house/69"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 69 (MT State House of Representatives District 69).
|
||||
|
||||
Represents [MT State House of Representatives District 69](/us/states/mt/districts/house/69.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 39"
|
||||
represents: "us/states/mt/districts/house/39"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 39 (MT State House of Representatives District 39).
|
||||
|
||||
Represents [MT State House of Representatives District 39](/us/states/mt/districts/house/39.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 43"
|
||||
represents: "us/states/mt/districts/house/43"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 43 (MT State House of Representatives District 43).
|
||||
|
||||
Represents [MT State House of Representatives District 43](/us/states/mt/districts/house/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 40"
|
||||
represents: "us/states/mt/districts/senate/40"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 40 (MT State Senate District 40).
|
||||
|
||||
Represents [MT State Senate District 40](/us/states/mt/districts/senate/40.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 54"
|
||||
represents: "us/states/mt/districts/house/54"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 54 (MT State House of Representatives District 54).
|
||||
|
||||
Represents [MT State House of Representatives District 54](/us/states/mt/districts/house/54.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 13"
|
||||
represents: "us/states/mt/districts/house/13"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 13 (MT State House of Representatives District 13).
|
||||
|
||||
Represents [MT State House of Representatives District 13](/us/states/mt/districts/house/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 18"
|
||||
represents: "us/states/mt/districts/house/18"
|
||||
tenure:
|
||||
start: "2019-01-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 18 (MT State House of Representatives District 18).
|
||||
|
||||
Represents [MT State House of Representatives District 18](/us/states/mt/districts/house/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 8"
|
||||
represents: "us/states/mt/districts/house/8"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 8 (MT State House of Representatives District 8).
|
||||
|
||||
Represents [MT State House of Representatives District 8](/us/states/mt/districts/house/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 79"
|
||||
represents: "us/states/mt/districts/house/79"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 79 (MT State House of Representatives District 79).
|
||||
|
||||
Represents [MT State House of Representatives District 79](/us/states/mt/districts/house/79.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 4"
|
||||
represents: "us/states/mt/districts/house/4"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 4 (MT State House of Representatives District 4).
|
||||
|
||||
Represents [MT State House of Representatives District 4](/us/states/mt/districts/house/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 74"
|
||||
represents: "us/states/mt/districts/house/74"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 74 (MT State House of Representatives District 74).
|
||||
|
||||
Represents [MT State House of Representatives District 74](/us/states/mt/districts/house/74.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 94"
|
||||
represents: "us/states/mt/districts/house/94"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 94 (MT State House of Representatives District 94).
|
||||
|
||||
Represents [MT State House of Representatives District 94](/us/states/mt/districts/house/94.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 6"
|
||||
represents: "us/states/mt/districts/senate/6"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 6 (MT State Senate District 6).
|
||||
|
||||
Represents [MT State Senate District 6](/us/states/mt/districts/senate/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 75"
|
||||
represents: "us/states/mt/districts/house/75"
|
||||
tenure:
|
||||
start: "2025-07-22"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 75 (MT State House of Representatives District 75).
|
||||
|
||||
Represents [MT State House of Representatives District 75](/us/states/mt/districts/house/75.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 89"
|
||||
represents: "us/states/mt/districts/house/89"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 89 (MT State House of Representatives District 89).
|
||||
|
||||
Represents [MT State House of Representatives District 89](/us/states/mt/districts/house/89.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 42"
|
||||
represents: "us/states/mt/districts/senate/42"
|
||||
tenure:
|
||||
start: "2023-01-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 42 (MT State Senate District 42).
|
||||
|
||||
Represents [MT State Senate District 42](/us/states/mt/districts/senate/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 81"
|
||||
represents: "us/states/mt/districts/house/81"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 81 (MT State House of Representatives District 81).
|
||||
|
||||
Represents [MT State House of Representatives District 81](/us/states/mt/districts/house/81.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State Senate District 5"
|
||||
represents: "us/states/mt/districts/senate/5"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT Senate District 5 (MT State Senate District 5).
|
||||
|
||||
Represents [MT State Senate District 5](/us/states/mt/districts/senate/5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "MT"
|
||||
district: "MT State House of Representatives District 20"
|
||||
represents: "us/states/mt/districts/house/20"
|
||||
tenure:
|
||||
start: "2025-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current MT House District 20 (MT State House of Representatives District 20).
|
||||
|
||||
Represents [MT State House of Representatives District 20](/us/states/mt/districts/house/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user