Skip to content

Instantly share code, notes, and snippets.

@mrclay
Created May 20, 2021 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrclay/10218e4acc4ab80645e80dc668ae5a1b to your computer and use it in GitHub Desktop.
Save mrclay/10218e4acc4ab80645e80dc668ae5a1b to your computer and use it in GitHub Desktop.
Build set of JSON files for specifying US state grid map positions
const fs = require('fs');
const { promisify } = require('util');
const readFile = promisify(fs.readFile);
const writeFile = promisify(fs.writeFile);
(async () => {
const json = await readFile(`${__dirname}/publication-grids.json`);
const rows = JSON.parse(json);
const pubs = Object.create(null);
rows.forEach(({ publication, code, col, row }) => {
const pub = pubs[publication] || [];
pubs[publication] = pub;
pub.push(`${code} ${col} ${row}`);
});
Object.entries(pubs).forEach(([name, arr]) => {
arr.sort();
const content = JSON.stringify(arr, null, 2);
// Note: files written in parallel
writeFile(`${__dirname}/layouts/${name}.json`, `${content}\n`);
});
})().catch(e => {
// eslint-disable-next-line no-console
console.error(e);
});
[
{
"publication": "New York Times 2",
"state": "Alaska",
"code": "AK",
"col": 3,
"row": 1
},
{
"publication": "New York Times 2",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "New York Times 2",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Hawaii",
"code": "HI",
"col": 3,
"row": 8
},
{
"publication": "New York Times 2",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "New York Times 2",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "New York Times 2",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "New York Times 2",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "New York Times 2",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "New York Times 2",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "New York Times 2",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "New York Times 2",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "New York Times 2",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "New York Times 2",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 2
},
{
"publication": "New York Times 2",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "New York Times 2",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "New York Times 2",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "New York Times 2",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "New York Times 2",
"state": "North Carolina",
"code": "NC",
"col": 9,
"row": 6
},
{
"publication": "New York Times 2",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "New York Times 2",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "New York Times 2",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "New York Times 2",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "New York Times 2",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "New York Times 2",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "New York Times 2",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "New York Times 2",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "New York Times 2",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "New York Times 2",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "New York Times 2",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "New York Times 2",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "New York Times 2",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 2
},
{
"publication": "New York Times 1",
"state": "California",
"code": "CA",
"col": 2,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 7
},
{
"publication": "New York Times 1",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Nevada",
"code": "NV",
"col": 3,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Montana",
"code": "MT",
"col": 4,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "New York Times 1",
"state": "North Dakota",
"code": "ND",
"col": 5,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "New York Times 1",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "New York Times 1",
"state": "Texas",
"code": "TX",
"col": 5,
"row": 7
},
{
"publication": "New York Times 1",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 6
},
{
"publication": "New York Times 1",
"state": "Louisiana",
"code": "LA",
"col": 6,
"row": 7
},
{
"publication": "New York Times 1",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "New York Times 1",
"state": "Mississippi",
"code": "MS",
"col": 7,
"row": 7
},
{
"publication": "New York Times 1",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "New York Times 1",
"state": "Alabama",
"code": "AL",
"col": 8,
"row": 7
},
{
"publication": "New York Times 1",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Indiana",
"code": "IN",
"col": 9,
"row": 4
},
{
"publication": "New York Times 1",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Virginia",
"code": "VA",
"col": 9,
"row": 6
},
{
"publication": "New York Times 1",
"state": "Georgia",
"code": "GA",
"col": 9,
"row": 7
},
{
"publication": "New York Times 1",
"state": "Florida",
"code": "FL",
"col": 9,
"row": 8
},
{
"publication": "New York Times 1",
"state": "Ohio",
"code": "OH",
"col": 10,
"row": 4
},
{
"publication": "New York Times 1",
"state": "DC",
"code": "DC",
"col": 10,
"row": 5
},
{
"publication": "New York Times 1",
"state": "North Carolina",
"code": "NC",
"col": 10,
"row": 6
},
{
"publication": "New York Times 1",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 7
},
{
"publication": "New York Times 1",
"state": "Vermont",
"code": "VT",
"col": 11,
"row": 2
},
{
"publication": "New York Times 1",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "New York Times 1",
"state": "Pennsylvania",
"code": "PA",
"col": 11,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "New York Times 1",
"state": "New Hampshire",
"code": "NH",
"col": 12,
"row": 2
},
{
"publication": "New York Times 1",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 3
},
{
"publication": "New York Times 1",
"state": "New Jersey",
"code": "NJ",
"col": 12,
"row": 4
},
{
"publication": "New York Times 1",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "New York Times 1",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "New York Times 1",
"state": "Massachusetts",
"code": "MA",
"col": 13,
"row": 2
},
{
"publication": "New York Times 1",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": 538,
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": 538,
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": 538,
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": 538,
"state": "Hawaii",
"code": "HI",
"col": 3,
"row": 8
},
{
"publication": 538,
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": 538,
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 4
},
{
"publication": 538,
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": 538,
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": 538,
"state": "Alaska",
"code": "AK",
"col": 4,
"row": 8
},
{
"publication": 538,
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": 538,
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": 538,
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": 538,
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": 538,
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": 538,
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": 538,
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": 538,
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": 538,
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": 538,
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": 538,
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": 538,
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": 538,
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": 538,
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": 538,
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": 538,
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 2
},
{
"publication": 538,
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 3
},
{
"publication": 538,
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": 538,
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": 538,
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": 538,
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": 538,
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": 538,
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": 538,
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": 538,
"state": "North Carolina",
"code": "NC",
"col": 9,
"row": 6
},
{
"publication": 538,
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": 538,
"state": "Florida",
"code": "FL",
"col": 9,
"row": 8
},
{
"publication": 538,
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": 538,
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": 538,
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": 538,
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": 538,
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": 538,
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": 538,
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": 538,
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": 538,
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": 538,
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": 538,
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": 538,
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": 538,
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": 538,
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 4
},
{
"publication": "NPR",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 1
},
{
"publication": "NPR",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 8
},
{
"publication": "NPR",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "NPR",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "NPR",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "NPR",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "NPR",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 4
},
{
"publication": "NPR",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "NPR",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "NPR",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "NPR",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "NPR",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "NPR",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "NPR",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "NPR",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "NPR",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "NPR",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "NPR",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "NPR",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "NPR",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "NPR",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "NPR",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "NPR",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "NPR",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "NPR",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 3
},
{
"publication": "NPR",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": "NPR",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "NPR",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "NPR",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "NPR",
"state": "Wisconsin",
"code": "WI",
"col": 9,
"row": 3
},
{
"publication": "NPR",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "NPR",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "NPR",
"state": "North Carolina",
"code": "NC",
"col": 9,
"row": 6
},
{
"publication": "NPR",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "NPR",
"state": "Michigan",
"code": "MI",
"col": 10,
"row": 3
},
{
"publication": "NPR",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "NPR",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "NPR",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "NPR",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "NPR",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "NPR",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "NPR",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "NPR",
"state": "DC",
"code": "DC",
"col": 11,
"row": 6
},
{
"publication": "NPR",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "NPR",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "NPR",
"state": "Rhode Island",
"code": "RI",
"col": 12,
"row": 3
},
{
"publication": "NPR",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "NPR",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "NPR",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "NPR",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "NPR",
"state": "Massachusetts",
"code": "MA",
"col": 13,
"row": 3
},
{
"publication": "Propublica",
"state": "Hawaii",
"code": "HI",
"col": 3,
"row": 8
},
{
"publication": "Propublica",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "Propublica",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "Propublica",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "Propublica",
"state": "Alaska",
"code": "AK",
"col": 3,
"row": 1
},
{
"publication": "Propublica",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "Propublica",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 4
},
{
"publication": "Propublica",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "Propublica",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "Propublica",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "Propublica",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "Propublica",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "Propublica",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "Propublica",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "Propublica",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "Propublica",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "Propublica",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "Propublica",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "Propublica",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "Propublica",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 2
},
{
"publication": "Propublica",
"state": "Wisconsin",
"code": "WI",
"col": 7,
"row": 3
},
{
"publication": "Propublica",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "Propublica",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "Propublica",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "Propublica",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "Propublica",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 3
},
{
"publication": "Propublica",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": "Propublica",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "Propublica",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "Propublica",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "Propublica",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "Propublica",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "Propublica",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "Propublica",
"state": "North Carolina",
"code": "NC",
"col": 9,
"row": 6
},
{
"publication": "Propublica",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "Propublica",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "Propublica",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Propublica",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "Propublica",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "Propublica",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Propublica",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "Propublica",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "Propublica",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "Propublica",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Propublica",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Propublica",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "Propublica",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "Propublica",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Propublica",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Propublica",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 2
},
{
"publication": "Bloomberg 1",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 7
},
{
"publication": "Bloomberg 1",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "Bloomberg 1",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "Bloomberg 1",
"state": "Texas",
"code": "TX",
"col": 7,
"row": 8
},
{
"publication": "Bloomberg 1",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "Bloomberg 1",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Tennessee",
"code": "TN",
"col": 9,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "Bloomberg 1",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "Bloomberg 1",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "North Carolina",
"code": "NC",
"col": 11,
"row": 6
},
{
"publication": "Bloomberg 1",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "Bloomberg 1",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Bloomberg 1",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Bloomberg 1",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "Bloomberg 1",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "Bloomberg 1",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Bloomberg 1",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Bloomberg 1",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 3
},
{
"publication": "Marshall Project",
"state": "California",
"code": "CA",
"col": 3,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Alaska",
"code": "AK",
"col": 3,
"row": 7
},
{
"publication": "Marshall Project",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 5
},
{
"publication": "Marshall Project",
"state": "Hawaii",
"code": "HI",
"col": 4,
"row": 7
},
{
"publication": "Marshall Project",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 4
},
{
"publication": "Marshall Project",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 5
},
{
"publication": "Marshall Project",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 2
},
{
"publication": "Marshall Project",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 5
},
{
"publication": "Marshall Project",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 6
},
{
"publication": "Marshall Project",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 7
},
{
"publication": "Marshall Project",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 5
},
{
"publication": "Marshall Project",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 6
},
{
"publication": "Marshall Project",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 5
},
{
"publication": "Marshall Project",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 6
},
{
"publication": "Marshall Project",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Kentucky",
"code": "KY",
"col": 9,
"row": 4
},
{
"publication": "Marshall Project",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "Marshall Project",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 6
},
{
"publication": "Marshall Project",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Maryland",
"code": "MD",
"col": 10,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Marshall Project",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 6
},
{
"publication": "Marshall Project",
"state": "Vermont",
"code": "VT",
"col": 11,
"row": 2
},
{
"publication": "Marshall Project",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Marshall Project",
"state": "Delaware",
"code": "DE",
"col": 11,
"row": 4
},
{
"publication": "Marshall Project",
"state": "North Carolina",
"code": "NC",
"col": 11,
"row": 5
},
{
"publication": "Marshall Project",
"state": "South Carolina",
"code": "SC",
"col": 11,
"row": 6
},
{
"publication": "Marshall Project",
"state": "New Hampshire",
"code": "NH",
"col": 12,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 3
},
{
"publication": "Marshall Project",
"state": "New Jersey",
"code": "NJ",
"col": 12,
"row": 4
},
{
"publication": "Marshall Project",
"state": "Florida",
"code": "FL",
"col": 12,
"row": 7
},
{
"publication": "Marshall Project",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Marshall Project",
"state": "Massachusetts",
"code": "MA",
"col": 13,
"row": 2
},
{
"publication": "Marshall Project",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "Guardian",
"state": "Hawaii",
"code": "HI",
"col": 1,
"row": 8
},
{
"publication": "Guardian",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 1
},
{
"publication": "Guardian",
"state": "Washington",
"code": "WA",
"col": 2,
"row": 4
},
{
"publication": "Guardian",
"state": "Oregon",
"code": "OR",
"col": 2,
"row": 5
},
{
"publication": "Guardian",
"state": "California",
"code": "CA",
"col": 2,
"row": 6
},
{
"publication": "Guardian",
"state": "Idaho",
"code": "ID",
"col": 3,
"row": 4
},
{
"publication": "Guardian",
"state": "Nevada",
"code": "NV",
"col": 3,
"row": 5
},
{
"publication": "Guardian",
"state": "Utah",
"code": "UT",
"col": 3,
"row": 6
},
{
"publication": "Guardian",
"state": "Arizona",
"code": "AZ",
"col": 3,
"row": 7
},
{
"publication": "Guardian",
"state": "Montana",
"code": "MT",
"col": 4,
"row": 4
},
{
"publication": "Guardian",
"state": "Wyoming",
"code": "WY",
"col": 4,
"row": 5
},
{
"publication": "Guardian",
"state": "Colorado",
"code": "CO",
"col": 4,
"row": 6
},
{
"publication": "Guardian",
"state": "New Mexico",
"code": "NM",
"col": 4,
"row": 7
},
{
"publication": "Guardian",
"state": "North Dakota",
"code": "ND",
"col": 5,
"row": 3
},
{
"publication": "Guardian",
"state": "South Dakota",
"code": "SD",
"col": 5,
"row": 4
},
{
"publication": "Guardian",
"state": "Nebraska",
"code": "NE",
"col": 5,
"row": 5
},
{
"publication": "Guardian",
"state": "Kansas",
"code": "KS",
"col": 5,
"row": 6
},
{
"publication": "Guardian",
"state": "Oklahoma",
"code": "OK",
"col": 5,
"row": 7
},
{
"publication": "Guardian",
"state": "Texas",
"code": "TX",
"col": 5,
"row": 8
},
{
"publication": "Guardian",
"state": "Minnesota",
"code": "MN",
"col": 6,
"row": 3
},
{
"publication": "Guardian",
"state": "Iowa",
"code": "IA",
"col": 6,
"row": 4
},
{
"publication": "Guardian",
"state": "Missouri",
"code": "MO",
"col": 6,
"row": 5
},
{
"publication": "Guardian",
"state": "Arkansas",
"code": "AR",
"col": 6,
"row": 6
},
{
"publication": "Guardian",
"state": "Louisiana",
"code": "LA",
"col": 6,
"row": 7
},
{
"publication": "Guardian",
"state": "Wisconsin",
"code": "WI",
"col": 7,
"row": 4
},
{
"publication": "Guardian",
"state": "Illinois",
"code": "IL",
"col": 7,
"row": 5
},
{
"publication": "Guardian",
"state": "Tennessee",
"code": "TN",
"col": 7,
"row": 6
},
{
"publication": "Guardian",
"state": "Mississippi",
"code": "MS",
"col": 7,
"row": 7
},
{
"publication": "Guardian",
"state": "Michigan",
"code": "MI",
"col": 8,
"row": 4
},
{
"publication": "Guardian",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 5
},
{
"publication": "Guardian",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 6
},
{
"publication": "Guardian",
"state": "Alabama",
"code": "AL",
"col": 8,
"row": 7
},
{
"publication": "Guardian",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 5
},
{
"publication": "Guardian",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 6
},
{
"publication": "Guardian",
"state": "Georgia",
"code": "GA",
"col": 9,
"row": 7
},
{
"publication": "Guardian",
"state": "Florida",
"code": "FL",
"col": 9,
"row": 8
},
{
"publication": "Guardian",
"state": "New York",
"code": "NY",
"col": 10,
"row": 3
},
{
"publication": "Guardian",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "Guardian",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Guardian",
"state": "North Carolina",
"code": "NC",
"col": 10,
"row": 6
},
{
"publication": "Guardian",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 7
},
{
"publication": "Guardian",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 3
},
{
"publication": "Guardian",
"state": "Delaware",
"code": "DE",
"col": 11,
"row": 4
},
{
"publication": "Guardian",
"state": "DC",
"code": "DC",
"col": 11,
"row": 5
},
{
"publication": "Guardian",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Guardian",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Guardian",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "Guardian",
"state": "Maryland",
"code": "MD",
"col": 12,
"row": 5
},
{
"publication": "Guardian",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Guardian",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Guardian",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "National Journal",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 2
},
{
"publication": "National Journal",
"state": "California",
"code": "CA",
"col": 2,
"row": 5
},
{
"publication": "National Journal",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 7
},
{
"publication": "National Journal",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "National Journal",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "National Journal",
"state": "Nevada",
"code": "NV",
"col": 3,
"row": 5
},
{
"publication": "National Journal",
"state": "Montana",
"code": "MT",
"col": 4,
"row": 3
},
{
"publication": "National Journal",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 4
},
{
"publication": "National Journal",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "National Journal",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "National Journal",
"state": "North Dakota",
"code": "ND",
"col": 5,
"row": 3
},
{
"publication": "National Journal",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "National Journal",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "National Journal",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "National Journal",
"state": "Texas",
"code": "TX",
"col": 5,
"row": 7
},
{
"publication": "National Journal",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 3
},
{
"publication": "National Journal",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 4
},
{
"publication": "National Journal",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 5
},
{
"publication": "National Journal",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 6
},
{
"publication": "National Journal",
"state": "Louisiana",
"code": "LA",
"col": 6,
"row": 7
},
{
"publication": "National Journal",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "National Journal",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "National Journal",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "National Journal",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "National Journal",
"state": "Mississippi",
"code": "MS",
"col": 7,
"row": 7
},
{
"publication": "National Journal",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 3
},
{
"publication": "National Journal",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 4
},
{
"publication": "National Journal",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "National Journal",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "National Journal",
"state": "Alabama",
"code": "AL",
"col": 8,
"row": 7
},
{
"publication": "National Journal",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "National Journal",
"state": "Indiana",
"code": "IN",
"col": 9,
"row": 4
},
{
"publication": "National Journal",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "National Journal",
"state": "Virginia",
"code": "VA",
"col": 9,
"row": 6
},
{
"publication": "National Journal",
"state": "Georgia",
"code": "GA",
"col": 9,
"row": 7
},
{
"publication": "National Journal",
"state": "Florida",
"code": "FL",
"col": 9,
"row": 8
},
{
"publication": "National Journal",
"state": "Ohio",
"code": "OH",
"col": 10,
"row": 4
},
{
"publication": "National Journal",
"state": "DC",
"code": "DC",
"col": 10,
"row": 5
},
{
"publication": "National Journal",
"state": "North Carolina",
"code": "NC",
"col": 10,
"row": 6
},
{
"publication": "National Journal",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 7
},
{
"publication": "National Journal",
"state": "Vermont",
"code": "VT",
"col": 11,
"row": 2
},
{
"publication": "National Journal",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "National Journal",
"state": "Pennsylvania",
"code": "PA",
"col": 11,
"row": 4
},
{
"publication": "National Journal",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "National Journal",
"state": "New Hampshire",
"code": "NH",
"col": 12,
"row": 2
},
{
"publication": "National Journal",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 3
},
{
"publication": "National Journal",
"state": "New Jersey",
"code": "NJ",
"col": 12,
"row": 4
},
{
"publication": "National Journal",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "National Journal",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "National Journal",
"state": "Massachusetts",
"code": "MA",
"col": 13,
"row": 2
},
{
"publication": "National Journal",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Alaska",
"code": "AK",
"col": 3,
"row": 1
},
{
"publication": "Wall Street Journal",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "Hawaii",
"code": "HI",
"col": 3,
"row": 8
},
{
"publication": "Wall Street Journal",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "Wall Street Journal",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "Wall Street Journal",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "Wall Street Journal",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "Wall Street Journal",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Indiana",
"code": "IN",
"col": 9,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Kentucky",
"code": "KY",
"col": 9,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "North Carolina",
"code": "NC",
"col": 9,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "Wall Street Journal",
"state": "Ohio",
"code": "OH",
"col": 10,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "West Virginia",
"code": "WV",
"col": 10,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "Wall Street Journal",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Pennsylvania",
"code": "PA",
"col": 11,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Virginia",
"code": "VA",
"col": 11,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "DC",
"code": "DC",
"col": 11,
"row": 6
},
{
"publication": "Wall Street Journal",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "Wall Street Journal",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Wall Street Journal",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "New Jersey",
"code": "NJ",
"col": 12,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Maryland",
"code": "MD",
"col": 12,
"row": 5
},
{
"publication": "Wall Street Journal",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Wall Street Journal",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Wall Street Journal",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "Wall Street Journal",
"state": "Connecticut",
"code": "CT",
"col": 13,
"row": 4
},
{
"publication": "Wall Street Journal",
"state": "Delaware",
"code": "DE",
"col": 13,
"row": 5
},
{
"publication": "WNYC",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 2
},
{
"publication": "WNYC",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 8
},
{
"publication": "WNYC",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "WNYC",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "WNYC",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "WNYC",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "WNYC",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 4
},
{
"publication": "WNYC",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "WNYC",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "WNYC",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "WNYC",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "WNYC",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "WNYC",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "WNYC",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "WNYC",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "WNYC",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "WNYC",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "WNYC",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "WNYC",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "WNYC",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "WNYC",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "WNYC",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "WNYC",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "WNYC",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "WNYC",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 3
},
{
"publication": "WNYC",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": "WNYC",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 5
},
{
"publication": "WNYC",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "WNYC",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "WNYC",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "WNYC",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "WNYC",
"state": "Kentucky",
"code": "KY",
"col": 9,
"row": 5
},
{
"publication": "WNYC",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 6
},
{
"publication": "WNYC",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "WNYC",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "WNYC",
"state": "Maryland",
"code": "MD",
"col": 10,
"row": 5
},
{
"publication": "WNYC",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 6
},
{
"publication": "WNYC",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "WNYC",
"state": "Vermont",
"code": "VT",
"col": 11,
"row": 2
},
{
"publication": "WNYC",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "WNYC",
"state": "Delaware",
"code": "DE",
"col": 11,
"row": 4
},
{
"publication": "WNYC",
"state": "North Carolina",
"code": "NC",
"col": 11,
"row": 5
},
{
"publication": "WNYC",
"state": "South Carolina",
"code": "SC",
"col": 11,
"row": 6
},
{
"publication": "WNYC",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 7
},
{
"publication": "WNYC",
"state": "New Hampshire",
"code": "NH",
"col": 12,
"row": 2
},
{
"publication": "WNYC",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 3
},
{
"publication": "WNYC",
"state": "New Jersey",
"code": "NJ",
"col": 12,
"row": 4
},
{
"publication": "WNYC",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "WNYC",
"state": "Massachusetts",
"code": "MA",
"col": 13,
"row": 2
},
{
"publication": "WNYC",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "WNYC",
"state": "DC",
"code": "DC",
"col": 13,
"row": 6
},
{
"publication": "Axios",
"state": "Alaska",
"code": "AK",
"col": 4,
"row": 8
},
{
"publication": "Axios",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "Axios",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "Axios",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "Axios",
"state": "Hawaii",
"code": "HI",
"col": 3,
"row": 8
},
{
"publication": "Axios",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "Axios",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 4
},
{
"publication": "Axios",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 5
},
{
"publication": "Axios",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "Axios",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "Axios",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "Axios",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "Axios",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "Axios",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "Axios",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "Axios",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "Axios",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "Axios",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "Axios",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "Axios",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "Axios",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "Axios",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "Axios",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "Axios",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "Axios",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 2
},
{
"publication": "Axios",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 3
},
{
"publication": "Axios",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": "Axios",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "Axios",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "Axios",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "Axios",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "Axios",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "Axios",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "Axios",
"state": "North Carolina",
"code": "NC",
"col": 9,
"row": 6
},
{
"publication": "Axios",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "Axios",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "Axios",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Axios",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "Axios",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "Axios",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Axios",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "Axios",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "Axios",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "Axios",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Axios",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Axios",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "Axios",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "Axios",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Axios",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Axios",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 4
},
{
"publication": "Axios",
"state": "DC",
"code": "DC",
"col": 13,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 2
},
{
"publication": "Bloomberg 2",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 8
},
{
"publication": "Bloomberg 2",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "Bloomberg 2",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "Bloomberg 2",
"state": "Texas",
"code": "TX",
"col": 6,
"row": 8
},
{
"publication": "Bloomberg 2",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 2
},
{
"publication": "Bloomberg 2",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "Bloomberg 2",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Tennessee",
"code": "TN",
"col": 8,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "Bloomberg 2",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "South Carolina",
"code": "SC",
"col": 9,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "Bloomberg 2",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Maryland",
"code": "MD",
"col": 11,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "North Carolina",
"code": "NC",
"col": 10,
"row": 6
},
{
"publication": "Bloomberg 2",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "Bloomberg 2",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Bloomberg 2",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "Connecticut",
"code": "CT",
"col": 12,
"row": 4
},
{
"publication": "Bloomberg 2",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 5
},
{
"publication": "Bloomberg 2",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Bloomberg 2",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Bloomberg 2",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
},
{
"publication": "Bloomberg 2",
"state": "DC",
"code": "DC",
"col": 11,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Alaska",
"code": "AK",
"col": 2,
"row": 2
},
{
"publication": "Bloomberg 3",
"state": "California",
"code": "CA",
"col": 3,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "Hawaii",
"code": "HI",
"col": 2,
"row": 7
},
{
"publication": "Bloomberg 3",
"state": "Washington",
"code": "WA",
"col": 3,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Oregon",
"code": "OR",
"col": 3,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Nevada",
"code": "NV",
"col": 4,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "Montana",
"code": "MT",
"col": 5,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Idaho",
"code": "ID",
"col": 4,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Utah",
"code": "UT",
"col": 4,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Arizona",
"code": "AZ",
"col": 4,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "North Dakota",
"code": "ND",
"col": 6,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Wyoming",
"code": "WY",
"col": 5,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Colorado",
"code": "CO",
"col": 5,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "New Mexico",
"code": "NM",
"col": 5,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Texas",
"code": "TX",
"col": 7,
"row": 8
},
{
"publication": "Bloomberg 3",
"state": "South Dakota",
"code": "SD",
"col": 6,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Nebraska",
"code": "NE",
"col": 6,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "Kansas",
"code": "KS",
"col": 6,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Oklahoma",
"code": "OK",
"col": 6,
"row": 7
},
{
"publication": "Bloomberg 3",
"state": "Louisiana",
"code": "LA",
"col": 7,
"row": 7
},
{
"publication": "Bloomberg 3",
"state": "Minnesota",
"code": "MN",
"col": 7,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Iowa",
"code": "IA",
"col": 7,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Missouri",
"code": "MO",
"col": 7,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "Arkansas",
"code": "AR",
"col": 7,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Mississippi",
"code": "MS",
"col": 8,
"row": 7
},
{
"publication": "Bloomberg 3",
"state": "Wisconsin",
"code": "WI",
"col": 8,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Illinois",
"code": "IL",
"col": 8,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Kentucky",
"code": "KY",
"col": 8,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Tennessee",
"code": "TN",
"col": 9,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Alabama",
"code": "AL",
"col": 9,
"row": 7
},
{
"publication": "Bloomberg 3",
"state": "Michigan",
"code": "MI",
"col": 9,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Indiana",
"code": "IN",
"col": 8,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "West Virginia",
"code": "WV",
"col": 9,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "Virginia",
"code": "VA",
"col": 10,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "Georgia",
"code": "GA",
"col": 10,
"row": 7
},
{
"publication": "Bloomberg 3",
"state": "Florida",
"code": "FL",
"col": 11,
"row": 8
},
{
"publication": "Bloomberg 3",
"state": "Ohio",
"code": "OH",
"col": 9,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "DC",
"code": "DC",
"col": 11,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "North Carolina",
"code": "NC",
"col": 11,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "South Carolina",
"code": "SC",
"col": 10,
"row": 6
},
{
"publication": "Bloomberg 3",
"state": "Vermont",
"code": "VT",
"col": 12,
"row": 2
},
{
"publication": "Bloomberg 3",
"state": "New York",
"code": "NY",
"col": 11,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Pennsylvania",
"code": "PA",
"col": 10,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Maryland",
"code": "MD",
"col": 12,
"row": 5
},
{
"publication": "Bloomberg 3",
"state": "New Hampshire",
"code": "NH",
"col": 13,
"row": 2
},
{
"publication": "Bloomberg 3",
"state": "Connecticut",
"code": "CT",
"col": 13,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "New Jersey",
"code": "NJ",
"col": 11,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Delaware",
"code": "DE",
"col": 12,
"row": 4
},
{
"publication": "Bloomberg 3",
"state": "Maine",
"code": "ME",
"col": 13,
"row": 1
},
{
"publication": "Bloomberg 3",
"state": "Massachusetts",
"code": "MA",
"col": 12,
"row": 3
},
{
"publication": "Bloomberg 3",
"state": "Rhode Island",
"code": "RI",
"col": 13,
"row": 3
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment