caciviclab / disclosure-backend-static

Campaign finance data powering Open Disclosure California
https://caciviclab.org/odca-jekyll/
15 stars 14 forks source link

Bump nokogiri from 1.11.1 to 1.12.5 #287

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 3 years ago

Bumps nokogiri from 1.11.1 to 1.12.5.

Release notes

Sourced from nokogiri's releases.

1.12.5 / 2021-09-27

Security

[JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h).

In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parsers resolve external entities (XXE) by default. This fix turns off entity-resolution-by-default in the JRuby SAX parsers to match the CRuby SAX parsers' behavior.

CRuby users are not affected by this CVE.

Fixed

  • [CRuby] Document#to_xhtml properly serializes self-closing tags in libxml > 2.9.10. A behavior change introduced in libxml 2.9.11 resulted in emitting start and and tags (e.g., <br></br>) instead of a self-closing tag (e.g., <br/>) in previous Nokogiri versions. [#2324]

SHA256 checksums:

36bfa3a07aced069b3f3c9b39d9fb62cb0728d284d02b079404cd55780beaeff  nokogiri-1.12.5-arm64-darwin.gem
16b1a9ddbb70a9c998462912a5972097cbc79c3e01eb373906886ef8a469f589  nokogiri-1.12.5-java.gem
218dcc6edd1b49cc6244b5f88afb978739bb2f3f166c271557fe5f51e4bc713c  nokogiri-1.12.5-x64-mingw32.gem
e33bb919d64c16d931a5f26dc880969e587d225cfa97e6b56e790fb52179f527  nokogiri-1.12.5-x86-linux.gem
e13c2ed011b8346fbd589e96fe3542d763158bc2c7ad0f4f55f6d801afd1d9ff  nokogiri-1.12.5-x86-mingw32.gem
1ed64f7db7c1414b87fce28029f2a10128611d2037e0871ba298d00f9a00edd6  nokogiri-1.12.5-x86_64-darwin.gem
0868c8d0a147904d4dedaaa05af5f06656f2d3c67e4432601718559bf69d6cea  nokogiri-1.12.5-x86_64-linux.gem
2b20905942acc580697c8c496d0d1672ab617facb9d30d156b3c7676e67902ec  nokogiri-1.12.5.gem

1.12.4 / 2021-08-29

Notable fix: Namespace inheritance

Namespace behavior when reparenting nodes has historically been poorly specified and the behavior diverged between CRuby and JRuby. As a result, making this behavior consistent in v1.12.0 introduced a breaking change.

This patch release reverts the Builder behavior present in v1.12.0..v1.12.3 but keeps the Document behavior. This release also introduces a Document attribute to allow affected users to easily change this behavior for their legacy code without invasive changes.

Compensating Feature in XML::Document

This release of Nokogiri introduces a new Document boolean attribute, namespace_inheritance, which controls whether children should inherit a namespace when they are reparented. Nokogiri::XML:Document defaults this attribute to false meaning "do not inherit," thereby making explicit the behavior change introduced in v1.12.0.

CRuby users who desire the pre-v1.12.0 behavior may set document.namespace_inheritance = true before reparenting nodes.

See https://nokogiri.org/rdoc/Nokogiri/XML/Document.html#namespace_inheritance-instance_method for example usage.

Fix for XML::Builder

... (truncated)

Changelog

Sourced from nokogiri's changelog.

1.12.5 / 2021-09-27

Security

[JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h).

In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parsers resolve external entities (XXE) by default. This fix turns off entity-resolution-by-default in the JRuby SAX parsers to match the CRuby SAX parsers' behavior.

CRuby users are not affected by this CVE.

Fixed

  • [CRuby] Document#to_xhtml properly serializes self-closing tags in libxml > 2.9.10. A behavior change introduced in libxml 2.9.11 resulted in emitting start and and tags (e.g., <br></br>) instead of a self-closing tag (e.g., <br/>) in previous Nokogiri versions. [#2324]

1.12.4 / 2021-08-29

Notable fix: Namespace inheritance

Namespace behavior when reparenting nodes has historically been poorly specified and the behavior diverged between CRuby and JRuby. As a result, making this behavior consistent in v1.12.0 introduced a breaking change.

This patch release reverts the Builder behavior present in v1.12.0..v1.12.3 but keeps the Document behavior. This release also introduces a Document attribute to allow affected users to easily change this behavior for their legacy code without invasive changes.

Compensating Feature in XML::Document

This release of Nokogiri introduces a new Document boolean attribute, namespace_inheritance, which controls whether children should inherit a namespace when they are reparented. Nokogiri::XML:Document defaults this attribute to false meaning "do not inherit," thereby making explicit the behavior change introduced in v1.12.0.

CRuby users who desire the pre-v1.12.0 behavior may set document.namespace_inheritance = true before reparenting nodes.

See https://nokogiri.org/rdoc/Nokogiri/XML/Document.html#namespace_inheritance-instance_method for example usage.

Fix for XML::Builder

However, recognizing that we want Builder-created children to inherit namespaces, Builder now will set namespace_inheritance=true on the underlying document for both JRuby and CRuby. This means that, on CRuby, the pre-v1.12.0 behavior is restored.

Users who want to turn this behavior off may pass a keyword argument to the Builder constructor like so:

Nokogiri::XML::Builder.new(namespace_inheritance: false)

See https://nokogiri.org/rdoc/Nokogiri/XML/Builder.html#label-Namespace+inheritance for example usage.

Downstream gem maintainers

Note that any downstream gems may want to specifically omit Nokogiri v1.12.0--v1.12.3 from their dependency specification if they rely on child namespace inheritance:

... (truncated)

Commits
  • 47f6a46 version bump to v1.12.5
  • 2a0ac88 update CHANGELOG
  • 6b60637 Merge pull request #2329 from sparklemotion/flavorjones-GHSA-2rr5-8q37-2w7h_1...
  • 4bd943c fix(jruby): SAX parser uses an entity resolver
  • f943ee4 refactor(jruby): handle errors more consistently
  • 2790122 format: test files
  • 01e1618 Merge pull request #2327 from sparklemotion/2324-xhtml-self-closing-tags_v1.12.x
  • a0180c7 fix: HTML4::Document.to_xhtml self-closing tags
  • 564ac17 release v1.12.4
  • 4d5754b backport #2320
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/caciviclab/disclosure-backend-static/network/alerts).
tdooner commented 3 years ago
Build diff from Commit cfb40d9c235a13bc39fbd912d9fd2deca15af8c3: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index 3aa6460..9fd1a91 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -24,7 +24,7 @@ "contributions_received": 133914.39, "total_contributions": 133914.39, "total_expenditures": null, - "total_loans_received": 0.0, + "total_loans_received": 16050.0, "total_supporting_independent": 0.0, "support_list": [ @@ -71,5 +71,5 @@ }, "total_contributions": 133914.39, "total_expenditures": null, - "total_loans_received": 0.0 + "total_loans_received": 16050.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index c0ed2ea..647b417 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 237599.56, + "total_supporting_independent": 10744.45, "support_list": [ { "Total": 10000.0, @@ -33,23 +33,11 @@ "Filer_ID": "COAK-1538", "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" }, - { - "Total": 224049.5, - "Cand_ID": 1397270, - "Filer_ID": "1428015", - "Filer_NamL": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO" - }, { "Total": 744.45, "Cand_ID": 1397270, "Filer_ID": "1372459", "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 2805.61, - "Cand_ID": 1397270, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" } ], "contributions_by_type": { @@ -60,37 +48,21 @@ "expenditures_by_type": { }, "supporting_by_type": { - "IKD": 507.0, - "MON": 10093.0, - "Independent Expenditure Supporting/Opposing Others": 238229.56 + "MON": 7100.0, + "Independent Expenditure Supporting/Opposing Others": 11374.45 } }, "opposing_money": { - "opposing_expenditures": 218216.0, + "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 + "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ - { - "Total": 174766.0, - "Cand_ID": 1397270, - "Filer_ID": "1425090", - "Filer_NamL": "Californians for Independent Work, Sponsored by Lyft, Inc." - }, { "Total": 8450.0, "Cand_ID": 1397270, "Filer_ID": "1370519", "Filer_NamL": "Citizens for Oakland" - }, - { - "Total": 35000.0, - "Cand_ID": 1397270, - "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json index afcb984..6c81a93 100644 --- a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json +++ b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json @@ -25,20 +25,9 @@ "total_contributions": 103058.0, "total_expenditures": null, "total_loans_received": 0.0, - "total_supporting_independent": 35507.32, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 32697.0, - "Cand_ID": 1382408, - "Filer_ID": "1433122", - "Filer_NamL": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021" - }, - { - "Total": 2810.32, - "Cand_ID": 1382408, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { "Committee": 11350.0, @@ -72,9 +61,7 @@ }, "supporting_by_type": { "IKD": 300.0, - "MON": 6200.0, - "Mailer": 32697.0, - "Independent Expenditure Supporting/Opposing Others": 2810.32 + "MON": 3700.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json b/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json index 08c8eb2..6c4251b 100644 --- a/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json +++ b/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json @@ -24,7 +24,7 @@ "contributions_received": 17888.0, "total_contributions": 17888.0, "total_expenditures": 15267.92, - "total_loans_received": 6790.19, + "total_loans_received": 7125.0, "total_supporting_independent": 90423.03, "support_list": [ { @@ -69,5 +69,5 @@ }, "total_contributions": 17888.0, "total_expenditures": 15267.92, - "total_loans_received": 6790.19 + "total_loans_received": 7125.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json b/build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json index 7a9dc49..7254b22 100644 --- a/build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json +++ b/build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json @@ -25,14 +25,9 @@ "total_contributions": 127256.69, "total_expenditures": 130706.97, "total_loans_received": 0.0, - "total_supporting_independent": 91171.0, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 91171.0, - "Cand_ID": 1375179, - "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" - } + ], "contributions_by_type": { "Committee": 15850.0, @@ -51,7 +46,7 @@ "Not Stated": 17456.96, "Contribution": 750.0, "Civic Donations": 5300.0, - "Office Expenses": 7586.9, + "Office Expenses": 7502.9, "Fundraising Events": 920.48, "Campaign Consultants": 29000.0, "Meetings and Appearances": 2016.19, @@ -59,13 +54,11 @@ "Candidate Filing/Ballot Fees": 250.0, "Campaign Literature and Mailings": 37361.74, "Candidate Travel, Lodging, and Meals": 91.39, - "Professional Services (Legal, Accounting)": 29030.6, - "Information Technology Costs (Internet, E-mail)": 4919.41 + "Professional Services (Legal, Accounting)": 28885.11, + "Information Technology Costs (Internet, E-mail)": 4912.16 }, "supporting_by_type": { - "IKD": 10750.0, - "MON": 5750.0, - "Independent Expenditure Supporting/Opposing Others": 91171.0 + "MON": 3150.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json index caf1a44..1edeb62 100644 --- a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json +++ b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json @@ -55,7 +55,7 @@ "Professional Services (Legal, Accounting)": 21788.0 }, "supporting_by_type": { - "MON": 4100.0 + "MON": 700.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json b/build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json index 06d4873..d443eba 100644 --- a/build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json @@ -25,20 +25,9 @@ "total_contributions": 65247.99, "total_expenditures": 23549.2, "total_loans_received": 0.0, - "total_supporting_independent": 226855.11, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 224049.5, - "Cand_ID": 1381183, - "Filer_ID": "1428015", - "Filer_NamL": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO" - }, - { - "Total": 2805.61, - "Cand_ID": 1381183, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { "Committee": 16300.0, @@ -70,32 +59,17 @@ "Information Technology Costs (Internet, E-mail)": 4170.18 }, "supporting_by_type": { - "IKD": 507.0, - "MON": 10093.0, - "Independent Expenditure Supporting/Opposing Others": 238229.56 + "MON": 7100.0, + "Independent Expenditure Supporting/Opposing Others": 11374.45 } }, "opposing_money": { - "opposing_expenditures": 209766.0, + "opposing_expenditures": 0.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 + "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ - { - "Total": 174766.0, - "Cand_ID": 1381183, - "Filer_ID": "1425090", - "Filer_NamL": "Californians for Independent Work, Sponsored by Lyft, Inc." - }, - { - "Total": 35000.0, - "Cand_ID": 1381183, - "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020" - } + ] }, "total_contributions": 65247.99, diff --git a/build/_data/candidates/oakland/2016-11-08/roseann-torres.json b/build/_data/candidates/oakland/2016-11-08/roseann-torres.json index ebcc7cf..562c3e5 100644 --- a/build/_data/candidates/oakland/2016-11-08/roseann-torres.json +++ b/build/_data/candidates/oakland/2016-11-08/roseann-torres.json @@ -24,7 +24,7 @@ "contributions_received": 21875.01, "total_contributions": 21875.01, "total_expenditures": 30858.19, - "total_loans_received": 0.0, + "total_loans_received": 9250.0, "total_supporting_independent": 6987.5, "support_list": [ { @@ -37,7 +37,7 @@ "contributions_by_type": { "Committee": 5000.0, "Individual": 13925.01, - "Unitemized": 3068.0, + "Unitemized": 2798.0, "Other (includes Businesses)": 1250.0 }, "contributions_by_origin": { @@ -45,17 +45,17 @@ "Within Oakland": 9400.0, "Within California": 10625.01 }, - "total_small_contributions": 3118.0, + "total_small_contributions": 2848.0, "expenditures_by_type": { "Not Stated": 3367.0, "Contribution": 300.0, - "Office Expenses": 1949.84, + "Office Expenses": 1786.74, "Fundraising Events": 1243.86, "Campaign Consultants": 8330.0, "Campaign Paraphernalia/Misc.": 3538.03, "Campaign Literature and Mailings": 4574.98, "Postage, Delivery and Messenger Services": 740.46, - "Professional Services (Legal, Accounting)": 9006.98, + "Professional Services (Legal, Accounting)": 8500.24, "Information Technology Costs (Internet, E-mail)": 400.0 }, "supporting_by_type": { @@ -73,5 +73,5 @@ }, "total_contributions": 21875.01, "total_expenditures": 30858.19, - "total_loans_received": 0.0 + "total_loans_received": 9250.0 } diff --git a/build/_data/candidates/oakland/2018-11-06/abel-guillen.json b/build/_data/candidates/oakland/2018-11-06/abel-guillen.json index edb2ff8..11640fc 100644 --- a/build/_data/candidates/oakland/2018-11-06/abel-guillen.json +++ b/build/_data/candidates/oakland/2018-11-06/abel-guillen.json @@ -1,5 +1,5 @@ { - "id": 44, + "id": 43, "name": "Abel Guillén", "photo_url": "abel_guillen.png", "website_url": "http://www.voteabelguillen.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/cat-brooks.json b/build/_data/candidates/oakland/2018-11-06/cat-brooks.json index b1d7a5f..cba2909 100644 --- a/build/_data/candidates/oakland/2018-11-06/cat-brooks.json +++ b/build/_data/candidates/oakland/2018-11-06/cat-brooks.json @@ -1,5 +1,5 @@ { - "id": 61, + "id": 60, "name": "Cat Brooks", "photo_url": "Cat-Brooks.png", "website_url": "https://www.catbrooksforoakland.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json b/build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json index 1c20f07..9117f02 100644 --- a/build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json +++ b/build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json @@ -1,5 +1,5 @@ { - "id": 58, + "id": 57, "name": "Cedric Anthony Troupe", "photo_url": "Cedric-Anthony-Troupe.png", "website_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/charlie-michelson.json b/build/_data/candidates/oakland/2018-11-06/charlie-michelson.json index b424ff8..0fb3f92 100644 --- a/build/_data/candidates/oakland/2018-11-06/charlie-michelson.json +++ b/build/_data/candidates/oakland/2018-11-06/charlie-michelson.json @@ -1,5 +1,5 @@ { - "id": 48, + "id": 47, "name": "Charlie Michelson", "photo_url": "Charlie-Michelson.png", "website_url": "https://www.charlie.vote/", diff --git a/build/_data/candidates/oakland/2018-11-06/courtney-ruby.json b/build/_data/candidates/oakland/2018-11-06/courtney-ruby.json index cf557af..f07cb55 100644 --- a/build/_data/candidates/oakland/2018-11-06/courtney-ruby.json +++ b/build/_data/candidates/oakland/2018-11-06/courtney-ruby.json @@ -51,7 +51,7 @@ "Campaign Paraphernalia/Misc.": 1790.55, "Campaign Literature and Mailings": 18467.46, "Postage, Delivery and Messenger Services": 13510.78, - "Professional Services (Legal, Accounting)": 5196.94, + "Professional Services (Legal, Accounting)": 5031.21, "Information Technology Costs (Internet, E-mail)": 835.95 }, "supporting_by_type": { diff --git a/build/_data/candidates/oakland/2018-11-06/desley-brooks.json b/build/_data/candidates/oakland/2018-11-06/desley-brooks.json index f988b23..c2c7fc4 100644 --- a/build/_data/candidates/oakland/2018-11-06/desley-brooks.json +++ b/build/_data/candidates/oakland/2018-11-06/desley-brooks.json @@ -1,5 +1,5 @@ { - "id": 57, + "id": 56, "name": "Desley Brooks", "photo_url": "Desley-Brooks.png", "website_url": "https://www.desley4d6.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json b/build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json index edf7667..6771ade 100644 --- a/build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json +++ b/build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json @@ -1,5 +1,5 @@ { - "id": 45, + "id": 44, "name": "Donte Kenzie Smith", "photo_url": "Carlos-'Kenzie'-Smith.png", "website_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/francis-hummel.json b/build/_data/candidates/oakland/2018-11-06/francis-hummel.json index 48520d2..4b9e1d4 100644 --- a/build/_data/candidates/oakland/2018-11-06/francis-hummel.json +++ b/build/_data/candidates/oakland/2018-11-06/francis-hummel.json @@ -1,5 +1,5 @@ { - "id": 46, + "id": 45, "name": "Francis Hummel", "photo_url": "Matt-Francis-Hummel.png", "website_url": "https://www.facebook.com/fmatt.hummel", diff --git a/build/_data/candidates/oakland/2018-11-06/joseph-simmons.json b/build/_data/candidates/oakland/2018-11-06/joseph-simmons.json index d86b19f..83bae8b 100644 --- a/build/_data/candidates/oakland/2018-11-06/joseph-simmons.json +++ b/build/_data/candidates/oakland/2018-11-06/joseph-simmons.json @@ -1,5 +1,5 @@ { - "id": 47, + "id": 46, "name": "Joseph Simmons", "photo_url": "Joseph-Simmons.png", "website_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json index 4e2f4a7..9cdb90f 100644 --- a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json +++ b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json @@ -1,5 +1,5 @@ { - "id": 49, + "id": 48, "name": "Joseph Tanios", "photo_url": "Joseph-Tanios.png", "website_url": "https://www.joetanios.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/ken-houston.json b/build/_data/candidates/oakland/2018-11-06/ken-houston.json index 5b12abc..f003a23 100644 --- a/build/_data/candidates/oakland/2018-11-06/ken-houston.json +++ b/build/_data/candidates/oakland/2018-11-06/ken-houston.json @@ -1,5 +1,5 @@ { - "id": 59, + "id": 58, "name": "Ken Houston", "photo_url": "Ken-Houston.png", "website_url": "http://sonofoakland.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/libby-schaaf.json b/build/_data/candidates/oakland/2018-11-06/libby-schaaf.json index c9e4250..0e8972a 100644 --- a/build/_data/candidates/oakland/2018-11-06/libby-schaaf.json +++ b/build/_data/candidates/oakland/2018-11-06/libby-schaaf.json @@ -1,5 +1,5 @@ { - "id": 42, + "id": 63, "name": "Libby Schaaf", "photo_url": "libby_schaaf.png", "website_url": "https://libbyformayor.wordpress.com/", @@ -37,7 +37,7 @@ "contributions_by_type": { "Committee": 22600.0, "Individual": 441335.68, - "Unitemized": 8479.18, + "Unitemized": 8255.18, "Other (includes Businesses)": 29450.0 }, "contributions_by_origin": { @@ -45,14 +45,13 @@ "Within Oakland": 228695.0, "Within California": 249240.68 }, - "total_small_contributions": 9919.2, + "total_small_contributions": 9695.2, "expenditures_by_type": { "Print Ads": 2090.0, - "Not Stated": 25864.21, - "Contribution": 1000.0, - "Civic Donations": 1250.0, + "Not Stated": 24364.21, + "Civic Donations": 750.0, "Office Expenses": 51309.12, - "Fundraising Events": 2936.75, + "Fundraising Events": 1703.85, "Campaign Consultants": 61510.0, "Returned Contributions": 7000.0, "Meetings and Appearances": 47521.38, @@ -63,9 +62,9 @@ "Campaign Literature and Mailings": 81985.58, "Staff/Spouse Travel, Lodging, and Meals": 14.14, "Postage, Delivery and Messenger Services": 51027.99, - "Professional Services (Legal, Accounting)": 54566.97, + "Professional Services (Legal, Accounting)": 52340.59, "T.V. or Cable Airtime and Production Costs": 102700.0, - "Information Technology Costs (Internet, E-mail)": 8745.73 + "Information Technology Costs (Internet, E-mail)": 7899.57 }, "supporting_by_type": { "MON": 4800.0, diff --git a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json index a7b2374..1caceb5 100644 --- a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json +++ b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json @@ -1,5 +1,5 @@ { - "id": 56, + "id": 55, "name": "Loren Taylor", "photo_url": "Loren_Taylor.png", "website_url": "https://www.lorentaylor.org/", @@ -47,7 +47,7 @@ "Phone Banks": 2159.31, "Contribution": 3000.0, "Civic Donations": 5927.34, - "Office Expenses": 718.53, + "Office Expenses": 670.53, "Fundraising Events": 4055.25, "Campaign Consultants": 32350.62, "Meetings and Appearances": 2326.13, diff --git a/build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json b/build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json index 5ea6034..6438199 100644 --- a/build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json +++ b/build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json @@ -1,5 +1,5 @@ { - "id": 62, + "id": 61, "name": "Marchon Tatmon", "photo_url": "marchon-tatmon.png", "website_url": "http://votemarchon.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json b/build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json index 20d5c41..0155e4c 100644 --- a/build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json +++ b/build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json @@ -1,5 +1,5 @@ { - "id": 54, + "id": 53, "name": "Maria \"Marlo\" Rodriguez", "photo_url": "Marlo-Rodriguez.png", "website_url": "https://www.marlo4oakland.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/mya-whitaker.json b/build/_data/candidates/oakland/2018-11-06/mya-whitaker.json index dc716ba..aa291d3 100644 --- a/build/_data/candidates/oakland/2018-11-06/mya-whitaker.json +++ b/build/_data/candidates/oakland/2018-11-06/mya-whitaker.json @@ -1,5 +1,5 @@ { - "id": 53, + "id": 52, "name": "Mya Whitaker", "photo_url": "Mya-Whitaker.png", "website_url": "https://whitakerforoakland.com", diff --git a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json index 54c1997..c15255a 100644 --- a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json +++ b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json @@ -1,5 +1,5 @@ { - "id": 55, + "id": 54, "name": "Natasha Middleton", "photo_url": "Natasha-Middleton.png", "website_url": "https://www.natashaforoakland.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json index a79b4ca..156af88 100644 --- a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json +++ b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json @@ -1,5 +1,5 @@ { - "id": 52, + "id": 51, "name": "Nayeli Maxson", "photo_url": "Nayeli-Maxson.png", "website_url": "https://nayeliforoakland.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json b/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json index 4dcffbe..46e1237 100644 --- a/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json +++ b/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json @@ -1,5 +1,5 @@ { - "id": 43, + "id": 42, "name": "Nikki Fortunato Bas", "photo_url": "nikki_fortunato_bas.png", "website_url": "http://www.nikki4oakland.com", @@ -47,7 +47,7 @@ }, "total_small_contributions": 21532.95, "expenditures_by_type": { - "Not Stated": 26240.68, + "Not Stated": 25322.98, "Contribution": 300.0, "Civic Donations": 1050.0, "Office Expenses": 9496.62, @@ -59,8 +59,8 @@ "Campaign Literature and Mailings": 22562.07, "Candidate Travel, Lodging, and Meals": 61.0, "Postage, Delivery and Messenger Services": 7524.02, - "Professional Services (Legal, Accounting)": 24042.37, - "Information Technology Costs (Internet, E-mail)": 2344.89 + "Professional Services (Legal, Accounting)": 22953.87, + "Information Technology Costs (Internet, E-mail)": 2112.89 }, "supporting_by_type": { "IKD": 1564.87, diff --git a/build/_data/candidates/oakland/2018-11-06/pamela-harris.json b/build/_data/candidates/oakland/2018-11-06/pamela-harris.json index dbf2e7e..4e12cb7 100644 --- a/build/_data/candidates/oakland/2018-11-06/pamela-harris.json +++ b/build/_data/candidates/oakland/2018-11-06/pamela-harris.json @@ -1,5 +1,5 @@ { - "id": 51, + "id": 50, "name": "Pamela Harris", "photo_url": "Pamela-Harris.png", "website_url": "https://www.pamharris4oakland.com/", diff --git a/build/_data/candidates/oakland/2018-11-06/pamela-price.json b/build/_data/candidates/oakland/2018-11-06/pamela-price.json index acdbad4..a0653b1 100644 --- a/build/_data/candidates/oakland/2018-11-06/pamela-price.json +++ b/build/_data/candidates/oakland/2018-11-06/pamela-price.json @@ -1,5 +1,5 @@ { - "id": 60, + "id": 59, "name": "Pamela Price", "photo_url": "Pamela-Price.png", "website_url": "https://www.pamelaprice4mayor.com/", @@ -47,11 +47,11 @@ "Office Expenses": 3000.0, "Campaign Consultants": 20500.0, "Meetings and Appearances": 107.62, - "Campaign Paraphernalia/Misc.": 10862.41, + "Campaign Paraphernalia/Misc.": 10687.41, "Candidate Filing/Ballot Fees": 1000.0, "Campaign Literature and Mailings": 9979.27, "Postage, Delivery and Messenger Services": 487.47, - "Professional Services (Legal, Accounting)": 56621.5, + "Professional Services (Legal, Accounting)": 56496.5, "Information Technology Costs (Internet, E-mail)": 2019.74 }, "supporting_by_type": { diff --git a/build/_data/candidates/oakland/2018-11-06/saied-karamooz.json b/build/_data/candidates/oakland/2018-11-06/saied-karamooz.json index ea1b552..c62f761 100644 --- a/build/_data/candidates/oakland/2018-11-06/saied-karamooz.json +++ b/build/_data/candidates/oakland/2018-11-06/saied-karamooz.json @@ -1,5 +1,5 @@ { - "id": 63, + "id": 62, "name": "Saied Karamooz", "photo_url": "Saied-Karamooz.png", "website_url": "https://everyonesmayor.org/", diff --git a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json index 60021f8..a9a6259 100644 --- a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json +++ b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json @@ -1,5 +1,5 @@ { - "id": 50, + "id": 49, "name": "Sheng Thao", "photo_url": "Sheng-Thao.png", "website_url": "https://www.shengforoakland.com/", @@ -68,13 +68,13 @@ "Office Expenses": 209.18, "Fundraising Events": 1889.43, "Campaign Consultants": 36918.73, - "Meetings and Appearances": 3688.75, + "Meetings and Appearances": 3315.76, "Campaign Paraphernalia/Misc.": 7332.58, "Candidate Filing/Ballot Fees": 1000.0, "Campaign Literature and Mailings": 62177.03, - "Postage, Delivery and Messenger Services": 389.0, + "Postage, Delivery and Messenger Services": 176.0, "Professional Services (Legal, Accounting)": 5400.0, - "Information Technology Costs (Internet, E-mail)": 8136.6 + "Information Technology Costs (Internet, E-mail)": 6630.6 }, "supporting_by_type": { "MON": 5300.0, diff --git a/build/_data/candidates/oakland/2020-11-03/aaron-clay.json b/build/_data/candidates/oakland/2020-11-03/aaron-clay.json index 66e3681..db52467 100644 --- a/build/_data/candidates/oakland/2020-11-03/aaron-clay.json +++ b/build/_data/candidates/oakland/2020-11-03/aaron-clay.json @@ -21,31 +21,20 @@ "is_winner": null, "filer_id": 1428941, "supporting_money": { - "contributions_received": 57292.67, - "total_contributions": 57292.67, - "total_expenditures": 58925.84, - "total_loans_received": 12500.0, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, "total_supporting_independent": 0.0, "support_list": [ ], "contributions_by_type": { - "Individual": 55575.0, - "Unitemized": 3342.67, - "Other (includes Businesses)": 100.0 }, "contributions_by_origin": { - "Out of State": 14275.0, - "Within Oakland": 22500.0, - "Within California": 18900.0 }, - "total_small_contributions": 3542.67, + "total_small_contributions": null, "expenditures_by_type": { - "Office Expenses": 2186.06, - "Campaign Consultants": 10462.5, - "Campaign Paraphernalia/Misc.": 33320.7, - "Postage, Delivery and Messenger Services": 4693.73, - "Professional Services (Legal, Accounting)": 28807.5 }, "supporting_by_type": { } @@ -58,7 +47,7 @@ ] }, - "total_contributions": 57292.67, - "total_expenditures": 58925.84, - "total_loans_received": 12500.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json b/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json index 442c644..555eed9 100644 --- a/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json +++ b/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json @@ -21,61 +21,22 @@ "is_winner": null, "filer_id": 1427828, "supporting_money": { - "contributions_received": 33898.0, - "total_contributions": 33898.0, - "total_expenditures": 27688.48, - "total_loans_received": 0.0, - "total_supporting_independent": 271022.24, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 37188.0, - "Cand_ID": 1427828, - "Filer_ID": "1417455", - "Filer_NamL": "Committee for California" - }, - { - "Total": 17656.23, - "Cand_ID": 1427828, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" - }, - { - "Total": 216178.01, - "Cand_ID": 1427828, - "Filer_ID": "1431009", - "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020" - } + ], "contributions_by_type": { - "Individual": 33525.0, - "Unitemized": 3113.0, - "Self Funding": 2705.0 }, "contributions_by_origin": { - "Out of State": 14640.0, - "Within Oakland": 12074.0, - "Within California": 9516.0 }, - "total_small_contributions": 3236.0, + "total_small_contributions": null, "expenditures_by_type": { - "Campaign Consultants": 7292.0, - "Meetings and Appearances": 106.2, - "Campaign Paraphernalia/Misc.": 1619.38, - "Candidate Filing/Ballot Fees": 1000.0, - "Campaign Literature and Mailings": 22092.4, - "Staff/Spouse Travel, Lodging, and Meals": 111.09, - "Professional Services (Legal, Accounting)": 250.0, - "Information Technology Costs (Internet, E-mail)": 3823.42 }, "supporting_by_type": { - "MON": 500.0, - "Mailer (Estimated Costs)": 30384.0, - "Robo Calls (Estimated Costs)": 481.0, - "Email Blast (Estimated Costs)": 750.0, - "Robos Calls (Estimated Costs)": 323.0, - "Consulting for Mailer/Robo Calls (Estimated Costs)": 3750.0, - "Independent Expenditure Supporting/Opposing Others": 233834.24, - "Research for Mailer/Robo Calls/Emails (Estimated Costs)": 1500.0 } }, "opposing_money": { @@ -86,7 +47,7 @@ ] }, - "total_contributions": 33898.0, - "total_expenditures": 27688.48, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/barbara-parker.json b/build/_data/candidates/oakland/2020-11-03/barbara-parker.json index e3034ef..4286a69 100644 --- a/build/_data/candidates/oakland/2020-11-03/barbara-parker.json +++ b/build/_data/candidates/oakland/2020-11-03/barbara-parker.json @@ -21,31 +21,24 @@ "is_winner": null, "filer_id": 1427469, "supporting_money": { - "contributions_received": 120239.0, - "total_contributions": 120239.0, - "total_expenditures": 98117.09, + "contributions_received": 60500.0, + "total_contributions": 60500.0, + "total_expenditures": 0.0, "total_loans_received": 50000.0, "total_supporting_independent": 0.0, "support_list": [ ], "contributions_by_type": { - "Committee": 1750.0, - "Individual": 71099.0, - "Unitemized": 1530.0, - "Other (includes Businesses)": 1700.0 + "Individual": 10500.0, + "Unitemized": 0.0 }, "contributions_by_origin": { - "Out of State": 3500.0, - "Within Oakland": 33749.0, - "Within California": 37300.0 + "Within Oakland": 9600.0, + "Within California": 900.0 }, - "total_small_contributions": 1580.0, + "total_small_contributions": 0.0, "expenditures_by_type": { - "Campaign Consultants": 59297.68, - "Campaign Paraphernalia/Misc.": 2658.92, - "Candidate Filing/Ballot Fees": 950.0, - "Campaign Literature and Mailings": 88565.9 }, "supporting_by_type": { "MON": 700.0 @@ -59,7 +52,7 @@ ] }, - "total_contributions": 120239.0, - "total_expenditures": 98117.09, + "total_contributions": 60500.0, + "total_expenditures": 0.0, "total_loans_received": 50000.0 } diff --git a/build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json b/build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json index 411a265..d891a84 100644 --- a/build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json +++ b/build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json @@ -21,37 +21,20 @@ "is_winner": null, "filer_id": 1430904, "supporting_money": { - "contributions_received": 13762.58, - "total_contributions": 13762.58, - "total_expenditures": 10295.83, - "total_loans_received": 0.0, - "total_supporting_independent": 56988.77, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 56988.77, - "Cand_ID": 1430904, - "Filer_ID": "1345259", - "Filer_NamL": "Oakland Education Association Political Action Committee" - } + ], "contributions_by_type": { - "Committee": 4100.0, - "Individual": 8041.08, - "Unitemized": 1375.5, - "Other (includes Businesses)": 325.0 }, "contributions_by_origin": { - "Out of State": 300.0, - "Within Oakland": 6825.0, - "Within California": 5341.08 }, - "total_small_contributions": 1475.5, + "total_small_contributions": null, "expenditures_by_type": { - "Not Stated": 6084.14, - "Phone Banks": 650.0, - "Office Expenses": 977.45, - "Campaign Paraphernalia/Misc.": 2977.98, - "Professional Services (Legal, Accounting)": 1705.72 }, "supporting_by_type": { } @@ -64,7 +47,7 @@ ] }, - "total_contributions": 13762.58, - "total_expenditures": 10295.83, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json b/build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json index bccd840..890b11e 100644 --- a/build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json +++ b/build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json @@ -21,49 +21,34 @@ "is_winner": null, "filer_id": 1419930, "supporting_money": { - "contributions_received": 60593.31, - "total_contributions": 60593.31, - "total_expenditures": 48736.28, - "total_loans_received": 0.0, - "total_supporting_independent": 63215.42, + "contributions_received": 30339.31, + "total_contributions": 30339.31, + "total_expenditures": 5610.94, + "total_loans_received": 211.32, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 62211.07, - "Cand_ID": 1419930, - "Filer_ID": "1345259", - "Filer_NamL": "Oakland Education Association Political Action Committee" - }, - { - "Total": 1004.35, - "Cand_ID": 1419930, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { - "Committee": 11350.0, - "Individual": 48611.0, - "Unitemized": 10006.99 + "Committee": 1100.0, + "Individual": 23562.0, + "Unitemized": 5465.99 }, "contributions_by_origin": { - "Out of State": 8070.0, - "Within Oakland": 34571.0, - "Within California": 17320.0 + "Out of State": 2740.0, + "Within Oakland": 15182.0, + "Within California": 6740.0 }, - "total_small_contributions": 11923.99, + "total_small_contributions": 5827.99, "expenditures_by_type": { "Not Stated": 311.93, - "Phone Banks": 595.0, "Contribution": 100.0, - "Civic Donations": 360.0, "Fundraising Events": 257.52, - "Campaign Consultants": 22779.08, + "Campaign Consultants": 2850.0, "Meetings and Appearances": 263.0, - "Campaign Paraphernalia/Misc.": 319.01, - "Candidate Filing/Ballot Fees": 1050.0, - "Campaign Literature and Mailings": 15930.23, - "Postage, Delivery and Messenger Services": 23824.89, - "Professional Services (Legal, Accounting)": 1882.28 + "Campaign Paraphernalia/Misc.": 101.03, + "Campaign Literature and Mailings": 433.26, + "Professional Services (Legal, Accounting)": 689.32 }, "supporting_by_type": { } @@ -76,7 +61,7 @@ ] }, - "total_contributions": 60593.31, - "total_expenditures": 48736.28, - "total_loans_received": 0.0 + "total_contributions": 30339.31, + "total_expenditures": 5610.94, + "total_loans_received": 211.32 } diff --git a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json index 3159d0d..02c0aff 100644 --- a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json +++ b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json @@ -21,81 +21,33 @@ "is_winner": null, "filer_id": 1427585, "supporting_money": { - "contributions_received": 168641.47, - "total_contributions": 168641.47, - "total_expenditures": 59041.32, - "total_loans_received": 0.0, - "total_supporting_independent": 143159.39, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 126668.0, - "Cand_ID": 1427585, - "Filer_ID": "1428015", - "Filer_NamL": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO" - }, - { - "Total": 6329.91, - "Cand_ID": 1427585, - "Filer_ID": "1345259", - "Filer_NamL": "Oakland Education Association Political Action Committee" - }, - { - "Total": 10161.48, - "Cand_ID": 1427585, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { - "Committee": 16900.0, - "Individual": 175236.0, - "Unitemized": 27456.07, - "Self Funding": 465.0, - "Other (includes Businesses)": 2500.0 }, "contributions_by_origin": { - "Out of State": 16785.0, - "Within Oakland": 102161.0, - "Within California": 76155.0 }, - "total_small_contributions": 31820.07, + "total_small_contributions": null, "expenditures_by_type": { - "Print Ads": 3500.0, - "Not Stated": 20016.0, - "Phone Banks": 19557.13, - "Contribution": 11950.0, - "Office Expenses": 11962.79, - "Fundraising Events": 182.0, - "Campaign Consultants": 42237.65, - "Campaign Paraphernalia/Misc.": 22824.84, - "Candidate Filing/Ballot Fees": 1000.0, - "Campaign Literature and Mailings": 39715.32, - "Postage, Delivery and Messenger Services": 25236.71, - "Professional Services (Legal, Accounting)": 9533.51, - "T.V. or Cable Airtime and Production Costs": 10410.0, - "Information Technology Costs (Internet, E-mail)": 23305.35 }, "supporting_by_type": { - "IKD": 507.0, - "MON": 1193.0, - "Independent Expenditure Supporting/Opposing Others": 143159.39 } }, "opposing_money": { - "opposing_expenditures": 23936.0, + "opposing_expenditures": 0.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 23936.0 }, "opposition_list": [ - { - "Total": 23936.0, - "Cand_ID": 1427585, - "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" - } + ] }, - "total_contributions": 168641.47, - "total_expenditures": 59041.32, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/cherisse-gash.json b/build/_data/candidates/oakland/2020-11-03/cherisse-gash.json index 4cf3580..a1c78f3 100644 --- a/build/_data/candidates/oakland/2020-11-03/cherisse-gash.json +++ b/build/_data/candidates/oakland/2020-11-03/cherisse-gash.json @@ -21,35 +21,22 @@ "is_winner": null, "filer_id": 1428671, "supporting_money": { - "contributions_received": 6225.0, - "total_contributions": 6225.0, - "total_expenditures": 1892.0, - "total_loans_received": 0.0, - "total_supporting_independent": 2183.19, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 2183.19, - "Cand_ID": 1428671, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { - "Committee": 2395.0, - "Individual": 3250.0, - "Unitemized": 580.0 }, "contributions_by_origin": { - "Within Oakland": 3645.0, - "Within California": 2000.0 }, - "total_small_contributions": 580.0, + "total_small_contributions": null, "expenditures_by_type": { - "Candidate Filing/Ballot Fees": 1000.0 }, "supporting_by_type": { - "MON": 1700.0, - "Independent Expenditure Supporting/Opposing Others": 2183.19 } }, "opposing_money": { @@ -60,7 +47,7 @@ ] }, - "total_contributions": 6225.0, - "total_expenditures": 1892.0, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json b/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json index f43906f..0060f8d 100644 --- a/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json +++ b/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json @@ -21,67 +21,22 @@ "is_winner": null, "filer_id": 1427679, "supporting_money": { - "contributions_received": 19102.0, - "total_contributions": 19102.0, - "total_expenditures": 19152.0, - "total_loans_received": 0.0, - "total_supporting_independent": 183218.99, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 108840.0, - "Cand_ID": 1427679, - "Filer_ID": "1302433", - "Filer_NamL": "Charter Public Schools Political Action Committee, sponsored by California Charter Schools Association Advocates" - }, - { - "Total": 26673.0, - "Cand_ID": 1427679, - "Filer_ID": "1417455", - "Filer_NamL": "Committee for California" - }, - { - "Total": 33214.74, - "Cand_ID": 1427679, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" - }, - { - "Total": 14491.25, - "Cand_ID": 1427679, - "Filer_ID": "1431009", - "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020" - } + ], "contributions_by_type": { - "Committee": 2750.0, - "Individual": 13830.0, - "Unitemized": 1872.0, - "Other (includes Businesses)": 650.0 }, "contributions_by_origin": { - "Out of State": 1746.0, - "Within Oakland": 8800.0, - "Within California": 6684.0 }, - "total_small_contributions": 1872.0, + "total_small_contributions": null, "expenditures_by_type": { - "Not Stated": 6000.0, - "Civic Donations": 1852.59, - "Office Expenses": 610.5, - "Candidate Filing/Ballot Fees": 1000.0, - "Campaign Literature and Mailings": 5890.07, - "Postage, Delivery and Messenger Services": 527.26, - "Professional Services (Legal, Accounting)": 2619.58, - "Information Technology Costs (Internet, E-mail)": 602.0 }, "supporting_by_type": { - "MON": 2200.0, - "Mailer (Estimated Costs)": 20011.0, - "Robo Calls (Estimated Costs)": 662.0, - "Email Blast (Estimated Costs)": 750.0, - "Consulting for Mailer/Robo Calls (Estimated Costs)": 3750.0, - "Independent Expenditure Supporting/Opposing Others": 47705.99, - "Research for Mailer/Robo Calls/Emails (Estimated Costs)": 1500.0 } }, "opposing_money": { @@ -92,7 +47,7 @@ ] }, - "total_contributions": 19102.0, - "total_expenditures": 19152.0, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/dan-kalb.json b/build/_data/candidates/oakland/2020-11-03/dan-kalb.json index 68f99da..0468774 100644 --- a/build/_data/candidates/oakland/2020-11-03/dan-kalb.json +++ b/build/_data/candidates/oakland/2020-11-03/dan-kalb.json @@ -21,61 +21,41 @@ "is_winner": null, "filer_id": 1420085, "supporting_money": { - "contributions_received": 89681.03, - "total_contributions": 89681.03, - "total_expenditures": 29945.53, - "total_loans_received": 0.0, - "total_supporting_independent": 35507.32, + "contributions_received": 94631.03, + "total_contributions": 94631.03, + "total_expenditures": 28629.48, + "total_loans_received": 1500.0, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 32697.0, - "Cand_ID": 1420085, - "Filer_ID": "1433122", - "Filer_NamL": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021" - }, - { - "Total": 2810.32, - "Cand_ID": 1420085, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { - "Committee": 23588.67, - "Individual": 116820.2, - "Unitemized": 10138.17, - "Self Funding": 228.0, - "Other (includes Businesses)": 7500.0 + "Committee": 10813.67, + "Individual": 71461.39, + "Unitemized": 6205.97, + "Self Funding": 400.0, + "Other (includes Businesses)": 4250.0 }, "contributions_by_origin": { - "Out of State": 8642.34, - "Within Oakland": 62959.82, - "Within California": 76534.71 + "Out of State": 5227.34, + "Within Oakland": 34091.01, + "Within California": 47606.71 }, - "total_small_contributions": 13157.1, + "total_small_contributions": 7324.09, "expenditures_by_type": { - "Print Ads": 385.0, - "Not Stated": 37695.82, - "Contribution": 3170.31, - "Civic Donations": 400.0, - "Office Expenses": 285.15, - "Fundraising Events": 6430.97, - "Campaign Consultants": 31000.0, + "Not Stated": 6091.51, + "Fundraising Events": 2794.46, + "Campaign Consultants": 3500.0, "Meetings and Appearances": 254.63, - "Campaign Workers' Salaries": 16206.74, - "Campaign Paraphernalia/Misc.": 5197.6, - "Candidate Filing/Ballot Fees": 950.0, - "Campaign Literature and Mailings": 41295.24, - "Postage, Delivery and Messenger Services": 414.25, - "Professional Services (Legal, Accounting)": 12426.4, - "Information Technology Costs (Internet, E-mail)": 13261.94, - "Transfer Between Committees of the Same Candidate/sponsor": 9000.0 + "Campaign Paraphernalia/Misc.": 2078.94, + "Campaign Literature and Mailings": 45.0, + "Postage, Delivery and Messenger Services": 304.7, + "Professional Services (Legal, Accounting)": 7648.56, + "Information Technology Costs (Internet, E-mail)": 7227.73 }, "supporting_by_type": { "IKD": 300.0, - "MON": 6200.0, - "Mailer": 32697.0, - "Independent Expenditure Supporting/Opposing Others": 2810.32 + "MON": 3700.0 } }, "opposing_money": { @@ -87,7 +67,7 @@ ] }, - "total_contributions": 89681.03, - "total_expenditures": 29945.53, - "total_loans_received": 0.0 + "total_contributions": 94631.03, + "total_expenditures": 28629.48, + "total_loans_received": 1500.0 } diff --git a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json index 0caa195..eac8e71 100644 --- a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json +++ b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json @@ -21,72 +21,40 @@ "is_winner": null, "filer_id": 1426780, "supporting_money": { - "contributions_received": 115423.0, - "total_contributions": 115423.0, - "total_expenditures": 11578.34, + "contributions_received": 114798.0, + "total_contributions": 114798.0, + "total_expenditures": 8223.08, "total_loans_received": 0.0, - "total_supporting_independent": 308328.0, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 174628.0, - "Cand_ID": 1426780, - "Filer_ID": "1425090", - "Filer_NamL": "Californians for Independent Work, Sponsored by Lyft, Inc." - }, - { - "Total": 133700.0, - "Cand_ID": 1426780, - "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020" - } + ], "contributions_by_type": { - "Committee": 4600.0, - "Individual": 228290.0, - "Unitemized": 12387.98, - "Other (includes Businesses)": 14625.0 + "Individual": 107460.0, + "Unitemized": 4938.0, + "Other (includes Businesses)": 2400.0 }, "contributions_by_origin": { - "Out of State": 19775.0, - "Within Oakland": 138590.0, - "Within California": 89150.0 + "Out of State": 12200.0, + "Within Oakland": 55210.0, + "Within California": 42450.0 }, - "total_small_contributions": 15767.98, + "total_small_contributions": 5538.0, "expenditures_by_type": { - "Print Ads": 9000.0, - "Not Stated": 41635.4, - "Phone Banks": 6102.5, - "Office Expenses": 2558.74, - "Fundraising Events": 4636.13, - "Campaign Consultants": 45016.0, - "Meetings and Appearances": 110.8, - "Campaign Workers' Salaries": 16940.36, - "Campaign Paraphernalia/Misc.": 30377.79, - "Candidate Filing/Ballot Fees": 950.0, - "Campaign Literature and Mailings": 52761.86, - "Candidate Travel, Lodging, and Meals": 44.0, - "Postage, Delivery and Messenger Services": 1382.5, - "Professional Services (Legal, Accounting)": 12246.97, - "T.V. or Cable Airtime and Production Costs": 1825.0, - "Information Technology Costs (Internet, E-mail)": 31516.84 + "Office Expenses": 2153.18 }, "supporting_by_type": { } }, "opposing_money": { - "opposing_expenditures": 22991.74, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ - { - "Total": 22991.74, - "Cand_ID": 1426780, - "Filer_ID": "1428015", - "Filer_NamL": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO" - } + ] }, - "total_contributions": 115423.0, - "total_expenditures": 11578.34, + "total_contributions": 114798.0, + "total_expenditures": 8223.08, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2020-11-03/eli-ferran.json b/build/_data/candidates/oakland/2020-11-03/eli-ferran.json index 497cfe3..f32a0e5 100644 --- a/build/_data/candidates/oakland/2020-11-03/eli-ferran.json +++ b/build/_data/candidates/oakland/2020-11-03/eli-ferran.json @@ -21,49 +21,32 @@ "is_winner": null, "filer_id": 1426949, "supporting_money": { - "contributions_received": 67318.37, - "total_contributions": 67318.37, - "total_expenditures": 36927.4, - "total_loans_received": 16601.42, - "total_supporting_independent": 105552.0, + "contributions_received": 36036.37, + "total_contributions": 36036.37, + "total_expenditures": 2938.15, + "total_loans_received": 0.0, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 105552.0, - "Cand_ID": 1426949, - "Filer_ID": "1344093", - "Filer_NamL": "NATIONAL ASSOCIATION OF REALTORS FUND (NONPROFIT 527 ORGANIZATION)" - } + ], "contributions_by_type": { - "Committee": 16550.0, - "Individual": 67420.01, - "Unitemized": 5677.36, - "Other (includes Businesses)": 8700.0 + "Individual": 24455.01, + "Unitemized": 2241.36, + "Other (includes Businesses)": 600.0 }, "contributions_by_origin": { - "Out of State": 13075.0, - "Within Oakland": 36525.0, - "Within California": 43070.01 + "Out of State": 4030.0, + "Within Oakland": 12025.0, + "Within California": 9000.01 }, - "total_small_contributions": 6617.36, + "total_small_contributions": 2391.36, "expenditures_by_type": { - "Not Stated": 23799.44, - "Phone Banks": 395.67, - "Fundraising Events": 3292.09, - "Campaign Consultants": 15000.0, - "Campaign Workers' Salaries": 29191.82, - "Campaign Paraphernalia/Misc.": 2813.21, - "Candidate Filing/Ballot Fees": 1000.0, - "Campaign Literature and Mailings": 28577.82, - "Professional Services (Legal, Accounting)": 9657.29, - "T.V. or Cable Airtime and Production Costs": 1462.0, - "Information Technology Costs (Internet, E-mail)": 7328.03 + "Not Stated": 675.0, + "Fundraising Events": 518.15, + "Professional Services (Legal, Accounting)": 500.0, + "Information Technology Costs (Internet, E-mail)": 495.0 }, "supporting_by_type": { - "MON": 1700.0, - "POLLING": 16220.0, - "ONLINE ADS": 82250.0, - "VOTER FILE": 7082.0 } }, "opposing_money": { @@ -74,7 +57,7 @@ ] }, - "total_contributions": 67318.37, - "total_expenditures": 36927.4, - "total_loans_received": 16601.42 + "total_contributions": 36036.37, + "total_expenditures": 2938.15, + "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2020-11-03/faye-taylor.json b/build/_data/candidates/oakland/2020-11-03/faye-taylor.json index 87765ec..7f7c8fd 100644 --- a/build/_data/candidates/oakland/2020-11-03/faye-taylor.json +++ b/build/_data/candidates/oakland/2020-11-03/faye-taylor.json @@ -21,27 +21,20 @@ "is_winner": null, "filer_id": 1427385, "supporting_money": { - "contributions_received": 2250.0, - "total_contributions": 2250.0, - "total_expenditures": 2537.78, - "total_loans_received": 0.0, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, "total_supporting_independent": 0.0, "support_list": [ ], "contributions_by_type": { - "Individual": 300.0, - "Unitemized": 0.0, - "Self Funding": 1950.0 }, "contributions_by_origin": { - "Within Oakland": 1950.0, - "Within California": 300.0 }, - "total_small_contributions": 0.0, + "total_small_contributions": null, "expenditures_by_type": { - "Print Ads": 2325.0, - "Office Expenses": 162.78 }, "supporting_by_type": { } @@ -54,7 +47,7 @@ ] }, - "total_contributions": 2250.0, - "total_expenditures": 2537.78, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json b/build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json index 2f4a605..38972f8 100644 --- a/build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json +++ b/build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json @@ -21,31 +21,25 @@ "is_winner": null, "filer_id": 1427022, "supporting_money": { - "contributions_received": 15229.0, - "total_contributions": 15229.0, - "total_expenditures": 5450.03, - "total_loans_received": 2500.0, + "contributions_received": 3334.0, + "total_contributions": 3334.0, + "total_expenditures": 38.04, + "total_loans_received": 0.0, "total_supporting_independent": 0.0, "support_list": [ ], "contributions_by_type": { - "Individual": 11990.0, - "Unitemized": 1339.0, - "Other (includes Businesses)": 1300.0 + "Individual": 2825.0, + "Unitemized": 509.0 }, "contributions_by_origin": { - "Out of State": 550.0, - "Within Oakland": 7665.0, - "Within California": 5075.0 + "Out of State": 100.0, + "Within Oakland": 1125.0, + "Within California": 1600.0 }, - "total_small_contributions": 1914.0, + "total_small_contributions": 534.0, "expenditures_by_type": { - "Not Stated": 167.56, - "Campaign Consultants": 2000.0, - "Campaign Literature and Mailings": 4217.1, - "Professional Services (Legal, Accounting)": 1140.0, - "Information Technology Costs (Internet, E-mail)": 2863.75 }, "supporting_by_type": { } @@ -58,7 +52,7 @@ ] }, - "total_contributions": 15229.0, - "total_expenditures": 5450.03, - "total_loans_received": 2500.0 + "total_contributions": 3334.0, + "total_expenditures": 38.04, + "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2020-11-03/kristina-molina.json b/build/_data/candidates/oakland/2020-11-03/kristina-molina.json index 2ce76e7..3f2da7e 100644 --- a/build/_data/candidates/oakland/2020-11-03/kristina-molina.json +++ b/build/_data/candidates/oakland/2020-11-03/kristina-molina.json @@ -25,14 +25,9 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 2183.19, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 2183.19, - "Cand_ID": 1426942, - "Filer_ID": "1332115", - "Filer_NamL": "Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund" - } + ], "contributions_by_type": { }, @@ -42,8 +37,6 @@ "expenditures_by_type": { }, "supporting_by_type": { - "MON": 800.0, - "Independent Expenditure Supporting/Opposing Others": 2183.19 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json b/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json index 81c27a9..24677a5 100644 --- a/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json +++ b/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json @@ -21,62 +21,22 @@ "is_winner": null, "filer_id": 1431908, "supporting_money": { - "contributions_received": 41891.65, - "total_contributions": 41891.65, - "total_expenditures": 27700.28, - "total_loans_received": 0.0, - "total_supporting_independent": 180582.13, + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 25297.0, - "Cand_ID": 1431908, - "Filer_ID": "1417455", - "Filer_NamL": "Committee for California" - }, - { - "Total": 137796.16, - "Cand_ID": 1431908, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" - }, - { - "Total": 17488.97, - "Cand_ID": 1431908, - "Filer_ID": "1431009", - "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020" - } + ], "contributions_by_type": { - "Committee": 700.0, - "Individual": 41204.85, - "Unitemized": 4865.8, - "Other (includes Businesses)": 1901.05 }, "contributions_by_origin": { - "Out of State": 6154.05, - "Within Oakland": 22909.96, - "Within California": 14741.89 }, - "total_small_contributions": 5290.8, + "total_small_contributions": null, "expenditures_by_type": { - "Print Ads": 600.0, - "Phone Banks": 3000.0, - "Campaign Workers' Salaries": 11000.0, - "Polling and Survey Research": 1787.9, - "Campaign Paraphernalia/Misc.": 4422.49, - "Campaign Literature and Mailings": 23591.65, - "Postage, Delivery and Messenger Services": 525.0, - "Professional Services (Legal, Accounting)": 1160.7, - "Information Technology Costs (Internet, E-mail)": 450.0 }, "supporting_by_type": { - "MON": 500.0, - "Mailer (Estimated Costs)": 18707.0, - "Robo Calls (Estimated Costs)": 590.0, - "Email Blast (Estimated Costs)": 750.0, - "Consulting for Mailer/Robo Calls (Estimated Costs)": 3750.0, - "Independent Expenditure Supporting/Opposing Others": 17488.97, - "Research for Mailer/Robo Calls/Emails (Estimated Costs)": 1500.0 } }, "opposing_money": { @@ -87,7 +47,7 @@ ] }, - "total_contributions": 41891.65, - "total_expenditures": 27700.28, - "total_loans_received": 0.0 + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json index 9855fc6..2545105 100644 --- a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json +++ b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json @@ -25,60 +25,39 @@ "total_contributions": 58913.88, "total_expenditures": 10648.92, "total_loans_received": 1.0, - "total_supporting_independent": 91171.0, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 91171.0, - "Cand_ID": 1421347, - "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" - } + ], "contributions_by_type": { ```
dependabot[bot] commented 2 years ago

Superseded by #292.