myl-fech 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. data/.gitignore +7 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +48 -0
  5. data/LICENSE +13 -0
  6. data/README.rdoc +82 -0
  7. data/Rakefile +3 -0
  8. data/autotest/discover.rb +1 -0
  9. data/fech.gemspec +40 -0
  10. data/lib/fech/comparison.rb +36 -0
  11. data/lib/fech/csv.rb +70 -0
  12. data/lib/fech/default_translations.rb +133 -0
  13. data/lib/fech/fech_utils.rb +76 -0
  14. data/lib/fech/filing.rb +341 -0
  15. data/lib/fech/map_generator.rb +233 -0
  16. data/lib/fech/mapped.rb +38 -0
  17. data/lib/fech/mappings.rb +67 -0
  18. data/lib/fech/rendered_maps.rb +238 -0
  19. data/lib/fech/translator.rb +138 -0
  20. data/lib/fech/version.rb +3 -0
  21. data/lib/fech.rb +15 -0
  22. data/sources/F1.csv +106 -0
  23. data/sources/F1M.csv +78 -0
  24. data/sources/F2.csv +43 -0
  25. data/sources/F24.csv +18 -0
  26. data/sources/F3.csv +1 -0
  27. data/sources/F3L.csv +27 -0
  28. data/sources/F3P.csv +208 -0
  29. data/sources/F3P31.csv +39 -0
  30. data/sources/F3PS.csv +94 -0
  31. data/sources/F3S.csv +36 -0
  32. data/sources/F3X.csv +125 -0
  33. data/sources/F4.csv +86 -0
  34. data/sources/F5.csv +39 -0
  35. data/sources/F56.csv +33 -0
  36. data/sources/F57.csv +44 -0
  37. data/sources/F6.csv +1 -0
  38. data/sources/F65.csv +1 -0
  39. data/sources/F7.csv +1 -0
  40. data/sources/F76.csv +1 -0
  41. data/sources/F9.csv +46 -0
  42. data/sources/F91.csv +17 -0
  43. data/sources/F92.csv +23 -0
  44. data/sources/F93.csv +27 -0
  45. data/sources/F94.csv +18 -0
  46. data/sources/F99.csv +1 -0
  47. data/sources/H1.csv +1 -0
  48. data/sources/H2.csv +1 -0
  49. data/sources/H3.csv +1 -0
  50. data/sources/H4.csv +1 -0
  51. data/sources/H5.csv +1 -0
  52. data/sources/H6.csv +1 -0
  53. data/sources/HDR.csv +10 -0
  54. data/sources/SchA.csv +50 -0
  55. data/sources/SchB.csv +50 -0
  56. data/sources/SchC.csv +41 -0
  57. data/sources/SchC1.csv +52 -0
  58. data/sources/SchC2.csv +19 -0
  59. data/sources/SchD.csv +34 -0
  60. data/sources/SchE.csv +57 -0
  61. data/sources/SchF.csv +55 -0
  62. data/sources/SchL.csv +1 -0
  63. data/sources/TEXT.csv +1 -0
  64. data/sources/headers/3.csv +1 -0
  65. data/sources/headers/5.0.csv +1 -0
  66. data/sources/headers/5.1.csv +1 -0
  67. data/sources/headers/5.2.csv +1 -0
  68. data/sources/headers/5.3.csv +1 -0
  69. data/sources/headers/6.1.csv +1 -0
  70. data/sources/headers/6.2.csv +1 -0
  71. data/sources/headers/6.3.csv +1 -0
  72. data/sources/headers/6.4.csv +1 -0
  73. data/sources/headers/7.0.csv +49 -0
  74. data/sources/headers/8.0.csv +49 -0
  75. data/sources/headers/ignore.csv +5 -0
  76. data/spec/comparison_spec.rb +30 -0
  77. data/spec/data/467627.fec +608 -0
  78. data/spec/data/723604.fec +4 -0
  79. data/spec/data/730635.fec +2 -0
  80. data/spec/data/747058.fec +4 -0
  81. data/spec/data/748730.fec +1196 -0
  82. data/spec/data/752356.fec +5 -0
  83. data/spec/data/753533.fec +7 -0
  84. data/spec/data/764901.fec +7 -0
  85. data/spec/data/765310.fec +2 -0
  86. data/spec/data/767339.fec +648 -0
  87. data/spec/data/82094.fec +144 -0
  88. data/spec/data/97405.fec +10 -0
  89. data/spec/default_translations_spec.rb +104 -0
  90. data/spec/fech_utils_spec.rb +29 -0
  91. data/spec/filing_spec.rb +314 -0
  92. data/spec/map_generator_spec.rb +49 -0
  93. data/spec/mapped_spec.rb +44 -0
  94. data/spec/mappings_spec.rb +46 -0
  95. data/spec/sources/F24.csv +18 -0
  96. data/spec/sources/F3P.csv +1 -0
  97. data/spec/sources/F3P31.csv +39 -0
  98. data/spec/sources/SchA.csv +1 -0
  99. data/spec/sources/SchB.csv +1 -0
  100. data/spec/sources/SchC.csv +1 -0
  101. data/spec/sources/headers/3.csv +1 -0
  102. data/spec/sources/headers/5.0.csv +1 -0
  103. data/spec/sources/headers/5.1.csv +1 -0
  104. data/spec/sources/headers/5.2.csv +1 -0
  105. data/spec/sources/headers/5.3.csv +1 -0
  106. data/spec/sources/headers/6.1.csv +1 -0
  107. data/spec/sources/headers/6.2.csv +1 -0
  108. data/spec/sources/headers/6.3.csv +1 -0
  109. data/spec/sources/headers/6.4.csv +1 -0
  110. data/spec/sources/headers/7.0.csv +1 -0
  111. data/spec/sources/headers/8.0.csv +49 -0
  112. data/spec/sources/headers/ignore.csv +5 -0
  113. data/spec/sources/sa.csv +1 -0
  114. data/spec/spec_helper.rb +9 -0
  115. data/spec/translator_spec.rb +195 -0
  116. data/tasks/fech.rake +41 -0
  117. metadata +342 -0
data/sources/F3P.csv ADDED
@@ -0,0 +1,208 @@
1
+ canonical,^7.0|8.0,,^6.4|6.3|6.2|6.1,,^5.3|5.2,,^5.1|5.0|3,
2
+ form_type,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE
3
+ filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID,2,FILER FEC CMTE ID
4
+ committee_name,3,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEENAME,3,COMMITTEENAME
5
+ change_of_address,4,CHANGE OF ADDRESS,4,CHANGE OF ADDRESS,9,CHG OF ADDRESS,9,CHG OF ADDRESS
6
+ street_1,5,STREET 1,5,STREET 1,4,STREET 1,4,STREET 1
7
+ street_2,6,STREET 2,6,STREET 2,5,STREET 2,5,STREET 2
8
+ city,7,CITY,7,CITY,6,CITY,6,CITY
9
+ state,8,STATE,8,STATE,7,STATE,7,STATE
10
+ zip_code,9,ZIP,9,ZIP,8,ZIP,8,ZIP
11
+ activity_primary,10,ACTIVITY PRIMARY,10,ACTIVITY PRIMARY,10,ACTIVITY PRIMARY,10,ACTIVITY PRIMARY
12
+ activity_general,11,ACTIVITY GENERAL,11,ACTIVITY GENERAL,11,ACTIVITY GENERAL,11,ACTIVITY GENERAL
13
+ report_code,12,REPORT CODE,12,REPORT CODE,12,RPTCODE,12,RPTCODE
14
+ election_code,13,ELECTION CODE {was RPTPGI},13,ELECTION CODE {was RPTPGI},13,RPTPGI,13,RPTPGI
15
+ date_of_election,14,DATE OF ELECTION,14,DATE OF ELECTION,14,DATE (Of Election),14,DATE (Of Election)
16
+ state_of_election,15,STATE OF ELECTION,15,STATE OF ELECTION,15,STATE (Of Election),15,STATE (Of Election)
17
+ coverage_from_date,16,COVERAGE FROM DATE,16,COVERAGE FROM DATE,16,DATE (Coverage From),16,DATE (Coverage From)
18
+ coverage_through_date,17,COVERAGE THROUGH DATE,17,COVERAGE THROUGH DATE,17,DATE (Coverage To),17,DATE (Coverage To)
19
+ treasurer_name,,,,,197,NAME/TREASURER (as signed),197,NAME/TREASURER (as signed)
20
+ treasurer_last_name,18,TREASURER LAST NAME,18,TREASURER LAST NAME,,,,
21
+ treasurer_first_name,19,TREASURER FIRST NAME,19,TREASURER FIRST NAME,,,,
22
+ treasurer_middle_name,20,TREASURER MIDDLE NAME,20,TREASURER MIDDLE NAME,,,,
23
+ treasurer_prefix,21,TREASURER PREFIX,21,TREASURER PREFIX,,,,
24
+ treasurer_suffix,22,TREASURER SUFFIX,22,TREASURER SUFFIX,,,,
25
+ date_signed,23,DATE SIGNED,23,DATE SIGNED,198,DATE (Signed),198,DATE (Signed)
26
+ col_a_cash_on_hand_beginning_period,24,6. Cash on Hand Beginning Period,24,6. Cash on Hand Beginning Period,18,6. Cash on Hand Beginning Period,18,6. Cash on Hand Beginning Period
27
+ col_a_total_receipts,25,7. Total Receipts,25,7. Total Receipts,19,7. Total Receipts,19,7. Total Receipts
28
+ col_a_subtotal,26,8. Subtotal,26,8. SubTotal,20,8. SubTotal,20,8. SubTotal
29
+ col_a_total_disbursements,27,9. Total Disbursements,27,9. Total Disbursements,21,9. Total Disbursements,21,9. Total Disbursements
30
+ col_a_cash_on_hand_close_of_period,28,10. Cash on Hand Close of Period,28,10. Cash on Hand Close of Period,22,10. Cash on Hand Close of Period,22,10. Cash on Hand Close of Period
31
+ col_a_debts_to,29,11. Debts to,29,11. Debts to,23,11. Debts to,23,11. Debts to
32
+ col_a_debts_by,30,12. Debts by,30,12. Debts by,24,12. Debts by,24,12. Debts by
33
+ col_a_expenditures_subject_to_limits,31,13. Expenditures Subject to Limits,31,13. Expenditures Subject to Limits,25,13. Expenditures Subject to Limits,25,13. Expenditures Subject to Limits
34
+ col_a_net_contributions,32,14. Net Contributions,32,14. Net Contributions,26,14. Net Contributions,26,14. Net Contributions
35
+ col_a_net_operating_expenditures,33,15. Net Operating Expenditures,33,15. Net Operating Expenditures,27,15. Net Operating Expenditures,27,15. Net Operating Expenditures
36
+ col_a_federal_funds,34,16. Federal Funds,34,16. Federal Funds,28,16. Federal Funds,28,16. Federal Funds
37
+ col_a_individuals_itemized,35,17(a.i) Individuals Itemized,,,,,,
38
+ col_a_individuals_unitemized,36,17(a.ii) Individuals Unitemized,,,,,,
39
+ col_a_individual_contribution_total,37,17(a.iii) Individual Contribution Total,35,17(a) Individuals,29,17(a) Individuals,29,17(a) Individuals
40
+ col_a_political_party_committees_receipts,38,17(b) Political Party Committees,36,17(b) Political Party Committees,30,17(b) Political Party Committees,30,17(b) Political Party Committees
41
+ col_a_other_political_committees_pacs,39,17(c) Other Political Committees (PACs),37,17(c) Other Political Committees (PACs),31,17(c) Other Political Committees (PACs),31,17(c) Other Political Committees (PACs)
42
+ col_a_the_candidate,40,17(d) The Candidate,38,17(d) The Candidate,32,17(d) The Candidate,32,17(d) The Candidate
43
+ col_a_total_contributions,41,17(e) Total Contributions,39,17(e) Total Contributions,33,17(e) Total Contributions,33,17(e) Total Contributions
44
+ col_a_transfers_from_aff_other_party_cmttees,42,18. Transfers From Aff/Other Party Cmttees,40,18. Transfers From Aff/Other Party Cmttees,34,18. Transfers From Aff/Other Party Cmttees,34,18. Transfers From Aff/Other Party Committees
45
+ col_a_received_from_or_guaranteed_by_cand,43,19(a) Received from or Guaranteed by Cand.,41,19(a) Received from or Guaranteed by Cand.,35,19(a) Received from or Guaranteed by Cand.,35,19(a) Received from or Guaranteed by Candidate
46
+ col_a_other_loans,44,19(b) Other Loans,42,19(b) Other Loans,36,19(b) Other Loans,36,19(b) Other Loans
47
+ col_a_total_loans,45,19(c) Total Loans,43,19(c) Total Loans,37,19(c) Total Loans,37,19(c) Total Loans
48
+ col_a_operating,46,20(a) Operating,44,20(a) Operating,38,20(a) Operating,38,20(a) Operating
49
+ col_a_fundraising,47,20(b) Fundraising,45,20(b) Fundraising,39,20(b) Fundraising,39,20(b) Fundraising
50
+ col_a_legal_and_accounting,48,20(c) Legal and Accounting,46,20(c) Legal and Accounting,40,20(c) Legal and Accounting,40,20(c) Legal and Accounting
51
+ col_a_total_offsets_to_expenditures,49,20(d) Total offsets to Expenditures,47,20(d) Total offsets to Expenditures,41,20(d) Total offsets to Expenditures,41,20(d) Total offsets to Expenditures
52
+ col_a_other_receipts,50,21. Other Receipts,48,21. Other Receipts,42,21. Other Receipts,42,21. Other Receipts
53
+ col_a_total_receipts,51,22. Total Receipts,49,22. Total Receipts,43,22. Total Receipts,43,22. Total Receipts
54
+ col_a_operating_expenditures,52,23. Operating Expenditures,50,23. Operating Expenditures,44,23. Operating Expenditures,44,23. Operating Expenditures
55
+ col_a_transfers_to_other_authorized_committees,53,24. Transfers to Other Authorized Committees,51,24. Transfers to Other Authorized Committees,45,24. Transfers to Other Authorized Committees,45,24. Transfers to Other Authorized Committees
56
+ col_a_fundraising_disbursements,54,25. Fundraising Disbursements,52,25. Fundraising Disbursements,46,25. Fundraising Disbursements,46,25. Fundraising Disbursements
57
+ col_a_exempt_legal_accounting_disbursement,55,26. Exempt Legal & Accounting Disbursement,53,26. Exempt Legal & Accounting Disbursement,47,26. Exempt Legal & Accounting Disbursement,47,26. Exempt Legal and Accounting Disbursements
58
+ col_a_made_or_guaranteed_by_candidate,56,27(a) Made or guaranteed by Candidate,54,27(a) Made or guaranteed by Candidate,48,27(a) Made or guaranteed by Candidate,48,27(a) Made or guaranteed by Candidate
59
+ col_a_other_repayments,57,27(b) Other Repayments,55,27(b) Other Repayments,49,27(b) Other Repayments,49,27(b) Other Repayments
60
+ col_a_total_loan_repayments_made,58,27(c) Total Loan Repayments Made,56,27(c) Total Loan Repayments Made,50,27(c) Total Loan Repayments Made,50,27(c) Total Loan Repayments Made
61
+ col_a_individuals,59,28(a) Individuals,57,28(a) Individuals,51,28(a) Individuals,51,28(a) Individuals
62
+ col_a_political_party_committees_refunds,60,28(b) Political Party Committees,58,28(b) Political Party Committees,52,28(b) Political Party Committees,52,28(b) Political Party Committees
63
+ col_a_other_political_committees,61,28(c) Other Political Committees,59,28(c) Other Political Committees,53,28(c) Other Political Committees,53,28(c) Other Political Committees
64
+ col_a_total_contributions_refunds,62,28(d) Total Contributions Refunds,60,28(d) Total Contributions Refunds,54,28(d) Total Contributions Refunds,54,28(d) Total Contributions Refunds
65
+ col_a_other_disbursements,63,29. Other Disbursements,61,29. Other Disbursements,55,29. Other Disbursements,55,29. Other Disbursements
66
+ col_a_total_disbursements,64,30. Total Disbursements,62,30. Total Disbursements,56,30. Total Disbursements,56,30. Total Disbursements
67
+ col_a_items_on_hand_to_be_liquidated,65,31. Items on Hand to be Liquidated,63,31. Items on Hand to be Liquidated,57,31. Items on Hand to be Liquidated,57,31. Items on Hand to be Liquidated
68
+ col_a_alabama,66,ALABAMA,64,ALABAMA,58,ALABAMA,58,ALABAMA
69
+ col_a_alaska,67,ALASKA,65,ALASKA,59,ALASKA,59,ALASKA
70
+ col_a_arizona,68,ARIZONA,66,ARIZONA,60,ARIZONA,60,ARIZONA
71
+ col_a_arkansas,69,ARKANSAS,67,ARKANSAS,61,ARKANSAS,61,ARKANSAS
72
+ col_a_california,70,CALIFORNIA,68,CALIFORNIA,62,CALIFORNIA,62,CALIFORNIA
73
+ col_a_colorado,71,COLORADO,69,COLORADO,63,COLORADO,63,COLORADO
74
+ col_a_connecticut,72,CONNECTICUT,70,CONNECTICUT,64,CONNECTICUT,64,CONNECTICUT
75
+ col_a_delaware,73,DELAWARE,71,DELAWARE,65,DELAWARE,65,DELAWARE
76
+ col_a_dist_of_columbia,74,DIST OF COLUMBIA,72,DIST OF COLUMBIA,66,DIST OF COLUMBIA,66,DIST OF COLUMBIA
77
+ col_a_florida,75,FLORIDA,73,FLORIDA,67,FLORIDA,67,FLORIDA
78
+ col_a_georgia,76,GEORGIA,74,GEORGIA,68,GEORGIA,68,GEORGIA
79
+ col_a_hawaii,77, HAWAII,75, HAWAII,69, HAWAII,69, HAWAII
80
+ col_a_idaho,78,IDAHO,76,IDAHO,70,IDAHO,70,IDAHO
81
+ col_a_illinois,79,ILLINOIS,77,ILLINOIS,71,ILLINOIS,71,ILLINOIS
82
+ col_a_indiana,80,INDIANA,78,INDIANA,72,INDIANA,72,INDIANA
83
+ col_a_iowa,81,IOWA,79,IOWA,73,IOWA,73,IOWA
84
+ col_a_kansas,82,KANSAS,80,KANSAS,74,KANSAS,74,KANSAS
85
+ col_a_kentucky,83,KENTUCKY,81,KENTUCKY,75,KENTUCKY,75,KENTUCKY
86
+ col_a_louisiana,84,LOUISIANA,82,LOUISIANA,76,LOUISIANA,76,LOUISIANA
87
+ col_a_maine,85,MAINE,83,MAINE,77,MAINE,77,MAINE
88
+ col_a_maryland,86,MARYLAND,84,MARYLAND,78,MARYLAND,78,MARYLAND
89
+ col_a_massachusetts,87,MASSACHUSETTS,85,MASSACHUSETTS,79,MASSACHUSETTS,79,MASSACHUSETTS
90
+ col_a_michigan,88,MICHIGAN,86,MICHIGAN,80,MICHIGAN,80,MICHIGAN
91
+ col_a_minnesota,89,MINNESOTA,87,MINNESOTA,81,MINNESOTA,81,MINNESOTA
92
+ col_a_mississippi,90,MISSISSIPPI,88,MISSISSIPPI,82,MISSISSIPPI,82,MISSISSIPPI
93
+ col_a_missouri,91,MISSOURI,89,MISSOURI,83,MISSOURI,83,MISSOURI
94
+ col_a_montana,92, MONTANA,90, MONTANA,84, MONTANA,84, MONTANA
95
+ col_a_nebraska,93,NEBRASKA,91,NEBRASKA,85,NEBRASKA,85,NEBRASKA
96
+ col_a_nevada,94,NEVADA,92,NEVADA,86,NEVADA,86,NEVADA
97
+ col_a_new_hampshire,95,NEW HAMPSHIRE,93,NEW HAMPSHIRE,87,NEW HAMPSHIRE,87,NEW HAMPSHIRE
98
+ col_a_new_jersey,96,NEW JERSEY,94,NEW JERSEY,88,NEW JERSEY,88,NEW JERSEY
99
+ col_a_new_mexico,97,NEW MEXICO,95,NEW MEXICO,89,NEW MEXICO,89,NEW MEXICO
100
+ col_a_new_york,98,NEW YORK,96,NEW YORK,90,NEW YORK,90,NEW YORK
101
+ col_a_north_carolina,99,NORTH CAROLINA,97,NORTH CAROLINA,91,NORTH CAROLINA,91,NORTH CAROLINA
102
+ col_a_north_dakota,100,NORTH DAKOTA,98,NORTH DAKOTA,92,NORTH DAKOTA,92,NORTH DAKOTA
103
+ col_a_ohio,101,OHIO,99,OHIO,93,OHIO,93,OHIO
104
+ col_a_oklahoma,102,OKLAHOMA,100,OKLAHOMA,94,OKLAHOMA,94,OKLAHOMA
105
+ col_a_oregon,103,OREGON,101,OREGON,95,OREGON,95,OREGON
106
+ col_a_pennsylvania,104,PENNSYLVANIA,102,PENNSYLVANIA,96,PENNSYLVANIA,96,PENNSYLVANIA
107
+ col_a_rhode_island,105,RHODE ISLAND,103,RHODE ISLAND,97,RHODE ISLAND,97,RHODE ISLAND
108
+ col_a_south_carolina,106,SOUTH CAROLINA,104,SOUTH CAROLINA,98,SOUTH CAROLINA,98,SOUTH CAROLINA
109
+ col_a_south_dakota,107,SOUTH DAKOTA,105,SOUTH DAKOTA,99,SOUTH DAKOTA,99,SOUTH DAKOTA
110
+ col_a_tennessee,108,TENNESSEE,106,TENNESSEE,100,TENNESSEE,100,TENNESSEE
111
+ col_a_texas,109,TEXAS,107,TEXAS,101,TEXAS,101,TEXAS
112
+ col_a_utah,110,UTAH,108,UTAH,102,UTAH,102,UTAH
113
+ col_a_vermont,111,VERMONT,109,VERMONT,103,VERMONT,103,VERMONT
114
+ col_a_virginia,112,VIRGINIA,110,VIRGINIA,104,VIRGINIA,104,VIRGINIA
115
+ col_a_washington,113,WASHINGTON,111,WASHINGTON,105,WASHINGTON,105,WASHINGTON
116
+ col_a_west_virginia,114,WEST VIRGINIA,112,WEST VIRGINIA,106,WEST VIRGINIA,106,WEST VIRGINIA
117
+ col_a_wisconsin,115,WISCONSIN,113,WISCONSIN,107,WISCONSIN,107,WISCONSIN
118
+ col_a_wyoming,116,WYOMING,114,WYOMING,108,WYOMING,108,WYOMING
119
+ col_a_puerto_rico,117,PUERTO RICO,115,PUERTO RICO,109,PUERTO RICO,109,PUERTO RICO
120
+ col_a_guam,118,GUAM,116,GUAM,110,GUAM,110,GUAM
121
+ col_a_virgin_islands,119,VIRGIN ISLANDS,117,VIRGIN ISLANDS,111,VIRGIN ISLANDS,111,VIRGIN ISLANDS
122
+ col_a_totals,120,TOTALS,118,TOTALS,112,TOTALS,112,TOTALS
123
+ col_b_federal_funds,121,16. Federal Funds,119,16. Federal Funds,113,16. Federal Funds,113,16. Federal Funds
124
+ col_b_individuals_itemized,122,17(a.i) Individuals Itemized,,,,,,
125
+ col_b_individuals_unitemized,123,17(a.ii) Individuals Unitemized,,,,,,
126
+ col_b_individual_contribution_total,124,17(a.iii) Individual Contribution Total,120,17(a) Individuals,114,17(a) Individuals,114,17(a) Individuals
127
+ col_b_political_party_committees_receipts,125,17(b) Political Party Committees,121,17(b) Political Party Committees,115,17(b) Political Party Committees,115,17(b) Political Party Committees
128
+ col_b_other_political_committees_pacs,126,17(c) Other Political Committees (PACs),122,17(c) Other Political Committees (PACs),116,17(c) Other Political Committees (PACs),116,17(c) Other Political Committees (PACs)
129
+ col_b_the_candidate,127,17(d) The Candidate,123,17(d) The Candidate,117,17(d) The Candidate,117,17(d) The Candidate
130
+ col_b_total_contributions_other_than_loans,128,17(e) Total contributions (Other than Loans),124,17(e) Total contributions (Other than Loans),118,17(e) Total contributions (Other than Loans),118,17(e) Total contributions (Other than Loans)
131
+ col_b_transfers_from_aff_other_party_cmttees,129,18. Transfers From Aff/Other Party Cmttees,125,18. Transfers From Aff/Other Party Cmttees,119,18. Transfers From Aff/Other Party Cmttees,119,18. Transfers From Aff/Other Party Committees
132
+ col_b_received_from_or_guaranteed_by_cand,130,19(a) Received from or Guaranteed by Cand.,126,19(a) Received from or Guaranteed by Cand.,120,19(a) Received from or Guaranteed by Cand.,120,19(a) Received from or Guaranteed by Candidate
133
+ col_b_other_loans,131,19(b) Other Loans,127,19(b) Other Loans,121,19(b) Other Loans,121,19(b) Other Loans
134
+ col_b_total_loans,132,19(c) Total Loans,128,19(c) Total Loans,122,19(c) Total Loans,122,19(c) Total Loans
135
+ col_b_operating,133,20(a) Operating,129,20(a) Operating,123,20(a) Operating,123,20(a) Operating
136
+ col_b_fundraising,134,20(b) Fundraising,130,20(b) Fundraising,124,20(b) Fundraising,124,20(b) Fundraising
137
+ col_b_legal_and_accounting,135,20(c) Legal and Accounting,131,20(c) Legal and Accounting,125,20(c) Legal and Accounting,125,20(c) Legal and Accounting
138
+ col_b_total_offsets_to_operating_expenditures,136,20(d) Total Offsets to Operating Expenditures,132,20(d) Total Offsets to Operating Expenditures,126,20(d) Total Offsets to Operating Expenditures,126,20(d) Total Offsets to Operating Expenditures
139
+ col_b_other_receipts,137,21. Other Receipts,133,21. Other Receipts,127,21. Other Receipts,127,21. Other Receipts
140
+ col_b_total_receipts,138,22. Total Receipts,134,22. Total Receipts,128,22. Total Receipts,128,22. Total Receipts
141
+ col_b_operating_expenditures,139,23. Operating Expenditures,135,23. Operating Expenditures,129,23. Operating Expenditures,129,23. Operating Expenditures
142
+ col_b_transfers_to_other_authorized_committees,140,24. Transfers to Other Authorized Committees,136,24. Transfers to Other Authorized Committees,130,24. Transfers to Other Authorized Committees,130,24. Transfers to Other Authorized Committees
143
+ col_b_fundraising_disbursements,141,25. Fundraising Disbursements,137,25. Fundraising Disbursements,131,25. Fundraising Disbursements,131,25. Fundraising Disbursements
144
+ col_b_exempt_legal_accounting_disbursement,142,26. Exempt Legal & Accounting Disbursement,138,26. Exempt Legal & Accounting Disbursement,132,26. Exempt Legal & Accounting Disbursement,132,26. Exempt Legal and Accounting Disbursements
145
+ col_b_made_or_guaranteed_by_the_candidate,143,27(a) Made or Guaranteed by the Candidate,139,27(a) Made or Guaranteed by the Candidate,133,27(a) Made or Guaranteed by the Candidate,133,27(a) Made or Guaranteed by the Candidate
146
+ col_b_other_repayments,144,27(b) Other Repayments,140,27(b) Other Repayments,134,27(b) Other Repayments,134,27(b) Other Repayments
147
+ col_b_total_loan_repayments_made,145,27(c) Total Loan Repayments Made,141,27(c) Total Loan Repayments Made,135,27(c) Total Loan Repayments Made,135,27(c) Total Loan Repayments Made
148
+ col_b_individuals,146,28(a) Individuals,142,28(a) Individuals,136,28(a) Individuals,136,28(a) Individuals
149
+ col_b_political_party_committees_refunds,147,28(b) Political Party Committees,143,28(b) Political Party Committees,137,28(b) Political Party Committees,137,28(b) Political Party Committees
150
+ col_b_other_political_committees,148,28(c) Other Political Committees,144,28(c) Other Political Committees,138,28(c) Other Political Committees,138,28(c) Other Political Committees
151
+ col_b_total_contributions_refunds,149,28(d) Total Contributions Refunds,145,28(d) Total Contributions Refunds,139,28(d) Total Contributions Refunds,139,28(d) Total Contributions Refunds
152
+ col_b_other_disbursements,150,29. Other Disbursements,146,29. Other Disbursements,140,29. Other Disbursements,140,29. Other Disbursements
153
+ col_b_total_disbursements,151,30. Total Disbursements,147,30. Total Disbursements,141,30. Total Disbursements,141,30. Total Disbursements
154
+ col_b_alabama,152,ALABAMA,148,ALABAMA,142,ALABAMA,142,ALABAMA
155
+ col_b_alaska,153,ALASKA,149,ALASKA,143,ALASKA,143,ALASKA
156
+ col_b_arizona,154,ARIZONA,150,ARIZONA,144,ARIZONA,144,ARIZONA
157
+ col_b_arkansas,155,ARKANSAS,151,ARKANSAS,145,ARKANSAS,145,ARKANSAS
158
+ col_b_california,156,CALIFORNIA,152,CALIFORNIA,146,CALIFORNIA,146,CALIFORNIA
159
+ col_b_colorado,157,COLORADO,153,COLORADO,147,COLORADO,147,COLORADO
160
+ col_b_connecticut,158,CONNECTICUT,154,CONNECTICUT,148,CONNECTICUT,148,CONNECTICUT
161
+ col_b_delaware,159,DELAWARE,155,DELAWARE,149,DELAWARE,149,DELAWARE
162
+ col_b_dist_of_columbia,160,DIST OF COLUMBIA,156,DIST OF COLUMBIA,150,DIST OF COLUMBIA,150,DIST OF COLUMBIA
163
+ col_b_florida,161,FLORIDA,157,FLORIDA,151,FLORIDA,151,FLORIDA
164
+ col_b_georgia,162,GEORGIA,158,GEORGIA,152,GEORGIA,152,GEORGIA
165
+ col_b_hawaii,163,HAWAII,159,HAWAII,153,HAWAII,153,HAWAII
166
+ col_b_idaho,164,IDAHO,160,IDAHO,154,IDAHO,154,IDAHO
167
+ col_b_illinois,165,ILLINOIS,161,ILLINOIS,155,ILLINOIS,155,ILLINOIS
168
+ col_b_indiana,166,INDIANA,162,INDIANA,156,INDIANA,156,INDIANA
169
+ col_b_iowa,167,IOWA,163,IOWA,157,IOWA,157,IOWA
170
+ col_b_kansas,168,KANSAS,164,KANSAS,158,KANSAS,158,KANSAS
171
+ col_b_kentucky,169,KENTUCKY,165,KENTUCKY,159,KENTUCKY,159,KENTUCKY
172
+ col_b_louisiana,170,LOUISIANA,166,LOUISIANA,160,LOUISIANA,160,LOUISIANA
173
+ col_b_maine,171,MAINE,167,MAINE,161,MAINE,161,MAINE
174
+ col_b_maryland,172,MARYLAND,168,MARYLAND,162,MARYLAND,162,MARYLAND
175
+ col_b_massachusetts,173,MASSACHUSETTS,169,MASSACHUSETTS,163,MASSACHUSETTS,163,MASSACHUSETTS
176
+ col_b_michigan,174,MICHIGAN,170,MICHIGAN,164,MICHIGAN,164,MICHIGAN
177
+ col_b_minnesota,175,MINNESOTA,171,MINNESOTA,165,MINNESOTA,165,MINNESOTA
178
+ col_b_mississippi,176,MISSISSIPPI,172,MISSISSIPPI,166,MISSISSIPPI,166,MISSISSIPPI
179
+ col_b_missouri,177,MISSOURI,173,MISSOURI,167,MISSOURI,167,MISSOURI
180
+ col_b_montana,178,MONTANA,174,MONTANA,168,MONTANA,168,MONTANA
181
+ col_b_nebraska,179,NEBRASKA,175,NEBRASKA,169,NEBRASKA,169,NEBRASKA
182
+ col_b_nevada,180,NEVADA,176,NEVADA,170,NEVADA,170,NEVADA
183
+ col_b_new_hampshire,181,NEW HAMPSHIRE,177,NEW HAMPSHIRE,171,NEW HAMPSHIRE,171,NEW HAMPSHIRE
184
+ col_b_new_jersey,182,NEW JERSEY,178,NEW JERSEY,172,NEW JERSEY,172,NEW JERSEY
185
+ col_b_new_mexico,183,NEW MEXICO,179,NEW MEXICO,173,NEW MEXICO,173,NEW MEXICO
186
+ col_b_new_york,184,NEW YORK,180,NEW YORK,174,NEW YORK,174,NEW YORK
187
+ col_b_north_carolina,185,NORTH CAROLINA,181,NORTH CAROLINA,175,NORTH CAROLINA,175,NORTH CAROLINA
188
+ col_b_north_dakota,186,NORTH DAKOTA,182,NORTH DAKOTA,176,NORTH DAKOTA,176,NORTH DAKOTA
189
+ col_b_ohio,187,OHIO,183,OHIO,177,OHIO,177,OHIO
190
+ col_b_oklahoma,188,OKLAHOMA,184,OKLAHOMA,178,OKLAHOMA,178,OKLAHOMA
191
+ col_b_oregon,189,OREGON,185,OREGON,179,OREGON,179,OREGON
192
+ col_b_pennsylvania,190,PENNSYLVANIA,186,PENNSYLVANIA,180,PENNSYLVANIA,180,PENNSYLVANIA
193
+ col_b_rhode_island,191,RHODE ISLAND,187,RHODE ISLAND,181,RHODE ISLAND,181,RHODE ISLAND
194
+ col_b_south_carolina,192,SOUTH CAROLINA,188,SOUTH CAROLINA,182,SOUTH CAROLINA,182,SOUTH CAROLINA
195
+ col_b_south_dakota,193,SOUTH DAKOTA,189,SOUTH DAKOTA,183,SOUTH DAKOTA,183,SOUTH DAKOTA
196
+ col_b_tennessee,194,TENNESSEE,190,TENNESSEE,184,TENNESSEE,184,TENNESSEE
197
+ col_b_texas,195,TEXAS,191,TEXAS,185,TEXAS,185,TEXAS
198
+ col_b_utah,196,UTAH,192,UTAH,186,UTAH,186,UTAH
199
+ col_b_vermont,197,VERMONT,193,VERMONT,187,VERMONT,187,VERMONT
200
+ col_b_virginia,198,VIRGINIA,194,VIRGINIA,188,VIRGINIA,188,VIRGINIA
201
+ col_b_washington,199,WASHINGTON,195,WASHINGTON,189,WASHINGTON,189,WASHINGTON
202
+ col_b_west_virginia,200,WEST VIRGINIA,196,WEST VIRGINIA,190,WEST VIRGINIA,190,WEST VIRGINIA
203
+ col_b_wisconsin,201,WISCONSIN,197,WISCONSIN,191,WISCONSIN,191,WISCONSIN
204
+ col_b_wyoming,202,WYOMING,198,WYOMING,192,WYOMING,192,WYOMING
205
+ col_b_puerto_rico,203,PUERTO RICO,199,PUERTO RICO,193,PUERTO RICO,193,PUERTO RICO
206
+ col_b_guam,204,GUAM,200,GUAM,194,GUAM,194,GUAM
207
+ col_b_virgin_islands,205,VIRGIN ISLANDS,201,VIRGIN ISLANDS,195,VIRGIN ISLANDS,195,VIRGIN ISLANDS
208
+ col_b_totals,206,TOTALS,202,TOTALS,196,TOTALS,196,TOTALS
data/sources/F3P31.csv ADDED
@@ -0,0 +1,39 @@
1
+ canonical,^8.0|7.0|6.4|6.3|6.2|6.1,,^5.3,,^5.2|5.1|5.0|3,
2
+ form_type,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE
3
+ filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID,2,FILER FEC CMTE ID
4
+ transaction_id_number,3,TRANSACTION ID NUMBER,32,TRAN ID,32,TRAN ID
5
+ entity_type,4,ENTITY TYPE,3,ENTITY TYPE,3,ENTITY TYPE
6
+ contributor_organization_name,5,CONTRIBUTOR ORGANIZATION NAME ,-0,,-0,
7
+ contributor_name,,,4,NAME (Contributor/Lender),4,NAME (Contributor/Lender)
8
+ contributor_last_name,6,CONTRIBUTOR LAST NAME,-0,,-0,
9
+ contributor_first_name,7,CONTRIBUTOR FIRST NAME,-0,,-0,
10
+ contributor_middle_name,8,CONTRIBUTOR MIDDLE NAME,-0,,-0,
11
+ contributor_prefix,9,CONTRIBUTOR PREFIX,-0,,-0,
12
+ contributor_suffix,10,CONTRIBUTOR SUFFIX,-0,,-0,
13
+ contributor_street_1,11,CONTRIBUTOR STREET 1,5,STREET 1,5,STREET 1
14
+ contributor_street_2,12,CONTRIBUTOR STREET 2,6,STREET 2,6,STREET 2
15
+ contributor_city,13,CONTRIBUTOR CITY,7,CITY,7,CITY
16
+ contributor_state,14,CONTRIBUTOR STATE,8,STATE,8,STATE
17
+ contributor_zip_code,15,CONTRIBUTOR ZIP,9,ZIP,9,ZIP
18
+ election_code,16,ELECTION CODE {was RPTPGI},10,RPTPGI,10,RPTPGI
19
+ item_description,17,ITEM DESCRIPTION,,,,
20
+ item_contribution_aquired_date,18,ITEM CONTRIBUTION/AQUIRED DATE ,13,DATE (Of Contribution),13,DATE (Of Contribution)
21
+ item_fair_market_value,19,ITEM FAIR MARKET VALUE,14,FAIR MARKET VALUE OF ITEM,14,FAIR MARKET VALUE OF ITEM
22
+ contributor_employer,20,CONTRIBUTOR EMPLOYER,11,INDEMP,11,INDEMP
23
+ contributor_occupation,21,CONTRIBUTOR OCCUPATION,12,INDOCC ,12,INDOCC
24
+ memo_code,22,MEMO CODE,29,MEMO CODE,29,MEMO CODE
25
+ memo_text_description,23,MEMO TEXT/DESCRIPTION,30,MEMO TEXT,30,MEMO TEXT
26
+ transaction_code,,,15,TRANSACTION CODE,15,TRANSACTION CODE
27
+ transaction_description,,,16,TRANSDESC,16,TRANSDESC
28
+ fec_committee_id_number,,,17,FEC COMMITTEE ID NUMBER,17,FEC COMMITTEE ID NUMBER
29
+ fec_candidate_id_number,,,18,FEC CANDIDATE ID NUMBER,18,FEC CANDIDATE ID NUMBER
30
+ candidate_name,,,19,CANDIDATE NAME,19,CANDIDATE NAME
31
+ candidate_office,,,20,CAN/OFFICE,20,CAN/OFFICE
32
+ candidate_state,,,21,CAN/STATE ,21,CAN/STATE
33
+ candidate_district,,,22,CAN/DIST,22,CAN/DIST
34
+ conduit_name,,,23,CONDUIT NAME,23,CONDUIT NAME
35
+ conduit_street_1,,,24,CONDUIT STREET 1,24,CONDUIT STREET 1
36
+ conduit_street_2,,,25,CONDUIT STREET 2,25,CONDUIT STREET 2
37
+ conduit_city,,,26,CONDUIT CITY,26,CONDUIT CITY
38
+ conduit_state,,,27,CONDUIT STATE,27,CONDUIT STATE
39
+ conduit_zip_code,,,28,CONDUIT ZIP,28,CONDUIT ZIP
data/sources/F3PS.csv ADDED
@@ -0,0 +1,94 @@
1
+ canonical,^8.0|7.0,,^6.4|6.3|6.2|6.1,,^5.3|5.2|5.1|5.0|3,
2
+ form_type,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE
3
+ filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID
4
+ date_general_election,3,Date - General Election,3,Date - General Election,89,Date - General Election
5
+ date_day_after_general_election,4,Date - Day after General Election,4,Date - Day after General Election,90,Date - Day after General Election
6
+ 14_net_contributions,5,14. Net Contributions,5,14. Net Contributions,3,14. Net Contributions
7
+ 15_net_expenditures,6,15. Net Expenditures,6,15. Net Expenditures,4,15. Net Expenditures
8
+ 16_federal_funds,7,16. Federal Funds,7,16. Federal Funds,5,16. Federal Funds
9
+ 17_a_individuals,-0,,8,17(a) Individuals,6,17(a) Individuals
10
+ 17_a_i_individuals_itemized,8,17(a.i) Individuals Itemized,-0,,,
11
+ 17_a_ii_individuals_unitemized,9,17(a.ii) Individuals Unitemized,-0,,,
12
+ 17_a_iii_individual_contribution_total,10,17(a.iii) Individual Contribution Total,-0,,,
13
+ 17_b_political_party_committees,11,17(b) Political Party Committees,9,17(b) Political Party Committees,7,17(b) Political Party Committees
14
+ 17_c_other_political_committees_pacs,12,17(c) Other Political Committees (PACs),10,17(c) Other Political Committees (PACs),8,17(c) Other Political Committees (PACs)
15
+ 17_d_the_candidate,13,17(d) The Candidate,11,17(d) The Candidate,9,17(d) The Candidate
16
+ 17_e_total_contributions_other_than_loans,14,17(e) Total contributions (Other than Loans),12,17(e) Total contributions (Other than Loans),10,17(e) Total contributions (Other than Loans)
17
+ 18_transfers_from_aff_other_party_committees,15,18. Transfers From Aff/Other Party Committees,13,18. Transfers From Aff/Other Party Committees,11,18. Transfers From Aff/Other Party Committees
18
+ 19_a_received_from_or_guaranteed_by_candidate,16,19(a) Received from or Guaranteed by Candidate,14,19(a) Received from or Guaranteed by Candidate,12,19(a) Received from or Guaranteed by Candidate
19
+ 19_b_other_loans,17,19(b) Other Loans,15,19(b) Other Loans,13,19(b) Other Loans
20
+ 19_c_total_loans,18,19(c) Total Loans,16,19(c) Total Loans,14,19(c) Total Loans
21
+ 20_a_operating,19,20(a) Operating,17,20(a) Operating,15,20(a) Operating
22
+ 20_b_fundraising,20,20(b) Fundraising,18,20(b) Fundraising,16,20(b) Fundraising
23
+ 20_c_legal_and_accounting,21,20(c) Legal and Accounting,19,20(c) Legal and Accounting,17,20(c) Legal and Accounting
24
+ 20_d_total_offsets_to_operating_expenditures,22,20(d) Total Offsets to Operating Expenditures,20,20(d) Total Offsets to Operating Expenditures,18,20(d) Total Offsets to Operating Expenditures
25
+ 21_other_receipts,23,21. Other Receipts,21,21. Other Receipts,19,21. Other Receipts
26
+ 22_total_receipts,24,22. Total Receipts,22,22. Total Receipts,20,22. Total Receipts
27
+ 23_operating_expenditures,25,23. Operating Expenditures,23,23. Operating Expenditures,21,23. Operating Expenditures
28
+ 24_transfers_to_other_authorized_committees,26,24. Transfers to Other Authorized Committees,24,24. Transfers to Other Authorized Committees,22,24. Transfers to Other Authorized Committees
29
+ 25_fundraising_disbursements,27,25. Fundraising Disbursements,25,25. Fundraising Disbursements,23,25. Fundraising Disbursements
30
+ 26_exempt_legal_and_accounting_disbursements,28,26. Exempt Legal and Accounting Disbursements,26,26. Exempt Legal and Accounting Disbursements,24,26. Exempt Legal and Accounting Disbursements
31
+ 27_a_made_or_guaranteed_by_the_candidate,29,27(a) Made or Guaranteed by the Candidate,27,27(a) Made or Guaranteed by the Candidate,25,27(a) Made or Guaranteed by the Candidate
32
+ 27_b_other_repayments,30,27(b) Other Repayments,28,27(b) Other Repayments,26,27(b) Other Repayments
33
+ 27_c_total_loan_repayments_made,31,27(c) Total Loan Repayments Made,29,27(c) Total Loan Repayments Made,27,27(c) Total Loan Repayments Made
34
+ 28_a_individuals,32,28(a) Individuals,30,28(a) Individuals,28,28(a) Individuals
35
+ 28_b_political_party_committees,33,28(b) Political Party Committees,31,28(b) Political Party Committees,29,28(b) Political Party Committees
36
+ 28_c_other_political_committees,34,28(c) Other Political Committees,32,28(c) Other Political Committees,30,28(c) Other Political Committees
37
+ 28_d_total_contributions_refunds,35,28(d) Total Contributions Refunds,33,28(d) Total Contributions Refunds,31,28(d) Total Contributions Refunds
38
+ 29_other_disbursements,36,29. Other Disbursements,34,29. Other Disbursements,32,29. Other Disbursements
39
+ 30_total_disbursements,37,30. Total Disbursements,35,30. Total Disbursements,33,30. Total Disbursements
40
+ alabama,38,ALABAMA,36,ALABAMA,34,ALABAMA
41
+ alaska,39,ALASKA,37,ALASKA,35,ALASKA
42
+ arizona,40,ARIZONA,38,ARIZONA,36,ARIZONA
43
+ arkansas,41,ARKANSAS,39,ARKANSAS,37,ARKANSAS
44
+ california,42,CALIFORNIA,40,CALIFORNIA,38,CALIFORNIA
45
+ colorado,43,COLORADO,41,COLORADO,39,COLORADO
46
+ connecticut,44,CONNECTICUT,42,CONNECTICUT,40,CONNECTICUT
47
+ delaware,45,DELAWARE,43,DELAWARE,41,DELAWARE
48
+ dist_of_columbia,46,DIST OF COLUMBIA,44,DIST OF COLUMBIA,42,DIST OF COLUMBIA
49
+ florida,47,FLORIDA,45,FLORIDA,43,FLORIDA
50
+ georgia,48,GEORGIA,46,GEORGIA,44,GEORGIA
51
+ hawaii,49,HAWAII,47,HAWAII,45,HAWAII
52
+ idaho,50,IDAHO,48,IDAHO,46,IDAHO
53
+ illinois,51,ILLINOIS,49,ILLINOIS,47,ILLINOIS
54
+ indiana,52,INDIANA,50,INDIANA,48,INDIANA
55
+ iowa,53,IOWA,51,IOWA,49,IOWA
56
+ kansas,54,KANSAS,52,KANSAS,50,KANSAS
57
+ kentucky,55,KENTUCKY,53,KENTUCKY,51,KENTUCKY
58
+ louisiana,56,LOUISIANA,54,LOUISIANA,52,LOUISIANA
59
+ maine,57,MAINE,55,MAINE,53,MAINE
60
+ maryland,58,MARYLAND,56,MARYLAND,54,MARYLAND
61
+ massachusetts,59,MASSACHUSETTS,57,MASSACHUSETTS,55,MASSACHUSETTS
62
+ michigan,60,MICHIGAN,58,MICHIGAN,56,MICHIGAN
63
+ minnesota,61,MINNESOTA,59,MINNESOTA,57,MINNESOTA
64
+ mississippi,62,MISSISSIPPI,60,MISSISSIPPI,58,MISSISSIPPI
65
+ missouri,63,MISSOURI,61,MISSOURI,59,MISSOURI
66
+ montana,64,MONTANA,62,MONTANA,60,MONTANA
67
+ nebraska,65,NEBRASKA,63,NEBRASKA,61,NEBRASKA
68
+ nevada,66,NEVADA,64,NEVADA,62,NEVADA
69
+ new_hampshire,67,NEW HAMPSHIRE,65,NEW HAMPSHIRE,63,NEW HAMPSHIRE
70
+ new_jersey,68,NEW JERSEY,66,NEW JERSEY,64,NEW JERSEY
71
+ new_mexico,69,NEW MEXICO,67,NEW MEXICO,65,NEW MEXICO
72
+ new_york,70,NEW YORK,68,NEW YORK,66,NEW YORK
73
+ north_carolina,71,NORTH CAROLINA,69,NORTH CAROLINA,67,NORTH CAROLINA
74
+ north_dakota,72,NORTH DAKOTA,70,NORTH DAKOTA,68,NORTH DAKOTA
75
+ ohio,73,OHIO,71,OHIO,69,OHIO
76
+ oklahoma,74,OKLAHOMA,72,OKLAHOMA,70,OKLAHOMA
77
+ oregon,75,OREGON,73,OREGON,71,OREGON
78
+ pennsylvania,76,PENNSYLVANIA,74,PENNSYLVANIA,72,PENNSYLVANIA
79
+ rhode_island,77,RHODE ISLAND,75,RHODE ISLAND,73,RHODE ISLAND
80
+ south_carolina,78,SOUTH CAROLINA,76,SOUTH CAROLINA,74,SOUTH CAROLINA
81
+ south_dakota,79,SOUTH DAKOTA,77,SOUTH DAKOTA,75,SOUTH DAKOTA
82
+ tennessee,80,TENNESSEE,78,TENNESSEE,76,TENNESSEE
83
+ texas,81,TEXAS,79,TEXAS,77,TEXAS
84
+ utah,82,UTAH,80,UTAH,78,UTAH
85
+ vermont,83,VERMONT,81,VERMONT,79,VERMONT
86
+ virginia,84,VIRGINIA,82,VIRGINIA,80,VIRGINIA
87
+ washington,85,WASHINGTON,83,WASHINGTON,81,WASHINGTON
88
+ west_virginia,86,WEST VIRGINIA,84,WEST VIRGINIA,82,WEST VIRGINIA
89
+ wisconsin,87,WISCONSIN,85,WISCONSIN,83,WISCONSIN
90
+ wyoming,88,WYOMING,86,WYOMING,84,WYOMING
91
+ puerto_rico,89,PUERTO RICO,87,PUERTO RICO,85,PUERTO RICO
92
+ guam,90,GUAM,88,GUAM,86,GUAM
93
+ virgin_islands,91,VIRGIN ISLANDS,89,VIRGIN ISLANDS,87,VIRGIN ISLANDS
94
+ totals,92,TOTALS,90,TOTALS,88,TOTALS
data/sources/F3S.csv ADDED
@@ -0,0 +1,36 @@
1
+ canonical,^8.0|7.0|6.4|6.3|6.2|6.1,,^5.3|5.2|5.1|5.0|3,
2
+ form_type,1,FORM TYPE,1,FORM TYPE
3
+ filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID
4
+ date_general_election,3,Date - General Election,34,Date - General Election
5
+ date_day_after_general_election,4,Date - Day after General Election,35,Date - Day after General Election
6
+ 6a_total_contributions_no_loans,5,(6a) Total Contributions (No Loans),3,(6a) Total Contributions (No Loans)
7
+ 6b_total_contribution_refunds,6,(6b) Total Contribution Refunds,4,(6b) Total Contribution Refunds
8
+ 6c_net_contributions,7,(6c) Net Contributions,5,(6c) Net Contributions
9
+ 7a_total_operating_expenditures,8,(7a) Total Operating Expenditures,6,(7a) Total Operating Expenditures
10
+ 7b_total_offsets_to_operating_expenditures,9,(7b) Total Offsets to Operating Expenditures,7,(7b) Total Offsets to Operating Expenditures
11
+ 7c_net_operating_expenditures,10,(7c) NET Operating Expenditures.,8,(7c) NET Operating Expenditures.
12
+ 11_a_i_individuals_itemized,11,11(a i.) Individuals Itemized,9,11(a.i) Individuals Itemized
13
+ 11_a_ii_individuals_unitemized,12,11(a.ii) Individuals Unitemized,10,11(a.ii) Individuals Unitemized
14
+ 11_a_iii_individuals_total,13,11(a.iii) Individuals Total,11,11(a.iii) Individuals Total
15
+ 11_b_political_party_committees,14,11(b) Political Party Committees,12,11(b) Political Party Committees
16
+ 11_c_all_other_political_committees_pacs,15,11(c) All Other Political Committees (PACS),13,11(c) All Other Political Committees (PACS)
17
+ 11_d_the_candidate,16,11(d) The Candidate,14,11(d) The Candidate
18
+ 11_e_total_contributions,17,11(e) Total Contributions,15,11(e) Total Contributions
19
+ 12_transfers_from_other_auth_committees,18,12. Transfers From Other AUTH Committees,16,12. Transfers From Other AUTH Committees
20
+ 13_a_loans_made_or_guarn_by_the_candidate,19,13(a) Loans made or guarn. by the Candidate,17,13(a) Loans made or guarn. by the Candidate
21
+ 13_b_all_other_loans,20,13(b) All Other Loans,18,13(b) All Other Loans
22
+ 13_c_total_loans,21,13(c) Total Loans,19,13(c) Total Loans
23
+ 14_offsets_to_operating_expenditures,22,14. Offsets to Operating Expenditures,20,14. Offsets to Operating Expenditures
24
+ 15_other_receipts,23,15. Other Receipts,21,15. Other Receipts
25
+ 16_total_receipts,24,16. Total Receipts,22,16. Total Receipts
26
+ 17_operating_expenditures,25,17 Operating Expenditures,23,17 Operating Expenditures
27
+ 18_transfers_to_other_auth_committees,26,18. Transfers To Other AUTH Committees,24,18. Transfers To Other AUTH Committees
28
+ 19_a_loan_repayment_by_candidate,27,19(a) Loan Repayment By Candidate,25,19(a) Loan Repayment By Candidate
29
+ 19_b_loan_repayments_all_other_loans,28,19(b) Loan Repayments, ALL Other Loans,26,19(b) Loan Repayments, ALL Other Loans
30
+ 19_c_total_loan_repayments,29,19(c) Total Loan Repayments,27,19(c) Total Loan Repayments
31
+ 20_a_refund_individuals_other_than_pol_cmtes,30,20(a) Refund/Individuals Other than Pol. Cmtes,28,20(a) Refund/Individuals Other than Pol. Cmtes
32
+ 20_b_refund_political_party_committees,31,20(b) Refund, Political Party Committees,29,20(b) Refund, Political Party Committees
33
+ 20_c_refund_other_political_committees,32,20(c) Refund, Other Political Committees,30,20(c) Refund, Political Party Committees
34
+ 20_d_total_contributions_refunds,33,20(d) Total Contributions Refunds,31,20(d) Total Contributions Refunds
35
+ 21_other_disbursements,34,21. Other Disbursements,32,21. Other Disbursements
36
+ 22_total_disbursements,35,22. Total Disbursements,33,22. Total Disbursements
data/sources/F3X.csv ADDED
@@ -0,0 +1,125 @@
1
+ canonical,^8.0|7.0|6.4|6.3|6.2|6.1,,^5.3|5.2|5.1|5.0,,^3,
2
+ form_type,1,FORM TYPE,1,FORM TYPE,1,FORM TYPE
3
+ filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID,2,FILER FEC CMTE ID
4
+ committee_name,3,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEE NAME
5
+ change_of_address,4,CHANGE OF ADDRESS,9,CHG OF ADDRESS,9,CHG OF ADDRESS
6
+ street_1,5,STREET 1,4,STREET 1,4,STREET 1
7
+ street_2,6,STREET 2,5,STREET 2,5,STREET 2
8
+ city,7,CITY,6,CITY,6,CITY
9
+ state,8,STATE,7,STATE,7,STATE
10
+ zip_code,9,ZIP,8,ZIP,8,ZIP
11
+ report_code,10,REPORT CODE,11,RPTCODE,11,RPTCODE
12
+ election_code,11,ELECTION CODE {was RPTPGI},12,RPTPGI,12,RPTPGI
13
+ date_of_election,12,DATE OF ELECTION,13,DATE (Of Election),13,DATE (Of Election)
14
+ state_of_election,13,STATE OF ELECTION,14,STATE (Of Election),14,STATE (Of Election)
15
+ coverage_from_date,14,COVERAGE FROM DATE,15,DATE (Coverage From),15,DATE (Coverage From)
16
+ coverage_through_date,15,COVERAGE THROUGH DATE,16,DATE (Coverage To),16,DATE (Coverage To)
17
+ qualified_committee,16,QUALIFIED COMMITTEE,10,QUALIFIED CMTE ,10,QUALIFIED CMTE
18
+ treasurer_name,,,106,NAME/TREASURER (as signed),106,NAME/TREASURER (as signed)
19
+ treasurer_last_name,17,TREASURER LAST NAME,,,,
20
+ treasurer_first_name,18,TREASURER FIRST NAME,,,,
21
+ treasurer_middle_name,19,TREASURER MIDDLE NAME,,,,
22
+ treasurer_prefix,20,TREASURER PREFIX,,,,
23
+ treasurer_suffix,21,TREASURER SUFFIX,,,,
24
+ date_signed,22,DATE SIGNED,107,DATE (Signed),107,DATE (Signed)
25
+ col_a_cash_on_hand_beginning_period,23,6(b) Cash on Hand beginning,17,6(b) Cash on Hand beginning,17,6(b) Cash on Hand beginning
26
+ col_a_total_receipts,24,6(c) Total Receipts,18,6(c) Total Receipts,18,6(c) Total Receipts
27
+ col_a_subtotal,25,6(d) Subtotal,19,6(d) Subtotal,19,6(d) Subtotal
28
+ col_a_total_disbursements,26,7. Total Disbursements,20,7. Total Disbursements,20,7. Total Disbursements
29
+ col_a_cash_on_hand_close_of_period,27,8. Cash on Hand at Close,21,8. Cash on Hand at Close,21,8. Cash on Hand at Close
30
+ col_a_debts_to,28,9. Debts to,22,9. Debts to,22,9. Debts to
31
+ col_a_debts_by,29,10. Debts by,23,10. Debts by,23,10. Debts by
32
+ col_a_individuals_itemized,30,11(a)i Itemized,24,11(a)i Itemized,24,11(a)i Itemized
33
+ col_a_individuals_unitemized,31,11(a)ii Unitemized,25,11(a)ii Unitemized,25,11(a)ii Unitemized
34
+ col_a_individual_contribution_total,32,11(a)iii Total,26,11(a)iii Total,26,11(a)iii Total
35
+ col_a_political_party_committees,33,11(b) Political Party Committees,27,11(b) Political Party Committees,27,11(b) Political Party Committees
36
+ col_a_other_political_committees_pacs,34,11(c) Other Political Committees (PACs),28,11(c) Other Political Committees (PACs),28,11(c) Other Political Committees (PACs)
37
+ col_a_total_contributions,35,11(d) Total Contributions,29,11(d) Total Contributions,29,11(d) Total Contributions
38
+ col_a_transfers_from_aff_other_party_cmttees,36,12. Transfers from Affiliated/Other Party Cmtes,30,12. Transfers from Affiliated/Other Party Cmtes,30,12. Transfers from Affiliated/Other Party Cmtes
39
+ col_a_total_loans,37,13. All Loans Received,31,13. All Loans Received,31,13. All Loans Received
40
+ col_a_total_loan_repayments_received,38,14. Loan Repayments Received,32,14. Loan Repayments Received,32,14. Loan Repayments Received
41
+ col_a_offsets_to_expenditures,39,15. Offsets to Operating Expenditures (refunds),33,15. Offsets to Operating Expenditures (refunds),33,15. Offsets to Operating Expenditures (refunds)
42
+ col_a_total_contributions_refunds,40,16. Refunds of Federal Contributions,34,16. Refunds of Federal Contributions,34,16. Refunds of Federal Contributions
43
+ col_a_other_federal_receipts,41,17. Other Federal Receipts (dividends),35,17. Other Federal Receipts (dividends),35,17. Other Federal Receipts (dividends)
44
+ col_a_transfers_from_nonfederal_h3,42,18(a) Transfers from Nonfederal Account (H3),36,18(a) Transfers from Nonfederal Account (H3),36,18(a) Transfers from Nonfederal Account (H3)
45
+ col_a_levin_funds,43,18(b) Transfers from Non-Federal (Levin - H5),108,18(b) Transfers from Non-Federal (Levin - H5),,
46
+ col_a_total_nonfederal_transfers,44,18(c) Total Non-Federal Transfers (18a+18b),109,18(c) Total Non-Federal Transfers (18a+18b),,
47
+ col_a_total_receipts,45,19. Total Receipts,37,19. Total Receipts,37,19. Total Receipts
48
+ col_a_total_federal_receipts,46,20. Total Federal Receipts,38,20. Total Federal Receipts,38,20. Total Federal Receipts
49
+ col_a_shared_operating_expenditures_federal,47,21(a)i Federal Share,39,21(a)i Federal Share,39,21(a)i Federal Share
50
+ col_a_shared_operating_expenditures_nonfederal,48,21(a)ii Non-Federal Share,40,21(a)ii Non-Federal Share,40,21(a)ii Non-Federal Share
51
+ col_a_other_federal_operating_expenditures,49,21(b) Other Federal Operating Expenditures,41,21(b) Other Federal Operating Expenditures,41,21(b) Other Federal Operating Expenditures
52
+ col_a_total_operating_expenditures,50,21(c) Total Operating Expenditures,42,21(c) Total Operating Expenditures,42,21(c) Total Operating Expenditures
53
+ col_a_transfers_to_affiliated,51,22. Transfers to Affiliated/Other Party Cmtes,43,22. Transfers to Affiliated/Other Party Cmtes,43,22. Transfers to Affiliated/Other Party Cmtes
54
+ col_a_contributions_to_candidates,52,23. Contributions to Federal Candidates/Cmtes,44,23. Contributions to Federal Candidates/Cmtes,44,23. Contributions to Federal Candidates/Cmtes
55
+ col_a_independent_expenditures,53,24. Independent Expenditures,45,24. Independent Expenditures,45,24. Independent Expenditures
56
+ col_a_coordinated_expenditures_by_party_committees,54,25. Coordinated Expend made by Party Cmtes,46,25. Coordinated Expend made by Party Cmtes,46,25. Coordinated Expend made by Party Cmtes
57
+ col_a_total_loan_repayments_made,55,26. Loan Repayments,47,26. Loan Repayments,47,26. Loan Repayments
58
+ col_a_loans_made,56,27. Loans Made,48,27. Loans Made,48,27. Loans Made
59
+ col_a_refunds_to_individuals,57,28(a) Individuals/Persons,49,28(a) Individuals/Persons,49,28(a) Individuals/Persons
60
+ col_a_refunds_to_party_committees,58,28(b) Political Party Committees,50,28(b) Political Party Committees,50,28(b) Political Party Committees
61
+ col_a_refunds_to_other_committees,59,28(c) Other Political Committees,51,28(c) Other Political Committees,51,28(c) Other Political Committees
62
+ col_a_total_refunds,60,28(d) Total Contributions Refunds,52,28(d) Total Contributions Refunds,52,28(d) Total Contributions Refunds
63
+ col_a_other_disbursements,61,29. Other Disbursements,53,29. Other Disbursements,53,29. Other Disbursements
64
+ col_a_federal_election_activity_federal_share,62,30(a)i Shared Federal Activity (H6) Fed Share,110,30(a)i Shared Federal Activity (H6) Fed Share,,
65
+ col_a_federal_election_activity_levin_share,63,30(a)ii Shared Federal Activity (H6) Non-Fed,111,30(a)ii Shared Federal Activity (H6) Non-Fed,,
66
+ col_a_federal_election_activity_all_federal,64,30(b) Non-Allocable 100% Fed Election Activity,112,30(b) Non-Allocable 100% Fed Election Activity,,
67
+ col_a_federal_election_activity_total,65,30(c) Total Federal Election Activity,113,30(c) Total Federal Election Activity,,
68
+ col_a_total_disbursements,66,31. Total Disbursements,54,31. Total Disbursements,54,30. Total Disbursements
69
+ col_a_total_federal_disbursements,67,32. Total Federal Disbursements,55,32. Total Federal Disbursements,55,31. Total Federal Disbursements
70
+ col_a_total_contributions,68,33. Total Contributions,56,33. Total Contributions,56,32. Total Contributions
71
+ col_a_total_contributions_refunds,69,34. Total Contribution Refunds,57,34. Total Contribution Refunds,57,33. Total Contribution Refunds
72
+ col_a_net_contributions,70,35. Net Contributions,58,35. Net Contributions,58,34. Net Contributions
73
+ col_a_total_federal_operating_expenditures,71,36. Total Federal Operating Expenditures,59,36. Total Federal Operating Expenditures,59,35. Total Federal Operating Expenditures
74
+ col_a_total_offsets_to_expenditures,72,37. Offsets to Operating Expenditures,60,37. Offsets to Operating Expenditures,60,36. Offsets to Operating Expenditures
75
+ col_a_net_operating_expenditures,73,38. Net Operating Expenditures,61,38. Net Operating Expenditures,61,37. Net Operating Expenditures
76
+ col_b_cash_on_hand_jan_1,74, 6(a) Cash on Hand Jan 1, 19,62, 6(a) Cash on Hand Jan 1, 19,62, 6(a) Cash on Hand Jan 1, 19
77
+ col_b_year,75,Year for Above,63,Year for Above,63,Year for Above
78
+ col_b_total_receipts,76,6(c) Total Receipts,64,6(c) Total Receipts,64,6(c) Total Receipts
79
+ col_b_subtotal,77,6(d) Subtotal,65,6(d) Subtotal,65,6(d) Subtotal
80
+ col_b_total_disbursements,78,7. Total disbursements,66,7. Total disbursements,66,7. Total disbursements
81
+ col_b_cash_on_hand_close_of_period,79,8. Cash on Hand Close,67,8. Cash on Hand Close,67,8. Cash on Hand Close
82
+ col_b_individuals_itemized,80,11(a)i Itemized,68,11(a)i Itemized,68,11(a)i Itemized
83
+ col_b_individuals_unitemized,81,11(a)ii Unitemized,69,11(a)ii Unitemized,69,11(a)ii Unitemized
84
+ col_b_individual_contribution_total,82,11(a)iii Total,70,11(a)iii Total,70,11(a)iii Total
85
+ col_b_political_party_committees,83,11(b) Political Party committees,71,11(b) Political Party committees,71,11(b) Political Party committees
86
+ col_b_other_political_committees_pacs,84,11(c) Other Political Committees (PACs),72,11(c) Other Political Committees (PACs),72,11(c) Other Political Committees (PACs)
87
+ col_b_total_contributions,85,11(d) Total Contributions,73,11(d) Total Contributions,73,11(d) Total Contributions
88
+ col_b_transfers_from_aff_other_party_cmttees,86,12. Transfers from Affiliated/Other Party Cmtes,74,12. Transfers from Affiliated/Other Party Cmtes,74,12. Transfers from Affiliated/Other Party Cmtes
89
+ col_b_total_loans,87,13. All Loans Received,75,13. All Loans Received,75,13. All Loans Received
90
+ col_b_total_loan_repayments_received,88,14. Loan Repayments Received,76,14. Loan Repayments Received,76,14. Loan Repayments Received
91
+ col_b_offsets_to_expenditures,89,15. Offsets to Operating Expenditures (refunds),77,15. Offsets to Operating Expenditures (refunds),77,15. Offsets to Operating Expenditures (refunds)
92
+ col_b_total_contributions_refunds,90,16. Refunds of Federal Contributions,78,16. Refunds of Federal Contributions,78,16. Refunds of Federal Contributions
93
+ col_b_other_federal_receipts,91,17. Other Federal Receipts (dividends),79,17. Other Federal Receipts (dividends),79,17. Other Federal Receipts (dividends)
94
+ col_b_transfers_from_nonfederal_h3,92,18(a) Transfers from Nonfederal Account (H3),80,18(a) Transfers from Nonfederal Account (H3),80,18(a) Transfers from Nonfederal Account (H3)
95
+ col_b_levin_funds,93,18(b) Transfers from Non-Federal (Levin - H5),114,18(b) Transfers from Non-Federal (Levin - H5),,
96
+ col_b_total_nonfederal_transfers,94,18(c) Total Non-Federal Transfers (18a+18b),115,18(c) Total Non-Federal Transfers (18a+18b),,
97
+ col_b_total_receipts,95,19. Total Receipts,81,19. Total Receipts,81,19. Total Receipts
98
+ col_b_total_federal_receipts,96,20. Total Federal Receipts,82,20. Total Federal Receipts,82,20. Total Federal Receipts
99
+ col_b_shared_operating_expenditures_federal,97,21(a)i Federal Share,83,21(a)i Federal Share,83,21(a)i Federal Share
100
+ col_b_shared_operating_expenditures_nonfederal,98,21(a)ii Non-Federal Share,84,21(a)ii Non-Federal Share,84,21(a)ii Non-Federal Share
101
+ col_b_other_federal_operating_expenditures,99,21(b) Other Federal Operating Expenditures,85,21(b) Other Federal Operating Expenditures,85,21(b) Other Federal Operating Expenditures
102
+ col_b_total_operating_expenditures,100,21(c) Total operating Expenditures,86,21(c) Total operating Expenditures,86,21(c) Total operating Expenditures
103
+ col_b_transfers_to_affiliated,101,22. Transfers to Affiliated/Other Party Cmtes,87,22. Transfers to Affiliated/Other Party Cmtes,87,22. Transfers to Affiliated/Other Party Cmtes
104
+ col_b_contributions_to_candidates,102,23. Contributions to Federal Candidates/Cmtes,88,23. Contributions to Federal Candidates/Cmtes,88,23. Contributions to Federal Candidates/Cmtes
105
+ col_b_independent_expenditures,103,24. Independent Expenditures,89,24. Independent Expenditures,89,24. Independent Expenditures
106
+ col_b_coordinated_expenditures_by_party_committees,104,25. Coordinated Expend made by Party Cmtes,90,25. Coordinated Expend made by Party Cmtes,90,25. Coordinated Expend made by Party Cmtes
107
+ col_b_total_loan_repayments_made,105,26. Loan Repayments Made,91,26. Loan Repayments Made,91,26. Loan Repayments Made
108
+ col_b_loans_made,106,27. Loans Made,92,27. Loans Made,92,27. Loans Made
109
+ col_b_refunds_to_individuals,107,28(a) Individuals/Persons,93,28(a) Individuals/Persons,93,28(a) Individuals/Persons
110
+ col_b_refunds_to_party_committees,108,28(b) Political Party Committees,94,28(b) Political Party Committees,94,28(b) Political Party Committees
111
+ col_b_refunds_to_other_committees,109,28(c) Other Political Committees,95,28(c) Other Political Committees,95,28(c) Other Political Committees
112
+ col_b_total_refunds,110,28(d) Total contributions Refunds,96,28(d) Total contributions Refunds,96,28(d) Total contributions Refunds
113
+ col_b_other_disbursements,111,29. Other Disbursements,97,29. Other Disbursements,97,29. Other Disbursements
114
+ col_b_federal_election_activity_federal_share,112,30(a)i Shared Federal Activity (H6) Fed Share,116,30(a)i Shared Federal Activity (H6) Fed Share,,
115
+ col_b_federal_election_activity_levin_share,113,30(a)ii Shared Federal Activity (H6) Non-Fed,117,30(a)ii Shared Federal Activity (H6) Non-Fed,,
116
+ col_b_federal_election_activity_all_federal,114,30(b) Non-Allocable 100% Fed Election Activity,118,30(b) Non-Allocable 100% Fed Election Activity,,
117
+ col_b_federal_election_activity_total,115,30(c) Total Federal Election Activity,119,30(c) Total Federal Election Activity,,
118
+ col_b_total_disbursements,116,31. Total Disbursements,98,31. Total Disbursements,98,30. Total Disbursements
119
+ col_b_total_federal_disbursements,117,32. Total Federal Disbursements,99,32. Total Federal Disbursements,99,31. Total Federal Disbursements
120
+ col_b_total_contributions,118,33. Total Contributions,100,33. Total Contributions,100,32. Total Contributions
121
+ col_b_total_contributions_refunds,119,34. Total Contribution Refunds,101,34. Total Contribution Refunds,101,33. Total Contribution Refunds
122
+ col_b_net_contributions,120,35. Net contributions,102,35. Net contributions,102,34. Net contributions
123
+ col_b_total_federal_operating_expenditures,121,36. Total Federal Operating Expenditures,103,36. Total Federal Operating Expenditures,103,35. Total Federal Operating Expenditures
124
+ col_b_total_offsets_to_expenditures,122,37. Offsets to Operating Expenditures,104,37. Offsets to Operating Expenditures,104,36. Offsets to Operating Expenditures
125
+ col_b_net_operating_expenditures,123,38. Net Operating Expenditures,105,38. Net Operating Expenditures,105,37. Net Operating Expenditures
data/sources/F4.csv ADDED
@@ -0,0 +1,86 @@
1
+ canonical,^8.0|7.0|6.4|6.3|6.2|6.1,,^5.3|5.2|5.1|5.0|3,
2
+ form_type,1,FORM TYPE,1,FORM TYPE
3
+ filer_committee_id_number,2,FILER COMMITTEE ID NUMBER,2,FILER FEC CMTE ID
4
+ committee_name,3,COMMITTEE NAME,3,COMMITTEE NAME
5
+ street_1,4,STREET 1,4,STREET 1
6
+ street_2,5,STREET 2,5,STREET 2
7
+ city,6,CITY,6,CITY
8
+ state,7,STATE,7,STATE
9
+ zip_code,8,ZIP,8,ZIP
10
+ committee_type,9,COMMITTEE/ORG TYPE,9,COMMITTEE/ORG TYPE
11
+ committee_type_description,10,COMMITTEE/ORG TYPE - OTHER DESCRIPTION,10,DESC
12
+ report_code,11,REPORT CODE,11,RPTCODE
13
+ coverage_from_date,12,COVERAGE FROM DATE,12,DATE (Coverage From)
14
+ coverage_through_date,13,COVERAGE THROUGH DATE,13,DATE (Coverage To)
15
+ treasurer_last_name,14,TREASURER LAST NAME,,
16
+ treasurer_first_name,15,TREASURER FIRST NAME,,
17
+ treasurer_middle_name,16,TREASURER MIDDLE NAME,,
18
+ treasurer_prefix,17,TREASURER PREFIX,,
19
+ treasurer_suffix,18,TREASURER SUFFIX,,
20
+ date_signed,19,DATE SIGNED,80,DATE (Signed)
21
+ col_a_cash_on_hand_beginning_reporting_period,20,6.(b) cash on hand beg. report per.,14,6.(b) cash on hand beg. report per.
22
+ col_a_total_receipts,21,6.(c) Total receipts,15,6.(c) Total receipts
23
+ col_a_subtotal,22,6.(d) Subtotal,16,6.(d) Subtotal
24
+ col_a_total_disbursements,23,7. Total disbursements,17,7. Total disbursements
25
+ col_a_cash_on_hand_close_of_period,24,8. COH CLOSE (COL A),18,8. COH CLOSE
26
+ col_a_debts_to,25,9. Debts to,19,9. Debts to
27
+ col_a_debts_by,26,10. Debts by,20,10. Debts by
28
+ col_a_convention_expenditures,27,11. Convention expenditures,21,11. Convention expenditures
29
+ col_a_convention_refunds,28,12. refunds/rebates/returns relating to conv exp.,22,12. refunds/rebates/returns relating to conv exp.
30
+ col_a_expenditures_subject_to_limits,29,12(a) Expenditures subject to limits,23,12(a) Expenditures subject to limits
31
+ col_a_prior_expenditures_subject_to_limits,30,12(b) expend. from prior years subject to limits,24,12(b) expend. from prior years subject to limits
32
+ col_a_total_expenditures_subject_to_limits,,,25,12(c) total expenditures subject to limits
33
+ col_a_federal_funds,31,13. Federal Funds SCH A,26,13. Federal Funds SCH A
34
+ col_a_contributions_itemized,32,14(a) Itemized,27,14(a) Itemized
35
+ col_a_contributions_unitemized,33,14(b) unitemized,28,14(b) unitemized
36
+ col_a_contributions_subtotal,34,14(c) subtotal,29,14(c) subtotal
37
+ col_b_transfers_from_affiliated,35,15. Transfers from affiliated cmtes.,30,15. Transfers from affiliated cmtes.
38
+ col_a_loans_received,36,16(a) loans received,31,16(a) loans received
39
+ col_a_loan_repayments_received,37,16(b) loan repayments received,32,16(b) loan repayments received
40
+ col_a_loan_receipts_subtotal,38,16(c) subtotal loans/repayments,33,16(c) subtotal loans/repayments
41
+ col_a_convention_refunds_itemized,39,17(a) Itemized,34,17(a) Itemized
42
+ col_a_convention_refunds_unitemized,40,17(b) unitemized,35,17(b) unitemized
43
+ col_a_convention_refunds_subtotal,41,17(c) subtotal,36,17(c) subtotal
44
+ col_a_other_refunds_itemized,42,18(a) Itemized,37,18(a) Itemized
45
+ col_a_other_refunds_unitemized,43,18(b) unitemized,38,18(b) unitemized
46
+ col_a_other_refunds_subtotal,44,18(c) subtotal,39,18(c) subtotal
47
+ col_a_other_income_itemized,45,19(a) Itemized,40,19(a) Itemized
48
+ col_a_other_income_unitemized,46,19(b) unitemized,41,19(b) unitemized
49
+ col_a_other_income_subtotal,47,19(c) subtotal,42,19(c) subtotal
50
+ col_a_total_receipts,48,20. total receipts,43,20. total receipts
51
+ col_a_convention_expenses_itemized,49,21(a) Itemized,44,21(a) Itemized
52
+ col_a_convention_expenses_unitemized,50,21(b) unitemized,45,21(b) unitemized
53
+ col_a_convention_expenses_subtotal,51,21(c) subtotal,46,21(c) subtotal
54
+ col_a_transfers_to_affiliated,52,22. Transfers to Affiliated Cmtes,47,22. Transfers to Affiliated Cmtes
55
+ col_a_loans_made,53,23(a) loans made,48,23(a) loans made
56
+ col_a_loan_repayments_made,54,23(b) loan repayments made,49,23(b) loan repayments made
57
+ col_a_loan_disbursements_subtotal,55,23(c) subtotal,50,23(c) subtotal
58
+ col_a_other_disbursements_itemized,56,24(a) Itemized,51,24(a) Itemized
59
+ col_a_other_disbursements_unitemized,57,24(b) unitemized,52,24(b) unitemized
60
+ col_a_other_disbursements_subtotal,58,24(c) subtotal,53,24(c) subtotal
61
+ col_a_total_disbursements,59,25. Total disbursements,54,25. Total disbursements
62
+ col_b_cash_on_hand_beginning_year,60,6.(a) Cash on Hand,55,6.(a) Cash on Hand
63
+ col_b_beginning_year,61,6.(a) 19 -- (YEAR),56,6.(a) 19 -- (YEAR)
64
+ col_b_total_receipts,62,6.(c) Total receipts,57,6.(c) Total receipts
65
+ col_b_subtotal,63,6.(d) Subtotal,58,6.(d) Subtotal
66
+ col_b_total_disbursements,64,7. Total disbursements,59,7. Total disbursements
67
+ col_b_cash_on_hand_close_of_period,65,8. COH CLOSE (COL B),60,8. COH CLOSE
68
+ col_b_convention_expenditures,66,11. Convention expenditures,61,11. Convention expenditures
69
+ col_b_convention_refunds,67,12. refunds/rebates/returns relating to conv exp.,62,12. refunds/rebates/returns relating to conv exp.
70
+ col_b_expenditures_subject_to_limits,68,12(a) Expenditures subject to limits,63,12(a) Expenditures subject to limits
71
+ col_b_prior_expendiutres_subject_to_limits,69,12(b) expend. from prior years subject to limits,64,12(b) expend. from prior years subject to limits
72
+ col_b_total_expenditures_subject_to_limits,70,12(c) total expenditures subject to limits,65,12(c) total expenditures subject to limits
73
+ col_b_federal_funds,71,13. Federal Funds,66,13. Federal Funds
74
+ col_b_contributions_subtotal,72,14(c) subtotal,67,14(c) subtotal
75
+ col_b_transfers_from_affiliated,73,15. Transfers from affiliated cmtes.,68,15. Transfers from affiliated cmtes.
76
+ col_b_loan_receipts_subtotal,74,16(c) subtotal loans/repayments,69,16(c) subtotal loans/repayments
77
+ col_b_convention_refunds_subtotal,75,17(c) subtotal,70,17(c) subtotal
78
+ col_b_other_refunds_subtotal,76,18(c) subtotal,71,18(c) subtotal
79
+ col_b_other_income_subtotal,77,19(c) subtotal,72,19(c) subtotal
80
+ col_b_total_receipts,78,20. total receipts,73,20. total receipts
81
+ col_b_convention_expenses_subtotal,79,21(c) subtotal,74,21(c) subtotal
82
+ col_b_transfers_to_affiliated,80,22. Transfers to Affiliated Cmtes,75,22. Transfers to Affiliated Cmtes
83
+ col_b_loan_disbursements_subtotal,81,23(c) subtotal,76,23(c) subtotal
84
+ col_b_other_disbursements_subtotal,82,24(c) subtotal,77,24(c) subtotal
85
+ col_b_total_disbursements,83,25. Total disbursements,78,25. Total disbursements
86
+ treasurer_name,,,79,NAME/TREASURER (as signed)