fech 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,6 +10,7 @@ Fech supports several FEC form types, including all F1 (statements of organizati
10
10
 
11
11
  == News
12
12
 
13
+ * Feb. 29, 2012: Version 0.9.2 released. Bug-fix for F3 mappings, added filing comparison class.
13
14
  * Feb. 21, 2012: Versions 0.9.0, 0.9.1 released. Added support for alternative CSV Parsers, F4 filings.
14
15
  * Feb. 19, 2012: Version 0.8.2 released. Added layouts for F1M and F2 filings.
15
16
  * Feb. 15, 2012: Version 0.8.1 released. Bug-fix to support F3 termination filings.
@@ -166,6 +167,23 @@ You can allow any field (converted, combined, or untranslated) to have an arbitr
166
167
 
167
168
  We found it useful to be able to access attributes using the name the fields in our database they correspond to.
168
169
 
170
+ === Comparing filings
171
+
172
+ You may want to compare two electronic filings to each other, particularly an original filing and its amendment, since amendments are a full replacement of the original filing. Fech has a Comparison class that allows you to compare the summary or a specific schedule of itemizations between two filings. The use of Comparison requires that you have created both Filing objects and downloaded them:
173
+
174
+ filing_1 = Fech::Filing.new(767437)
175
+ filing_1.download
176
+ filing_2 = Fech::Filing.new(751798)
177
+ filing_2.download
178
+ comparison = Fech::Comparison.new(filing_1, filing_2)
179
+ comparison.summary
180
+
181
+ Comparison's summary method returns a hash of summary fields whose values have changed in filing_2. The schedule method accepts either a symbol or string representing the schedule. So, for Schedule A (itemized contributions):
182
+
183
+ comparison.schedule(:sa)
184
+
185
+ The result will be an array of Fech contribution objects that differ in any way. If an amendment updates the employer or occupation of a contributor, for example, comparison.schedule(:sa) would return that contribution. If the array is empty, no itemized records changed.
186
+
169
187
  === Handling malformed filings
170
188
 
171
189
  Some filers put double quotes around each field in their filings, which can cause problems if not done correctly. For example, filing No. 735497 has the following value in the field for the name of a payee:
@@ -7,6 +7,7 @@ require 'fech/mapped'
7
7
  require 'fech/fech_utils'
8
8
  require 'fech/map_generator'
9
9
  require 'fech/csv'
10
+ require 'fech/comparison'
10
11
 
11
12
  module Fech
12
13
  extend FechUtils
@@ -0,0 +1,36 @@
1
+ module Fech
2
+ # Fech::Comparison takes two Filing objects and does comparisons on them,
3
+ # checking for differences between an original and amended filing, or
4
+ # two filings covering the same period in different years.
5
+ class Comparison
6
+ attr_accessor :filing_1, :filing_2
7
+
8
+ # Create a new Comparison object by passing in two Filing objects
9
+ # Filing objects need to be downloaded first
10
+ # f1 = Fech::Filing.new(767437)
11
+ # f1.download
12
+ # f2 = Fech::Filing.new(751798)
13
+ # f2.download
14
+ # comparison = Fech::Comparison.new(f1, f2)
15
+ # comparison.summary
16
+ def initialize(filing_1, filing_2, opts={})
17
+ @filing_1 = filing_1
18
+ @filing_2 = filing_2
19
+ end
20
+
21
+ # compares summary of this filing with summary of an earlier
22
+ # or later version of the filing, returning a Fech::Mapped hash
23
+ # of mapped fields whose values have changed. based on rails' hash diff:
24
+ # https://github.com/rails/rails/blob/master/activesupport/lib/active_support/core_ext/hash/diff.rb
25
+ def summary
26
+ @filing_1.summary.delete_if { |k, v| @filing_2.summary[k] == v }.merge!(@filing_2.summary.dup.delete_if { |k, v| @filing_1.summary.has_key?(k) })
27
+ end
28
+
29
+ # compares a schedule of itemized records from one filing to another
30
+ # returns an array of records that are new or have changed.
31
+ def schedule(schedule)
32
+ @filing_1.rows_like(schedule.to_sym) - @filing_2.rows_like(schedule.to_sym)
33
+ end
34
+
35
+ end
36
+ end
@@ -53,5 +53,7 @@ module FechUtils
53
53
  Regexp.new(Regexp.escape(label.to_s), Regexp::IGNORECASE)
54
54
  end
55
55
  end
56
+
57
+
56
58
 
57
59
  end
@@ -176,7 +176,6 @@ module Fech
176
176
  header[:report_id]
177
177
  end
178
178
 
179
-
180
179
  # Combines an array of keys and values into an Fech::Mapped object,
181
180
  # a type of Hash.
182
181
  # @param [Array] keys the desired keys for the new hash
@@ -32,10 +32,10 @@ module Fech
32
32
  '^3' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, nil, :date_signed],
33
33
  },
34
34
  "^f3[a|n|t]" => {
35
- '^3.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :election_state, :election_district, :report_code, :election_code, :election_date, nil, :primary_election, :general_election, :special_election, :runoff_election, :coverage_from_date, :coverage_through_date, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, :col_a_other_loan_repayments, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, :col_b_other_loan_repayments, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, :col_b_refunds_to_party_committees, :col_b_refunds_to_other_committees, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :treasurer_name, :date_signed],
36
- '^8.0|7.0|6.4' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :election_date, :election_code, nil, nil, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, :col_a_other_loan_repayments, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, :col_b_other_loan_repayments, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, :col_b_refunds_to_party_committees, :col_b_refunds_to_other_committees, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements],
37
- '^6.3|6.2|6.1' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :election_date, :election_code, nil, nil, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :candidate_id_number, :candidate_last_name, :candidate_first_name, :candidate_middle_name, :candidate_prefix, :candidate_suffix, :report_type, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, nil, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, nil, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, nil, nil, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :col_b_gross_receipts_authorized_primary, :col_b_aggregate_personal_funds_primary, :col_b_gross_receipts_minus_personal_funds_primary, :col_b_gross_receipts_authorized_general, :col_b_aggregate_personal_funds_general, :col_b_gross_receipts_minus_personal_funds_general],
38
- '^5.3|5.2|5.1|5.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :election_state, :election_district, :report_code, :election_code, :election_date, nil, :primary_election, :general_election, :special_election, :runoff_election, :coverage_from_date, :coverage_through_date, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, nil, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, nil, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, nil, nil, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :treasurer_name, :date_signed, :candidate_id_number, :candidate_name, :report_type, :col_b_gross_receipts_authorized_primary, :col_b_aggregate_personal_funds_primary, :col_b_gross_receipts_minus_personal_funds_primary, :col_b_gross_receipts_authorized_general, :col_b_aggregate_personal_funds_general, :col_b_gross_receipts_minus_personal_funds_general],
35
+ '^3.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :election_state, :election_district, :report_code, :election_code, :election_date, :state_of_election, :primary_election, :general_election, :special_election, :runoff_election, :coverage_from_date, :coverage_through_date, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, :col_a_other_loan_repayments, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, :col_b_other_loan_repayments, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, :col_b_refunds_to_party_committees, :col_b_refunds_to_other_committees, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :treasurer_name, :date_signed],
36
+ '^8.0|7.0|6.4' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :report_code, :election_code, :election_date, :state_of_election, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, :col_a_other_loan_repayments, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, :col_b_other_loan_repayments, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, :col_b_refunds_to_party_committees, :col_b_refunds_to_other_committees, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements],
37
+ '^6.3|6.2|6.1' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :election_date, :election_code, nil, :state_of_election, :coverage_from_date, :coverage_through_date, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed, :candidate_id_number, :candidate_last_name, :candidate_first_name, :candidate_middle_name, :candidate_prefix, :candidate_suffix, :report_type, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, nil, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, nil, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, nil, nil, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :col_b_gross_receipts_authorized_primary, :col_b_aggregate_personal_funds_primary, :col_b_gross_receipts_minus_personal_funds_primary, :col_b_gross_receipts_authorized_general, :col_b_aggregate_personal_funds_general, :col_b_gross_receipts_minus_personal_funds_general],
38
+ '^5.3|5.2|5.1|5.0' => [:form_type, :filer_committee_id_number, :committee_name, :street_1, :street_2, :city, :state, :zip, :change_of_address, :election_state, :election_district, :report_code, :election_code, :election_date, :state_of_election, :primary_election, :general_election, :special_election, :runoff_election, :coverage_from_date, :coverage_through_date, :col_a_total_contributions_no_loans, :col_a_total_contributions_refunds, :col_a_net_contributions, :col_a_total_operating_expenditures, :col_a_total_offset_to_operating_expenditures, :col_a_net_operating_expenditures, :col_a_cash_on_hand_close_of_period, :col_a_debts_to, :col_a_debts_by, :col_a_individual_contributions_itemized, :col_a_individual_contributions_unitemized, :col_a_total_individual_contributions, :col_a_political_party_contributions, :col_a_pac_contributions, :col_a_candidate_contributions, :col_a_total_contributions, :col_a_transfers_from_authorized, :col_a_candidate_loans, :col_a_other_loans, :col_a_total_loans, :col_a_offset_to_operating_expenditures, :col_a_other_receipts, :col_a_total_receipts, :col_a_operating_expenditures, :col_a_transfers_to_authorized, :col_a_candidate_loan_repayments, nil, :col_a_total_loan_repayments, :col_a_refunds_to_individuals, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_refunds, :col_a_other_disbursements, :col_a_total_disbursements, :col_a_cash_beginning_reporting_period, :col_a_refunds_to_party_committees, :col_a_refunds_to_other_committees, :col_a_total_receipts_period, :col_a_cash_on_hand_close, :col_b_total_contributions_no_loans, :col_b_total_contributions_refunds, :col_b_net_contributions, :col_b_total_operating_expenditures, :col_b_total_offset_to_operating_expenditures, :col_b_net_operating_expenditures, :col_b_individual_contributions_itemized, :col_b_individual_contributions_unitemized, :col_b_total_individual_contributions, :col_b_political_party_contributions, :col_b_pac_contributions, :col_b_candidate_contributions, :col_b_total_contributions, :col_b_transfers_from_authorized, :col_b_candidate_loans, :col_b_other_loans, :col_b_total_loans, :col_b_offset_to_operating_expenditures, :col_b_other_receipts, :col_b_total_receipts, :col_b_operating_expenditures, :col_b_transfers_to_authorized, :col_b_candidate_loan_repayments, nil, :col_b_total_loan_repayments, :col_b_refunds_to_individuals, nil, nil, :col_b_total_refunds, :col_b_other_disbursements, :col_b_total_disbursements, :treasurer_name, :date_signed, :candidate_id_number, :candidate_name, :report_type, :col_b_gross_receipts_authorized_primary, :col_b_aggregate_personal_funds_primary, :col_b_gross_receipts_minus_personal_funds_primary, :col_b_gross_receipts_authorized_general, :col_b_aggregate_personal_funds_general, :col_b_gross_receipts_minus_personal_funds_general],
39
39
  },
