This is an Overpass query I’ve used in the past that trades off reasonable speed for reasonable accuracy:

rel(161993);map_to_area->.a; // state of utah
way // consider ways that...
  [highway=residential] // are residential 
  [!name] // do not have name tag
  ["tiger:cfcc"] // have tiger:cfcc tag which was created as part of the import
  (if:timestamp() < "2013-01-01T00:00:00Z") // have timestamp before 2013
  (area.a); // are in the defined area
out meta geom; // output geometry and metadata

This yields 2176 ways. If you leave out the highway=residential criterion it’s up to 8000+.