40
40
  "^f3l[a|n]" => {
41
41
  '^8.0|7.0|6.4' => [:form_type, :filer_committee_id_number, :committee_name, :change_of_address, :street_1, :street_2, :city, :state, :zip, :election_state, :election_district, :report_code, :election_date, nil, :semi_annual_period, :coverage_from_date, :coverage_through_date, :semi_annual_period_jan_june, :semi_annual_period_jul_dec, :quarterly_monthly_bundled_contributions, :semi_annual_bundled_contributions, :treasurer_last_name, :treasurer_first_name, :treasurer_middle_name, :treasurer_prefix, :treasurer_suffix, :date_signed],
@@ -1,3 +1,3 @@
1
1
  module Fech
2
- VERSION = "0.9.1"
2
+ VERSION = "0.9.2"
3
3
  end
@@ -1,112 +1 @@
1
- canonical,^8.0|7.0|6.4,,^6.3|6.2|6.1,,^5.3|5.2|5.1|5.0,,^3.0,
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 COMMITTEE ID NUMBER,2,FILER COMMITTEE ID NUMBER
4
- committee_name,3,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEE NAME,3,COMMITTEE NAME
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,9,ZIP,9,ZIP,8,ZIP,8,ZIP
11
- report_code,12,REPORT CODE,12,REPORT CODE,12,RPTCODE,12,RPTCODE
12
- election_code,13,ELECTION CODE {was RPTPGI},13,ELECTION CODE {was RPTPGI},13,RPTPGI,13,RPTPGI
13
- election_date,12,DATE OF ELECTION,12,DATE OF ELECTION,14,DATE (Of Election),14,DATE (Of Election)
14
- election_state,10,ELECTION STATE,10,ELECTION STATE,10,ELECTION STATE,10,ELECTION STATE
15
- election_district,11,ELECTION DISTRICT,11,ELECTION DISTRICT,11,ELECTION DISTRICT,11,ELECTION DISTRICT
16
- coverage_from_date,16,COVERAGE FROM DATE,16,COVERAGE FROM DATE,20,DATE (Coverage From),20,DATE (Coverage From)
17
- coverage_through_date,17,COVERAGE THROUGH DATE,17,COVERAGE THROUGH DATE,21,DATE (Coverage To),21,DATE (Coverage To)
18
- primary_election,,,,,16,PRIMARY ELECTION ,16,PRIMARY ELECTION
19
- general_election,,,,,17,GENERAL ELECTION,17,GENERAL ELECTION
20
- special_election,,,,,18,SPECIAL ELECTION ,18,SPECIAL ELECTION
21
- runoff_election,,,,,19,RUNOFF ELECTION ,19,RUNOFF ELECTION
22
- treasurer_name,,,,,92,NAME/TREASURER (as signed),92,NAME/TREASURER (as signed)
23
- treasurer_last_name,18,TREASURER LAST NAME,18,TREASURER LAST NAME,,,,
24
- treasurer_first_name,19,TREASURER FIRST NAME,19,TREASURER FIRST NAME,,,,
25
- treasurer_middle_name,20,TREASURER MIDDLE NAME,20,TREASURER MIDDLE NAME,,,,
26
- treasurer_prefix,21,TREASURER PREFIX,21,TREASURER PREFIX,,,,
27
- treasurer_suffix,22,TREASURER SUFFIX,22,TREASURER SUFFIX,,,,
28
- date_signed,23,DATE SIGNED,23,DATE SIGNED,93,DATE (Signed),93,DATE (Signed)
29
- candidate_id_number,,,24,CANDIDATE ID NUMBER,94,FEC CANDIDATE ID NUMBER,,
30
- candidate_name,,,,,95,CANDIDATE NAME,,
31
- candidate_last_name,,,25,CANDIDATE LAST NAME,,,,
32
- candidate_first_name,,,26,CANDIDATE FIRST NAME,,,,
33
- candidate_middle_name,,,27,CANDIDATE MIDDLE NAME,,,,
34
- candidate_prefix,,,28,CANDIDATE PREFIX,,,,
35
- candidate_suffix,,,29,CANDIDATE SUFFIX,,,,
36
- report_type,,,30,F3Z-1 REPORT TYPE ,96,F3Z-1 REPORT TYPE (F3Z-1 RPTCODE),,
37
- col_a_total_contributions_no_loans,24,(6a) Total Contributions (NO Loans),31,(6a) Total Contributions (NO Loans),22,(6a) Total Contributions (NO Loans),22,(6a) Total Contributions (NO Loans)
38
- col_a_total_contributions_refunds,25,(6b) Total Contribution Refunds,32,(6b) Total Contribution Refunds,23,(6b) Total Contribution Refunds,23,(6b) Total Contribution Refunds
39
- col_a_net_contributions,26,(6c) Net Contributions,33,(6c) Net Contributions,24,(6c) Net Contributions,24,(6c) Net Contributions
40
- col_a_total_operating_expenditures,27,(7a) Total Operating Expenditures,34,(7a) Total Operating Expenditures,25,(7a) Total Operating Expenditures,25,(7a) Total Operating Expenditures
41
- col_a_total_offset_to_operating_expenditures,28,(7b) Total Offset to Operating Expenditures,35,(7b) Total Offset to Operating Expenditures,26,(7b) Total Offset to Operating Expenditures,26,(7b) Total Offset to Operating Expenditures
42
- col_a_net_operating_expenditures,29,(7c) NET Operating Expenditures.,36,(7c) NET Operating Expenditures.,27,(7c) NET Operating Expenditures.,27,(7c) NET Operating Expenditures.
43
- col_a_cash_on_hand_close_of_period,30,8. CASH ON HAND AT CLOSE ...,37,8. CASH ON HAND AT CLOSE ...,28,8. CASH ON HAND AT CLOSE ...,28,8. CASH ON HAND AT CLOSE ...
44
- col_a_debts_to,31,9. DEBTS TO ( Totals from SCH C and/or D),38,9. DEBTS TO ( Totals from SCH C and/or D),29,9. DEBTS TO ( Totals from SCH C and/or D),29,9. DEBTS TO ( Totals from SCH C and/or D)
45
- col_a_debts_by,32,10. DEBTS BY (Totals from SCH C and/or D),39,10. DEBTS BY (Totals from SCH C and/or D),30,10. DEBTS BY (Totals from SCH C and/or D),30,10. DEBTS BY (Totals from SCH C and/or D)
46
- col_a_individual_contributions_itemized,33,11(a i.) Individuals Itemized,40,11(a i.) Individuals Itemized,31,11(a i.) Individuals Itemized,31,11(a i.) Individuals Itemized
47
- col_a_individual_contributions_unitemized,34,11(a.ii) Individuals Unitemized,41,11(a.ii) Individuals Unitemized,32,11(a.ii) Individuals Unitemized,32,11(a.ii) Individuals Unitemized
48
- col_a_total_individual_contributions,35,11(a.iii) Individual Contribution Total,42,11(a.iii) Individual Contribution Total,33,11(a.iii) Individual Contribution Total,33,11(a.iii) Individual Contribution Total
49
- col_a_political_party_contributions,36,11(b) Political Party Committees,43,11(b) Political Party Committees,34,11(b) Political Party Committees,34,11(b) Political Party Committees
50
- col_a_pac_contributions,37,11(c) Other Political Committees,44,11(c) Other Political Committees,35,11(c) Other Political Committees,35,11(c) Other Political Committees
51
- col_a_candidate_contributions,38,11(d) The Candidate,45,11(d) The Candidate,36,11(d) The Candidate,36,11(d) The Candidate
52
- col_a_total_contributions,39,11(e) Total Contributions,46,11(e) Total Contributions,37,11(e) Total Contributions,37,11(e) Total Contributions
53
- col_a_transfers_from_authorized,40,12. Transfers From Other Authorized Cmttes,47,12. Transfers From Other Authorized Cmttes,38,12. Transfers From Other Authorized Cmttes,38,12. Transfers From Other Authorized Cmttes
54
- col_a_candidate_loans,41,13(a) Loans made or guarn. by the Candidate,48,13(a) Loans made or guarn. by the Candidate,39,13(a) Loans made or guarn. by the Candidate,39,13(a) Loans made or guarn. by the Candidate
55
- col_a_other_loans,42,13(b) All Other Loans,49,13(b) All Other Loans,40,13(b) All Other Loans,40,13(b) All Other Loans
56
- col_a_total_loans,43,13(c) Total Loans,50,13(c) Total Loans,41,13(c) Total Loans,41,13(c) Total Loans
57
- col_a_offset_to_operating_expenditures,44,14. Offsets to Operating Expenditures,51,14. Offsets to Operating Expenditures,42,14. Offsets to Operating Expenditures,42,14. Offsets to Operating Expenditures
58
- col_a_other_receipts,45,15. Other Receipts,52,15. Other Receipts,43,15. Other Receipts,43,15. Other Receipts
59
- col_a_total_receipts,46,16. Total Receipts,53,16. Total Receipts,44,16. Total Receipts,44,16. Total Receipts
60
- col_a_operating_expenditures,47,17. Operating Expenditures,54,17. Operating Expenditures,45,17. Operating Expenditures,45,17. Operating Expenditures
61
- col_a_transfers_to_authorized,48,18. Transfers to Other Authorized Committees,55,18. Transfers to Other Authorized Committees,46,18. Transfers to Other Authorized Committees,46,18. Transfers to Other Authorized Committees
62
- col_a_candidate_loan_repayments,49,19(a) Of Loans made or guar. by the Cand.,56,19(a) Of Loans made or guar. by the Cand.,47,19(a) Of Loans made or guar. by the Cand.,47,19(a) Of Loans made or guar. by the Cand.
63
- col_a_other_loan_repayments,50,"19(b) Loan Repayments, All Other Loans",57,"19(b) Loan Repayments, All Other Loans",48,"19(b) Loan Repayments, All Other Loans",48,"19(b) Loan Repayments, All Other Loans"
64
- col_a_total_loan_repayments,51,19(c) Total Loan Repayments,58,19(c) Total Loan Repayments,49,19(c) Total Loan Repayments,49,19(c) Total Loan Repayments
65
- col_a_refunds_to_individuals,52,20(a) Refund/Individuals Other than Pol. Cmtes,59,20(a) Refund/Individuals Other than Pol. Cmtes,50,20(a) Refund/Individuals Other than Pol. Cmtes,50,20(a) Refund/Individuals Other than Pol. Cmtes
66
- col_a_refunds_to_party_committees,53,20(b) Refund/Political Party Committees,60,20(b) Refund/Political Party Committees,51,20(b) Refund/Political Party Committees,51,20(b) Refund/Political Party Committees
67
- col_a_refunds_to_other_committees,54,20(c) Refund/Other Political Committees,61,20(c) Refund/Other Political Committees,52,20(c) Refund/Other Political Committees,52,20(c) Refund/Other Political Committees
68
- col_a_total_refunds,55,20(d) Total Contribution Refunds,62,20(d) Total Contribution Refunds,53,20(d) Total Contribution Refunds,53,20(d) Total Contribution Refunds
69
- col_a_other_disbursements,56,21. Other Disbursements,63,21. Other Disbursements,54,21. Other Disbursements,54,21. Other Disbursements
70
- col_a_total_disbursements,57,22. Total Disbursements,64,22. Total Disbursements,55,22. Total Disbursements,55,22. Total Disbursements
71
- col_a_cash_beginning_reporting_period,58,23. Cash Beginning Reporting Period,65,23. Cash Beginning Reporting Period,56,23. Cash Beginning Reporting Period,56,23. Cash Beginning Reporting Period
72
- col_a_refunds_to_party_committees,59,24. Total Receipts this Period,66,24. Total Receipts this Period,57,24. Total Receipts this Period,57,24. Total Receipts this Period
73
- col_a_refunds_to_other_committees,60,25. Subtotals,67,25. Subtotals,58,25. SubTotal,58,25. SubTotal
74
- col_a_total_receipts_period,61,26. Total Disbursements this Period,68,26. Total Disbursements this Period,59,26. Total Disbursements this Period,59,26. Total Disbursements this Period
75
- col_a_cash_on_hand_close,62,27. Cash on hand at Close Period,69,27. Cash on hand at Close Period,60,27. Cash on hand at Close Period,60,27. Cash on hand at Close Period
76
- col_b_total_contributions_no_loans,63,(6a) Total Contributions (No Loans),70,(6a) Total Contributions (No Loans),61,(6a) Total Contributions (No Loans),61,(6a) Total Contributions (No Loans)
77
- col_b_total_contributions_refunds,64,(6b) Total Contribution Refunds,71,(6b) Total Contribution Refunds,62,(6b) Total Contribution Refunds,62,(6b) Total Contribution Refunds
78
- col_b_net_contributions,65,(6c) Net Contributions,72,(6c) Net Contributions,63,(6c) Net Contributions,63,(6c) Net Contributions
79
- col_b_total_operating_expenditures,66,(7a) Total Operating Expenditures,73,(7a) Total Operating Expenditures,64,(7a) Total Operating Expenditures,64,(7a) Total Operating Expenditures
80
- col_b_total_offset_to_operating_expenditures,67,(7b) Total Offsets to Operating Expenditures,74,(7b) Total Offsets to Operating Expenditures,65,(7b) Total Offsets to Operating Expenditures,65,(7b) Total Offsets to Operating Expenditures
81
- col_b_net_operating_expenditures,68,(7c) NET Operating Expenditures.,75,(7c) NET Operating Expenditures.,66,(7c) NET Operating Expenditures.,66,(7c) NET Operating Expenditures.
82
- col_b_individual_contributions_itemized,69,11(a i.) Individuals Itemized,76,11(a i.) Individuals Itemized,67,11(a.i) Individuals Itemized,67,11(a.i) Individuals Itemized
83
- col_b_individual_contributions_unitemized,70,11(a.ii) Individuals Unitemized,77,11(a.ii) Individuals Unitemized,68,11(a.ii) Individuals Unitemized,68,11(a.ii) Individuals Unitemized
84
- col_b_total_individual_contributions,71,11(a.iii) Individuals Total,78,11(a.iii) Individuals Total,69,11(a.iii) Individuals Total,69,11(a.iii) Individuals Total
85
- col_b_political_party_contributions,72,11(b) Political Party Committees,79,11(b) Political Party Committees,70,11(b) Political Party Committees,70,11(b) Political Party Committees
86
- col_b_pac_contributions,73,11(c) All Other Political Committees (PACS),80,11(c) All Other Political Committees (PACS),71,11(c) All Other Political Committees (PACS),71,11(c) All Other Political Committees (PACS)
87
- col_b_candidate_contributions,74,11(d) The Candidate,81,11(d) The Candidate,72,11(d) The Candidate,72,11(d) The Candidate
88
- col_b_total_contributions,75,11(e) Total Contributions,82,11(e) Total Contributions,73,11(e) Total Contributions,73,11(e) Total Contributions
89
- col_b_transfers_from_authorized,76,12. Transfers From Other AUTH Committees,83,12. Transfers From Other AUTH Committees,74,12. Transfers From Other AUTH Committees,74,12. Transfers From Other AUTH Committees
90
- col_b_candidate_loans,77,13(a) Loans made or guarn. by the Candidate,84,13(a) Loans made or guarn. by the Candidate,75,13(a) Loans made or guarn. by the Candidate,75,13(a) Loans made or guarn. by the Candidate
91
- col_b_other_loans,78,13(b) All Other Loans,85,13(b) All Other Loans,76,13(b) All Other Loans,76,13(b) All Other Loans
92
- col_b_total_loans,79,13(c) Total Loans,86,13(c) Total Loans,77,13(c) Total Loans,77,13(c) Total Loans
93
- col_b_offset_to_operating_expenditures,80,14. Offsets to Operating Expenditures,87,14. Offsets to Operating Expenditures,78,14. Offsets to Operating Expenditures,78,14. Offsets to Operating Expenditures
94
- col_b_other_receipts,81,15. Other Receipts,88,15. Other Receipts,79,15. Other Receipts,79,15. Other Receipts
95
- col_b_total_receipts,82,16. Total Receipts,89,16. Total Receipts,80,16. Total Receipts,80,16. Total Receipts
96
- col_b_operating_expenditures,83,17 Operating Expenditures,90,17 Operating Expenditures,81,17 Operating Expenditures,81,17 Operating Expenditures
97
- col_b_transfers_to_authorized,84,18. Transfers To Other AUTH Committees,91,18. Transfers To Other AUTH Committees,82,18. Transfers To Other AUTH Committees,82,18. Transfers To Other AUTH Committees
98
- col_b_candidate_loan_repayments,85,19(a) Loan Repayment By Candidate,92,19(a) Loan Repayment By Candidate,83,19(a) Loan Repayment By Candidate,83,19(a) Loan Repayment By Candidate
99
- col_b_other_loan_repayments,86,"19(b) Loan Repayments, ALL Other Loans",93,"19(b) Loan Repayments, ALL Other Loans",84,"19(b) Loan Repayments, ALL Other Loans",84,"19(b) Loan Repayments, ALL Other Loans"
100
- col_b_total_loan_repayments,87,19(c) Total Loan Repayments,94,19(c) Total Loan Repayments,85,19(c) Total Loan Repayments,85,19(c) Total Loan Repayments
101
- col_b_refunds_to_individuals,88,20(a) Refund/Individuals Other than Pol. Cmtes,95,20(a) Refund/Individuals Other than Pol. Cmtes,86,20(a) Refund/Individuals Other than Pol. Cmtes,86,20(a) Refund/Individuals Other than Pol. Cmtes
102
- col_b_refunds_to_party_committees,89,"20(b) Refund, Political Party Committees",96,"20(b) Refund, Political Party Committees",87,"20(b) Refund, Political Party Committees",87,"20(b) Refund, Political Party Committees"
103
- col_b_refunds_to_other_committees,90,"20(c) Refund, Other Political Committees",97,"20(c) Refund, Other Political Committees",88,"20(c) Refund, Other Political Committees",88,"20(c) Refund, Other Political Committees"
104
- col_b_total_refunds,91,20(d) Total Contributions Refunds,98,20(d) Total Contributions Refunds,89,20(d) Total Contributions Refunds,89,20(d) Total Contributions Refunds
105
- col_b_other_disbursements,92,21. Other Disbursements,99,21. Other Disbursements,90,21. Other Disbursements,90,21. Other Disbursements
106
- col_b_total_disbursements,93,22. Total Disbursements,100,22. Total Disbursements,91,22. Total Disbursements,91,22. Total Disbursements
107
- col_b_gross_receipts_authorized_primary,,,101,Gross Receipts of Authorized Committees (primary),97,1. GROSS RECEIPTS OF AUTHORIZED COMMITTEES (PRIMARY),,
108
- col_b_aggregate_personal_funds_primary,,,102,Aggregate Amount from Personal Funds (primary),98,2. AGGREGATE AMT OF CONTRIBUTIONS FROM PERSONAL FUNDS (PRIMARY),,
109
- col_b_gross_receipts_minus_personal_funds_primary,,,103,Gross Receipts Minus Personal from Candidate (primary),99,3. GROSS RECEIPTS - MINUS PERSONAL CONTRIBUTIONS FROM CANDIDATE (PRIMARY),,
110
- col_b_gross_receipts_authorized_general,,,104,Gross Receipts of Authorized Committees (general),100,1. GROSS RECEIPTS OF AUTHORIZED COMMITTEES (GENERAL),,
111
- col_b_aggregate_personal_funds_general,,,105,Aggregate Amount from Personal Funds (general),101,2. AGGREGATE AMT OF CONTRIBUTIONS FROM PERSONAL FUNDS (GENERAL),,
112
- col_b_gross_receipts_minus_personal_funds_general,,,106,Gross Receipts Minus Personal from Candidate (general),102,3. GROSS RECEIPTS - MINUS PERSONAL CONTRIBUTIONS FROM CANDIDATE (GENERAL),,
1
+ canonical,^8.0|7.0|6.4,,^6.3|6.2|6.1,,^5.3|5.2|5.1|5.0,,^3.0,
@@ -0,0 +1,30 @@
1
+ require 'spec_helper'
2
+
3
+ describe Fech::Comparison do
4
+
5
+ describe "compare" do
6
+ before do
7
+ @amended_filing = Fech::Filing.new(767339)
8
+ @amended_filing.stubs(:file_path).returns(File.join(File.dirname(__FILE__), 'data', '767339.fec'))
9
+ @original_filing = Fech::Filing.new(467627)
10
+ @original_filing.stubs(:file_path).returns(File.join(File.dirname(__FILE__), 'data', '467627.fec'))
11
+ @comparison = Fech::Comparison.new(@amended_filing, @original_filing)
12
+ end
13
+
14
+ it "should return a hash of columns and values that have changed for two filings" do
15
+ @comparison.summary.class.should == Fech::Mapped
16
+ @comparison.summary[:col_a_net_contributions].should == "542344.49"
17
+ end
18
+
19
+ it "should return an array of schedule items that have changed" do
20
+ @comparison.schedule(:sa).size.should == 576
21
+ @comparison.schedule("sb").size.should == 60
22
+ end
23
+
24
+ it "should return an empty array of schedule items when none have changed" do
25
+ @comparison.schedule("sc").size.should == 0
26
+ end
27
+
28
+ end
29
+
30
+ end
@@ -0,0 +1,608 @@
1
+ HDRFEC6.4FILPAC4.55 R795
2
+ F3NC00441451Djou for HawaiiP.O. BOX 235280HONOLULUHI968233504HI0112SP201020100522HI2010040120100502MashibaChrisS20100510525150.481050.00524100.48653309.790.00653309.79362711.570.000.00299378.36140952.02440330.380.0084820.100.00525150.480.000.000.000.000.000.00525150.48653309.790.000.000.000.001050.000.000.001050.000.00654359.79491920.88525150.481017071.36654359.79362711.571217339.131050.001216289.13853506.610.00853506.61751958.36310560.671062519.030.00154820.100.001217339.130.000.000.000.000.000.001217339.13853506.610.000.000.000.001050.000.000.001050.000.00854556.61
3
+
4
+ SA11AIC004414510003645INDGorchowBruceMr.505 N Lake Shore DrChicagoIL60611O2010Special Election 1020100401250.00250.0015PPM AmericaInvestments
5
+ SA11AIC004414510003663INDUechiMichaelD SDr.98-111 Kaahele PlAieaHI96701O2010Special Election 1020100401500.00500.0015Michael DS Uechi MD IncPhysician
6
+ SA11AIC004414510003664INDGrimesJoanneLMs.2019 Ualakaa StHonoluluHI96822O2010Special Election 1020100401250.00250.0015Carlsmith Ball LLPAttorney
7
+ SA11AIC004414510003798INDSlaterRosalieRMrs.3105 Pacific Hts RdHonoluluHI96813O2010Special Election 10201004021000.002000.0015NoneHomemaker
8
+ SA11AIC004414510003726INDHandaMichaelMr.377 Salem StAndoverMA01810O2010Special Election 1020100403500.00500.0015Vacuum Barrior CorpTreasurer
9
+ SA11AIC004414510003733INDEdhlundJosephDr.DVM1101 Kaluanui RdHonoluluHI96825O2010Special Election 1020100403500.00500.0015selfVeterinarian
10
+ SA11AIC004414510003755INDTanakaRichardEMr.Jr372 Puuikena DrHonoluluHI96821O2010Special Election 1020100405500.00500.0015Tanaka of TokyoChairman & CEO
11
+ SA11AIC004414510003758INDFordTaraMs.5585 Center StreetJupiterFL33458O2010Special Election 1020100405400.00400.0015Palm Beach Cast StoneOwner
12
+ SA11AIC004414510003765INDSatoKathyMs.2509 Bingham StHonoluluHI96826O2010Special Election 1020100405500.00500.0015PhaseInvesting Technologies IncInvestment Advisor
13
+ SA11AIC004414510003766INDHellreichPhillipDDr.MD225 Kuuhoa PlKailuaHI96734O2010Special Election 1020100405500.00500.0015Kailua Dermatology Associates LtdfPhysician
14
+ SA11AIC004414510003767INDFortunaStanleyMr.96 Kaiulani StHiloHI96720O2010Special Election 1020100405250.00250.0015Kamehameha SchoolHead Master
15
+ SA11AIC004414510003822INDDavidsonKristineGMs.95-204 Ahunalii PlMililaniHI96789O2010Special Election 1020100406250.00250.0015RCUHAdministrator
16
+ SA11AIC004414510003823INDLocatelliPeterJDr.PO Box 915KealakekuaHI96750O2010Special Election 1020100406250.00250.0015West Hawaii Community Health CenterPedatrician
17
+ SA11AIC004414510003828INDChangIanHMr.1717 Mott-Smith Dr 912HonoluluHI96822O2010Special Election 1020100406250.00250.0015FRIAN Asset ManagementDirector
18
+ SA11AIC004414510003838INDChaloupkaMelMr.204 Oneawa Kai PlKailuaHI96734O2010Special Election 1020100406250.00450.0015National Professional ExchngeExperimentation
19
+ SA11AIC004414510003846INDKalbrenerRichardHMr.48 Niuiki CirHonoluluHI96821O2010Special Election 1020100406250.00450.0015Commercial Court PartnersGeneral Partner
20
+ SA11AIC004414510003854INDWaracakScottMr.PO Box 662KaaawaHI96730O2010Special Election 1020100406250.00250.0015Kailua ElectricElectrical Contractor
21
+ SA11AIC004414510003855INDStumpMarcMr.87935 9th StVenetaOR97487O2010Special Election 102010040650.0050.0015NoneRetired
22
+ SA11AIC004414510003869INDPruettSandraMs.2821 Anacapa PlFullertonCA92835O2010Special Election 102010040625.0025.0015Global LogisticsDirector IT
23
+ SA11AIC004414510003875INDMortonDianeMs.30741 Fox Run LaneSan Juan CapistranCA92675O2010Special Election 10201004061000.001500.0015NoneRetired
24
+ SA11AIC004414510003890INDStewartRobertMr.2655 SW 164th PlBurienWA98166O2010Special Election 1020100406500.00500.0015Reenton School DistrictVollyball Coach
25
+ SA11AIC004414510003666INDBosterRobertaMrs.741 Augusta DrMoragaCA94556O2010Special Election 10201004071000.005800.0015NoneRetired
26
+ SA11AIC004414510003667INDMcMillanMary LoisMs.6039 Summer StHonoluluHI96821P2010201004071000.002100.0015NoneHomemaker
27
+ SA11AIC004414510003672INDBudgeCarterRMrs.65-1546 Kawaihae Rd AKamuelaHI96743O2010Special Election 1020100407500.00500.0015
28
+ SA11AIC004414510003673INDCastaneraShayneMDr.611 Launa Aloha PlKailuaHI96734O2010Special Election 1020100407250.00250.0015Physician
29
+ SA11AIC004414510003674INDLooJanisK GMs.25 Prospect StHonoluluHI96813O2010Special Election 1020100407250.001350.0015Kaikor ConstructionOffice Manager
30
+ SA11AIC004414510003675INDShirakiEvelynTMrs.98-770 Leialii StAieaHI96701P201020100407150.00550.0015Real Estate Sales
31
+ SA11AIC004414510003677INDHowardSumnerMr.176 Nawiliwili StHonoluluHI96826O2010Special Election 1020100407100.00375.0015NoneRetired
32
+ SA11AIC004414510003678INDNakataJeanetteHMrs.3550 Kumu PlHonoluluHI96822O2010Special Election 1020100407100.00300.0015NoneRetired
33
+ SA11AIC004414510003679INDParkerDonaldMMr.3864 Owena StHonoluluHI96815O2010Special Election 1020100407100.001800.0015NoneRetired
34
+ SA11AIC004414510003945INDHockerLonMr.25 Hina StHiloHI96720O2010Special Election 10201004071000.001000.0015Onset Computer CorpEngineer
35
+ SA11AIC004414510003953INDGilbertPatrickJMr.714 16th AveHonoluluHI96816O2010Special Election 1020100407250.00250.0015Self-employedConsultant
36
+ SA11AIC004414510003961INDMayCarolAMrs.1901 Nuna PlHonoluluHI96821O2010Special Election 1020100407250.00250.0015City MillVice President
37
+ SA11AIC004414510004018INDWackerRichardMr.119 Maono PlHonoluluHI96821O2010Special Election 10201004071000.001000.0015KEBFinancial Services
38
+ SA11AIC004414510004021INDCoyleMartinMr.PO Box 1425SonomaCA954761425O2010Special Election 10201004071000.001000.0015NoneRetired Lawyer
39
+ SA11AIC004414510004028INDBeckerGlyndaMs.414 Seward Square SE 401WashingtonDC20003O2010Special Election 1020100407250.00250.0015McBee Strtegic ConsultingConsultant
40
+ SA11AIC004414510004030INDJacrouxPaulMr.925 5th Ave D-1KirklandWA98033O2010Special Election 1020100407500.00500.0015NoneRetired
41
+ SA11AIC004414510004038INDPowellGeorgeEDr..MD3950 Kalai Waa Dr U-102KiheiHI96753O2010Special Election 1020100407500.00500.0015Maui Medical GroupPhysician
42
+ SA11AIC004414510003804INDPowersPhilipHMr.1350 Ala Moana Blvd Apt 1909HonoluluHI96814O2010Special Election 1020100408200.002670.0015NoneRetired
43
+ SA11AIC004414510003805INDLumTennysonK WMr.4674 Waiiki PlHonoluluHI96821O2010Special Election 10201004081000.001250.0015Pioneer Pacific CorpExecutive
44
+ SA11AIC004414510003813INDWhitingSanfordDMr.8515 Costa Verde Blvd Unit 2050San DiegoCA921221150O2010Special Election 1020100408100.001250.0015NoneRetired
45
+ SA11AIC004414510003814INDSeemanDanielWMr.1456 Thurston Ave 1104HonoluluHI96582O2010Special Election 1020100408100.00550.0015NoneRetired
46
+ SA11AIC004414510003816INDLeeEdwardKMr.1480 Ihiloa LpHonoluluHI96821P20102010040850.00600.0015NoneRetired Engineer
47
+ SA11AIC004414510003817INDCoffeeGeraldMr.PO Box 8AieaHI967010008O2010Special Election 1020100408500.001100.0015Self EmployedProf Speaker, Journalist
48
+ SA11AIC004414510003819INDEthingtonRichardSMr.447 Portlock RdHonoluluHI96825O2010Special Election 10201004081000.001000.0015SelfGeneral Contractor
49
+ SA11AIC004414510004052INDWaltzGretchenBMs.7467 Makaa StHonoluluHI96825O2010Special Election 1020100408250.00250.0015Cove DevelopmentAssistant
50
+ SA11AIC004414510004055INDMuddSunnyMrs.4720 Halehoola PlHonoluluHI96816O2010Special Election 1020100408500.001600.0015SelfFinancial Consultant
51
+ SA11AIC004414510004056INDMuddRitchieNMr.4720 Halehoola PlHonoluluHI96816O2010Special Election 1020100408500.001000.0015Allied BuildingSales
52
+ SA11AIC004414510004058INDOrganJosephMr.1213 Park AveRiver ForestIL60305O2010Special Election 1020100408250.00250.0015Mayer BrownAttorney
53
+ SA11AIC004414510004087INDGaryHelenGMs.4389 Malia St 658HonoluluHI96821O2010Special Election 1020100408500.00500.0015NoneRetired
54
+ SA11AIC004414510004096INDJacobsTerranceMr.PO Box 300DelmontPA15626O2010Special Election 10201004081000.001000.0015Penneco Oil CoChief Executive Officer
55
+ SA11AIC004414510003793INDTokiokaFranklinMMr.925 Waiholo StHonoluluHI96821O2010Special Election 1020100409100.00300.0015Tradewind Capital GroupExecutive
56
+ SA11AIC004414510004197INDIdaWinifredMs.942 Maniniholo StHonoluluHI96825O2010Special Election 1020100410250.00250.0015NoneRetired
57
+ SA11AIC004414510004198INDSpixGeorgeMr.1 Microsoft WayRedmondWA98052O2010Special Election 1020100410250.00250.0015MicrosoftEngineer
58
+ SA11AIC004414510004211INDDewitzRobertDMr.1705 Uhi PlHonoluluHI96821O2010Special Election 10201004101000.002250.0015American Electric Co LLCExecutive
59
+ SA11AIC004414510005130INDBaptisteArnoldMMr.Jr117 Hanapepe LoopHonoluluHI96825O2010Special Election 10201004103000.003000.0015HWMGPresident
60
+ SA11AIC004414510005132INDBaptisteArnoldMMr.Jr117 Hanapepe LoopHonoluluHI96825O2010Special Election 1020100410-600.002400.0015HWMGPresidentXREDESIGNATION
61
+ SA11AIC004414510005133INDBaptisteArnoldMMr.Jr117 Hanapepe LoopHonoluluHI96825P201020100410600.003000.0015HWMGPresidentXREDESIGNATION
62
+ SA11AIC004414510004226INDMatayoshiJeroldMr.46-451 Holokaa StKaneoheHI96744O2010Special Election 1020100411500.00500.0015SelfAttorney
63
+ SA11AIC004414510005154INDCrenshawTerrenceLMr.555 Hahaione St Apt 10DHonoluluHI96825O2010Special Election 1020100411100.00950.0015NoneRetired
64
+ SA11AIC004414510005161INDKa'auwaiAliciaEMrs.4462 Kamoa RdKapaaHI96746O2010Special Election 1020100411100.001600.0015NoneRetired
65
+ SA11AIC004414510005163INDMcBeathDuncanMr.1584 Kaunalu WayHiloHI96720O2010Special Election 1020100411500.00500.0015DMM IncPresident
66
+ SA11AIC004414510004239INDProctorMattMr.3249 NW 65thSeattleWA98117O2010Special Election 1020100412250.00250.0015Self-employedGeneral Contractor
67
+ SA11AIC004414510004273INDChastainHollaceDr,1819 Braemar DrFort WayneIN46814O2010Special Election 1020100412250.00250.0015Parkview HealthCardiologist
68
+ SA11AIC004414510004279INDBerleChristianAMr.6 Snows Ct NWWashingtonDC200372213O2010Special Election 1020100412250.00500.0015Log Cabin RepublicansDirector
69
+ SA11AIC004414510004293INDSteinbornJerryMr.32 S Washington CircleHinsdaleIL60521O2010Special Election 10201004121000.001000.0015SIGTrader
70
+ SA11AIC004414510004297INDSwartzGregoryJMr.38 S Judd St 4BHonoluluHI96817O2010Special Election 10201004124800.004800.0015NoneRetired
71
+ SA11AIC004414510004298INDSwartzGregoryJMr.38 S Judd St 4BHonoluluHI96817O2010Special Election 1020100412-2400.002400.0015NoneRetiredXREDESIGNATION
72
+ SA11AIC004414510004299INDSwartzGregoryJMr.38 S Judd St 4BHonoluluHI96817P2010201004122400.004800.0015NoneRetiredXREDESIGNATION
73
+ SA11AIC004414510005170INDTreichlerKenAMr.2100 Date St 2105HonoluluHI96826O2010Special Election 102010041225.00275.0015LT ServicesRealtor
74
+ SA11AIC004414510005175INDPangBobbieLMrs.2028 Makiki StHonoluluHI96822O2010Special Election 1020100412500.00850.0015Derek Pang MD IncMedical Assistant
75
+ SA11AIC004414510004326INDNottageDavidMr.44653 C Kaneohe Bay DrKaneoheHI96744O2010Special Election 1020100413500.00500.0015Construction Ass IncContractor
76
+ SA11AIC004414510004329INDUezuLindaEMrs.34 Nawiliwili StHonoluluHI96825O2010Special Election 10201004131000.002500.0015Self-50th State Poultry
77
+ SA11AIC004414510004333INDMorkunasFrankMr.6186 College AveSan DiegoCA92120O2010Special Election 1020100413250.00250.0015NoneRetired
78
+ SA11AIC004414510004357INDBarahalJamesDr.153 Pauahilani WayKailuaHI96734O2010Special Election 10201004131000.001000.0015Straub ClinicPhysician
79
+ SA11AIC004414510005179INDKuwasakiRexSMr.16 Palimalu DrHonoluluHI96817O2010Special Election 10201004131750.001750.0015Mililani Group IncPresident
80
+ SA11AIC004414510005180INDVerdugoConradCMr.Jr47-569 Halemanu StKaneoheHI96744O2010Special Election 10201004134000.004000.0015Brett Hill Construction IncVice President
81
+ SA11AIC004414510005182INDVerdugoConradCMr.Jr47-569 Halemanu StKaneoheHI96744O2010Special Election 1020100413-1600.002400.0015Brett Hill Construction IncVice PresidentXREDESIGNATION
82
+ SA11AIC004414510005183INDVerdugoConradCMr.Jr47-569 Halemanu StKaneoheHI96744P2010201004131600.004000.0015Brett Hill Construction IncVice PresidentXREDESIGNATION
83
+ SA11AIC004414510005185INDKekunaHelenLMrs.95-211 Kaoea PlMililaniHI96789O2010Special Election 1020100413500.00500.0015NoneRetired
84
+ SA11AIC004414510005189INDZegarRichardHMr.124 Kalalau StHonoluluHI96825O2010Special Election 1020100413300.00400.0015NoneRetired
85
+ SA11AIC004414510004359INDLeongLeonardK PMr.2747 Kalawao StHonoluluHI96822O2010Special Election 1020100414500.00500.0015Royal ContractingContractor
86
+ SA11AIC004414510004366INDSaikiPatriciaFMs.784 Elepaio StHonoluluHI96816O2010Special Election 102010041450.00300.0015NoneRetired
87
+ SA11AIC004414510004367INDMunechikaKenKMr.98-809 Kahaea PlAieaHI96701O2010Special Election 102010041450.0050.0015NoneRetired
88
+ SA11AIC004414510004370INDScogginJamesSDr.MDPO Box 25823HonoluluHI96825O2010Special Election 10201004142300.002300.0015SelfPhysician
89
+ SA11AIC004414510004371INDCarisNormanJMr.PO Box 542AnaholaHI96703G2010201004142200.007200.0015
90
+ SA11AIC004414510004372INDRoneyBlakeMr.86 North University Ave 420ProvoUT84601O2010Special Election 10201004141000.001000.0015Nu Skin EnterprisesChairman of the Board
91
+ SA11AIC004414510004373INDHungMarshallWMr.2394 Aina Lani WayHonoluluHI96822O2010Special Election 1020100414700.002000.0015SelfReal Estate
92
+ SA11AIC004414510004374INDBaileyBruceRMr.1815 W 213th St Ste 235TorranceCA90501O2010Special Election 1020100414500.00500.0015SelfAttorney
93
+ SA11AIC004414510004375INDDauerClaireMMrs.1221 Victoria St Apt 2504HonoluluHI96814O2010Special Election 1020100414500.001500.0015NoneRetired
94
+ SA11AIC004414510004376INDIsaacsGeorgeEDr.PhD4999 Kahala Ave 272HonoluluHI96816O2010Special Election 1020100414500.00800.0015Self
95
+ SA11AIC004414510004377INDRichardsonGretaIMrs.309 Koko Isle CirHonoluluHI968251820O2010Special Election 1020100414500.001800.0015Prudential LocationsSalespCoach/Manager
96
+ SA11AIC004414510004378INDSmithLindaLMs.2650 Pacific Heights RdHonoluluHI96813O2010Special Election 1020100414500.003800.0015State of HawaiiAdvisor
97
+ SA11AIC004414510004379INDZlatoperRonaldJMr.900 Fort Street Mall Ste 1115HonoluluHI96813O2010Special Election 1020100414500.00500.0015James Campbell EstateTrustee
98
+ SA11AIC004414510004380INDLauMichaelNMr.7701 Rockledge CourtSpringfieldVA22152O2010Special Election 1020100414300.00300.0015Lau & AssociatesAttorney
99
+ SA11AIC004414510004381INDNagamineNormanKMr.1303 Hoolaulea StPearl CityHI96782O2010Special Election 1020100414300.00300.0015Nagamine Okawa Engineers IncPresident
100
+ SA11AIC004414510004382INDFariasRichardJMr.3363 Anoai PlHonoluluHI96822O2010Special Election 1020100414250.00250.0015Self
101
+ SA11AIC004414510004383INDHansonDavidJMr.46-470 Hololio StKaneoheHI96744O2010Special Election 1020100414250.00250.0015Monarch RealtyRealtor Assoc
102
+ SA11AIC004414510004384INDOkojiRachelHMrs.725 Hao StHonoluluHI96821O2010Special Election 1020100414250.00800.0015AMEC Earth & EnvIndustrial Hygienist
103
+ SA11AIC004414510004387INDFadrowskyJudithLMrs.1360 Laukahi StHonoluluHI96821O2010Special Election 1020100414200.001400.0015NoneRetired
104
+ SA11AIC004414510004389INDYeeDouglasQ LMr.1177 Queen St 2702HonoluluHI96814O2010Special Election 1020100414200.00700.0015Morgan Stanley
105
+ SA11AIC004414510004393INDChewShirleyanneHeeMs.540 Elepaio StHonoluluHI96816O2010Special Election 1020100414100.00550.0015NoneRetired
106
+ SA11AIC004414510004404INDSantosAndrewMr.2150 Pauole PlHonoluluHI96821O2010Special Election 1020100414100.00900.0015Admor HVAC Products IncWholesale Distributor
107
+ SA11AIC004414510004405INDTauchasPaulMr.3805 Kanaina Ave 203HonoluluHI96815O2010Special Election 1020100414100.00800.0015Armstrong Builders LLCDesigner
108
+ SA11AIC004414510004455INDFongKennethK SMr.1177 Queen St PH8HonoluluHI96814O2010Special Election 1020100414250.00250.0015SelfInsurance Exec
109
+ SA11AIC004414510004458INDHillAprilNMrs.129 Waialeale StHonoluluHI96825O2010Special Election 10201004144800.004800.0015Mililani GroupAdministrative Assistant
110
+ SA11AIC004414510004459INDHillAprilNMrs.129 Waialeale StHonoluluHI96825O2010Special Election 1020100414-2400.002400.0015Mililani GroupAdministrative AssistantXREDESIGNATION
111
+ SA11AIC004414510004460INDHillAprilNMrs.129 Waialeale StHonoluluHI96825P2010201004142400.004800.0015Mililani GroupAdministrative AssistantXREDESIGNATION
112
+ SA11AIC004414510004461INDGrosfeldJasonMr.10880 Wilshire Blvd #2222Los AngelesCA90024O2010Special Election 10201004142750.002750.0015IrongateRealEstate
113
+ SA11AIC004414510004462INDGrosfeldJasonMr.10880 Wilshire Blvd #2222Los AngelesCA90024O2010Special Election 1020100414-350.002400.0015IrongateRealEstateXREDESIGNATION
114
+ SA11AIC004414510004463INDGrosfeldJasonMr.10880 Wilshire Blvd #2222Los AngelesCA90024P201020100414350.002750.0015IrongateRealEstate
115
+ SA11AIC004414510004464INDMatsuokaDeronHMr.3604 Trousseau StHonoluluHI96815O2010Special Election 10201004141750.001750.0015Albert C Kobayashi IncProject manager
116
+ SA11AIC004414510004465INDIshiiSharonMMs.3220 Waialae AveHonoluluHI96816O2010Special Election 10201004141000.001000.0015Pacific Resoures LLCExecutive Director
117
+ SA11AIC004414510004466INDMiuraGlennKMr.1001 Bishop St 400 Pauahi TowerHonoluluHI96813O2010Special Election 10201004141000.001000.0015CDS InternationalArchitect/Sr VP
118
+ SA11AIC004414510004467INDNesselSuzanneMs.3269 Beaumont Woods PlHonoluluHI96822O2010Special Election 10201004141000.001000.0015DBA SN DesignInterior Designer
119
+ SA11AIC004414510004468INDColuccioFrancoMr.5949B Kalanianaole HwyHonoluluHI96821O2010Special Election 10201004143800.005000.0015Frank Coluccio Construction CoContractor
120
+ SA11AIC004414510004469INDColuccioFrancoMr.5949B Kalanianaole HwyHonoluluHI96821P201020100414-1600.003400.0015Frank Coluccio Construction CoContractorXREDESIGNATION
121
+ SA11AIC004414510004470INDColuccioFrancoMr.5949B Kalanianaole HwyHonoluluHI96821P2010201004141400.004800.0015Frank Coluccio Construction CoContractorXREDESIGNATION
122
+ SA11AIC004414510004471INDColuccioFrancoMr.5949B Kalanianaole HwyHonoluluHI96821G201020100414200.005000.0015Frank Coluccio Construction CoContractorXREDESIGNATION
123
+ SA11AIC004414510004472INDCullinanJillAMrs.104 Prospect StHonoluluHI96813O2010Special Election 1020100414500.001000.0015Anderson IncManufacturer
124
+ SA11AIC004414510004473INDRollesJeanEMs.3087 La Pietra CirHonoluluHI96815O2010Special Election 1020100414500.002800.0015Outrigger EnterprisesVP-Community Relations
125
+ SA11AIC004414510004492INDSuttonAnneCMs.3539 Kahawalu DrHonoluluHI96817O2010Special Election 1020100414500.001500.0015SelfLand Management
126
+ SA11AIC004414510004561INDBentleySusanMs.134 Kainui LpKiheiHI96753O2010Special Election 1020100414250.00250.0015NoneRetired
127
+ SA11AIC004414510004563INDMartinMarkDr.11 Spring Hollow DrBrownwoodTX76801O2010Special Election 1020100414500.00500.0015SelfPhysician
128
+ SA11AIC004414510004584INDSorrellMichaelMr.2900 S Valley View BlvdLas VegasNV89102O2010Special Election 1020100414500.00500.0015NoneRetired
129
+ SA11AIC004414510004603INDTaffLawrenceJMr.3721 Diamond Head RdHonoluluHI96816O2010Special Election 1020100414500.00500.0015Pacific Office Management IncBusiness Executive
130
+ SA11AIC004414510004605INDSchultheisJohnMr.2841 Livingston LoopVirginia BeachVA23456O2010Special Election 1020100414250.00250.0015EMCORDirector
131
+ SA11AIC004414510004612INDCorbinoMichaelMr.6610 Gulf of Mexico DrLongboat KeyFL34228O2010Special Election 1020100414250.00250.0015NoneRetired
132
+ SA11AIC004414510004616INDRegoAnsonOMr.5243 Papai StHonoluluHI96821O2010Special Election 102010041450.00625.0015SelfAttorney
133
+ SA11AIC004414510004620INDJamesRonMr.9 Burton Vista CourtLafayetteCA94549O2010Special Election 10201004142400.002400.0015SelfInvestor
134
+ SA11AIC004414510004630INDStockmeyerStevenMr.2523 NE 23rd StFt LauderdaleFL33305O2010Special Election 1020100414250.00250.0015NoneRetired
135
+ SA11AIC004414510004631INDYescalisJessMr.1010 N 2nd Ave 425CPhoenixAZ85003O2010Special Election 1020100414250.00250.0015YCSConsultant
136
+ SA11AIC004414510004636INDLeeDianneFMs.4550 Waikui StHonoluluHI96821O2010Special Election 1020100414250.00250.0015NoneRetired
137
+ SA11AIC004414510004638INDNakanoAlbertSMr.1021 Kalahu PlHonoluluHI96825O2010Special Election 1020100414250.001850.0015Merrill LynchFinancial Advisor
138
+ SA11AIC004414510004642INDMarksonThomasRMr.216A Kulamanu PlHonoluluHI96816O2010Special Election 1020100415500.00500.0015SelfEngineer
139
+ SA11AIC004414510004647INDHelgesonRandiMs.16485 Ellerdale LaneEden PrairieMN55346O2010Special Election 1020100415250.00300.0015University of St ThomasCollege Lecturer
140
+ SA11AIC004414510004653INDIsraelJanellAMs.500 Lunalilo Home Rd 28HHonoluluHI96825P201020100415500.001250.0015Self - J Israel & AssociatesTax Planner
141
+ SA11AIC004414510004657INDLohrPatriciaMrs.1296 Kapiolani Blvd Apt 2906HonoluluHI96814O2010Special Election 1020100415250.00800.0015NoneRetired
142
+ SA11AIC004414510004671INDMcPhailDeanBMr.132A Royal CirHonoluluHI96816O2010Special Election 10201004152000.002000.0015JJC Hawaii LLCChief Executive Officer
143
+ SA11AIC004414510004676INDWonWilliamW TDr.MD1532 Laukahi StHonoluluHI96821O2010Special Election 1020100415500.00800.0015NoneRetired MD
144
+ SA11AIC004414510004687INDValluzziRichardMr.95-1487 Ainamakua Dr Apt 63MililaniHI96789O2010Special Election 1020100415250.00250.0015Self-emloyedPartner
145
+ SA11AIC004414510004889INDGearyGreggSMr.1551 Noe StHonoluluHI96819O2010Special Election 1020100415250.001235.0015University of HawaiiLibrarian
146
+ SA11AIC004414510007133INDEberhardtAaronA KMr.4555 Aukai AveHonoluluHI96816O2010Special Election 10201004151500.002500.0015SelfPrivat Investor
147
+ SA11AIC004414510004691INDDelrahimMarkanMr.21370 Rambla VistaMalibuCA90265O2010Special Election 1020100416500.00500.0015Brownstein Hyatt Farber Schreck LLPAttorney
148
+ SA11AIC004414510004692INDFoleyAidanMr.9654 WyndoverBeverly HillsCA90210O2010Special Election 1020100416500.00500.0015AF Double EagleExecutive
149
+ SA11AIC004414510004693INDWormserJasonMr.2109 Vanderbilt Lane BRedondo BeachCA90278O2010Special Election 1020100416500.00500.0015NFLSr Producer
150
+ SA11AIC004414510004694INDHarrisKevinMr.617 W 7th StLos AngelesCA90017O2010Special Election 10201004161000.001000.0015Cyberdefender CorpDFO
151
+ SA11AIC004414510004720INDJacobsDarrylMr.105 Maple DriveSpring ChurchPA15686O2010Special Election 1020100416500.00500.0015Penneco Affiliated CompaniesExecutive
152
+ SA11AIC004414510004725INDCarpenterJohnMr.98-711 Kuahao PlPearl CityHI96782O2010Special Election 10201004161000.001000.0015Island Slipper FactoryOwner
153
+ SA11AIC004414510004726INDSederRichardMr.1464 Halekoa DrHonoluluHI96821O2010Special Election 1020100416250.00250.0015Self-employedEduction Policy Consultant
154
+ SA11AIC004414510004729INDCherrickDavidMr.8808 Parkridge Dr WUniversity PlaceWA98467O2010Special Election 1020100416250.00250.0015NoneRetired
155
+ SA11AIC004414510004741INDSkelligtonJimMr.1530 Kupau StKailuaHI96734O2010Special Election 1020100416250.00250.0015CC of HonoluluFireman
156
+ SA11AIC004414510004746INDGeisserJohnMr.59-490 Aukauka RdHaleiwaHI96712P201020100416250.00350.0015Navy DODInstrument Mechanic
157
+ SA11AIC004414510004826INDGoldDouglasMr.15501 Morrison StreetSherman OaksCA91403O2010Special Election 10201004161000.001000.0015Richardson & Patel, LLPChief Operating Officer
158
+ SA11AIC004414510007134INDOtaniDwightSMr.2934 Pahoehoe PlHonoluluHI96817P201020100416277.472777.4715D Otani Produce IncProduce Wholesaler
159
+ SA11AIC004414510004750INDDyerMedfordGMr.609 Kaimalino PlKailuaHI96734O2010Special Election 10201004171000.004200.0015NoneRetired
160
+ SA11AIC004414510004751INDGoodinCarolynJ CMrs.47-434A Waihee PlKaneoheHI96744O2010Special Election 1020100417500.00675.0015Aloha CareRegistered Nurse
161
+ SA11AIC004414510004752INDSuttonAnneCMs.3539 Kahawalu DrHonoluluHI96817O2010Special Election 1020100417500.002000.0015SelfLand Management
162
+ SA11AIC004414510004753INDFutaYokoMs.2740 Kuilei St Apt 803HonoluluHI96826O2010Special Election 1020100417500.00925.0015NoneRetired
163
+ SA11AIC004414510004763INDHendersonRichardMr.PO Box 655HiloHI967200655O2010Special Election 10201004171000.003300.0015NoneRetired
164
+ SA11AIC004414510004765INDBaxterFrankEMr.11100 Santa Monica Blvd 11th FlrLos AngelesCA90026P2010201004171000.001000.0015NoneRetired
165
+ SA11AIC004414510004768INDChingMeiYMs.4156 Black Point RdHonoluluHI96816O2010Special Election 1020100417500.00500.0015
166
+ SA11AIC004414510004770INDDaspitWarrenCMr.500 Ala Moana Blvd Ste 303HonoluluHI96813O2010Special Election 1020100417500.00500.0015
167
+ SA11AIC004414510004775INDDohenyJoyce B.Mrs.4383 Royal PlHonoluluHI96816O2010Special Election 1020100417500.001600.0015
168
+ SA11AIC004414510004777INDFuruyaClarenceOMr.5233 Kalanianaole HwyHonoluluHI96821O2010Special Election 1020100417500.00500.0015CO Furuya & AsspcOwner
169
+ SA11AIC004414510004779INDKwongBettyMs.PO Box 240068HonoluluHI96824O2010Special Election 1020100417500.00500.0015N/ACommunity Volunteer
170
+ SA11AIC004414510004780INDPietschDavidTMr.Jr.261 Ferdinand AveHonoluluHI96822O2010Special Election 1020100417500.00500.0015Title GuarantyPresident
171
+ SA11AIC004414510004781INDSofosThomasJMr.1206 Manu Mele StKailuaHI96734O2010Special Election 1020100417500.00625.0015John H ConnorsInsurance Agent
172
+ SA11AIC004414510004782INDAraiChosaburoMr.1204 Luawai StHonoluluHI96816O2010Special Election 1020100417250.002550.0015NoneRetired
173
+ SA11AIC004414510004787INDKanoLindaSMs.2523 Ferdinand AveHonoluluHI96822O2010Special Election 1020100417250.00250.0015Interior ShowplacePresident
174
+ SA11AIC004414510004788INDOuyeRichardSMr.147 Kalepa PlKahuluiHI96732O2010Special Election 1020100417250.00250.0015Service Rentals & Supplies IncOwner/President
175
+ SA11AIC004414510004790INDSettleWilliamHMr.Jr61 Akilolo StHonoluluHI96821O2010Special Election 1020100417250.00650.0015NoneRetired
176
+ SA11AIC004414510004791INDSumidaLarryMMr.3555 Ala Hapuu PlHonoluluHI96818O2010Special Election 1020100417250.00250.0015
177
+ SA11AIC004414510004793INDAlbanoAndresMr.Jr.748 Kokomo PlHonoluluHI96825O2010Special Election 1020100417200.001650.0015CB Richard EllisRealtEstate Broker
178
+ SA11AIC004414510004797INDNicolaiJosephPMr.2999 Nimitz HwyHonoluluHI96819O2010Special Election 1020100417150.00350.0015JN Group IncChief Executive Officer
179
+ SA11AIC004414510004799INDGilleyPatriciaAMrs.4657 Aukai AveHonoluluHI96816O2010Special Election 1020100417250.00500.0015NoneHomemaker
180
+ SA11AIC004414510004807INDCarterJohnAMr.III1160 Paioluolu WayHonoluluHI96825O2010Special Election 1020100417100.00600.0015NoneRetired
181
+ SA11AIC004414510004819INDFujiiAltonKDr.2945 Woodlawn DrHonoluluHI96822O2010Special Election 1020100417100.00500.0015SelfDentist
182
+ SA11AIC004414510004823INDIsaacsGeorgeEDr.PhD4999 Kahala Ave 272HonoluluHI96816O2010Special Election 1020100417100.00900.0015Self
183
+ SA11AIC004414510004837INDLivingstonFredMr.PO Box 15397HonoluluHI96830O2010Special Election 1020100417100.00100.0015SelfRestaurant/Real Estate
184
+ SA11AIC004414510004838INDNicolaiJosephPMr.2999 Nimitz HwyHonoluluHI96819O2010Special Election 1020100417100.00450.0015JN Group IncChief Executive Officer
185
+ SA11AIC004414510004859INDTanoueAmyEMrs.1070 Ala Napunani St 106HonoluluHI96818O2010Special Election 102010041750.00350.0015NoneRetired
186
+ SA11AIC004414510004891INDFlemingLouiseMMs.35 Lumahai StHonoluluHI96825O2010Special Election 1020100417100.001400.0015N/ARetured
187
+ SA11AIC004414510004892INDYoungDavidAMr.92-522 Kipapa DrMililaniHI96789O2010Special Election 1020100417500.00500.0015Wai Engineering IncOwner
188
+ SA11AIC004414510004519INDLiangJanetMs.111 Hekili St AKailuaHI96734O2010Special Election 10201004181000.001500.0015Kaiser PermanenteExecutive Management
189
+ SA11AIC004414510004521INDOfnerJayMr.95-209 Melekomo PlaceMililaniHI96789O2010Special Election 1020100418250.00250.0015US NavyUS Navy Officer
190
+ SA11AIC004414510004527INDPakkalaDonaldMatthewMr.1288 Ala Moana Blvd Apt 12DHonoluluHI96814P2010201004181400.002400.0015Heyer & Associates LLCSales, Real Estate
191
+ SA11AIC004414510004528INDPakkalaDonaldMatthewMr.1288 Ala Moana Blvd Apt 12DHonoluluHI96814O2010Special Election 10201004182400.004800.0015Heyer & Associates LLCSales, Real Estate
192
+ SA11AIC004414510004830INDDowningRayMr.95-1260 Wikao StreetMililaniHI96789O2010Special Election 1020100418700.00700.0015Federal Aviation AdminstrationInspector
193
+ SA11AIC004414510005141INDHaleJeffMr.PO Box 208WaianaeHI96792O2010Special Election 1020100419500.00500.0015SelfConstruction
194
+ SA11AIC004414510004530INDEstesRobertMMr.4962 Kolohala StHonoluluHI96816O2010Special Election 1020100420500.00600.0015NoneRetired
195
+ SA11AIC004414510004531INDBakerRichardWMr.III206 Lumahai PlHonoluluHI96825O2010Special Election 1020100420250.00550.0015NoneRetired
196
+ SA11AIC004414510004536INDRinoYvonneMMs.1516 Nehoa St 4HonoluluHI96822O2010Special Election 10201004202000.002000.0015
197
+ SA11AIC004414510004537INDWongMyronS SMr.88 Piikoi St 903HonoluluHI96814O2010Special Election 10201004202000.002300.0015Manoa Shopping CenterOperations Manager
198
+ SA11AIC004414510004538INDJusticeDanielMr.2466 Ferdinand AvenueHonoluluHI96822O2010Special Election 10201004201000.001000.0015
199
+ SA11AIC004414510004539INDMarateaSamuelA.Mr.45 Berkshire DriveSewellNJ08080O2010Special Election 10201004201000.001000.0015
200
+ SA11AIC004414510004540INDRoeMengYu ChengDr.5571 Kalanianaole HwyHonoluluHI96821O2010Special Election 10201004201000.001000.0015selfPhysician
201
+ SA11AIC004414510004541INDRosebroughCynthiaJMs.1111 B Kumukumu StHonoluluHI96825O2010Special Election 1020100420500.001100.0015DoeSubstitute Teacher
202
+ SA11AIC004414510004542INDChengAprilB KMs.5571 Kalanianaole HwyHonoluluHI96821O2010Special Election 1020100420250.00450.0015Chamber of Commerce of HIAcct Mgr
203
+ SA11AIC004414510004543INDCoteArmandAMr.1434 Kalaniiki StHonoluluHI96821O2010Special Election 1020100420250.001050.0015Self/AAC & Assoc LLCConstruction Management
204
+ SA11AIC004414510004544INDde WerdTheodoreJMr.130 Wailupe CirHonoluluHI96821O2010Special Election 1020100420500.002300.0015Self, IBG IncSales
205
+ SA11AIC004414510004545INDHochuliChristopherEMr.1116 Kealaolu AveHonoluluHI96816O2010Special Election 1020100420500.00500.0015Merrill LynchFinancial Advisor
206
+ SA11AIC004414510004546INDMorelliMichaelDMr.PO Box 811KailuaHI967340811O2010Special Election 1020100420300.001200.0015SelfSales
207
+ SA11AIC004414510004547INDChunColleenMMs.1333 Heulu St 1201HonoluluHI96822O2010Special Election 1020100420250.00250.0015Ron CorpRealtor
208
+ SA11AIC004414510004548INDHeinLelanEMr.1562 Monte StHonoluluHI96819O2010Special Election 1020100420250.00250.0015Hawaii Geophysical Services, LLC
209
+ SA11AIC004414510004552INDChongDennisT KMr.2225 Hyde StHonoluluHI96822O2010Special Election 1020100420100.00450.0015NoneRetired
210
+ SA11AIC004414510004557INDKodamaStanleyMMr.41-1521 Lukanela StWaimanaloHI96795O2010Special Election 1020100420100.00450.0015Waimanalo Feed SupplyOwner
211
+ SA11AIC004414510004578INDBuscherHenryMr.1901 Licciardi DriveChalmetteLA70043O2010Special Election 10201004205.005.0015
212
+ SA11AIC004414510004908INDStallJohnBMr.1212 Punahou 3008HonoluluHI96826O2010Special Election 1020100420250.00250.0015NoneRetired
213
+ SA11AIC004414510004916INDOliverPeterNMr.6750 Hawaii Kai Dr 1205HonoluluHI96825O2010Special Election 1020100420100.00400.0015NoneRetired Teacher
214
+ SA11AIC004414510004918INDUyenoArleneF YMrs.3151 Makini StHonoluluHI96815O2010Special Election 1020100420100.00225.0015NoneRetired
215
+ SA11AIC004414510004925INDHardyFrancesReavesMs.REQUEST SOLICITATIONS STOPPED O2010Special Election 102010042050.00750.0015NoneRetired
216
+ SA11AIC004414510004926INDHowellJohnFMr.1402 Laamia PlHonoluluHI96821O2010Special Election 102010042050.00375.0015Easter Seals HawaiiPresident & CEO
217
+ SA11AIC004414510004947INDBrennerStevenADr.PhD1501 NW 68th TerraceGainesvilleFL32605O2010Special Election 10201004202400.002400.0015Firebird BsiomolecularScientist
218
+ SA11AIC004414510004948INDMarnJamesYMr.Jr1703 Kamamalu AveHonoluluHI96813O2010Special Election 10201004201000.001000.0015SelfInvestments
219
+ SA11AIC004414510004949INDDeweyEdwardMr.1280 Mokulua DrKailuaHI96734O2010Special Election 1020100420500.00500.0015SelfRealEstate
220
+ SA11AIC004414510004950INDMcMillanMary LoisMs.6039 Summer StHonoluluHI96821O2010Special Election 1020100420300.002400.0015NoneHomemaker
221
+ SA11AIC004414510004951INDOsborneJoanDMs.128 Kaapuni DrKailuaHI96734O2010Special Election 1020100420300.00300.0015
222
+ SA11AIC004414510004952INDGreenwellJamesSMr.4575 Aukai AveHonoluluHI968164948O2010Special Election 1020100420250.00550.0015Lanihau Properties LLCProperty Mgt
223
+ SA11AIC004414510004953INDLamontagneGeoreMr.10 North StMethuenMA018441214O2010Special Election 1020100420250.00250.0015NoneRetired
224
+ SA11AIC004414510004957INDHartmannHanniHMr.139 Makaweli StHonoluluHI96825O2010Special Election 1020100420150.00250.0015Paragon Metals Int'lPresident
225
+ SA11AIC004414510004959INDAdkinsCatherineDMs.2500 Kalakaua Ave 1001HonoluluHI96815O2010Special Election 1020100420100.00700.0015NoneRetired
226
+ SA11AIC004414510004977INDParkerSallyEMrs.3864 Owena StHonoluluHI96815O2010Special Election 1020100420100.00600.0015NoneRetired
227
+ SA11AIC004414510004986INDHippAnnaBMrs.268 IihauKailuaHI96734O2010Special Election 102010042050.0050.0015
228
+ SA11AIC004414510005000INDMellenJohnJMr.3935 Lanipili PlHonoluluHI96816O2010Special Election 102010042025.00425.0015NoneRetired
229
+ SA11AIC004414510005190INDPechauerJaniceWMrs.4350 Halupa StHonoluluHI96818O2010Special Election 1020100420150.00575.0015SelfInterior Designer
230
+ SA11AIC004414510005197INDGruneMarjorieMMrs.1880 Laukahi StHonoluluHI96821O2010Special Election 102010042050.00300.0015NoneRetired
231
+ SA11AIC004414510005201INDGartleyFredMr.45-311 Paliiki PlKaneoheHI96744O2010Special Election 1020100420100.00491.0015NoneRetired
232
+ SA11AIC004414510005204INDGruetzmacherFranklinHMr.951 Kailiu PlHonoluluHI96825O2010Special Election 10201004201000.001000.0015NoneRetired
233
+ SA11AIC004414510005205INDMartinPeterKMr.590 A Old Stable RdPaiaHI96779O2010Special Election 10201004202000.002000.0015SelfInvestor
234
+ SA11AIC004414510005209INDWongWendellMMr.3929A Maunahilu PlHonoluluHI96816O2010Special Election 1020100420200.00800.0015Realty PacificRealtor/Ret USAF
235
+ SA11AIC004414510005210INDMooreElizabethNMs.1011 Kaloaloa StHonoluluHI96825O2010Special Election 1020100420250.00250.0015
236
+ SA11AIC004414510005211INDEberhardtAaronA KMr.4555 Aukai AveHonoluluHI96816O2010Special Election 10201004201000.003500.0015SelfPrivat Investor
237
+ SA11AIC004414510005212INDChangWalterT CMr.2550 Manoa RdHonoluluHI96822O2010Special Election 10201004201000.002000.0015SelfCPA
238
+ SA11AIC004414510005213INDLauMerton2920 S King St 1001HonoluluHI96826O2010Special Election 10201004201500.001500.0015Lau & Lau PropertiesPresident
239
+ SA11AIC004414510005216INDAionaPatrickGMr.Sr134 Wiwoole StHiloHI96720O2010Special Election 10201004201000.001000.0015Service DirectorAiona Car Sales
240
+ SA11AIC004414510005673INDChaffeeM. RobertMr.Jr2956 Hibiscus PlHonoluluHI96815O2010Special Election 1020100420250.00250.0015Leahi RealtyRealtor
241
+ SA11AIC004414510005682INDWheelerKurtMr.25487 Adobe LaneLos Altos HillsCA94022O2010Special Election 1020100420250.00250.0015
242
+ SA11AIC004414510005707INDJollyBruceMr.419 Chimney Rock RdEarlysvilleVA22936O2010Special Election 102010042035.0035.0015Self employedInterim CFO
243
+ SA11AIC004414510005708INDVirtueRodgerMr.PO Box 1412KapaauHI96755O2010Special Election 10201004201000.001000.0015SelfInvestor/Trader
244
+ SA11AIC004414510005721INDKesslerLauraLMs.204 Hao St Apt AHonoluluHI96821O2010Special Election 1020100420300.00500.0015NoneHomemaker
245
+ SA11AIC004414510005726INDMorrisonReneeMrs.3950 North Flagler Dr Ste 402West Palm BeachFL33407O2010Special Election 1020100420250.00250.0015N/AHousewife
246
+ SA11AIC004414510005733INDNelsenBrentDr.DMD2516 Button Bush CircleDerbyKS670374208O2010Special Election 1020100420250.00250.0015SelfDentist
247
+ SA11AIC004414510005781INDKeatingDanielMr.3112 South BirminghamTulsaOK74105O2010Special Election 102010042050.0050.0015Summit Consolidated GroupInsurance.
248
+ SA11AIC004414510007135INDRuhlandGregoryWDr.MD80 Pauahi St Ste 104HiloHI96720O2010Special Election 1020100420682.002182.0015SelfPhysician
249
+ SA11AIC004414510006825INDKleinJonMr.6039 113th Pl SEBellevueWA98006O2010Special Election 1020100421500.00500.0015MicrosoftSoftware Engineer
250
+ SA11AIC004414510006853INDFooterDerekMr.PO Box 712Rancho Santa FeCA92067O2010Special Election 102010042135.0035.0015Pound Cake Media LLCEntrepeneur
251
+ SA11AIC004414510006867INDBodensteinKennethMr.28 Westwind StMarina Del ReyCA90292O2010Special Election 1020100421250.00250.0015Duff & PhelpsFinancial Analyst
252
+ SA11AIC004414510006914INDSteelShawnMr.27520 Hawthorne Blvd 270Palos Verdes PnslaCA90274O2010Special Election 10201004211000.001000.0015Shawn Steel & AssociatesAttorney
253
+ SA11AIC004414510006922INDGorchowBruceMr.505 N Lake Shore DrChicagoIL60611O2010Special Election 1020100421250.00500.0015PPM AmericaInvestments
254
+ SA11AIC004414510006939INDCrenshawTerrenceLMr.555 Hahaione St Apt 10DHonoluluHI96825O2010Special Election 1020100421500.001450.0015NoneRetired
255
+ SA11AIC004414510006964INDKellerBruceJDr.DDS2129 Okoa StHonoluluHI96821O2010Special Election 1020100421250.00400.0015Self-Kaneohe Family DentalDentist
256
+ SA11AIC004414510006980INDStewartRobertMr.2655 SW 164th PlBurienWA98166O2010Special Election 1020100421500.001000.0015Reenton School DistrictVollyball Coach
257
+ SA11AIC004414510006991INDTashDebraMs.5777 Balcom CanyonSomisCA93066O2010Special Election 1020100421500.00500.0015GT Water Products, IncVice President
258
+ SA11AIC004414510006992INDStoneCharlesEMr.III47-701 Mapele RdKaneoheHI96744O2010Special Election 1020100421250.00350.0015Self/CE Stone ConstructionGeneral Contractor
259
+ SA11AIC004414510006993INDLaiAlvaAnn MMrs.1014 Hunakai StHonoluluHI96816O2010Special Election 10201004211000.001000.0015HI State Dept of EducationTeacher
260
+ SA11AIC004414510007003INDHarderRobertMr.2904 Finch DrDanvilleVA24540O2010Special Election 1020100421500.00500.0015Self-employedStock Trader
261
+ SA11AIC004414510007021INDJohnsonColeneMs.2777 Yulupa Ave 161Santa RosaCA95405O2010Special Election 1020100421250.00250.0015NoneHomemaker
262
+ SA11AIC004414510007055INDBerleChristianAMr.6 Snows Ct NWWashingtonDC200372213O2010Special Election 1020100421250.00750.0015Log Cabin RepublicansDirector
263
+ SA11AIC004414510007078INDJacrouxPaulMr.925 5th Ave D-1KirklandWA98033O2010Special Election 1020100421500.001000.0015NoneRetired
264
+ SA11AIC004414510007095INDRasmussenLindaJDr.MD649 Kanaha StKailuaHI96734O2010Special Election 1020100421500.001250.0015Windward Orthopedic GroupPhysician
265
+ SA11AIC004414510007122INDHelgesonRandiMs.16485 Ellerdale LaneEden PrairieMN55346O2010Special Election 1020100421250.00550.0015University of St ThomasCollege Lecturer
266
+ SA11AIC004414510007125INDPageSusanL99-905 Aiea Heights DrAieaHI96701O2010Special Election 1020100421500.00500.0015Coffee Enterprises, IncExecutive
267
+ SA11AIC004414510007131INDValluzziRobynM95-1487 Ainamakua Dr Apt 63MililaniHI96789O2010Special Election 1020100421250.00250.0015Valluzzi-Poteet Building CoOffice Manager
268
+ SA11AIC004414510007145INDMeyerColleenMrs.47-309 Kamehameha HwyKaneoheHI96744O2010Special Election 1020100421500.001150.0015Self EmployedProperty Manager
269
+ SA11AIC004414510007153INDNashJasonMr.5200 Teare LaneBonanzaOR97623O2010Special Election 1020100421500.00500.0015SelfAgriculture
270
+ SA11AIC004414510007155INDThompsonDavidWMr.PO Box 880WaimanaloHI967950880O2010Special Election 1020100421100.00500.0015NoneRetired
271
+ SA11AIC004414510005012INDKokameCarolLiuMs.507 Puuikena DrHonoluluHI96821O2010Special Election 1020100422200.00750.0015Retina Consultants of HawaiiAdministrator
272
+ SA11AIC004414510005013INDYamamotoDeanTMr.1125 Kamehame DrHonoluluHI96825O2010Special Election 1020100422250.00750.0015Yamamoto & Settle, LLLCAttorney
273
+ SA11AIC004414510005014INDdeWolffMervynAMr.PO Box 30793HonoluluHI96820O2010Special Election 1020100422250.00250.0015AKC LeasingExecutive
274
+ SA11AIC004414510005015INDToomeyBeverlyC SMrs.3539 Kahawalu DrHonoluluHI96817O2010Special Election 1020100422250.00575.0015NoneRetired
275
+ SA11AIC004414510005017INDPowersPhilipHMr.1350 Ala Moana Blvd Apt 1909HonoluluHI96814P201020100422500.003170.0015NoneRetired
276
+ SA11AIC004414510005018INDGoldDouglasMr.15501 Morrison StreetSherman OaksCA91403O2010Special Election 1020100422500.001500.0015Richardson & Patel, LLPChief Operating Officer
277
+ SA11AIC004414510005019INDBoutteMichaelKMr.99-1331 Aiea Heights DrAieaHI96701O2010Special Election 1020100422500.001000.0015Lockheed MartinSoftware Engineer
278
+ SA11AIC004414510005020INDPorterGayMs.1080 Kilauea AveHiloHI96720O2010Special Election 1020100422250.00250.0015Business Insurance ServicesBranch Manager
279
+ SA11AIC004414510005021INDLambethJamesTMD2284 Kaiwiki RdHiloHI96720O2010Special Election 10201004221000.001000.0015HawaiiIsland RadiationPhysician
280
+ SA11AIC004414510005947INDRosenbergThomasM1145 Wainiha St Apt DHonoluluHI96825O2010Special Election 1020100422250.00250.0015NoneRetired
281
+ SA11AIC004414510006020INDIshidaAllenTMr.98-132 Lipoa Pl, 213AieaHI96701O2010Special Election 1020100422250.00450.0015Honolulu Police DeptDetective
282
+ SA11AIC004414510006056INDWelchBronwenLMs.3340 Pacific Heights RdHonoluluHI96813O2010Special Election 1020100422100.00550.0015N/AHousewife
283
+ SA11AIC004414510006058INDGerellJoleneFMs.112 Lumahai StHonoluluHI96825O2010Special Election 10201004221000.002100.0015NoneHomemaker
284
+ SA11AIC004414510006061INDYoungLoriMs.8415 5th Avenue, 301SeattleWA98115O2010Special Election 1020100422250.00250.0015University of WashingtonMedical Physicist
285
+ SA11AIC004414510006072INDWoodmanseeJamesMr.3640 Littlerock DriveProvoUT84604O2010Special Election 1020100422250.00250.0015NonePhysician
286
+ SA11AIC004414510006198INDMuddRitchieNMr.4720 Halehoola PlHonoluluHI96816O2010Special Election 1020100422500.001500.0015Allied BuildingSales
287
+ SA11AIC004414510006203INDHillmanTatnallMr.504 W Bleeker StreetAspenCO81611O2010Special Election 10201004222400.002400.0015NoneRetired
288
+ SA11AIC004414510006403INDMonroeCyrusMr.149 Cane PlacePaiaHI96779O2010Special Election 1020100422250.00250.0015SelfRealtor
289
+ SA11AIC004414510006651INDMeekDenaMs.16909 Colegrove DriveDallasTX75248O2010Special Election 1020100422250.00250.0015NoneRetired
290
+ SA11AIC004414510006662INDNielsenJaniceMs.PO Box 1829KailuaHI96734O2010Special Election 10201004221000.001000.0015Department of DefenseFederal Civilian
291
+ SA11AIC004414510006670INDOkiRussellMr.520 Lunalilo Home Road, ER 111HonoluluHI96825O2010Special Election 1020100422250.00250.0015RH Productions LLCMarketing Consultant
292
+ SA11AIC004414510006678INDSavioPhyllisDMrs.5302 Oio DrHonoluluHI96821O2010Special Election 1020100422250.00275.0015Hawaiian Island Homes LtdVP-Owner
293
+ SA11AIC004414510006698INDChipchaseCalvertGMr.IV2020 Kamehameha AveHonoluluHI96822O2010Special Election 1020100422250.00450.0015Cades SchutteAttorney
294
+ SA11AIC004414510006718INDSlaterRosalieRMrs.3105 Pacific Hts RdHonoluluHI96813O2010Special Election 10201004221000.003001.0015NoneHomemaker
295
+ SA11AIC004414510006724INDMello GruberDonnaL95-1509 Ainamakua Dr Apt 36MililaniHI96789O2010Special Election 1020100422250.00250.0015Classic Bodyworks, LtdOwner
296
+ SA11AIC004414510006732INDWalshDavidMr.PO Box 11450JacksonWY83002O2010Special Election 1020100422250.00250.0015NoneRetired
297
+ SA11AIC004414510006737INDTruongDucMr.3101 S Manchester Street, 616Falls ChurchVA22044O2010Special Election 1020100422250.00250.0015Self-EmployedConsultant
298
+ SA11AIC004414510006738INDLimKhoon-MinMr.983 Park AvenueNew YorkNY10028O2010Special Election 10201004221000.001000.0015Self-EmployedPrivate Investor
299
+ SA11AIC004414510006748INDLeeTaiYoungMr.10 E Lee Street, Unit 1502BaltimoreMD21202O2010Special Election 1020100422500.00500.0015PTC InternationalEconomist and Business Exec
300
+ SA11AIC004414510006759INDRohrerDennisMr.92-1553 Aliinui Drive, 1GKapoleiHI96707O2010Special Election 1020100422250.00250.0015SAICNetwork Engineer
301
+ SA11AIC004414510006762INDWatersJBMs.46-159 Meheanu Loop, #3242KaneoheHI96744O2010Special Election 1020100422250.00250.0015N/AHousewife
302
+ SA11AIC004414510004766INDBruhlRobertQMr.915 Onaha StHonoluluHI968165107O2010Special Election 10201004231000.001100.0015DR Horton - Schuler Homes LLCHomebuilder
303
+ SA11AIC004414510004767INDJonesMichaelTMr.812-K N Kalaheo AveKailuaHI96734O2010Special Election 1020100423500.001650.0015Schuler Homes LLC
304
+ SA11AIC004414510004771INDHardyFrancesReavesMs.REQUEST SOLICITATIONS STOPPED O2010Special Election 1020100423200.00950.0015NoneRetired
305
+ SA11AIC004414510004774INDChenGeorgeK WMr.2115 Alaeloa PlHonoluluHI96821O2010Special Election 10201004231000.005100.0015NoneRetired
306
+ SA11AIC004414510004776INDShigemuraLindaLMrs.83 Lunalilo Home RdHonoluluHI96825O2010Special Election 10201004231000.002100.0015DOETeacher
307
+ SA11AIC004414510004778INDGodfreyRogerKMr.2761 Laniloa RdHonoluluHI96813O2010Special Election 1020100423500.002700.0015SelfGrocery Business
308
+ SA11AIC004414510004783INDLeeBernardJDr.4300 Waialae Ave PH A2HonoluluHI96816O2010Special Election 1020100423500.00500.0015TMACPhysician
309
+ SA11AIC004414510004784INDCassenJoyceHDr.MD850 W Hind DrHonoluluHI96821O2010Special Election 1020100423250.00250.0015SelfPhysician
310
+ SA11AIC004414510004785INDFariasRichardJMr.3363 Anoai PlHonoluluHI96822O2010Special Election 1020100423250.00500.0015Self
311
+ SA11AIC004414510004786INDHirotaKathrynEMrs.706 Puuikena DrHonoluluHI96821O2010Special Election 1020100423250.001250.0015HousewifeHousewife
312
+ SA11AIC004414510004789INDKanekoaKelvinMMr.556 Honopu PlaceHonoluluHI96825O2010Special Election 1020100423250.00250.0015Properties Hawaii IncRealtor
313
+ SA11AIC004414510004792INDKroutEvelinaFMrs.2124 Hakanu StHonoluuHI96821O2010Special Election 1020100423250.00850.0015NoneRetired
314
+ SA11AIC004414510004794INDMatiasOrlandoLMr.99-636 Halawa DrAieaHI96701O2010Special Election 1020100423250.00550.0015Self/O&E Matias Electrical SvcElectrical Contractor
315
+ SA11AIC004414510004796INDMayerAbbeyMs.2865 A Pali HighwayHonoluluHI96817O2010Special Election 1020100423250.00250.0015
316
+ SA11AIC004414510004798INDMoriokaSanfordAMr.98-200 Puaalii StAieaHI96701O2010Special Election 1020100423250.00500.0015Edward Enterprises IncVP Business Development
317
+ SA11AIC004414510004800INDRethmanGiliaIMs.47-140 Heno PlKaneoheHI96744O2010Special Election 1020100423250.00300.0015SelfConsultant
318
+ SA11AIC004414510004801INDSettleScottWMr.47 Mahiloa PlKailuaHI96734O2010Special Election 1020100423250.003550.0015Yamamoto & SettleAttorney
319
+ SA11AIC004414510004802INDSganMathewRMr.3742A Old Pali RdHonoluluHI96817O2010Special Election 1020100423250.00475.0015SelfFundraising Consultant
320
+ SA11AIC004414510005049INDCookeSamuelAPO Box 2900HonoluluHI968460001O2010Special Election 1020100423500.00600.0015NoneRetired
321
+ SA11AIC004414510005050INDCorboyJohnMDr.MDPO Box 546KaunakakaiHI96748O2010Special Election 1020100423250.00250.0015Physician
322
+ SA11AIC004414510005066INDRosenbergRalphMMr.1726 Laukahi StHonoluluHI96821O2010Special Election 1020100423100.001050.0015Ralph Rosenberg Court ReportersCourt Reporter
323
+ SA11AIC004414510005071INDYoshitakeWesleyTMr.3919 Pahoa AveHonoluluHI968164127O2010Special Election 1020100423100.00250.0015NoneRetired
324
+ SA11AIC004414510005084INDSmithMariaCMrs.2205 W 25th St 8San PedroCA90732O2010Special Election 102010042350.00475.0015Little Sisters of the PoorRegistered Nurse
325
+ SA11AIC004414510005217INDGordonRobertLMr.Jr.47-228 Hui Aeko WayKaneoheHI96744O2010Special Election 1020100423300.00300.0015Business Insurance Services IncInsurance Agent
326
+ SA11AIC004414510005218INDWilliamsSteveJMr.1481 Ihiloa LoopHonoluluHI96821O2010Special Election 10201004231000.001000.0015CBPPRealtor
327
+ SA11AIC004414510005652INDFrazierCarlLMr.98-838 Kaonohi St Apt BAieaHI96701O2010Special Election 1020100423250.00250.0015Cornerstone PropertiesProperty Manager
328
+ SA11AIC004414510005653INDMooreDavidLMr.3661 Lilinoe PlHonoluluHI96816O2010Special Election 1020100423250.00250.0015SelfPhotographer
329
+ SA11AIC004414510005910INDBevanSusanMs.90 Field Point CircleGreenwichCT06830O2010Special Election 1020100423250.00250.0015NoneRetired
330
+ SA11AIC004414510007136INDClothierDonaldAMr.1221 Victoria St 3101HonoluluHI96814O2010Special Election 1020100425488.89488.8915Clothier & RoseManufacturerers Rep
331
+ SA11AIC004414510005264INDGroveRitaMMs.PO Box 383143WaikoloaHI96738O2010Special Election 102010042650.0050.0015NoneHomemaker
332
+ SA11AIC004414510005281INDMaJin LinMrs.18124 Wedge Pkwy #185RenoNV895118134O2010Special Election 10201004261000.001000.0015
333
+ SA11AIC004414510005283INDHalesDavidSMr.Ohana Matters1045 Kuekue StHonoluluHI96825O2010Special Election 10201004261000.001550.0015Ohana Matters
334
+ SA11AIC004414510005284INDBurtonSharinYMrs.2243 Okoa StHonoluluHI96821O2010Special Election 10201004261000.001000.0015
335
+ SA11AIC004414510005285INDIngMalcolmRDr.MD3338 Kamaaina PlHonoluluHI96817O2010Special Election 10201004261000.001100.0015SelfOpthalmologist
336
+ SA11AIC004414510005286INDLeffellMichaelJMr.35 Sheldrake RdScarsdaleNY10583O2010Special Election 10201004262400.002400.0015NoneRetired
337
+ SA11AIC004414510005287INDBienenstockMartinJMr.1301 Avenue of the AmericasNew YorkNY10019O2010Special Election 10201004261000.001000.0015Dewey & LeBoeuf LLPAttorney
338
+ SA11AIC004414510005288INDWoodMichaelBMr.66 Queen St 3101HonoluluHI96813O2010Special Election 10201004261000.001500.0015MW GroupReal Estate Exec
339
+ SA11AIC004414510005289INDKobayashiBertTMr.Jr.999 Bishop St Ste 2600HonoluluHI96813O2010Special Election 1020100426750.001750.0015Kobayashi Sugita & GodaAttorney
340
+ SA11AIC004414510005290INDDriverHowardGMr.2415 Ala Wai Blvd 602HonoluluHI96815O2010Special Election 1020100426500.00600.0015NoneRetiredr
341
+ SA11AIC004414510005291INDGalatiVitoMr.PO Box 939HonoluluHI96808O2010Special Election 1020100426500.002900.0015Cades SchutteAttorney
342
+ SA11AIC004414510005294INDFutaYokoMs.2740 Kuilei St Apt 803HonoluluHI96826O2010Special Election 1020100426100.001025.0015NoneRetired
343
+ SA11AIC004414510005295INDHasenyagerDonaldGMr.235 Kuuhoa PlKailuaHI96734O2010Special Election 1020100426100.00475.0015NoneRetired
344
+ SA11AIC004414510005303INDVan NessRichardECol.JrOne Keahole Pl 1618HonoluluHI96825O2010Special Election 1020100426100.001000.0015NoneRetired
345
+ SA11AIC004414510005321INDChadwickKirstenA.Ms.601 President Ford LaneAlexandriaVA22302O2010Special Election 1020100426500.00500.0015
346
+ SA11AIC004414510005322INDMcCloskeyThomasDMr.Box 7759AspenCO81612O2010Special Election 1020100426500.00500.0015
347
+ SA11AIC004414510005331INDChewShirleyanneHeeMs.540 Elepaio StHonoluluHI96816O2010Special Election 102010042650.00600.0015NoneRetired
348
+ SA11AIC004414510005345INDTaniyamaJeromeSMr.1288 Kapiolani Blvd 707HonoluluHI96814O2010Special Election 102010042625.0025.0015
349
+ SA11AIC004414510005351INDPottsRandEMr.3165 Diamond Head Rd DHonoluluHI96815O2010Special Election 1020100426400.00600.0015NoneRetired
350
+ SA11AIC004414510005352INDThomasonKatherineHMrs.44-166 Nanamoana StKaneoheHI96744O2010Special Election 1020100426250.00450.0015IMS IncAccountant
351
+ SA11AIC004414510005353INDShirvanianMarianMrs.23 Corporate Plaza Ste 247Newport BeachCA92660O2010Special Election 10201004262000.002000.0015Komar Investments LLCBusiness Owner
352
+ SA11AIC004414510005354INDShirvanianLindaMs.23 Corporate Plaza Ste 247Newport BeachCA92660O2010Special Election 10201004261000.001000.0015Komar Investments LLCVice President
353
+ SA11AIC004414510005355INDWellsDavidRMr.2673 34th StSanta MonicaCA90405O2010Special Election 10201004261000.001000.0015Sionix CorpPresident
354
+ SA11AIC004414510005356INDDonahueMichaelMr.17236 Avenida De La HerraduraPacific PalisadesCA90272O2010Special Election 1020100426500.00500.0015Richardson & Patel CorpAttorney
355
+ SA11AIC004414510005357INDRihardsonErickEMr.10900 Wilshire Blvd Ste 500Los AngelesCA90024O2010Special Election 1020100426500.00500.0015Richardso & Patel LLPManaging Partner
356
+ SA11AIC004414510005359INDGrosskreutzScottMD670 Ponahawaii St Ste 110HiloHI96720O2010Special Election 1020100426500.00500.0015
357
+ SA11AIC004414510005360INDKaiJohnKMr.688 Kinoole St 207HiloHI96720O2010Special Election 1020100426500.001000.0015Self Pinnacle-Invesment GroupFinancial Advisor
358
+ SA11AIC004414510005361INDSumidaKayleM.Mr.1795 Akolea PlHiloHI96720O2010Special Election 1020100426400.00400.0015
359
+ SA11AIC004414510005362INDLamsonRobertSMr.45 ApapaneHiloHI96720O2010Special Election 1020100426300.00450.0015NoneRetired
360
+ SA11AIC004414510005619INDCoffeeGeraldMr.PO Box 8AieaHI967010008O2010Special Election 1020100426500.001600.0015Self EmployedProf Speaker, Journalist
361
+ SA11AIC004414510005623INDSamolisKathleenMs.4982 Sea Watch DriveFernandina BeachFL32034O2010Special Election 1020100426250.00250.0015St Francis de Sales SchoolLibrary Coordinator
362
+ SA11AIC004414510005628INDEvansJimMr.PO Box 27409OmahaNE68127O2010Special Election 1020100426250.00250.0015SelfSelf
363
+ SA11AIC004414510005629INDFraserGregoryMr.46 Prospect Hill RoadLexingtonMA02421O2010Special Election 1020100426500.00500.0015GRT Capital Partners LLCAnalyst/Inv. Manager
364
+ SA11AIC004414510005817INDStoebnerMorrisLMr.1288 Ala Moana Blvd PH AHonoluluHI96814O2010Special Election 10201004262000.002000.0015Windward HondaOwner
365
+ SA11AIC004414510005838INDChayJosephineSMs.1669 Makuakane PlHonoluluHI96817O2010Special Election 1020100426200.00800.0015NoneRetired Teacher
366
+ SA11AIC004414510005839INDStewartEdwardAMr.99-969 Aiea Heights Dr Apt NAieaHI96701O2010Special Election 1020100426250.00250.0015
367
+ SA11AIC004414510005851INDSuenagaBeverlyMs.91-208 Ania PlKapoleiHI96707O2010Special Election 1020100426250.00250.0015DOD ArmyEducation.
368
+ SA11AIC004414510005870INDSawyerBrucePMr.4 Waterbury CtBaltimoreMD212121055O2010Special Election 1020100426500.00500.0015NoneRetired
369
+ SA11AIC004414510005871INDMooreDavidLMr.3661 Lilinoe PlHonoluluHI96816O2010Special Election 1020100426250.00500.0015SelfPhotographer
370
+ SA11AIC004414510005100INDSnodgrassStanleyBMr.551-A Papahehi PlHonoluluHI96821O2010Special Election 1020100427100.00600.0015NoneRetired
371
+ SA11AIC004414510005102INDCassEvelynLMs.2240 Kuhio Ave Apt 3206HonoluluHI96815O2010Special Election 1020100427100.00500.0015
372
+ SA11AIC004414510005105INDLeasPhilipJMr.2141 Mohala WayHonoluluHI96822O2010Special Election 102010042750.00375.0015Cades SchutteAttorney
373
+ SA11AIC004414510005367INDGrowneyJamesWMr.3735 Diamond Head CirHonoluluHI96815O2010Special Election 1020100427500.00500.0015NoneRetired
374
+ SA11AIC004414510005368INDGrowneyPriscillaAMrs.3735 Diamond Head CirHonoluluHI96815O2010Special Election 1020100427500.00500.0015NoneRetired
375
+ SA11AIC004414510005370INDCargillBarbaraJMs.7149 Kamilo StHonoluluHI96825P2010201004272500.004900.0015Western EngineeringAccountant
376
+ SA11AIC004414510005371INDCargillBarbaraJMs.7149 Kamilo StHonoluluHI96825P201020100427-200.004700.0015Western EngineeringAccountantXREDESIGNATION
377
+ SA11AIC004414510005372INDCargillBarbaraJMs.7149 Kamilo StHonoluluHI96825O2010Special Election 1020100427100.004800.0015Western EngineeringAccountantXREDESIGNATION
378
+ SA11AIC004414510005373INDCargillBarbaraJMs.7149 Kamilo StHonoluluHI96825G201020100427100.004900.0015Western EngineeringAccountantXREDESIGNATION
379
+ SA11AIC004414510005374INDDeCoreDennisJMr.18 Meadow LanePenningtonNJ08534O2010Special Election 10201004272400.002400.0015Mitsubishi SecuritiesBrokerage Trdding
380
+ SA11AIC004414510005375INDBowersGuyMMr.POBox 8090RuidosoNM883558090O2010Special Election 10201004271000.001000.0015NoneRetired/Investor
381
+ SA11AIC004414510005376INDParlatoCharlesAMr.1144 Old White Plains RdMamaroneckNY10543O2010Special Election 10201004271000.001000.0015Self-eployedDeveloper
382
+ SA11AIC004414510005377INDSingerLarryDr.2945 Juilliard StBoulderCO80305O2010Special Election 1020100427500.00500.0015
383
+ SA11AIC004414510005378INDWheatleyAliceMs.119 Cornerstone CircleFranklinTN37064O2010Special Election 1020100427500.00500.0015NoneRetired
384
+ SA11AIC004414510005379INDTaylorMarilynJMrs.804 Tobaccoport RdBumpus MillsTN37028O2010Special Election 1020100427250.00250.0015NoneRetired
385
+ SA11AIC004414510005390INDDaughertyJohnDMr.7122 Snug Waters RdGulf BreezeFL32566O2010Special Election 1020100427100.00100.0015
386
+ SA11AIC004414510005911INDSimonAllenMr.1383 N Criss StChandlerAZ85226O2010Special Election 10201004272400.002400.0015NoneRetired
387
+ SA11AIC004414510005934INDdeGroofRobertDr.9717 Beman Woods WayPotomacMD20854O2010Special Election 1020100427250.00250.0015NoneRetired Scientist
388
+ SA11AIC004414510005941INDLiuNormanMr.17568 Cloverdale WayYorba LindaCA92886O2010Special Election 1020100427500.001000.0015
389
+ SA11AIC004414510005427INDHarringtonDavidJMr.499 N Nimitz Hwy Pier 21HonoluluHI96817O2010Special Election 10201004281000.000.0015Petrospect IncBusiness Owner
390
+ SA11AIC004414510005430INDCoscoRobertaMMs.45-277 Kahanahou CirKaneoheHI96744O2010Special Election 1020100428500.00500.0015Cosco IncPresident/CEO
391
+ SA11AIC004414510005431INDHuffMartinMr.11 Sheffield RoadN CaldwellNJ07006O2010Special Election 10201004281000.001000.0015NoneRetired
392
+ SA11AIC004414510005432INDCatesJohnRMr.738 Iana StKailuaHI96734O2010Special Election 10201004281500.001500.0015Self-Cates InternationalBusiness Owner
393
+ SA11AIC004414510005433INDHammondMaryEMs.4300 Waialae Ave Apt B1301HonoluluHI96816O2010Special Election 10201004282000.002000.0015SelfParalegal
394
+ SA11AIC004414510005435INDDorcyLaurenceHMr.2895 Kalakaua 109HonoluluHI96815O2010Special Election 1020100428500.002300.0015SelfClassic Cars/Koa Tree Farmer
395
+ SA11AIC004414510005437INDTemaEricPMr.1288 Ala Moana Blvd Ste 208HonoluluHI96814O2010Special Election 10201004282800.004800.0015The MacNaughton GroupPartner
396
+ SA11AIC004414510005439INDTemaEricPMr.1288 Ala Moana Blvd Ste 208HonoluluHI96814O2010Special Election 1020100428-2400.002400.0015The MacNaughton GroupPartnerXREDESIGNATION
397
+ SA11AIC004414510005440INDTemaEricPMr.1288 Ala Moana Blvd Ste 208HonoluluHI96814P2010201004282400.004800.0015The MacNaughton GroupPartnerXREDESIGNATION
398
+ SA11AIC004414510005450INDLeeEdwardKMr.1480 Ihiloa LpHonoluluHI96821O2010Special Election 102010042850.00650.0015NoneRetired Engineer
399
+ SA11AIC004414510005452INDWhitingSanfordDMr.8515 Costa Verde Blvd Unit 2050San DiegoCA921221150O2010Special Election 1020100428100.001350.0015NoneRetired
400
+ SA11AIC004414510005464INDAdkinsThomasLMr.95-1072 Anuanu StMililaniHI967895567O2010Special Election 1020100428100.00330.0015NoneRetired
401
+ SA11AIC004414510005468INDOdaniWesleyIMr.2673 Peter StHonoluluHI96816O2010Special Election 1020100428300.00300.0015Pedodonties
402
+ SA11AIC004414510005469INDJohnsonMarkLMr.1071 Ikena CirHonoluluHI96821O2010Special Election 1020100428500.00700.0015Self-Momentum Development Co Inc
403
+ SA11AIC004414510005470INDAnglinKatieA.Ms.1543 Makiki St 606HonoluluHI96822O2010Special Election 10201004281000.001000.0015NoneRetired
404
+ SA11AIC004414510005471INDPelayoLyndaAMrs.4920 Maunalani CirHonoluluHI96816O2010Special Election 1020100428500.001050.0015
405
+ SA11AIC004414510005472INDLeeKennyMr.936 11th AveHonoluluHI96816O2010Special Election 1020100428250.001150.0015N/AStudent
406
+ SA11AIC004414510005473INDDunaganLauraLMs.623 8th AveHonoluluHI96816O2010Special Election 1020100428250.00475.0015Century NationalExecutiveAsst
407
+ SA11AIC004414510005474INDIshiiIvanLMr.142 Poipu DrHonoluluHI96825O2010Special Election 1020100428500.00500.0015Self-employedInsurance.Rep
408
+ SA11AIC004414510005476INDThomasonTerryEMr.44-166 Nanamoana StKaneoheHI96744O2010Special Election 1020100428250.00900.0015Alston Hunt Floyd & IngAttorney
409
+ SA11AIC004414510005477INDWelchBronwenLMs.3340 Pacific Heights RdHonoluluHI96813O2010Special Election 1020100428250.00800.0015N/AHousewife
410
+ SA11AIC004414510005479INDCainLoisKMs.3015 Hibiscus DrHonoluluHI96815O2010Special Election 1020100428500.00500.0015NoneRetired
411
+ SA11AIC004414510005480INDTsujiVivianMMs.46-290 Kalali StKaneoheHI96744O2010Special Election 1020100428200.00700.0015NoneRetired
412
+ SA11AIC004414510005481INDKurahashiKeithMr.PO Box 62027HonoluluHI96839O2010Special Election 1020100428500.001000.0015Kusao & Kurahashi IncPlanning Consultant
413
+ SA11AIC004414510005482INDThueRobertSMr.444 Hobron Lane 309HonoluluHI96815P201020100428500.00500.0015T&M CorpAccountant
414
+ SA11AIC004414510005483INDKaneshigeMitsuruMr.1212 Nuuanu Ave 2103HonoluluHI96817O2010Special Election 1020100428250.00250.0015NoneRetired
415
+ SA11AIC004414510005492INDChong WongSusanS KMrs.1755 Halekoa DrHonoluluHI96821O2010Special Election 10201004281500.001750.0015Calvin Wong MD IncBusiness Manager
416
+ SA11AIC004414510005493INDMcDonnellJohnTDr.MD6 N Kalaheo AveKailuaHI96734O2010Special Election 10201004281000.001500.0015SelfPhysician/Alergist
417
+ SA11AIC004414510005494INDZobianJosephMDr.MD1157 Hunakai StHonoluluHI96816O2010Special Election 10201004281000.001100.0015Zobian Eye ClinicPhysician
418
+ SA11AIC004414510005495INDUechiMichaelD SDr.98-111 Kaahele PlAieaHI96701O2010Special Election 1020100428500.001000.0015Michael DS Uechi MD IncPhysician
419
+ SA11AIC004414510005990INDVuillemotScottLMr.3460 Kaohinani DrHonoluluHI96817O2010Special Election 10201004281500.003900.0015American MarineMarine Contractor/President
420
+ SA11AIC004414510005994INDDeMarePaulADr.MD1172 Kaumailuna PlHonoluluHI96817O2010Special Election 10201004281000.001000.0015Pacific Radiation IncRadiation Oncologist
421
+ SA11AIC004414510005999INDRobinBruceAMr.207 Portlock RdHonoluluHI96825O2010Special Election 10201004281500.005000.0015NoneRetired
422
+ SA11AIC004414510006000INDRobinBruceAMr.207 Portlock RdHonoluluHI96825O2010Special Election 1020100428-600.004400.0015NoneRetiredXREDESIGNATION
423
+ SA11AIC004414510006001INDRobinBruceAMr.207 Portlock RdHonoluluHI96825P201020100428400.004800.0015NoneRetiredXREDESIGNATION
424
+ SA11AIC004414510006002INDRobinBruceAMr.207 Portlock RdHonoluluHI96825G201020100428200.005000.0015NoneRetiredXREDESIGNATION
425
+ SA11AIC004414510006003INDBurtonBradfordSDr.MD2243 Okoa StHonoluluHI96821O2010Special Election 1020100428500.003250.0015HPMGPhysician
426
+ SA11AIC004414510006004INDCaldaroneNellaGinaMrs.2877 Kalakaua Ave 304HonoluluHI96815O2010Special Election 1020100428500.00700.0015NoneRetired
427
+ SA11AIC004414510006005INDKlompusMarciaJMrs.801 S King St 2004HonoluluHI96813O2010Special Election 10201004281000.001100.0015State of HawaiiDirector of Scheduling
428
+ SA11AIC004414510006015INDRosenthalRobertMr.4444 West Riverside Drive Ste 303BurbankCA91505O2010Special Election 1020100428500.00500.0015NoneRetired Attorney
429
+ SA11AIC004414510006028INDKellyLisaMs.171 Northview Ridge LaneBozemanMT59715O2010Special Election 1020100428500.00500.0015Don Kelly Construction IncOffice Manager
430
+ SA11AIC004414510006035INDMcDonaldScottMr.38 South Judde St 1BHonoluluHI96817O2010Special Election 1020100428250.00250.0015Self-employedIT
431
+ SA11AIC004414510005513INDSegelDavidMr.401 Wilshire Blvd Suite 1070Santa MonicaCA90401O2010Special Election 10201004292400.002400.0015Arrabon Management ServicesChief Executive Officer
432
+ SA11AIC004414510005530INDNardinGeorgeFDr.MD1115 Koohoo PlKailuaHI96734O2010Special Election 1020100429250.00650.0015SelfPhysician
433
+ SA11AIC004414510005545INDBrainardMatthewCMr.2321 Kelton AvenueLos AngelesCA90064O2010Special Election 1020100429250.00250.0015Studley IncRealEstate
434
+ SA11AIC004414510005548INDAcunaHarryMDr.MD94-307 Farrington Hwy Ste B259WaipahuHI96797O2010Special Election 10201004291500.002000.0015Self-Harry M Acuna MD IncPhysician
435
+ SA11AIC004414510005549INDCopelandHaroldDMr.8008 NW 131st CircleOklahoma CityOK73142O2010Special Election 1020100429250.00250.0015Self-employedCommercial Real Estate
436
+ SA11AIC004414510005550INDNeeseTerryMr.13109 Cobblestone PkwyOklahoma CityOK73142O2010Special Election 1020100429250.00250.0015Terry Neese PersonnelSmall Business Owner
437
+ SA11AIC004414510005551INDFotiJohnPMr.1335 Mokulua DrKailuaHI96734O2010Special Election 1020100429500.00500.0015Self - Smith/FotiRealEstate Development
438
+ SA11AIC004414510005566INDLodenElliotMr.737 Bishop St Ste 2990HonoluluHI96813O2010Special Election 1020100429250.00250.0015SelfAttorney
439
+ SA11AIC004414510005567INDTrainorNoelGMr.425 South St 3304HonoluluHI96813O2010Special Election 1020100429250.00250.0015
440
+ SA11AIC004414510005568INDYodaRonaldAMr.781 Kalanipuu StHonoluluHI96826O2010Special Election 1020100429200.00800.0015NoneRetired
441
+ SA11AIC004414510005572INDLeffLeslieJMr.636 Kahiau LoopHonoluluHI96821O2010Special Election 10201004291500.001500.0015
442
+ SA11AIC004414510005573INDLeffMei LiTMrs.636 Kahiau LoopHonoluluHI96821O2010Special Election 10201004291500.001500.0015
443
+ SA11AIC004414510005574INDLauJaniceJMs.3735 Diamond Head Rd Apt CHonoluluHI96816P2010201004291000.001000.0015
444
+ SA11AIC004414510005575INDWinstonPatrickDMr.417 Nohonani St 409HonoluluHI96815O2010Special Election 1020100429250.00350.0015Winston's Waikiki CondosOwner/Manager
445
+ SA11AIC004414510005576INDAiStevenCMr.1174 Dowsett AveHonoluluHI96817O2010Special Election 1020100430300.00300.0015City Mill Co LtdPresident & CEO
446
+ SA11AIC004414510005577INDYeeDouglasQ LMr.1177 Queen St 2702HonoluluHI96814O2010Special Election 1020100430200.00900.0015Morgan Stanley
447
+ SA11AIC004414510005583INDRylandPatriciaMs.PO Box 20036WickenburgAZ85358O2010Special Election 1020100430300.00300.0015
448
+ SA11AIC004414510005595INDBaptisteMarcMr.70 Champions RunSan AntonioTX782587703O2010Special Election 10201004304800.004800.0015
449
+ SA11AIC004414510005596INDBaptisteMarcMr.70 Champions RunSan AntonioTX782587703O2010Special Election 1020100430-2400.002400.0015XREDESIGNATION
450
+ SA11AIC004414510005597INDBaptisteMarcMr.70 Champions RunSan AntonioTX782587703P2010201004302400.004800.0015XREDESIGNATION
451
+ SA11AIC004414510005598INDHolbrookCraigAMr.3663 Woodlawn DrHonoluluHI96822O2010Special Election 10201004302400.002400.0015Patterson DentalManagement
452
+ SA11AIC004414510005599INDFelixJohn HenryMr.PO Box 240778HonoluluHI96824O2010Special Election 10201004301500.003000.0015HMAAChief Executive Officer
453
+ SA11AIC004414510005602INDLewisLeeBMr.98-487 KoaukaLp 1801AieaHI96701O2010Special Election 10201004301500.003500.0015Lewis Electric LLCOwner
454
+ SA11AIC004414510005603INDLewisLeeBMr.98-487 KoaukaLp 1801AieaHI96701O2010Special Election 1020100430-1100.002400.0015Lewis Electric LLCOwnerXREDESIGNATION
455
+ SA11AIC004414510005604INDLewisLeeBMr.98-487 KoaukaLp 1801AieaHI96701P2010201004301100.003500.0015Lewis Electric LLCOwnerXREDESIGNATION
456
+ SA11AIC004414510005605INDUezuLindaEMrs.34 Nawiliwili StHonoluluHI96825O2010Special Election 10201004301500.004000.0015Self-50th State Poultry
457
+ SA11AIC004414510005606INDUezuLindaEMrs.34 Nawiliwili StHonoluluHI96825O2010Special Election 1020100430-1100.002900.0015Self-50th State PoultryXREDESIGNATION
458
+ SA11AIC004414510005607INDUezuLindaEMrs.34 Nawiliwili StHonoluluHI96825P2010201004301100.004000.0015Self-50th State PoultryXREDESIGNATION
459
+ SA11AIC004414510005608INDChampionLeeRMr.1777 Ala Moana Blvd 905HonoluluHI96815O2010Special Election 10201004301200.004800.0015NoneRetired
460
+ SA11AIC004414510005609INDBaptisteEmilyMMs.7911 Makaaoa PlHonoluluHI96825O2010Special Election 10201004301000.001000.0015SelfRealtor
461
+ SA11AIC004414510005610INDJohnsonLawrenceMMr.3833 Old Pali RdHonoluluHI96817O2010Special Election 10201004301000.001000.0015
462
+ SA11AIC004414510005611INDJustmanSharonaMs.11620 Wilshire Blvd Ste 750Los AngelesCA900256819O2010Special Election 1020100430500.00500.0015
463
+ SA11AIC004414510005612INDStoneBarbaraMrs.15840 Arbela DrWhittierCA90603O2010Special Election 1020100430500.001300.0015NoneRetired
464
+ SA11AIC004414510005613INDStoneStevenE1380 Caminito BaladaLa JollaCA920377183O2010Special Election 1020100430500.00500.0015
465
+ SA11AIC004414510006048INDBatmanglidjKiyalan1730 P Street NW Apt 4WashingtonDC20036O2010Special Election 1020100430500.00500.0015US GovernmentCongressional Affairs Contact
466
+ SA11AIC004414510006051INDRuckertJerryMr.95-1000 Kapanoe StMililaniHI96789O2010Special Election 1020100430250.00250.0015US ArmySr Advisor
467
+ SA11AIC004414510006096INDAkiPearlMMs.PO Box 378LawaiHI96765O2010Special Election 1020100430500.00500.0015Hawaii Partition SystemsSecretary
468
+ SA11AIC004414510006108INDWackerRichardMr.119 Maono PlHonoluluHI96821O2010Special Election 10201004301000.002000.0015KEBFinancial Services
469
+ SA11AIC004414510006112INDOrganJosephMr.1213 Park AveRiver ForestIL60305O2010Special Election 1020100430250.00500.0015Mayer BrownAttorney
470
+ SA11AIC004414510006186INDMinoofarAlbertMr.8 Carmel WoodsLaguna NiguelCA92677O2010Special Election 1020100430250.00250.0015Commpros IncDirector
471
+ SA11AIC004414510006219INDWhittyStephenMr.528 Ahakea StHonoluluHI96815O2010Special Election 1020100430250.00250.0015Self-employedGeneral Contractor
472
+ SA11AIC004414510006242INDFongSandraAuMrs.2919 Kapiolani BlvdHonoluluHI96826O2010Special Election 1020100430500.001400.0015Market City LimitedProperty Management
473
+ SA11AIC004414510006246INDKa'auwaiAliciaEMrs.4462 Kamoa RdKapaaHI96746O2010Special Election 1020100501100.001700.0015NoneRetired
474
+ SA11AIC004414510006269INDBastKarlLMr.1201 Wilder Ave Apt 1503HonoluluHI96822O2010Special Election 1020100501250.00250.0015Wilders@ PiikoiCondo Resident Mgr
475
+ SA11AIC004414510006270INDJenkinsMitchelDMr.PO Box 10547LahainaHI96761O2010Special Election 1020100501250.00250.0015NoneRetired
476
+ SA11AIC004414510006283INDYoungDavidAMr.92-522 Kipapa DrMililaniHI96789O2010Special Election 1020100501250.00750.0015Wai Engineering IncOwner
477
+ SA11AIC004414510006292INDHarlanMarieMs.27140 East El Macero DrEl MaceroCA95618O2010Special Election 1020100501500.00500.0015NoneRetired
478
+ SA11AIC004414510006309INDEddyBryceMr.14382 Peach Hill RoadMoorparkCA93021O2010Special Election 10201005011000.001000.0015Poms & AssociatesInsurance.
479
+ SA11AIC004414510006310INDShermanRichardMr.3925 Prado Del MaizCalabasasCA91302O2010Special Election 1020100501250.00250.0015SelfPsychologist
480
+ SA11AIC004414510006317INDPeluffoAnneMMs.2364 Floretica AveMontroseCA91020O2010Special Election 102010050120.0020.0015Arch InsuranceClaims Assistant
481
+ SA11AIC004414510006319INDPlotkinRonaldMr.4218 Dan Wood DrThousand OaksCA91362O2010Special Election 10201005011000.001000.0015SelfInvestor
482
+ SA11AIC004414510006333INDDannawaySamuelSMr.1944 Ualakaa St Unit BHonoluluHI96822O2010Special Election 10201005021000.001000.0015SS Danaway Assoc IncBusiness Owner
483
+ SA11AIC004414510006337INDKlavonAzizADr.143 Royal Oaks LaneKerrvilleTX78028O2010Special Election 102010050235.00360.0015Hill County Inpatient AssociatesPhysician
484
+ SA11AIC004414510006342INDBarbataBrianJMr.Box 1594KailuaHI96734O2010Special Election 1020100502500.00500.0015Inter Island Petroleum IncManager
485
+ SA11AIC004414510006360INDIcklerLouisMr.44-485 Aumoana WayKaneoheHI96744O2010Special Election 10201005024800.004800.0015NoneRetired Financial Analyst
486
+ SA11AIC004414510006361INDIcklerLouisMr.44-485 Aumoana WayKaneoheHI96744O2010Special Election 1020100502-2400.002400.0015NoneRetired Financial AnalystXREDESIGNATION
487
+ SA11AIC004414510006362INDIcklerLouisMr.44-485 Aumoana WayKaneoheHI96744P2010201005022400.004800.0015NoneRetired Financial AnalystXREDESIGNATION
488
+ SA11AIC004414510006379INDIcklerKimMrs.44-465 Aumoana WayKaneoheHI96744O2010Special Election 10201005024800.004800.0015NoneRetired
489
+ SA11AIC004414510006381INDIcklerKimMrs.44-465 Aumoana WayKaneoheHI96744O2010Special Election 1020100502-2400.002400.0015NoneRetiredXREDESIGNATION
490
+ SA11AIC004414510006382INDIcklerKimMrs.44-465 Aumoana WayKaneoheHI96744P2010201005022400.004800.0015NoneRetiredXREDESIGNATION
491
+ SA11AIC004414510006386INDCarvillConstanceMMrs.Carvill & Co LLC111 Hekili St Ste 109KailuaHI96734O2010Special Election 1020100502500.00700.0015Carvill & Co LLC
492
+ SA11AIC004414510006407INDBaptisteArnoldMMr.Jr117 Hanapepe LoopHonoluluHI96825P2010201005021800.004800.0015HWMGPresident
493
+ SA11AIC004414510006431INDCrenshawTerrenceLMr.555 Hahaione St Apt 10DHonoluluHI96825O2010Special Election 1020100502250.001700.0015NoneRetired
494
+ SA11AIC004414510006434INDBarahalJamesDr.153 Pauahilani WayKailuaHI96734O2010Special Election 1020100502500.001500.0015Straub ClinicPhysician
495
+ SA11AIC004414510006458INDHorningMerrittMr.1201 Dove Ave 570Newport BeachCA92660O2010Special Election 1020100502500.00500.0015Chase MerrittChief Executive Officer/Pres
496
+ SA11AIC004414510006460INDPriceStevenMr.15 Heathcote RoadScarsdaleNY10583O2010Special Election 10201005021000.001000.0015Not NotedNot Noted
497
+ SA11AIC004414510006466INDMaderaLeroyAMr.98-719 Iho Pl 104AieaHI96701O2010Special Election 1020100502250.00250.0015NoneRetired
498
+ SA11AIC004414510006483INDBuckStephanieA SMs.4171 Sierra DrHonoluluHI96816O2010Special Election 10201005022000.002000.0015Hawaii Foodservice Alliance LLCCPA
499
+ SA11AIC004414510006485INDDoughertyThomasMr.821 S Columbia StAlexandriaVA22314O2010Special Election 1020100502250.00250.0015US Dept of JusticeTrial Attorney
500
+ SA11AIC004414510006492INDWeinmanBarryMMr.4471 Kahala AveHonoluluHI96816O2010Special Election 10201005022800.002800.0015NoneRetired
501
+ SA11AIC004414510006493INDWeinmanVirginiaSMrs.4471 Kahala AveHonoluluHI96816O2010Special Election 10201005023800.004800.0015NoneRetired
502
+ SA11AIC004414510006494INDWeinmanVirginiaSMrs.4471 Kahala AveHonoluluHI96816O2010Special Election 1020100502-1400.003400.0015NoneRetiredXREDESIGNATION
503
+ SA11AIC004414510006495INDWeinmanVirginiaSMrs.4471 Kahala AveHonoluluHI96816P2010201005021400.004800.0015NoneRetiredXREDESIGNATION
504
+ SA11AIC004414510006503INDShinLorrainePMs.184 Puueo StHiloHI96720O2010Special Election 1020100502500.001200.0015NoneRetired
505
+ SA11AIC004414510006516INDNoonThomasMr.PO Box 5000Rancho Santa FeCA92067O2010Special Election 1020100502250.00250.0015Raintree InvestmetsChief Executive Officer
506
+ SA11AIC004414510006520INDWaymanJamesMMr.1718 Uhi PlHonoluluHI96821O2010Special Election 1020100502500.00500.0015Hawaii Coffee CompanyExecutive
507
+ SA11AIC004414510006527INDWilliamsDoloresMs.PO Box 1296FestusMO630287296O2010Special Election 1020100502250.00410.0015NoneRetired
508
+ SA11AIC004414510006549INDJacrouxPaulMr.925 5th Ave D-1KirklandWA98033O2010Special Election 1020100502500.001500.0015NoneRetired
509
+ SA11AIC004414510006566INDRepsholdtDianneLMs.98-804 Kahaea PlAieaHI96701O2010Special Election 1020100502500.00500.0015NoneHomemaker
510
+ SA11AIC004414510006571INDWeinmanBarryMMr.4471 Kahala AveHonoluluHI96816O2010Special Election 1020100502-400.002400.0015NoneRetiredXREDESIGNATION
511
+ SA11AIC004414510006572INDWeinmanBarryMMr.4471 Kahala AveHonoluluHI96816P201020100502400.002800.0015NoneRetiredXREDESIGNATION
512
+ SA11AIC004414510006575INDHarringtonDavidJMr.499 N Nimitz Hwy Pier 21HonoluluHI96817P2010201005021000.001000.0015Petrospect IncBusiness Owner
513
+ SA11AIC004414510006582INDOtaniDwightSMr.2934 Pahoehoe PlHonoluluHI96817O2010Special Election 10201005021000.003777.4715D Otani Produce IncProduce Wholesaler
514
+
515
+ SA11CC004414510003688COMMajority Committee PacPO Box 10134BakersfieldCA933890134O2010Special Election 10201004072500.002500.0018KC00428052Majority Committee Pac
516
+ SA11CC004414510003689PACProsperity PAC1006 Pendleton StreetAlexandriaVA22314O2010Special Election 10201004072000.002000.0015Prosperity PAC
517
+ SA11CC004414510003690COM21st Century PAC2052 Lake Audubon CourtRestonVA20191O2010Special Election 10201004071000.002000.0018KC0031574721st Century PAC
518
+ SA11CC004414510003691ORGAlticor Political Action Committee7575 East Fulton StAdaMI493550001O2010Special Election 10201004071000.001000.0015
519
+ SA11CC004414510003692ORGConaway for CongressPO Box 51272MidlandTX79710O2010Special Election 10201004071000.001000.0015
520
+ SA11CC004414510003693COMFreedom and Security PAC228 S Washington St Ste 115AlexandriaVA22314O2010Special Election 10201004071000.001000.0018KC00437061Freedom and Security PAC
521
+ SA11CC004414510003694PACHalliburton Political Action Committee1150 18th Street NWWashingtonDC20036O2010Special Election 10201004071000.001000.0018KC00035691Halliburton Political Action Committee
522
+ SA11CC004414510003695ORGJo Bonner For Congress CommitteePO Box 851232MobileAL366851232O2010Special Election 10201004071000.001000.0015
523
+ SA11CC004414510003696COMJobs, Economy and Budget Fund7315 Wisconsin Ave Ste 310 EastBethesdaMD20814O2010Special Election 10201004071000.001000.0018KC00420695Jobs, Economy and Budget Fund
524
+ SA11CC004414510003697COMNew Pioneers PAC228 S Washington St Ste 115 O2010Special Election 10201004071000.001000.0018KC00459123New Pioneers PAC
525
+ SA11CC004414510003698ORGWestmoreland For CongressPO Box 458SharpsburgGA30277O2010Special Election 10201004071000.001000.0015
526
+ SA11CC004414510003699COMEye of the Tiger PACPO Box 2485SpringfieldVA22152O2010Special Election 1020100407500.00500.0018KC00467431Eye of the Tiger PAC
527
+ SA11CC004414510003700ORGInvest In A Strong & Secure America30151 Tomas StRancho Sta MargariCA92688O2010Special Election 1020100407500.00500.0015
528
+ SA11CC004414510003701ORGOne Nation PACPO Box 614SacramentoCA95812O2010Special Election 1020100407300.00300.0015
529
+ SA11CC004414510003797COMCMR Political Action CommitteePO Box 2485SpringfieldVA22152O2010Special Election 10201004091000.001000.0018KC00469429CMR Political Action Committee
530
+ SA11CC004414510004344COMChange the Congress in 201018 Charing Cross RdCharlestonSC29407O2010Special Election 102010041320.1020.1018KC00465294Change the Congress in 2010
531
+ SA11CC004414510004882COMGOP Generation Y FundPO Box 9055PeoriaIL61612O2010Special Election 10201004174000.004000.0018KC00448191GOP Generation Y Fund
532
+ SA11CC004414510004883COMFree and Strong America PAC, IncPO Box 79226BelmontMA02479O2010Special Election 10201004172500.002500.0018KC00449280Free and Strong America PAC, Inc
533
+ SA11CC004414510004884ORGArmando Gutierrez for Congress2640A Mitcham DrTallahasseeFL32308O2010Special Election 10201004172000.002000.0015
534
+ SA11CC004414510004885COMDENT PAC610 S BoulevardTampaFL33606O2010Special Election 10201004171000.001000.0018KC00427930DENT PAC
535
+ SA11CC004414510004887COMLog Cabin Republicans1050 Connecticut Ave NW Ste 400WashingtonDC20036O2010Special Election 1020100417250.00250.0018KC00405506Log Cabin Republicans
536
+ SA11CC004414510004910ORGKoch Industries, Inc. Political Action Committe600 14th Street NW Suite 800WashingtonDC20005O2010Special Election 10201004205000.005000.0015
537
+ SA11CC004414510004911COMFreedom First PACPO Box 9190St PaulMN551090190O2010Special Election 10201004202400.002400.0018KC00467688Freedom First PAC
538
+ SA11CC004414510006025ORGOne Nation PACPO Box 614SacramentoCA95812O2010Special Election 1020100422500.00800.0015
539
+ SA11CC004414510004912COMGrowth & Prosperity Political Action Committee831 Linwood CourtBirminghamAL35222O2010Special Election 10201004232500.002500.0018KC00388793Growth & Prosperity Political Action Committee
540
+ SA11CC004414510004913ORGGuthrie for CongressPO Box 9639Bowling GreenKY42102O2010Special Election 10201004231000.001000.0015
541
+ SA11CC004414510005245COMAmerican Society of Anesthesiologists PAC520 N Northwest HighwayPark RidgeIL600682573O2010Special Election 10201004265000.005000.0018KC00255752American Society of Anesthesiologists PAC
542
+ SA11CC004414510005246COMRepublican Main Street Partnership PAC1220 L St NW Ste 100-263WashingtonDC20005O2010Special Election 10201004262500.005000.0018KC00165159Republican Main Street Partnership PAC
543
+ SA11CC004414510005247ORGAmerica's Fairs Carnival and Circus PACPO Box 887LortonVA22199O2010Special Election 10201004262400.002400.0015
544
+ SA11CC004414510005248COMGeoff Davis Campaign CommitteePO Box 17192Ft MitchellKY41017O2010Special Election 10201004262000.002000.0018KC00369470Geoff Davis Campaign Committee
545
+ SA11CC004414510005249COMPete Sessions for Congress 2004PO Box 38585DallasTX752380585O2010Special Election 10201004262000.002000.0018KC00303305Pete Sessions for Congress 2004
546
+ SA11CC004414510005250ORGInvest In A Strong & Secure America30151 Tomas StRancho Sta MargariCA92688O2010Special Election 10201004261500.002000.0015
547
+ SA11CC004414510005251ORGMary's PAC7315 Wisconsin Ave Ste 310 EastBethesdaMD20814O2010Special Election 10201004261000.001000.0015
548
+ SA11CC004414510005252ORGMichael Burgess for CongressPO Box 2334DentonTX76202O2010Special Election 10201004261000.001000.0015
549
+ SA11CC004414510005253ORGOlson for Congress CommitteePO Box 16381Sugar LandTX77496O2010Special Election 10201004261000.001000.0015
550
+ SA11CC004414510005254ORGShelley Moore Capito for CongressPOBox 11519CharlestonWV25339O2010Special Election 10201004261000.001000.0015
551
+ SA11CC004414510005255PACTexas Freedom Fund104 E Hume AveAlexandriaVA22301O2010Special Election 10201004261000.001000.0018KC00340661Texas Freedom Fund
552
+ SA11CC004414510005416ORGHaley's PACPO Box 1186JacksonMS39215O2010Special Election 10201004272000.002000.0015
553
+ SA11CC004414510005417COMTaking Our Majority PAC (TOMPAC)3407 Arden WaySacramentoCA95825O2010Special Election 10201004272000.002000.0018KC00461137Taking Our Majority PAC (TOMPAC)
554
+ SA11CC004414510005419COM21st Century PAC2052 Lake Audubon CourtRestonVA20191O2010Special Election 10201004271000.003000.0018KC0031574721st Century PAC
555
+ SA11CC004414510005420COMAmerican Success PAC1155 21st Street NW Ste 300WashingtonDC20036O2010Special Election 10201004271000.001000.0018KC00336644American Success PAC
556
+ SA11CC004414510005421ORGBill Shuster for CongressPO Box 27HollidaysburgPA16648O2010Special Election 10201004271000.001000.0015
557
+ SA11CC004414510005422COMContinuing America's Strength and Security PAC (CASSPAC)PO Box 80694Baton RougeLA70898O2010Special Election 10201004271000.001000.0018KC00480228Continuing America's Strength and Security PAC (CASSPAC)
558
+ SA11CC004414510005423COMEureka Political Action Committee7315 Wisconsin Ave Ste 705 EastBethesdaMD20814O2010Special Election 10201004271000.001000.0018KC00390161Eureka Political Action Committee
559
+ SA11CC004414510005424COMMajority Initiative to Keep Electing Republicans FundPO Box 2485SpringfieldVA22152O2010Special Election 10201004271000.002000.0018KC00370791Majority Initiative to Keep Electing Republicans Fund
560
+ SA11CC004414510005425ORGPioneer PAC412 First Street SE Ste 100WashingtonDC20003O2010Special Election 10201004271000.001000.0015
561
+ SA11CC004414510007028ORGMajority Committee PAC P2010201004272500.002500.0015
562
+ SA11CC004414510005426COM21st Century PAC2052 Lake Audubon CourtRestonVA20191O2010Special Election 10201004283000.006000.0018KC0031574721st Century PAC
563
+ SA11CC004414510005614COMNRA-Political Victory Fund11250 Waples Mill RoadFairfaxVA220307400O2010Special Election 10201004304950.004950.0018KC00053553NRA-Political Victory Fund
564
+ SA11CC004414510005615ORGRepublican Jewish Coalition PAC50 F Street NW Suite 100WashingtonDC20001O2010Special Election 10201004302500.002500.0015
565
+ SA11CC004414510005616COMRJ Reynolds Political Action Committee1201 F Street NW Suite 1000WashingtonDC20004O2010Special Election 10201004302500.002500.0018KC00042002RJ Reynolds Political Action Committee
566
+ SA11CC004414510005617COMRepublican Operation toSecure & Keep A Majority PACPO Box 1011WheatonIL60187O2010Special Election 10201004301000.001000.0018KC00451294Republican Operation toSecure & Keep A Majority PAC
567
+
568
+ SB17C004414510005258ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P20102010040144000.00TV MEDIA FEES004
569
+ SB17C004414510005279ORGNONAKA COMMUNICATIONSPO BOX 29KailuaHI96734P2010201004016000.00Reimbursement001
570
+ SB17C004414510005275ORGCARIN SHIRTS INC.831-B POHUKAINA STREETHonoluluHI96813P201020100402351.83Printing006
571
+ SB17C004414510005278ORGNONAKA COMMUNICATIONSPO BOX 29KailuaHI96734P201020100405500.00Consulting001
572
+ SB17C004414510005267ORGReskyu756 Bannister StreetHonoluluHI96819P201020100405804.19Printing006
573
+ SB17C004414510005269ORGTHE TARRANCE GROUP, INC.2301 N UNION ST, SUITE 410AlexandriaVA22314P2010201004066525.00Consulting001
574
+ SB17C004414510005537ORGMILILANI HIGH SCHOOL P201020100406312.55RENTAL FOR RALLY007
575
+ SB17C004414510007038ORGAqua Waikiki Pearl415 Nahua StreetHonoluluHI96815P201020100406423.60hotel for finance director002
576
+ SB17C004414510005260ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P20102010040863845.00TV MEDIA FEES004
577
+ SB17C004414510005535INDDjouCharlesK520 Lunalilo Home Rd Unit 223HonoluluHI96825P201020100408896.46Reimb for DC Trip Fundraising003
578
+ SB17C004414510007039ORGOffice Depot #507340 Kamakee StHonoluluHI96814P201020100412664.87Postage001
579
+ SB17C004414510005256ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P201020100414123130.00TV MEDIA FEES004
580
+ SB17C004414510005263ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P2010201004142097.48TV MEDIA FEES004
581
+ SB17C004414510005533ORGTHE HAWAII FILIPINO CHRONICLE94-356 WAIPAHU DEPOT RD, 2ND FLOOWaipahuHI96797P2010201004141041.88TV MEDIA FEES004
582
+ SB17C004414510005538ORGKNDI RADIO1734 S KING STHonoluluHI96826P201020100414222.51RADIO MEDIA - CHECK NO 1105004
583
+ SB17C004414510005282ORGUS PostmasterUS PostmasterHonoluluHI96813P201020100414300.00Postage001
584
+ SB17C004414510007133-IKINDEberhardtAaronA KMr.4555 Aukai AveHonoluluHI96816O2010Special Election 10201004151500.00001(contributor) In-Kind Received
585
+ SB17C004414510005265ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P20102010041512625.00TV MEDIA FEES004
586
+ SB17C004414510007134-IKINDOtaniDwightSMr.2934 Pahoehoe PlHonoluluHI96817P201020100416277.47001(contributor) In-Kind Received
587
+ SB17C004414510005539ORGGKV, LLC4189 SOUTH FOUR MILE RUN DRIVEArlingtonVA22204P2010201004168063.69Consulting001
588
+ SB17C004414510005532ORGFIL-AM COURIERPO BOX 17753HonoluluHI96817P201020100416755.90TV MEDIA FEES004
589
+ SB17C004414510005273ORGEdward Enterprises Inc.PO Box 30468HonoluluHI96820P2010201004167511.84Printing006
590
+ SB17C004414510007033ORGSigns By Dey320 Ward Ave, Suite 116HonoluluHI96814P201020100419926.70Payment for Invoice 28639001
591
+ SB17C004414510007135-IKINDRuhlandGregoryWDr.MD80 Pauahi St Ste 104HiloHI96720O2010Special Election 1020100420682.00001(contributor) In-Kind Received
592
+ SB17C004414510005257ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P201020100420123130.00TV MEDIA FEES004
593
+ SB17C004414510005280ORGENGAGE LLC707 8TH STREET SE, SUITE 200WashingtonDC20003P20102010042110000.00Consulting001
594
+ SB17C004414510005259ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P20102010042136127.00TV MEDIA FEES004
595
+ SB17C004414510005276ORGCARIN SHIRTS INC.831-B POHUKAINA STREETHonoluluHI96813P201020100422376.96Printing006
596
+ SB17C004414510007136-IKINDClothierDonaldAMr.1221 Victoria St 3101HonoluluHI96814O2010Special Election 1020100425488.89001(contributor) In-Kind Received
597
+ SB17C004414510005271ORGTHE TARRANCE GROUP, INC.2301 N UNION ST, SUITE 410AlexandriaVA22314P2010201004266642.50Consulting001
598
+ SB17C004414510007030ORGCostco Wholesale525 Alakawa StHonoluluHI96817P201020100426712.91food and bev for volunteers, fundraiser003
599
+ SB17C004414510005268ORGReskyu756 Bannister StreetHonoluluHI96819P201020100426804.19Printing006
600
+ SB17C004414510005261ORGSRCP MEDIA, INC.201 N UNION STREET, SUITE 200AlexandriaVA22314P201020100427158730.00TV MEDIA FEES004
601
+ SB17C004414510005536ORGMEDIA CENTRE LLCHONOLULUHIP201020100427523.56RADIO MEDIA - CHECK NO 1114004
602
+ SB17C004414510005540ORGEdward Enterprises Inc.PO Box 30468HonoluluHI96820P20102010042930120.03Printing006
603
+ SB17C004414510007042INDCortez-CameroTaniaKehauMs.1483 Pukana PlHiloHI96720P20102010042924.01food for volunteers001
604
+ SB17C004414510005534ORGTHE HAWAII FILIPINO CHRONICLE94-356 WAIPAHU DEPOT RD, 2ND FLOOWaipahuHI96797P2010201004301041.88TV MEDIA FEES004
605
+ SB17C004414510007040ORGEdward Enterprises Inc.PO Box 30468HonoluluHI96820P201020100430691.08Postage001
606
+
607
+ SB20AC004414510006243INDRohlfingPattyAMs.2807 Kekaulike AveKulaHI96790O2010Special Election 102010043050.00Refund of Contribution010
608
+ SB20AC004414510006244INDHarringtonDavidJMr.499 N Nimitz Hwy Pier 21HonoluluHI96817O2010Special Election 10201004301000.00Refund of Contribution010